/* === Salesgem — modern home page === */
:root {
  --bg: #FAFAF7;
  --surface: #FFFFFF;
  --ink: #0E1614;
  --ink-2: #2A3531;
  --muted: #5A6A65;
  --muted-2: #8A9590;
  --line: #E7E9E5;
  --line-2: #EFF1ED;

  --teal-50: #E6F7F4;
  --teal-100: #CFEFEA;
  --teal-200: #9BE0D5;
  --teal-400: #40CCBF;
  --teal-500: #26B1A5;
  --teal-600: #1F968C;
  --teal-700: #14655F;

  --coral: oklch(0.72 0.13 35);
  --coral-soft: oklch(0.94 0.04 35);

  --shadow-sm: 0 1px 2px rgba(14, 22, 20, 0.04), 0 1px 1px rgba(14, 22, 20, 0.02);
  --shadow-md: 0 8px 24px -8px rgba(14, 22, 20, 0.10), 0 2px 6px rgba(14, 22, 20, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(14, 22, 20, 0.14), 0 8px 16px -8px rgba(14, 22, 20, 0.06);
  --shadow-teal: 0 12px 32px -8px rgba(38, 177, 165, 0.35);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --container: 1200px;
  --gutter: 80px;
}

[data-density="compact"] {
  --gutter: 48px;
}

[data-accent="indigo"] {
  --teal-50: #EEF0FF;
  --teal-100: #DDE1FF;
  --teal-200: #B7BFFF;
  --teal-400: #7B86FF;
  --teal-500: #4F5BD5;
  --teal-600: #3E48B8;
  --teal-700: #242A75;
  --shadow-teal: 0 12px 32px -8px rgba(79, 91, 213, 0.35);
}
[data-accent="emerald"] {
  --teal-50: #E8F7EE;
  --teal-100: #CFEFD9;
  --teal-200: #A0DDB4;
  --teal-400: #4CC57A;
  --teal-500: #2EA85A;
  --teal-600: #228946;
  --teal-700: #14572C;
  --shadow-teal: 0 12px 32px -8px rgba(46, 168, 90, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

section { padding: var(--gutter) 0; }

/* Type */
h1, h2, h3, h4 { font-family: inherit; margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.02; font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 3.6vw, 48px); line-height: 1.08; font-weight: 700; letter-spacing: -0.028em; }
h3 { font-size: 22px; line-height: 1.25; font-weight: 600; }
h4 { font-size: 16px; line-height: 1.35; font-weight: 600; }
p { margin: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(38, 177, 165, 0.18);
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 18px; text-wrap: pretty; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  color: white;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -8px rgba(38, 177, 165, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink-2); }
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 54px; padding: 0 28px; font-size: 16px; }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.site-header .logo {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--ink); cursor: pointer;
}
.site-header .logo svg { display: block; }
.nav-main {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-main a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 999px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  text-decoration: none;
}
.nav-main a:hover { background: var(--line-2); color: var(--ink); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 999px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  cursor: default; user-select: none;
}
.nav-dropdown:hover .nav-dropdown-trigger { background: var(--line-2); color: var(--ink); }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 0;
  padding: 8px 0 0 0;
  list-style: none; margin: 0;
  min-width: 200px; z-index: 100;
}
.nav-dropdown-menu-inner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

/* Mega menu */
.nav-dropdown-menu.nav-mega { min-width: 600px; }
.nav-mega-inner { display: flex; overflow: hidden; padding: 0 !important; }

