/* =====================================================
   Authentelligence — brand system
   Blue ramp sampled from the droplet logo:
   cyan #6ce8ff → brand #2f88d0 → deep #3a74ae / #1f5c99
   ===================================================== */

:root {
  /* brand blues */
  --cyan-300: #6ce8ff;
  --blue-400: #49a8e0;
  --blue-500: #2f88d0;   /* primary brand blue */
  --blue-600: #2570b3;   /* deep section blue  */
  --blue-700: #1f5c99;   /* darkest allowed surface */
  --drop-deep: #3a74ae;

  /* cool, blue-leaning neutrals */
  --ink-50:  #f5f8fb;
  --ink-100: #edf2f8;
  --ink-200: #dde6ef;
  --ink-300: #c2cfdd;
  --ink-400: #8da0b5;
  --ink-500: #63788e;
  --ink-600: #45586c;
  --ink-700: #2e3d4e;
  --ink-800: #1e2833;
  --ink-900: #14181e;

  --bg: #fbfdfe;
  --bg-tint: #f2f7fc;

  --gradient-brand: linear-gradient(135deg, #6ce8ff 0%, #2f88d0 55%, #1f5c99 100%);
  --gradient-soft: linear-gradient(135deg, rgba(108,232,255,.35), rgba(47,136,208,.28) 55%, rgba(31,92,153,.22));

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-card: 0 1px 2px rgba(20,24,30,.04), 0 12px 32px -12px rgba(31,92,153,.14);
  --shadow-pop: 0 2px 6px rgba(20,24,30,.06), 0 24px 60px -20px rgba(31,92,153,.28);

  --font-head: "General Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1200px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

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

.section { padding: 110px 0; }
.section-tint { background: var(--bg-tint); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head .sub { margin-top: 18px; color: var(--ink-500); font-size: 1.06rem; }
.section-head h2 { margin-top: 18px; }

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  color: var(--ink-800);
}
.badge-line { border: 1px solid var(--blue-400); color: var(--ink-800); background: #fff; }
.badge-glass {
  background: rgba(255,255,255,.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 10px rgba(31,92,153,.08);
}
.badge-ghost {
  border: 1px solid rgba(255,255,255,.38); color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.08);
}
.badge-spark { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 12px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; }
.btn-light { background: #fff; color: var(--ink-900); border: 1px solid var(--ink-200); }
.btn-light:hover { border-color: var(--ink-300); box-shadow: 0 8px 20px -10px rgba(31,92,153,.25); }
.btn-grad {
  background: var(--gradient-brand); color: #fff;
  box-shadow: 0 14px 34px -12px rgba(47,136,208,.55);
}
.btn-grad:hover { filter: brightness(1.06); }
.btn.block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* =====================================================
   NAV
   ===================================================== */
.nav-wrap {
  position: fixed; inset: 18px 0 auto; z-index: 100;
  display: flex; justify-content: center; padding: 0 24px;
  transition: inset .25s ease;
}
.nav {
  width: 100%; max-width: var(--container);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 16px;
  padding: 10px 12px 10px 20px;
  box-shadow: 0 8px 30px -12px rgba(31,92,153,.18);
  transition: box-shadow .25s ease;
}
.nav-wrap.scrolled { inset: 10px 0 auto; }
.nav-wrap.scrolled .nav { box-shadow: 0 14px 40px -14px rgba(31,92,153,.3); }
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--ink-600);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--blue-500); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 10px; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink-900); border-radius: 2px; }

/* =====================================================
   HERO
   ===================================================== */
.hero { position: relative; padding: 160px 0 110px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 84%, var(--bg) 100%);
}
.hero-inner { display: flex; flex-direction: column; gap: 56px; }
.hero-copy { max-width: 760px; }
.hero-copy h1 { margin: 22px 0 20px; color: #fff; }
.hero-copy .lead {
  font-size: 1.13rem; color: #fff; max-width: 540px; margin-bottom: 30px;
}

/* glass chat mockup */
.hero-app {
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 44px);
  box-shadow: var(--shadow-pop);
}
.chat-card { max-width: 720px; margin: 0 auto; display: grid; gap: 18px; }
.chat-video video {
  display: block; width: 100%; height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  background: var(--ink-900);
}

