/* ============================================================
   Serviti.ai — Marketing site stylesheet
   Clean & light. One blue accent. Cool-neutral slate scale.
   Built on the Serviti design tokens (Inter, blue-600, gentle radii).
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---------- TOKENS ---------- */
:root {
  --ink:      #0f172a;   /* primary text / headings */
  --ink-2:    #334155;   /* strong body */
  --text:     #475569;   /* body */
  --muted:    #64748b;   /* meta */
  --faint:    #94a3b8;   /* placeholders */

  --bg:       #ffffff;
  --bg-soft:  #f8fafc;   /* section tint */
  --bg-line:  #f1f5f9;
  --line:     #e2e8f0;   /* borders */
  --line-2:   #cbd5e1;

  --brand:      #2563eb;
  --brand-700:  #1d4ed8;
  --brand-600:  #2563eb;
  --brand-50:   #eff6ff;
  --brand-100:  #dbeafe;

  --green:    #16a34a;
  --green-50: #f0fdf4;
  --green-100:#dcfce7;
  --amber:    #f59e0b;
  --amber-50: #fffbeb;
  --red:      #ef4444;
  --red-50:   #fef2f2;
  --wa:       #25d366;

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --pill: 999px;

  --sh-sm: 0 1px 2px rgba(15,23,42,.06);
  --sh:    0 1px 3px rgba(15,23,42,.08), 0 1px 2px rgba(15,23,42,.04);
  --sh-md: 0 10px 24px -8px rgba(15,23,42,.12), 0 2px 6px rgba(15,23,42,.05);
  --sh-lg: 0 24px 50px -16px rgba(15,23,42,.22), 0 8px 16px -8px rgba(15,23,42,.08);

  --container: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(.4,0,.2,1); /* @kind other */
}

/* ---------- BASE ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- SECTION SCAFFOLDING ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--pill {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 6px 12px; border-radius: var(--pill);
  letter-spacing: 0.06em;
}

.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 16px 0 0;
}
.section-head p {
  font-size: 18px; color: var(--text);
  margin-top: 14px; max-width: 620px;
  text-wrap: pretty;
}
.section-head.center p { margin-left: auto; margin-right: auto; }
.text-brand { color: var(--brand); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(37,99,235,.3); }
.btn-primary:hover { background: var(--brand-700); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #1ea954; transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(15,23,42,.02); }
.nav-row {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  padding: 9px 14px; border-radius: var(--r-sm);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links > li > a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links > li > a.active { color: var(--brand); }
.nav-links .chev { width: 13px; height: 13px; opacity: .6; transition: transform .2s var(--ease); }

/* dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 320px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .2s var(--ease);
}
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd:hover .chev { transform: rotate(180deg); }
.nav-dd-menu a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 12px; border-radius: var(--r); background: none;
}
.nav-dd-menu a:hover { background: var(--bg-soft); }
.nav-dd-ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 10px; background: var(--brand-50); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.nav-dd-ic svg { width: 19px; height: 19px; }
.nav-dd-menu .t { display: block; font-weight: 600; color: var(--ink); font-size: 14.5px; }
.nav-dd-menu .d { display: block; font-size: 13px; color: var(--muted); margin-top: 1px; }

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }
.nav-login { font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 9px 14px; }
.nav-login:hover { color: var(--brand); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s var(--ease); }

/* ---------- HERO ---------- */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.03; letter-spacing: -0.035em;
}
.hero h1 .text-brand { display: inline; }
.hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--text);
  margin-top: 22px; max-width: 540px; text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px;
  margin-top: 30px; font-size: 14px; color: var(--muted);
}
.hero-trust .ti { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-100); }
.hero-trust svg { width: 16px; height: 16px; color: var(--brand); }

/* ---------- PRODUCT PROOF (chat + dashboard) ---------- */
.proof {
  position: relative;
  background: linear-gradient(180deg, #fbfcfe 0%, #f1f5fb 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 16px;
}
.proof-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 6px 12px;
}
.proof-bar .dots { display: flex; gap: 6px; }
.proof-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.proof-bar .url {
  margin-left: 6px; font-size: 12.5px; color: var(--muted);
  background: #fff; border: 1px solid var(--line);
  padding: 4px 12px; border-radius: var(--pill);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.proof-bar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--green); }
.proof-bar .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-100); animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px var(--green-100); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,.12); } }