.nav-mega-features { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 2px; }
.nav-mega-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: 999px;
  text-decoration: none; transition: background .15s;
}
.nav-mega-feature:hover { background: var(--line-2); }
.nav-mega-feature-ic {
  width: 36px; height: 36px; border-radius: 9px;
  display: grid; place-items: center; flex-shrink: 0;
  margin-top: 1px;
}
.nav-mega-feature-ic.teal { background: var(--teal-50); color: var(--teal-600); }
.nav-mega-feature-ic.indigo { background: #EEF2FF; color: #4F46E5; }
.nav-mega-feature-ic.amber { background: #FEF3C7; color: #D97706; }
.nav-mega-feature-ic.emerald { background: #ECFDF5; color: #059669; }
.nav-mega-feature-name { font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-mega-feature-desc { font-size: 11.5px; color: var(--muted); margin-top: 2px; white-space: nowrap; }

.nav-mega-aside {
  width: 230px; flex-shrink: 0;
  background: var(--teal-50); border-left: 1px solid var(--teal-100);
  border-radius: 0 12px 12px 0;
  padding: 14px 10px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.nav-mega-aside-label {
  font-size: 10px; font-weight: 800; color: var(--teal-600);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0 8px 8px;
}
.nav-mega-int {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 999px;
  text-decoration: none;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  transition: background .15s, color .15s;
}
.nav-mega-int:hover { background: rgba(255,255,255,0.8); color: var(--ink); }
.nav-mega-int-ic {
  width: 26px; height: 26px; border-radius: 6px;
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-mega-all-link {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 6px; padding: 9px 10px; border-radius: 999px;
  border-top: 1px solid var(--teal-100); padding-top: 13px; margin-top: 8px;
  font-size: 13px; font-weight: 700; color: var(--teal-700);
  text-decoration: none; transition: background .15s;
}
.nav-mega-all-link:hover { background: rgba(255,255,255,0.8); }

.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta a { font-size: 14px; }
.nav-link-plain { color: var(--ink-2); text-decoration: none; padding: 8px 12px; font-weight: 500; font-size: 14px; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 40px; height: 40px; padding: 4px;
  background: none; border: none; cursor: pointer; border-radius: 8px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--line-2); }
.nav-hamburger-bar {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
  transform-origin: center;
}
.nav-hamburger.open .nav-hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open .nav-hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .nav-hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  flex-direction: column;
  /* no overflow on the outer container — let the links section scroll internally */
}
.nav-mobile.open { display: flex; }
.nav-mobile-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; flex-shrink: 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile-close {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center; cursor: pointer; color: var(--ink);
  flex-shrink: 0;
}
.nav-mobile-close:hover { background: var(--line-2); }
/* links section scrolls independently so actions stay pinned at bottom */
.nav-mobile-links {
  display: flex; flex-direction: column;
  flex: 1; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 12px 20px;
}
.nav-mobile-section {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 10px 8px 6px;
}
.nav-mobile-sub { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }
.nav-mobile-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; border-radius: 8px;
}
.nav-mobile-sub a:hover { background: var(--line-2); color: var(--ink); }
.nav-mobile-sub-feat { display: flex; align-items: center; gap: 10px; }
.nav-mobile-sub-ic {
  width: 28px; height: 28px; border-radius: 7px;
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-mobile-sub-ic.teal { background: var(--teal-50); color: var(--teal-600); }
.nav-mobile-sub-ic.indigo { background: #EEF2FF; color: #4F46E5; }
.nav-mobile-sub-ic.amber { background: #FEF3C7; color: #D97706; }
.nav-mobile-sub-ic.emerald { background: #ECFDF5; color: #059669; }
.nav-mobile-sub-sep {
  font-size: 10px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 10px 16px 4px; pointer-events: none;
}
.nav-mobile-sub-group-label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  font-size: 14px; font-weight: 700; color: var(--teal-700);
  text-decoration: none; border-radius: 8px; background: var(--teal-50);
  border: 1px solid var(--teal-100);
}
.nav-mobile-sub-group-label:hover { background: var(--teal-100); }
.nav-mobile-sub-item { gap: 10px; }
.nav-mobile-int-ic {
  width: 24px; height: 24px; border-radius: 5px;
  display: grid; place-items: center; flex-shrink: 0;
}
.nav-mobile-link {
  display: block; padding: 13px 8px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  text-decoration: none; border-radius: 10px;
}
.nav-mobile-link:hover { background: var(--line-2); }
.nav-mobile-accordion {
  width: 100%; background: none; border: none; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-mobile-chevron { transition: transform .2s ease; flex-shrink: 0; }
.nav-mobile-accordion.open .nav-mobile-chevron { transform: rotate(180deg); }
.nav-mobile-accordion.open { background: var(--line-2); }
.nav-mobile-divider { border: none; border-top: 1px solid var(--line); margin: 0; flex-shrink: 0; }
.nav-mobile-actions {
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0; padding: 20px 24px;
}

/* HERO */
.hero { padding-top: 56px; padding-bottom: 0; position: relative; overflow: hidden; }
.hero-grid {
  position: relative;
}
.hero-bg-glow {
  position: absolute; inset: -10% -10% auto -10%; height: 720px;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(64, 204, 191, 0.28), transparent 70%),
    radial-gradient(40% 40% at 80% 30%, rgba(38, 177, 165, 0.12), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 880px; margin: 0 auto; }
.hero-content h1 { margin-top: 18px; text-wrap: balance; }
.hero-content h1 .accent {
  background: linear-gradient(120deg, var(--teal-500) 0%, var(--teal-400) 60%, var(--teal-700) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative;
}
.hero-content .lede {
  color: var(--muted); font-size: 19px; max-width: 620px; margin: 22px auto 0; text-wrap: pretty;
}
.email-capture {
  display: flex; align-items: center; gap: 6px;
  margin: 36px auto 0; max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  box-shadow: var(--shadow-md);
}
.email-capture input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 15px; color: var(--ink);
  height: 42px;
}
.email-capture input::placeholder { color: var(--muted-2); }
.benefits-row {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-top: 18px;
  font-size: 14px; color: var(--muted);
}
.benefits-row span { display: inline-flex; align-items: center; gap: 6px; }
.benefits-row svg { color: var(--teal-500); }

/* Hero product preview */
.product-preview {
  position: relative;
  margin: 64px auto 0;
  max-width: 1080px;
  z-index: 1;
}
.product-shell {
  background: linear-gradient(180deg, #ffffff, #fbfbf8);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.product-tabbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
}
.product-tabbar .traf { display: flex; gap: 6px; }
.product-tabbar .traf i {
  width: 10px; height: 10px; border-radius: 999px;
  background: #e1e3df;
}
.product-tabbar .url {
  flex: 1; height: 28px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; gap: 8px; padding: 0 10px;
  font-size: 12px; color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}

/* Floating chip badges around hero product */
.hero-chip {
  position: absolute; z-index: 2;
  background: white; border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  animation: float 6s ease-in-out infinite;
}
.hero-chip .chip-ic {
  width: 32px; height: 32px; border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-chip .chip-text { font-size: 13px; line-height: 1.3; }
.hero-chip .chip-text b { display: block; font-weight: 600; color: var(--ink); }
.hero-chip .chip-text small { color: var(--muted); font-size: 12px; }
.hero-chip-1 { top: 8%; left: -10%; animation-delay: 0s; }
.hero-chip-2 { top: 38%; right: -10%; animation-delay: -2s; }
.hero-chip-3 { bottom: 8%; left: -8%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Trust bar */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg);
}
.trustbar .container {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: space-between;
}
.trustbar .label {
  font-size: 13px; color: var(--muted); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  flex-shrink: 0;
}
.trust-logos {
  display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
  flex: 1; justify-content: center;
}
.trust-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--muted); opacity: 0.8;
  font-size: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: opacity .2s, color .2s;
}
.trust-logo:hover { opacity: 1; color: var(--ink); }

/* Process / 4 steps */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-card {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.process-card .num {
  font-size: 13px; font-weight: 600;
  color: var(--teal-600);
  font-feature-settings: "tnum";
  letter-spacing: 0.04em;
}
.process-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid; place-items: center;
}
.process-card h3 { font-size: 20px; }
.process-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* Integrations spotlight (FB + WA) */
.integrations-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.integ-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 480px;
}
.integ-card.dark {
  background: linear-gradient(180deg, #0E1614, #1A2724);
  color: white;
  border-color: #1A2724;
}
.integ-card.dark .lede { color: rgba(255,255,255,0.7); }
.integ-card .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: rgba(38, 177, 165, 0.12);
  color: var(--teal-600);
  width: fit-content;
}
.integ-card.dark .badge { background: rgba(64, 204, 191, 0.16); color: var(--teal-400); }
.integ-card h3 { font-size: 30px; line-height: 1.1; letter-spacing: -0.02em; max-width: 22ch; }
.integ-card p { color: var(--muted); font-size: 15px; max-width: 36ch; }
.integ-card .visual {
  margin-top: auto;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--teal-50), transparent);
  padding: 20px;
  border: 1px solid var(--line);
}
.integ-card.dark .visual {
  background: linear-gradient(180deg, rgba(64,204,191,0.12), rgba(64,204,191,0));
  border-color: rgba(255,255,255,0.08);
}

/* Lead row visual */
.lead-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: white;
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid var(--line);
  font-size: 13px;
}
.integ-card.dark .lead-row { background: #243532; border-color: rgba(255,255,255,0.06); color: white; }
.lead-row .av { width: 28px; height: 28px; border-radius: 999px; background: var(--teal-100); flex-shrink: 0; overflow: hidden; }
.lead-row .av img { width: 100%; height: 100%; object-fit: cover; }
.lead-row .name { font-weight: 600; flex: 1; }
.lead-row .src {
  font-size: 11px; color: var(--muted);
  padding: 3px 8px; border-radius: 999px; background: var(--line-2);
}
.integ-card.dark .lead-row .src { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

/* Feature pillars grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}
.feature-card .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid; place-items: center;
}
.feature-card h4 { font-size: 18px; }
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.55; }
.feature-card a {
  margin-top: 4px;
  color: var(--teal-600); text-decoration: none;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.feature-card a:hover { gap: 8px; }

/* Results / metrics band */
.results {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  color: white;
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.results::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.10), transparent 50%);
  pointer-events: none;
}
.results-inner { position: relative; }
.results h2 { font-size: clamp(28px, 3vw, 38px); max-width: 18ch; margin-bottom: 8px; }
.results p { color: rgba(255,255,255,0.8); max-width: 50ch; }
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.metric { padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.18); }
.metric .num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700; letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  line-height: 1;
}
.metric .num small { font-size: 0.5em; vertical-align: super; opacity: 0.7; }
.metric .lbl { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 8px; }

