/* ============================================================
   Zublox — main stylesheet
   Palette: indigo primary, cyan accent, slate neutrals
   ============================================================ */

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --primary-soft: #eef2ff;
  --accent: #06b6d4;
  --accent-soft: #ecfeff;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand svg { width: 30px; height: 30px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow); }

.btn-outline { border-color: var(--border); color: var(--dark); background: #fff; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--primary-soft); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 60% 50% at 70% 10%, rgba(79, 70, 229, 0.35), transparent),
    radial-gradient(ellipse 50% 40% at 20% 90%, rgba(6, 182, 212, 0.25), transparent),
    var(--dark);
  color: #fff;
  padding: 96px 0 104px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: #c7d2fe;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .grad {
  background: linear-gradient(90deg, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: #cbd5e1;
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.soft { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-card .tag {
  display: inline-flex;
  align-self: flex-start;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 18px;
}

.product-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-card .icon svg { width: 26px; height: 26px; color: var(--primary); }

.product-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-card > p { color: var(--muted); margin-bottom: 18px; }

.product-card ul {
  list-style: none;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.product-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  font-size: 0.95rem;
}
.product-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

.product-card .card-actions { margin-top: auto; display: flex; gap: 12px; flex-wrap: wrap; }

.product-card.coming-soon {
  border: 2px dashed rgba(79, 70, 229, 0.35);
  background: rgba(79, 70, 229, 0.03);
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 22px; height: 22px; color: var(--primary); }
.feature h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.92rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Product hero (detail pages) ---------- */
.product-hero {
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  padding: 72px 0;
}
.product-hero .breadcrumbs { font-size: 0.88rem; color: var(--muted); margin-bottom: 20px; }
.product-hero .tag {
  display: inline-flex;
  background: #fff;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.product-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 16px;
  max-width: 760px;
}
.product-hero p { font-size: 1.15rem; color: var(--text); max-width: 680px; margin-bottom: 32px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.faq-list summary { font-weight: 600; color: var(--dark); cursor: pointer; }
.faq-list details p { margin-top: 12px; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  text-align: center;
  padding: 72px 0;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 1.1rem; opacity: 0.92; max-width: 560px; margin: 0 auto 30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 820px; margin: 0 auto; }
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.contact-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.contact-card a { display: block; margin-bottom: 6px; font-weight: 500; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 56px 0 32px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* ---------- Prose (long-form content on product pages) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin: 40px 0 14px; letter-spacing: -0.01em; }
.prose p { color: var(--text); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; color: var(--text); }
.prose ul li { margin-bottom: 8px; }

/* ---------- Page hero (generic, for inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  padding: 64px 0;
}
.page-hero .breadcrumbs { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 14px;
  max-width: 760px;
}
.page-hero p { font-size: 1.12rem; color: var(--text); max-width: 680px; }

/* ---------- Placeholder marker ----------
   Wrap any text you still need to replace in <span class="ph">[ ... ]</span>
   — it shows up highlighted so it's easy to find. Delete the span (keep the
   real text) once filled in. */
.ph {
  background: #fef3c7;
  color: #92400e;
  padding: 1px 7px;
  border-radius: 5px;
  font-style: normal;
}

/* ---------- Client logo strip ---------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.logo-box {
  width: 150px;
  height: 56px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
}
.logo-strip img { height: 44px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.75; }

/* ---------- Value props with metrics ---------- */
.metric-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.metric {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.metric .num {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 8px;
}
.metric h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.metric p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Stats band (dark) ---------- */
.stats-band { background: var(--dark); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; text-align: center; }
.stat .num { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; display: block; color: #a5b4fc; }
.stat .label { color: #cbd5e1; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.testimonial blockquote { color: var(--text); font-size: 0.98rem; margin-bottom: 20px; flex: 1; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.testimonial .who strong { display: block; color: var(--dark); font-size: 0.95rem; }
.testimonial .who span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.team-card .avatar {
  position: relative;
  overflow: hidden;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-soft), var(--accent-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto 16px;
}
/* Team photo sits on top of the initial; if the file is missing the
   onerror handler removes it and the initial shows through. */
.team-card .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  gap: 18px;
}
.contact-form label { font-weight: 600; font-size: 0.9rem; color: var(--dark); display: block; margin-bottom: 6px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: inherit;
  color: var(--text);
  background: var(--bg-soft);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: 2px solid var(--primary); outline-offset: 0; border-color: var(--primary); }
.contact-form .hint { font-size: 0.85rem; color: var(--muted); }

/* ---------- Careers roles list ---------- */
.roles-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.role {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.role h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.role p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   WhatsApp CRM landing components (index.html)
   Follows the core Zublox palette: indigo primary, cyan accent,
   slate dark. WhatsApp green (#25d366) appears only where it is
   semantically "WhatsApp": chat bubbles + floating chat button.
   ============================================================ */
:root { --wa-green: #25d366; --wa-green-dark: #128c5e; }

/* Eyebrow pill */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(79, 70, 229, 0.25);
  padding: 6px 15px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.eyebrow-pill.on-dark { color: #c7d2fe; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); }

/* Split hero */
.hero.hero-split { text-align: left; padding: 80px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero.hero-split h1 { margin: 0 0 20px; max-width: none; }
.hero.hero-split p.lead { margin: 0 0 32px; max-width: 540px; }
.hero.hero-split .hero-actions { justify-content: flex-start; }
.hero-microcopy { margin-top: 18px; font-size: 0.85rem; color: #94a3b8; }
.hero-microcopy strong { color: #a5b4fc; }

/* Phone mockup → kanban visual */
.signature { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.phone {
  width: 280px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  padding: 14px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
}
.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  margin-bottom: 12px;
}
.phone-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark)); flex-shrink: 0; }
.phone-name { font-size: 0.82rem; font-weight: 700; color: #fff; }
.phone-sub { font-size: 0.7rem; color: #94a3b8; }
.bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.78rem;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(6px);
  animation: bubbleIn 0.5s ease forwards;
}
.bubble.in { background: #334155; color: #e2e8f0; border-bottom-left-radius: 3px; }
.bubble.out { background: var(--wa-green); color: #06251b; margin-left: auto; border-bottom-right-radius: 3px; font-weight: 600; }
.bubble:nth-child(2) { animation-delay: 0.2s; }
.bubble:nth-child(3) { animation-delay: 0.7s; }
.bubble:nth-child(4) { animation-delay: 1.2s; }
.bubble:nth-child(5) { animation-delay: 1.7s; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.flow-arrow svg { width: 20px; height: 26px; }

.kanban {
  width: 300px;
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
}
.kanban-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: #94a3b8; margin-bottom: 12px; }
.kanban-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; position: relative; height: 112px; }
.kcol {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding-top: 8px;
  font-size: 0.6rem;
  color: #64748b;
  text-align: center;
}
.kcard {
  position: absolute;
  top: 26px;
  width: 84px;
  padding: 10px 8px;
  background: linear-gradient(160deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(165, 180, 252, 0.5);
  border-radius: 9px;
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.5);
  animation: cardMove 7s ease-in-out infinite;
}
.kcard span { display: block; font-size: 0.55rem; font-weight: 600; color: #a5f3fc; margin-top: 3px; }
@keyframes cardMove {
  0%, 12% { left: 8px; }
  38%, 55% { left: calc(33.33% + 6px); }
  80%, 100% { left: calc(66.66% + 4px); }
}

/* Problem / pain list */
.problem-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.problem-grid .section-head { text-align: left; margin: 0; }
.pain-list { display: flex; flex-direction: column; gap: 14px; }
.pain {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pain .x {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fef2f2;
  color: #dc2626;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
}
.pain p { margin: 0; color: var(--dark-2); font-size: 0.92rem; font-weight: 500; }

/* Dark section variant (how it works, industries) */
.section-dark { background: var(--dark); color: #fff; }
.section-dark .section-head h2 { color: #fff; }
.section-dark .section-head p { color: #cbd5e1; }
.section-dark .step { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); }
.section-dark .step h3 { color: #fff; }
.section-dark .step p { color: #cbd5e1; }
/* Dark steps use the .step-num label instead of the numbered circle badge */
.section-dark .steps .step::before { display: none; }
.step-num { font-size: 0.8rem; font-weight: 700; color: #22d3ee; letter-spacing: 0.05em; margin-bottom: 12px; }

/* Comparison table */
.compare-scroll { overflow-x: auto; }
.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.compare-table th,
.compare-table td { padding: 15px 18px; text-align: left; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
.compare-table th { font-weight: 700; font-size: 0.95rem; background: var(--dark); color: #fff; }
.compare-table th.highlight { color: #22d3ee; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.row-label { font-weight: 700; color: var(--dark-2); background: var(--bg-soft); }
.compare-table td.highlight-col { background: rgba(79, 70, 229, 0.05); font-weight: 600; }
.compare-table .yes { color: #15803d; font-weight: 800; }
.compare-table .no { color: #dc2626; font-weight: 800; }

/* Industries emoji grid */
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.ind-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 14px;
  text-align: center;
}
.ind-card .ico { font-size: 1.6rem; margin-bottom: 10px; }
.ind-card h3 { font-size: 0.85rem; font-weight: 700; color: #fff; margin: 0; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.popular { border: 2px solid var(--primary); transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.price-tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.price-amount { margin-bottom: 18px; }
.price-amount .rs { font-size: 2rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.price-amount .per { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.price-feats { display: flex; flex-direction: column; gap: 11px; margin: 0 0 26px; flex-grow: 1; list-style: none; padding: 0; }
.price-feats li { display: flex; gap: 10px; font-size: 0.88rem; color: var(--dark-2); align-items: flex-start; }
.price-feats li .check { color: var(--primary); font-weight: 800; flex-shrink: 0; }
.btn-block { width: 100%; text-align: center; }
.flat-callout {
  margin-top: 32px;
  background: var(--primary-soft);
  border: 1px dashed rgba(79, 70, 229, 0.4);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 0.92rem;
  color: var(--dark-2);
  text-align: center;
}
.price-footnote { margin-top: 16px; font-size: 0.82rem; color: var(--muted); text-align: center; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6);
  animation: pulseWa 2.4s ease-in-out infinite;
}
.wa-float:hover { text-decoration: none; transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.95); }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .bubble, .kcard, .wa-float { animation: none !important; }
  .bubble { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero.hero-split { text-align: center; }
  .hero.hero-split p.lead { margin: 0 auto 32px; }
  .hero.hero-split .hero-actions { justify-content: center; }
  .signature { margin-top: 12px; }
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
}
@media (max-width: 560px) {
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 64px 0 72px; }
  .section { padding: 64px 0; }
}