.chat-video {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-card);
  background: #0b1622; line-height: 0;
}
.chat-video video { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.chat-row { display: flex; gap: 10px; align-items: flex-start; }
.chat-row.user { justify-content: flex-end; }
.bubble {
  padding: 12px 16px; border-radius: 14px; font-size: .92rem; line-height: 1.5;
  max-width: 78%;
}
.bubble-user { background: var(--ink-50); border: 1px solid var(--ink-100); border-top-right-radius: 4px; }
.bubble-bot { background: #fff; border: 1px solid var(--ink-100); border-top-left-radius: 4px; box-shadow: var(--shadow-card); }
.bubble.sm { font-size: .85rem; padding: 10px 13px; }

.avatar {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 600; overflow: hidden;
}
.avatar.sm { width: 28px; height: 28px; font-size: .62rem; }
.avatar.xs { width: 24px; height: 24px; font-size: .55rem; }
.avatar-photo { background: linear-gradient(135deg, #d8ecf9, #a8d3f0); color: var(--blue-700); }
.avatar-photo.alt { background: linear-gradient(135deg, #cfe6f8, #7fc0ec); }
.avatar-photo.alt2 { background: linear-gradient(135deg, #e3f4fd, #bcdcf4); }
.avatar-brand { background: #fff; border: 1px solid var(--ink-100); padding: 5px; }
.avatar-brand img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.avatar-q { background: var(--gradient-soft); color: var(--blue-700); width: 44px; height: 44px; }

/* prompt bar */

.send-btn {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient-brand);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -6px rgba(47,136,208,.55);
  transition: transform .15s ease;
}
.send-btn:hover { transform: scale(1.06); }
.send-btn.sm { width: 32px; height: 32px; }

/* =====================================================
   FEATURE GRID
   ===================================================== */
.feature-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
}
.feature-grid .feature-card:nth-child(1) { grid-column: span 5; }
.feature-grid .feature-card:nth-child(2) { grid-column: span 7; }
.feature-grid .feature-card:nth-child(3) { grid-column: span 7; }
.feature-grid .feature-card:nth-child(4) { grid-column: span 5; }
.feature-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.feature-visual {
  position: relative; min-height: 260px; margin: 10px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fv-a { background: radial-gradient(120% 130% at 15% 10%, #eafaff 0%, #bfe8fb 40%, #5fb1e6 100%); }
.fv-b { background: radial-gradient(130% 120% at 85% 8%, #f0fbff 0%, #cfeafa 45%, #77b9e8 100%); }
.fv-c { background: radial-gradient(130% 130% at 12% 90%, #d8f2fd 0%, #9fd4f3 55%, #4f9ad9 100%); }
.fv-d { background: radial-gradient(130% 120% at 88% 88%, #e6f7ff 0%, #b7e2f9 50%, #3f8fd2 100%); }

.feature-body { padding: 22px 26px 30px; }
.feature-body h3 { margin-bottom: 8px; }
.feature-body p { color: var(--ink-500); font-size: .95rem; }

.fv-shot {
  width: 80%; max-width: 360px; max-height: 172px;
  height: auto; object-fit: contain;
  transform: translateY(-22px);
  filter: drop-shadow(0 18px 30px rgba(16, 58, 96, .28));
}
.fv-training {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 999px; padding: 10px 14px;
  display: flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: .84rem; font-weight: 500; box-shadow: var(--shadow-pop);
}


.fv-spark {
  width: 26px; height: 26px; border-radius: 50%; background: var(--gradient-brand);
  color: #fff; font-size: .7rem; display: inline-flex; align-items: center; justify-content: center;
}

.fv-panel {
  background: #fff; border-radius: 14px; padding: 20px;
  width: min(320px, 82%); box-shadow: var(--shadow-pop);
}
.fv-panel h4 { font-size: .98rem; margin-bottom: 14px; }

.skeleton { display: block; height: 8px; border-radius: 4px; background: var(--ink-100); }
.w-40 { width: 40%; } .w-64 { width: 64%; } .w-72 { width: 72%; }
 .w-90 { width: 90%; }
.fv-generate {
  display: inline-flex; justify-content: center; width: 100%;
  background: var(--ink-900); color: #fff; border-radius: 10px;
  padding: 10px; font-size: .85rem; font-weight: 600;
}
.fv-generate.grad { background: var(--gradient-brand); }

.fv-email { display: grid; gap: 10px; }
.fv-email-row {
  display: flex; gap: 10px; font-size: .8rem;
  border-bottom: 1px solid var(--ink-100); padding-bottom: 8px;
}
.fv-label { color: var(--ink-400); width: 52px; flex: none; }
.fv-value { color: var(--ink-800); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fv-email-body { display: grid; gap: 8px; padding: 6px 0 2px; }

.fv-chart { display: grid; gap: 16px; }
.fv-chart-head { display: flex; justify-content: space-between; align-items: baseline; font-size: .82rem; color: var(--ink-500); }
.fv-chart-head strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--ink-900); }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; }
.bars i {
  flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px;
  background: var(--ink-100);
}
.bars i.hot { background: var(--gradient-brand); }

/* =====================================================
   POWER ROWS
   ===================================================== */
.power-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(24px, 5vw, 72px);
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-card);
}
.power-row + .power-row { margin-top: 28px; }
.power-copy h3 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); margin-bottom: 14px; }
.power-copy p { color: var(--ink-500); margin-bottom: 26px; max-width: 46ch; }
.icon-list { display: grid; gap: 14px; }
.icon-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .98rem; }
.icon-chip {
  flex: none; width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid var(--ink-200); background: var(--ink-50);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--blue-600);
}
.icon-chip svg { width: 16px; height: 16px; }

.power-visual { min-height: 320px; border-radius: 18px; position: relative; overflow: hidden; }
.pv-board { background: radial-gradient(140% 140% at 20% 0%, #6ce8ff 0%, #2f88d0 55%, #1f5c99 100%); }

.grad-a { background: linear-gradient(135deg, #6ce8ff, #2f88d0); }
.grad-b { background: linear-gradient(135deg, #2f88d0, #1f5c99); }
.grad-c { background: linear-gradient(135deg, #8fd9f5, #3a74ae); }

/* row 2 — deep blue card */
.power-blue { background: var(--blue-600); border-color: var(--blue-600); }
.power-blue .power-copy h3 { color: #fff; }
.power-blue .power-copy p { color: rgba(255,255,255,.78); }
.icon-list.light li { color: #fff; }
.icon-list.light .icon-chip {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff;
}
.pv-env { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }

.env-glow {
  position: absolute; inset: auto -20% -55% -20%; height: 130%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(108,232,255,.7) 0%, rgba(47,136,208,.35) 45%, transparent 75%);
  filter: blur(10px);
}

.pv-flow {
  background: radial-gradient(130% 130% at 85% 10%, #eafaff 0%, #c4e7fa 45%, #5aa8e0 100%);
  display: flex; align-items: center; justify-content: center;
}

.flow-ico {
  width: 22px; height: 22px; border-radius: 7px; color: #fff; font-size: .65rem;
  display: inline-flex; align-items: center; justify-content: center;
}


/* =====================================================
   MINI GRAPHICS (GHL flow · SERP · pipeline · agents)
   ===================================================== */

/* -- GoHighLevel automation flow (feature card) -- */
.ghl-flow { display: flex; align-items: center; width: 100%; padding: 0 20px; }
.ghl-card {
  flex: 1; min-width: 0; background: #fff; border-radius: 12px;
  padding: 13px 14px; box-shadow: var(--shadow-pop);
  display: grid; gap: 9px; align-content: start;
}
.ghl-head { display: flex; align-items: center; gap: 8px; min-width: 0; }
.ghl-head strong { display: block; font-size: .76rem; line-height: 1.2; }
.ghl-head small { color: var(--ink-500); font-size: .66rem; white-space: nowrap; }
.ghl-title { font-size: .76rem; line-height: 1.25; }
.ghl-list { display: grid; gap: 6px; }
.ghl-list li {
  position: relative; padding-left: 20px; font-size: .7rem; font-weight: 500;
  color: var(--ink-600); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ghl-list li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px; border-radius: 50%; background: var(--blue-500);
}
.ghl-list li::after {
  content: ""; position: absolute; left: 3.5px; top: 50%;
  width: 5px; height: 3px; border-left: 1.6px solid #fff; border-bottom: 1.6px solid #fff;
  transform: translateY(-70%) rotate(-45deg);
}
.ghl-link { flex: none; width: 20px; height: 2px; background: rgba(255,255,255,.95); position: relative; }
.ghl-link::after {
  content: ""; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  border-left: 6px solid rgba(255,255,255,.95);
  border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent;
}

/* -- Google SERP mockup (Getting Found row) -- */
.serp { position: absolute; inset: 0; padding: 26px; display: grid; gap: 12px; align-content: center; }
.serp-bar {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 999px; padding: 10px 16px;
  font-size: .85rem; font-weight: 500; color: var(--ink-600);
  box-shadow: var(--shadow-pop);
}
.serp-g { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--blue-500); }
.serp-q { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.serp-bar svg { margin-left: auto; flex: none; color: var(--blue-500); }
.serp-hit {
  position: relative; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 12px; padding: 12px 14px;
  box-shadow: var(--shadow-pop);
}
.serp-hit.dim { background: rgba(255,255,255,.5); box-shadow: none; }
.serp-hit.dim .serp-rank { background: rgba(255,255,255,.75); color: var(--ink-500); }
.serp-rank {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gradient-brand); color: #fff;
  font-weight: 700; font-size: .75rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.serp-body { flex: 1; min-width: 0; display: grid; gap: 5px; }
.serp-body strong { font-size: .8rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.serp-body small { font-size: .7rem; color: var(--ink-500); }
.stars { color: #f0b429; letter-spacing: 1px; }
.serp-tag {
  position: absolute; top: -9px; right: 12px;
  background: var(--gradient-brand); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .03em;
  padding: 3px 9px; border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(31,92,153,.6);
}

/* -- Kanban pipeline (blue row) -- */
.pipe {
  position: absolute; inset: 0; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding: 24px; align-content: center;
}
.pipe-col {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 10px; display: grid; gap: 8px; align-content: start;
}
.pipe-label {
  display: flex; justify-content: space-between; align-items: center; gap: 4px;
  color: rgba(255,255,255,.85); font-size: .64rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; padding: 2px 2px 3px;
  white-space: nowrap; overflow: hidden;
}
.pipe-label i { font-style: normal; background: rgba(255,255,255,.18); border-radius: 999px; padding: 1px 7px; font-size: .62rem; flex: none; }
.pipe-card {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border-radius: 9px; padding: 9px 10px;
  font-size: .72rem; font-weight: 600; color: var(--ink-800);
  box-shadow: 0 6px 16px -8px rgba(10,40,70,.5);
  white-space: nowrap; overflow: hidden;
}
.pipe-card.done { background: var(--gradient-brand); color: #fff; }
.pipe-card.ghost { background: transparent; border: 1.5px dashed rgba(255,255,255,.35); box-shadow: none; min-height: 34px; }
.pipe-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; }
.d1 { background: var(--cyan-300); }
.d2 { background: var(--blue-400); }
.d3 { background: #8fd9f5; }

/* -- Custom agent cards (AI OS row) -- */
.agents { display: grid; gap: 12px; width: min(340px, 86%); }
.agents-label {
  justify-self: start;
  background: rgba(255,255,255,.85); color: var(--blue-700);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 2px;
}
.agent-card {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border-radius: 13px; padding: 12px 15px;
  box-shadow: var(--shadow-pop);
}
.agent-card .flow-ico { width: 28px; height: 28px; border-radius: 9px; font-size: .8rem; }
.agent-card strong { display: block; font-size: .82rem; line-height: 1.25; }
.agent-card small { color: var(--ink-500); font-size: .7rem; }
.agent-card.a2 { transform: translateX(18px); }
.agent-card.a3 { transform: translateX(36px); }

/* =====================================================
   BOOKING EMBED
   ===================================================== */
.booking-card {
  background: #fff; border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(10px, 2vw, 20px);
  overflow: hidden;
}
.booking-card iframe {
  display: block; width: 100%; min-height: 720px; border: 0;
}
@media (max-width: 768px) {
  .booking-card iframe { min-height: 900px; }
}

/* Fallback link — hidden unless the widget fails to load. */
.booking-fallback { display: none; }
.booking-card.is-blocked iframe { display: none; }
.booking-card.is-blocked .booking-fallback {
  display: grid; justify-items: center; gap: 14px;
  padding: clamp(30px, 5vw, 52px) 20px;
  text-align: center;
}

/* =====================================================
   PILL MARQUEE
   ===================================================== */
.marquee-pills { overflow: hidden; padding: 26px 0; background: var(--bg); }
.marquee-track {
  display: flex; align-items: center; gap: 18px; width: max-content;
  animation: marquee 30s linear infinite;
}
.m-pill {
  white-space: nowrap; background: #fff; border: 1px solid var(--ink-200);
  border-radius: 999px; padding: 12px 26px; font-weight: 600; font-size: 1rem;
  color: var(--ink-800); box-shadow: var(--shadow-card);
}
.m-dot { color: var(--blue-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =====================================================
   STATEMENT (blue section)
   ===================================================== */
.statement {
  background:
    radial-gradient(120% 160% at 85% -10%, rgba(108,232,255,.35) 0%, transparent 50%),
    linear-gradient(160deg, var(--blue-600) 0%, var(--blue-700) 100%);
  padding: 150px 0;
  text-align: center;
}
.statement-text {
  margin: 34px auto 0; max-width: 880px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: -0.015em;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.3; color: #fff;
}
.statement-text .w { opacity: .22; transition: opacity .35s ease; }
.statement-text .w.on { opacity: 1; }

/* =====================================================
   WHY CHOOSE
   ===================================================== */
.why-card {
  display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: clamp(24px, 4vw, 56px);
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-card);
  align-items: center;
}
.why-col { display: grid; gap: 38px; }
.why-item h4 { margin: 12px 0 6px; font-size: 1.05rem; }
.why-item p { color: var(--ink-500); font-size: .9rem; }
.why-ico {
  display: inline-flex; width: 34px; height: 34px; border-radius: 10px;
  background: var(--ink-50); border: 1px solid var(--ink-100);
  align-items: center; justify-content: center; color: var(--blue-600);
}
.why-ico svg { width: 18px; height: 18px; }

.why-center {
  background: var(--gradient-brand);
  border-radius: 20px; padding: clamp(18px, 2.5vw, 34px);
  min-height: 420px; display: flex; align-items: center;
}
.why-chat { display: grid; gap: 12px; width: 100%; }
.bubble.detail {
  max-width: 100%; font-size: .88rem; display: grid; gap: 8px;
  border-bottom: 3px solid var(--blue-400);
}
.detail-steps { color: var(--ink-400); font-size: .74rem; line-height: 1.5; }
.detail-done { color: var(--blue-500); font-size: .85rem; }
.why-input {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 999px; padding: 8px 8px 8px 10px;
  font-size: .88rem; color: var(--ink-800); font-weight: 500;
  box-shadow: var(--shadow-pop);
}
.why-input .send-btn { margin-left: auto; }

.security-card {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  box-shadow: var(--shadow-card);
}
.security-card h3 { margin-bottom: 8px; }
.security-card p { color: var(--ink-500); max-width: 46ch; }
.sec-badges { display: flex; gap: 16px; }
.sec-badge {
  width: 74px; height: 74px; border-radius: 50%; flex: none;
  background: var(--gradient-brand);
  color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: .02em;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: inset 0 2px 8px rgba(255,255,255,.45), 0 12px 26px -10px rgba(47,136,208,.55);
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { position: relative; padding: 120px 0; overflow: hidden; }
.sky {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 15% 20%, rgba(108,232,255,.5) 0%, transparent 60%),
    radial-gradient(55% 50% at 85% 30%, rgba(255,255,255,.9) 0%, transparent 65%),
    radial-gradient(70% 60% at 60% 95%, rgba(47,136,208,.42) 0%, transparent 60%),
    radial-gradient(45% 45% at 30% 80%, rgba(165,225,250,.8) 0%, transparent 60%),
    linear-gradient(180deg, #eaf7fe 0%, #cfeafc 50%, #a9d7f4 100%);
}
.testimonials .section-head { margin-bottom: 48px; }

.quote-carousel {
  display: flex; align-items: center; gap: 18px; justify-content: center;
}
.q-arrow {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink-800);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); transition: transform .15s ease;
}
.q-arrow:hover { transform: scale(1.08); }
.quote-window { overflow: hidden; max-width: 640px; border-radius: var(--radius-lg); }
.quote-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.quote-card {
  flex: 0 0 100%;
  background: rgba(255,255,255,.92); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-pop);
}
.quote-card blockquote {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 500; line-height: 1.55;
  letter-spacing: -0.01em; margin-bottom: 26px;
}
.quote-card figcaption { display: flex; align-items: center; gap: 13px; }
.quote-card small { display: block; color: var(--ink-500); }

.stats {
  display: flex; justify-content: center; gap: clamp(32px, 7vw, 96px);
  margin: 56px 0 44px; text-align: center;
}
.stat strong { font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 600; }
.stat span { display: block; color: var(--ink-600); font-size: .92rem; }

.logo-row {
  display: flex; justify-content: center; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap;
  color: var(--ink-600); opacity: .75;
}
.fake-logo { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }

/* =====================================================
   PROCESS
   ===================================================== */

/* =====================================================
   PRICING
   ===================================================== */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-card); display: grid; gap: 18px;
}
.price-card header { display: flex; align-items: center; gap: 10px; }
.price-card h3 { font-size: 1.3rem; }
.plan-spark {
  color: var(--blue-500); font-size: 1.1rem;
}
.pop-tag {
  background: var(--ink-900); color: #fff; font-size: .72rem; font-weight: 600;
  border-radius: 999px; padding: 4px 11px;
}
.plan-note { color: var(--ink-500); font-size: .92rem; margin-top: -8px; }
.price strong { font-family: var(--font-head); font-size: 2.6rem; font-weight: 600; letter-spacing: -.02em; }
.price span { color: var(--ink-400); font-size: .85rem; }
.included { font-size: .85rem; font-weight: 600; color: var(--ink-500); }
.plan-list { display: grid; gap: 12px; }
.plan-list li {
  position: relative; padding-left: 26px; font-size: .93rem; font-weight: 500;
}
.plan-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card.popular {
  position: relative; border-color: transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(108,232,255,.9), rgba(47,136,208,.9), rgba(31,92,153,.7)) border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow-pop);
}

/* =====================================================
   DEMO MARQUEE
   ===================================================== */

/* =====================================================
   FAQ
   ===================================================== */
.faq-card {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(28px, 5vw, 72px);
  background: #fff; border: 1px solid var(--ink-100); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 56px); box-shadow: var(--shadow-card);
}
.faq-intro h2 { margin: 18px 0 34px; font-size: clamp(1.7rem, 2.6vw, 2.3rem); }
.faq-intro h4 { margin-bottom: 8px; }
.faq-intro p { color: var(--ink-500); }
.faq-intro p strong { color: var(--ink-900); }
.faq-avatars { display: flex; margin-top: 18px; }
.faq-avatars .avatar { margin-right: -8px; border: 2px solid #fff; }

.faq-list { display: grid; gap: 12px; align-content: start; }
.faq-item {
  background: var(--ink-50); border: 1px solid var(--ink-100); border-radius: 14px;
  padding: 0 22px; overflow: hidden;
  transition: background .2s ease;
}
.faq-item[open] { background: #fff; box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; flex: none; width: 16px; height: 16px; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; inset: 50% auto auto 0;
  width: 16px; height: 2px; background: var(--ink-900); border-radius: 2px;
  transition: transform .25s ease;
}
.faq-x::after { transform: rotate(90deg); }
.faq-item[open] .faq-x::after { transform: rotate(45deg); }
.faq-item[open] .faq-x::before { transform: rotate(-45deg); }
.faq-item p { color: var(--ink-500); padding-bottom: 20px; font-size: .95rem; max-width: 62ch; }

/* =====================================================
   BLOG
   ===================================================== */

/* =====================================================
   FOOTER (deep blue)
   ===================================================== */
.footer {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(90% 70% at 90% 10%, rgba(108,232,255,.25) 0%, transparent 55%),
    linear-gradient(160deg, var(--blue-600) 0%, var(--blue-700) 70%);
  padding: 110px 0 36px;
}
.cta-block {
  display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 32px;
  padding-bottom: 90px;
}
.cta-copy h2 { color: #fff; margin: 20px 0 34px; }

.footer-rule { border: 0; border-top: 1px solid rgba(255,255,255,.18); }

.footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding: 64px 0 40px;
}
.footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { margin: 16px 0 22px; color: rgba(255,255,255,.72); }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); transition: all .2s ease;
}
.socials a:hover { background: rgba(255,255,255,.14); }
.socials svg { width: 16px; height: 16px; }

.footer-nav { display: grid; gap: 12px; align-content: start; }
.footer-nav h5 {
  font-family: var(--font-head); font-size: .95rem; font-weight: 600;
  color: #fff; margin-bottom: 6px;
}
.footer-nav a { color: rgba(255,255,255,.7); font-size: .93rem; transition: color .15s; }
.footer-nav a:hover { color: #fff; }

.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 26px;
  color: rgba(255,255,255,.66); font-size: .88rem;
}
.footer-base a:hover { color: #fff; }

/* =====================================================
   REVEAL
   ===================================================== */
/* Scoped to .js so content is never hidden when scripts don't run. */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track{ animation: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid .feature-card { grid-column: auto !important; }
  .why-card { grid-template-columns: 1fr 1fr; }
  .why-center { grid-column: 1 / -1; order: -1; min-height: 340px; }
  
  .price-grid{ grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav.open .nav-links {
    display: grid; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: #fff; border-radius: 16px; padding: 18px 22px; gap: 14px;
    box-shadow: var(--shadow-pop); border: 1px solid var(--ink-100);
  }
  .nav { position: relative; }
  .hero { padding: 130px 0 80px; }
  .feature-grid,
.price-grid{ grid-template-columns: 1fr; }
  .power-row { grid-template-columns: 1fr; }
  .power-blue .power-visual { order: 2; min-height: 220px; }
  .why-card { grid-template-columns: 1fr; }
  .security-card { flex-direction: column; align-items: flex-start; }
  .faq-card { grid-template-columns: 1fr; }
  
  .cta-block { grid-template-columns: 1fr; padding-bottom: 56px; }
  
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .stats { flex-direction: column; gap: 26px; }
  .quote-carousel { flex-wrap: wrap; }
  .q-arrow { order: 2; }
}

@media (max-width: 560px) {
  .ghl-flow { flex-direction: column; gap: 0; padding: 22px 26px; }
  .ghl-card { width: 100%; }
  .ghl-link { width: 2px; height: 16px; }
  .ghl-link::after {
    right: auto; top: auto; bottom: -1px; left: 50%; transform: translateX(-50%);
    border-left: 4.5px solid transparent; border-right: 4.5px solid transparent;
    border-top: 6px solid rgba(255,255,255,.95); border-bottom: 0;
  }
  .fv-b { min-height: 0; }
  .pipe { grid-template-columns: 1fr 1fr; }
  .pipe-col:last-child { grid-column: 1 / -1; }
  .agent-card.a2, .agent-card.a3 { transform: none; }
}