/* Testimonials */
@keyframes testimonialIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
section:has(.testimonial-wrap) {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  animation: testimonialIn 0.38s ease both;
}
.testimonial-card:nth-child(2) { animation-delay: 0.07s; }
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}
.testimonial-card .stars { color: var(--coral); display: flex; gap: 2px; }
.testimonial-card blockquote {
  margin: 0; font-size: 17px; line-height: 1.58;
  letter-spacing: -0.01em; color: var(--ink-2); text-wrap: pretty;
  flex: 1;
}
.testimonial-card blockquote::before {
  content: “””; display: block; font-size: 48px; line-height: 0.5;
  color: var(--teal-400); margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-author img {
  width: 44px; height: 44px; border-radius: 999px; object-fit: cover;
  outline: 3px solid var(--teal-100); outline-offset: 2px;
}
.testimonial-author b { display: block; font-size: 14px; }
.testimonial-author small { color: var(--muted); font-size: 13px; }

/* Pricing teaser */
.pricing-teaser {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.price-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  position: relative;
}
.price-card.featured::after {
  content: "Most popular"; position: absolute; top: 24px; right: 24px;
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  background: var(--teal-400); color: var(--ink); border-radius: 999px;
}
.price-card .name { font-size: 14px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.price-card.featured .name { color: var(--teal-400); }
.price-card .price { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; font-feature-settings: "tnum"; }
.price-card .price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-card.featured .price small { color: rgba(255,255,255,0.6); }
.price-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 14px; display: flex; align-items: flex-start; gap: 8px; color: var(--ink-2); }
.price-card.featured li { color: rgba(255,255,255,0.85); }
.price-card li svg { flex-shrink: 0; color: var(--teal-500); margin-top: 3px; }
.price-card.featured li svg { color: var(--teal-400); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-summary {
  width: 100%; background: none; border: none; padding: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 17px; font-weight: 600; font-family: inherit;
  color: var(--ink); cursor: pointer; text-align: left;
}
.faq-summary .plus {
  width: 28px; height: 28px; border-radius: 999px; background: var(--line-2);
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
  flex-shrink: 0;
}
.faq-open .faq-summary .plus { background: var(--teal-500); color: white; transform: rotate(45deg); }
.faq-body {
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body p { color: var(--muted); padding-top: 14px; font-size: 15px; line-height: 1.55; max-width: 60ch; }

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  margin: 0 24px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 100%, rgba(64,204,191,0.30), transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(36px, 4vw, 56px); }
.final-cta p { color: rgba(255,255,255,0.7); margin-top: 16px; font-size: 17px; }
.final-cta .email-capture {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  margin-top: 32px;
}
.final-cta .email-capture input { color: white; }
.final-cta .email-capture input::placeholder { color: rgba(255,255,255,0.5); }
.final-cta .benefits-row { color: rgba(255,255,255,0.6); margin-top: 22px; }

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: var(--gutter);
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { margin-top: 16px; max-width: 32ch; line-height: 1.55; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line); border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-socials a:hover { background: var(--ink); color: white; border-color: var(--ink); }
.footer-app-badges { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-app-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 0; margin-right: 4px; }
.footer-app-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-app-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 14px; border-radius: 10px;
  background: var(--ink); color: white;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s, transform .15s;
}
.footer-app-btn:hover { background: #111; transform: translateY(-1px); }
.footer-app-btn div { display: flex; flex-direction: column; line-height: 1.2; }
.footer-app-btn div span { font-size: 10px; opacity: 0.7; }
.footer-app-btn div b { font-size: 13px; font-weight: 700; }
.footer-col h4 {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; color: var(--ink); letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}

/* Sticky bottom CTA bar (after scroll past hero) */
.sticky-cta {
  position: fixed; bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: white;
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  font-size: 14px; font-weight: 500;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  max-width: calc(100vw - 32px);
  white-space: nowrap;
}
.sticky-cta.show { transform: translateX(-50%) translateY(0); }
.sticky-cta b { color: var(--teal-400); }

@media (max-width: 600px) {
  .sticky-cta {
    left: 0; right: 0; bottom: 0;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    padding: 14px 20px 20px;
    max-width: 100%;
    justify-content: space-between;
    white-space: normal;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  }
  .sticky-cta.show { transform: translateY(0); }
  .sticky-cta span { font-size: 13px; line-height: 1.4; }
}

/* Responsive */
@media (max-width: 960px) {
  .integrations-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-wrap { grid-template-columns: 1fr; }
  .pricing-teaser { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .nav-main { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  :root { --gutter: 56px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .results, .final-cta { padding: 40px 28px; }
  .integ-card { padding: 28px; }
  .testimonial-card { padding: 24px; }
  .hero-chip { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .trustbar .container { gap: 20px; }
  .trust-logos { gap: 24px; }
  .email-capture {
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    padding: 10px;
    gap: 8px;
  }
  .email-capture input {
    text-align: center;
    height: 44px;
  }
  .email-capture .btn {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
  }
}
@media (max-width: 1180px) and (min-width: 981px) {
  .hero-chip-1 { left: 2%; top: -3%; }
  .hero-chip-2 { right: 2%; top: -3%; }
  .hero-chip-3 { left: 2%; bottom: -3%; }
}