.proof-body { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* chat panel */
.chat {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px; display: flex; flex-direction: column; gap: 9px;
}
.chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--bg-line); margin-bottom: 2px; }
.chat-av { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.chat-head .who strong { display: block; font-size: 13.5px; color: var(--ink); }
.chat-head .who span { display: block; font-size: 11.5px; color: var(--green); font-weight: 500; }
.bubble { font-size: 13px; line-height: 1.45; padding: 9px 12px; border-radius: 12px; max-width: 88%; }
.bubble.bot { background: var(--bg-soft); color: var(--ink-2); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble.user { background: var(--brand); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-captured {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  margin-top: 2px; font-size: 12px; font-weight: 600; color: var(--green);
  background: var(--green-50); border: 1px solid var(--green-100);
  padding: 6px 11px; border-radius: var(--pill);
}
.chat-captured svg { width: 14px; height: 14px; }

/* dashboard panel */
.dash {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 14px; display: flex; flex-direction: column; gap: 9px;
}
.dash-title { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; font-weight: 600; color: var(--ink); }
.dash-title span.n { color: var(--muted); font-weight: 500; }
.lead { display: flex; align-items: center; gap: 10px; padding: 9px; border: 1px solid var(--bg-line); border-radius: 10px; }
.lead b { width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; background: var(--bg-soft); color: var(--ink-2); display: flex; align-items: center; justify-content: center; font-size: 11.5px; font-weight: 700; }
.lead .meta { flex: 1; min-width: 0; }
.lead .meta strong { display: block; font-size: 13px; color: var(--ink); }
.lead .meta span { display: block; font-size: 11.5px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tag { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: var(--pill); display: inline-flex; align-items: center; gap: 5px; }
.tag::before { content: ""; width: 5px; height: 5px; border-radius: 50%; }
.tag.hot { background: var(--red-50); color: #b91c1c; } .tag.hot::before { background: var(--red); }
.tag.qual { background: var(--green-50); color: #15803d; } .tag.qual::before { background: var(--green); }
.tag.new { background: var(--brand-50); color: var(--brand-700); } .tag.new::before { background: var(--brand); }
.dash-alert { display: flex; align-items: center; gap: 9px; margin-top: 2px; padding: 9px 10px; border-radius: 10px; background: var(--green-50); }
.dash-alert .wa-ic { width: 28px; height: 28px; border-radius: 7px; background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center; }
.dash-alert .wa-ic svg { width: 16px; height: 16px; }
.dash-alert strong { display: block; font-size: 12.5px; color: var(--ink); }
.dash-alert span { display: block; font-size: 11px; color: var(--muted); }

/* ---------- LOGO / CHANNEL STRIP ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 14px; padding: 26px 0; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line);
  padding: 9px 16px; border-radius: var(--pill);
}
.chip svg { width: 16px; height: 16px; color: var(--brand); }

/* ---------- FLOW (capture / qualify / convert) ---------- */
.flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.flow-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px; position: relative; transition: box-shadow .2s var(--ease), transform .2s var(--ease);
}
.flow-step:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.flow-num { font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: 0.1em; }
.flow-ic { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(135deg,#3b82f6,#2563eb); box-shadow: 0 10px 20px -7px rgba(37,99,235,.5); color: #fff; display: flex; align-items: center; justify-content: center; margin: 14px 0 16px; }
.flow-ic svg { width: 26px; height: 26px; color: #fff; }
.flow-step.c2 .flow-ic { background: linear-gradient(135deg,#fbbf24,#f59e0b); box-shadow: 0 10px 20px -7px rgba(245,158,11,.5); }
.flow-step.c3 .flow-ic { background: linear-gradient(135deg,#22c55e,#16a34a); box-shadow: 0 10px 20px -7px rgba(22,163,74,.5); }
.flow-step h3 { font-size: 20px; margin-bottom: 8px; }
.flow-step p { font-size: 15px; }

/* ---------- PRODUCT CARDS ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; transition: box-shadow .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--line-2); }
.card.featured { border-color: var(--brand-100); box-shadow: 0 0 0 1px var(--brand-100), var(--sh); }
.card-ic { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(135deg,#3b82f6,#2563eb); box-shadow: 0 10px 20px -7px rgba(37,99,235,.5); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-ic svg { width: 26px; height: 26px; color: #fff; }
.card.c2 .card-ic { background: linear-gradient(135deg,#6366f1,#4f46e5); box-shadow: 0 10px 20px -7px rgba(79,70,229,.5); }
.card.c3 .card-ic { background: linear-gradient(135deg,#22c55e,#16a34a); box-shadow: 0 10px 20px -7px rgba(22,163,74,.5); }
.card h3 { font-size: 21px; margin-bottom: 4px; }
.card .tagline { font-size: 13px; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.card > p { font-size: 15px; margin-bottom: 18px; }
.card-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.card-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.card-list svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 1px; }
.card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px; color: var(--brand); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(3px); }

/* ---------- CHANNELS ---------- */
.channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.channel { text-align: center; padding: 28px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.channel:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.channel-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.channel-ic svg { width: 27px; height: 27px; }
.channel.c-print .channel-ic { background: #fff7ed; color: #ea580c; }
.channel.c-wa .channel-ic { background: var(--green-100); color: var(--green); }
.channel.c-web .channel-ic { background: var(--brand-50); color: var(--brand); }
.channel.c-ad .channel-ic { background: #faf5ff; color: #9333ea; }
.channel h4 { font-size: 16px; margin-bottom: 6px; }
.channel p { font-size: 14px; }

/* ---------- FEATURE / WHY GRID ---------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); }
.why-ic { width: 50px; height: 50px; border-radius: 14px; background: linear-gradient(135deg,#3b82f6,#2563eb); box-shadow: 0 10px 20px -7px rgba(37,99,235,.5); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-ic svg { width: 24px; height: 24px; color: #fff; }
.why-card:nth-child(2) .why-ic { background: linear-gradient(135deg,#fb923c,#ea580c); box-shadow: 0 10px 20px -7px rgba(234,88,12,.5); }
.why-card:nth-child(3) .why-ic { background: linear-gradient(135deg,#6366f1,#4f46e5); box-shadow: 0 10px 20px -7px rgba(79,70,229,.5); }
.why-card:nth-child(4) .why-ic { background: linear-gradient(135deg,#22c55e,#16a34a); box-shadow: 0 10px 20px -7px rgba(22,163,74,.5); }
.why-card:nth-child(5) .why-ic { background: linear-gradient(135deg,#a78bfa,#7c3aed); box-shadow: 0 10px 20px -7px rgba(124,58,237,.5); }
.why-card:nth-child(6) .why-ic { background: linear-gradient(135deg,#fbbf24,#f59e0b); box-shadow: 0 10px 20px -7px rgba(245,158,11,.5); }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { font-size: 15px; }

/* ---------- SPLIT (image/mock + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-copy h2 { font-size: clamp(26px, 3vw, 36px); margin: 14px 0 0; }
.split-copy p { font-size: 17px; margin-top: 14px; }
.split-list { margin-top: 22px; display: flex; flex-direction: column; gap: 13px; }
.split-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--ink-2); }
.split-list svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 1px; }

/* ---------- BIG DASHBOARD MOCK ---------- */
.dashboard-frame {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); overflow: hidden;
}
.df-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.df-bar .dots { display: flex; gap: 6px; }
.df-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.df-bar .url { margin-left: 6px; font-size: 12px; color: var(--muted); font-family: ui-monospace, Menlo, monospace; }
.df-bar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--green); }
.df-bar .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.df-stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink); }
.df-stat { padding: 20px 22px; border-right: 1px solid rgba(255,255,255,.07); }
.df-stat:last-child { border-right: 0; }
.df-stat .num { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.df-stat .num.blue { color: #93c5fd; } .df-stat .num.green { color: #4ade80; } .df-stat .num.amber { color: #fcd34d; } .df-stat .num.purple { color: #c4b5fd; }
.df-stat .lbl { font-size: 12px; color: #94a3b8; margin-top: 7px; }
.df-table { width: 100%; border-collapse: collapse; }
.df-table th { text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); padding: 12px 22px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.df-table td { padding: 14px 22px; border-bottom: 1px solid var(--bg-line); font-size: 14px; vertical-align: middle; }
.df-table tr:last-child td { border-bottom: 0; }
.df-table .nm { font-weight: 600; color: var(--ink); }
.df-table .ph { font-size: 12px; color: var(--muted); margin-top: 2px; }
.df-table .q { color: var(--ink-2); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: var(--r-xl);
  padding: 56px; color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.cta-band-grid { position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 38px); }
.cta-band p { color: #dbeafe; font-size: 18px; margin-top: 12px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn-primary { background: #fff; color: var(--brand-700); box-shadow: none; }
.cta-band .btn-primary:hover { background: #f1f5f9; }
.cta-band .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* compact inline CTA */
.cta-inline { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-inline .t { font-size: 20px; font-weight: 700; color: var(--ink); }

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-header { padding: 64px 0 56px; text-align: center; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-header h1 { font-size: clamp(34px, 4.4vw, 52px); margin: 18px 0 0; }
.page-header p { font-size: 19px; max-width: 640px; margin: 16px auto 0; text-wrap: pretty; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-md); padding: 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line-2);
  border-radius: var(--r-sm); background: #fff; font-size: 15px; color: var(--ink);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-100); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

.contact-side { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 16px; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.contact-item .ci { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-item .ci svg { width: 22px; height: 22px; }
.contact-item.wa .ci { background: var(--green-100); color: var(--green); }
.contact-item.ph .ci { background: var(--brand-50); color: var(--brand); }
.contact-item.em .ci { background: #faf5ff; color: #9333ea; }
.contact-item.lo .ci { background: var(--amber-50); color: var(--amber); }
.contact-item .ct strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.contact-item .ct a, .contact-item .ct span { display: block; font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 3px; }
.contact-item .ct a:hover { color: var(--brand); }
.contact-item .ct p { font-size: 14px; color: var(--text); margin-top: 3px; }

.qr-card { background: var(--ink); border-radius: var(--r-lg); padding: 24px; display: flex; align-items: center; gap: 20px; color: #fff; }
.qr-card img { width: 104px; height: 104px; border-radius: 10px; background: #fff; padding: 7px; }
.qr-card .qt strong { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #93c5fd; }
.qr-card .qt h4 { color: #fff; font-size: 18px; margin: 6px 0 4px; }
.qr-card .qt p { font-size: 13.5px; color: #cbd5e1; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: #cbd5e1; padding: 56px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 34px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: #94a3b8; max-width: 280px; }
.footer-col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: #94a3b8; transition: color .15s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; }
.footer-bot span { font-size: 13px; color: #64748b; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; color: #94a3b8; transition: .15s var(--ease); }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- SCROLL REVEAL ---------- */
/* Only hide when JS is active (html.js-reveal). No JS = always visible. */
.js-reveal [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js-reveal [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  .proof-bar .live i, .df-bar .live i { animation: none; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 52px 0 64px; }
  .split, .contact-grid, .cta-band-grid { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .flow, .cards, .why { grid-template-columns: 1fr 1fr; }
  .channels { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px; border-bottom: 1px solid var(--line); box-shadow: var(--sh-md); gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 14px; }
  .nav-dd-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 0 12px; min-width: 0; }
  .nav-cta { margin: 8px 0 0; }
  .hamburger { display: flex; }
  .flow, .cards, .why, .channels { grid-template-columns: 1fr; }
  .cta-band, .form-card { padding: 32px 24px; }
  .cta-inline { flex-direction: column; align-items: flex-start; }
  .df-stats { grid-template-columns: 1fr 1fr; }
  .df-stat { border-bottom: 1px solid rgba(255,255,255,.07); }
  .proof-body { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS / CONTACT EXTRAS
   ============================================================ */

/* horizontal flow strip */
.flow-strip { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.flow-strip .fs { flex: 1 1 200px; padding: 24px; border-right: 1px solid var(--line); }
.flow-strip .fs:last-child { border-right: 0; }
.flow-strip .fs.primary { background: var(--brand-50); }
.flow-strip .fs-ic { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #fff; }
.flow-strip .fs-ic svg { width: 27px; height: 27px; color: #fff; }
.flow-strip .fs.c1 .fs-ic { background: linear-gradient(135deg,#3b82f6,#2563eb); box-shadow: 0 10px 20px -7px rgba(37,99,235,.55); }
.flow-strip .fs.c2 .fs-ic { background: linear-gradient(135deg,#6366f1,#4f46e5); box-shadow: 0 10px 20px -7px rgba(79,70,229,.55); }
.flow-strip .fs.c3 .fs-ic { background: linear-gradient(135deg,#22c55e,#16a34a); box-shadow: 0 10px 20px -7px rgba(22,163,74,.55); }
.flow-strip .fs.c4 .fs-ic { background: linear-gradient(135deg,#fb923c,#ea580c); box-shadow: 0 10px 20px -7px rgba(234,88,12,.55); }
.flow-strip .fs strong { display: block; font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.flow-strip .fs span { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.45; }
@media (max-width: 760px) { .flow-strip .fs { border-right: 0; border-bottom: 1px solid var(--line); } .flow-strip .fs:last-child { border-bottom: 0; } }

/* process timeline */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.process-step { position: relative; padding-top: 8px; }
.process-step .pn { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 17px; margin-bottom: 16px; box-shadow: var(--sh-sm); }
.process-step h3 { font-size: 18px; margin-bottom: 7px; }
.process-step p { font-size: 14.5px; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 22px; left: 56px; right: -12px; height: 1px; background: var(--line); }
@media (max-width: 980px) { .process { grid-template-columns: 1fr 1fr; } .process-step::after { display: none; } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }

/* alert mock cards */
.alert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.alert-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.alert-card .ah { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--bg-line); }
.alert-card .ah .ic { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alert-card.wa .ah .ic { background: var(--green-100); color: var(--green); }
.alert-card.em .ah .ic { background: var(--brand-50); color: var(--brand); }
.alert-card .ah .ic svg { width: 20px; height: 20px; }
.alert-card .ah strong { display: block; font-size: 15px; color: var(--ink); }
.alert-card .ah span { display: block; font-size: 13px; color: var(--muted); }
/* whatsapp body */
.wa-body { background: #e7 ; background: #efeae2; padding: 18px; }
.wa-bubble { background: #d9fdd3; border-radius: 10px; border-top-left-radius: 3px; padding: 12px 14px; font-size: 13.5px; line-height: 1.5; color: var(--ink); box-shadow: 0 1px 1px rgba(0,0,0,.05); }
.wa-bubble .wt { display: inline-block; background: rgba(255,255,255,.7); color: #075e54; font-size: 10.5px; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-bottom: 8px; letter-spacing: .02em; }
.wa-bubble ul { margin: 8px 0 0; display: flex; flex-direction: column; gap: 4px; }
.wa-bubble li { display: flex; justify-content: space-between; font-size: 12.5px; }
.wa-bubble li span { color: #5b6b63; } .wa-bubble li strong { color: var(--ink); }
.wa-bubble .time { display: block; text-align: right; font-size: 10.5px; color: #667781; margin-top: 6px; }
/* email body */
.em-body { padding: 18px 20px; }
.em-body .es { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.em-body .er { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--bg-line); font-size: 13.5px; }
.em-body .er:last-child { border-bottom: 0; } .em-body .er span { color: var(--muted); } .em-body .er strong { color: var(--ink); }
@media (max-width: 760px) { .alert-grid { grid-template-columns: 1fr; } }

/* phone chat mock */
.phone { max-width: 320px; margin: 0 auto; background: var(--ink); border-radius: 28px; padding: 10px; box-shadow: var(--sh-lg); }
.phone-inner { background: #fff; border-radius: 20px; overflow: hidden; }
.phone-bar { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--brand); color: #fff; }
.phone-bar .pa { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.phone-bar strong { display: block; font-size: 14px; }
.phone-bar span { display: block; font-size: 11.5px; opacity: .85; }
.phone-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); min-height: 300px; }
.phone-foot { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; border-top: 1px solid var(--line); background: #fff; color: var(--faint); font-size: 13.5px; }
.phone-foot svg { width: 18px; height: 18px; color: var(--brand); }

/* includes panel */
.includes { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 40px; align-items: center; }
.includes-aside { background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: var(--r-lg); padding: 28px; }
.includes-aside .lab { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }
.includes-aside h3 { font-size: 22px; margin: 10px 0; }
.includes-aside p { font-size: 14.5px; }
.includes-aside .btn { margin-top: 18px; }
@media (max-width: 760px) { .includes { grid-template-columns: 1fr; padding: 28px; } }

/* plan note */
.plan-note { background: var(--bg-soft); border: 1px dashed var(--line-2); border-radius: var(--r-lg); padding: 32px; text-align: center; max-width: 760px; margin: 0 auto; }
.plan-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.plan-pills .pp { font-size: 14px; font-weight: 600; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 8px 18px; border-radius: var(--pill); }
.plan-pills .pp.mid { border-color: var(--brand); color: var(--brand); }
