/* ── Variables ───────────────────────────────────────── */
:root {
  --page-bg: #F5F7FE;
  --text: #111827;
  --muted: #4B5563;
  --muted-2: #6B7280;
  --primary: #4F46E5;
  --primary-hover: #4338CA;
  --dark: #111827;
  --dark-hover: #0B1220;
  --pill-bg: rgba(255,255,255,0.80);
  --pill-border: rgba(17,24,39,0.08);
  --card-border: rgba(17,24,39,0.07);
  --radius-xl: 34px;
  --radius-lg: 20px;
  --ring: 0 0 0 3px rgba(79,70,229,0.20);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html, body { height: 100%; overflow-x: hidden; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ── Page wrapper ────────────────────────────────────── */
.page { overflow-x: hidden; }

/* ── Shared utilities ────────────────────────────────── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }
.section-title {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  user-select: none;
}
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(79,70,229,0.28); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--dark { background: var(--dark); color: #fff; box-shadow: 0 8px 24px rgba(17,24,39,0.22); }
.btn--dark:hover { background: var(--dark-hover); }
.btn--ghost { background: rgba(255,255,255,0.70); color: var(--text); border-color: rgba(17,24,39,0.12); }
.btn--ghost:hover { background: rgba(255,255,255,0.90); border-color: rgba(17,24,39,0.20); }

/* ── Hero Shell ──────────────────────────────────────── */
.shell {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  background: radial-gradient(1400px 700px at 50% 0%, rgba(255,255,255,0.6), transparent 65%), var(--page-bg);
}

/* ── Topbar ──────────────────────────────────────────── */
.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 28px 32px 20px;
  position: relative;
  z-index: 200;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 18px; letter-spacing: -0.02em; }
.brand__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--dark);
  color: #fff; font-size: 17px;
  box-shadow: 0 8px 20px rgba(17,24,39,0.20);
}
.nav { display: flex; align-items: center; justify-content: center; position: relative; }
.nav__toggle {
  display: none;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600; font-size: 13px; cursor: pointer;
}
.nav__pill {
  display: flex; gap: 4px; align-items: center;
  padding: 6px; border-radius: 999px;
  background: var(--pill-bg); border: 1px solid var(--pill-border);
  box-shadow: 0 8px 30px rgba(17,24,39,0.07);
  backdrop-filter: blur(12px);
}
.nav__link {
  padding: 9px 16px; border-radius: 999px;
  font-weight: 600; font-size: 13px; color: var(--muted);
  transition: color .15s, background .15s;
}
.nav__link:hover { color: var(--text); background: rgba(17,24,39,0.04); }
.nav__link--active { color: var(--text); background: rgba(17,24,39,0.06); }
/* ── Nav Dropdown ─────────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown__menu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}
.nav__dropdown__trigger {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  display: flex; align-items: center; gap: 4px;
}
.nav__dropdown__trigger[aria-expanded="true"] { color: var(--text); background: rgba(17,24,39,0.06); }
.nav__dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  transform: none;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(17,24,39,0.12);
  z-index: 100;
  animation: dropdownFadeIn .15s ease;
}
@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav__dropdown__menu.is-open { display: flex; flex-direction: column; gap: 2px; }
.nav__dropdown:hover .nav__dropdown__menu { display: flex; flex-direction: column; gap: 2px; }
.nav__dropdown__item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav__dropdown__item:hover { background: rgba(17,24,39,0.04); color: var(--text); }
.nav__dropdown__item--active { color: var(--primary); }
.nav__dropdown__item--active:hover { background: rgba(79,70,229,0.06); color: var(--primary); }
.nav__dropdown__item--soon { opacity: 0.55; cursor: default; pointer-events: none; }
.nav__soon {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(17,24,39,0.07);
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--muted-2);
}

.actions { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.actions__link { font-weight: 600; font-size: 13px; color: var(--muted); transition: color .15s; }
.actions__link:hover { color: var(--text); }
/* Mobile-only CTA inside nav panel — hidden on desktop */
.nav__mobile-cta { display: none; }

/* ── Hero Content ────────────────────────────────────── */
.hero {
  display: flex; align-items: center; justify-content: center;
  min-height: 82vh;
  padding: 40px 24px 64px; position: relative; z-index: 1;
}
.hero__content { text-align: center; width: min(720px, 100%); }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.80); border: 1px solid rgba(17,24,39,0.08);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  margin-bottom: 22px; backdrop-filter: blur(8px);
}
.hero__title {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -0.045em; margin-bottom: 18px;
}
.hero__subtitle {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 540px; margin: 0 auto 28px;
}
.hero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero__cta .btn { padding: 15px 24px; font-size: 15px; }

/* ── Stats ───────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(17,24,39,0.08);
  border: 1px solid rgba(17,24,39,0.08); border-radius: 16px;
  overflow: hidden; max-width: 680px; margin: 0 auto;
}
.stat { background: rgba(255,255,255,0.65); padding: 18px 16px; text-align: center; backdrop-filter: blur(8px); }
.stat__label { font-size: 11px; color: var(--muted-2); font-weight: 500; margin-bottom: 6px; display: block; }
.stat__value { font-size: 20px; font-weight: 900; letter-spacing: -0.03em; }

/* ── Blobs ───────────────────────────────────────────── */
.blob { position: absolute; z-index: 0; filter: blur(64px); opacity: 0.80; pointer-events: none; transform: translateZ(0); }
.blob--pink { width: 500px; height: 280px; left: 15%; top: 120px; background: radial-gradient(circle at 30% 40%, rgba(236,72,153,0.9), transparent 65%); }
.blob--orange { width: 540px; height: 300px; right: 8%; top: 80px; background: radial-gradient(circle at 55% 35%, rgba(251,146,60,0.85), transparent 64%); }
.blob--blue { width: 600px; height: 340px; left: 20%; bottom: 30px; background: radial-gradient(circle at 45% 55%, rgba(59,130,246,0.90), transparent 66%); opacity: 0.70; }

/* ── Logos ───────────────────────────────────────────── */
.logos {
  background: #fff;
  border-top: 1px solid rgba(17,24,39,0.06);
  border-bottom: 1px solid rgba(17,24,39,0.06);
  padding: 32px 0; overflow: hidden; text-align: center;
}
.logos__label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 20px; }
.logos__track { overflow: hidden; }
.logos__items { display: flex; gap: 12px; width: max-content; animation: marquee 28s linear infinite; padding: 0 6px; align-items: center; }
.logo-item { font-size: 15px; font-weight: 800; color: rgba(17,24,39,0.22); white-space: nowrap; letter-spacing: -0.01em; }
.logo-item--platform {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--card-border);
  border-radius: 999px; padding: 8px 18px 8px 12px;
  font-size: 13px; font-weight: 700; color: var(--text);
  box-shadow: 0 2px 8px rgba(17,24,39,0.05);
  white-space: nowrap;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════
   SERVICES — Tabbed sidebar layout (not a card grid)
   ═══════════════════════════════════════════════════════ */
.services {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: linear-gradient(160deg, #FFF7F0 0%, var(--page-bg) 50%, #F0F4FF 100%);
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 90% 20%, rgba(251,146,60,0.09), transparent 70%),
    radial-gradient(500px 350px at 5% 80%, rgba(236,72,153,0.07), transparent 70%);
  pointer-events: none;
}
.services__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.services__sidebar { position: sticky; top: 40px; }
.services__sidebar .section-header { text-align: left; margin-bottom: 28px; }
.services__sidebar .section-subtitle { margin: 0; text-align: left; }
.services__tabs { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; }
.svc-tab {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px; border-radius: 12px;
  cursor: pointer; border: none; background: transparent;
  text-align: left; font-family: inherit;
  transition: background .15s; width: 100%;
}
.svc-tab:hover { background: rgba(17,24,39,0.04); }
.svc-tab.is-active { background: #fff; box-shadow: 0 2px 16px rgba(17,24,39,0.08); }
.svc-tab__icon {
  font-size: 18px; width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px; background: rgba(17,24,39,0.05);
  flex-shrink: 0; transition: background .15s;
}
.svc-tab.is-active .svc-tab__icon { background: var(--primary); }
.svc-tab__label { font-size: 14px; font-weight: 700; color: var(--muted); transition: color .15s; }
.svc-tab.is-active .svc-tab__label { color: var(--text); }

.services__panel {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 48px;
  min-height: 400px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 40px rgba(17,24,39,0.06);
}
.services__panel::after {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: var(--panel-accent, rgba(79,70,229,0.06));
  filter: blur(40px); pointer-events: none;
}
.svc-detail { display: none; }
.svc-detail.is-active { display: block; animation: fadeSlideIn .3s ease; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.svc-detail__icon { font-size: 44px; line-height: 1; margin-bottom: 20px; }
.svc-detail__title { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px; }
.svc-detail__desc { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 460px; margin-bottom: 28px; }
.svc-detail__points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.svc-detail__point {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.svc-detail__point::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS — Dark section with colored glow depth
   ═══════════════════════════════════════════════════════ */
.hiw {
  background: var(--dark);
  padding: 96px 0;
  position: relative; overflow: hidden;
  color: #fff;
}
.hiw::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 15% 50%, rgba(79,70,229,0.22), transparent 65%),
    radial-gradient(600px 400px at 85% 30%, rgba(236,72,153,0.12), transparent 65%);
  pointer-events: none;
}
.hiw .section-title { color: #fff; }
.hiw .section-subtitle { color: rgba(255,255,255,0.55); }
.hiw .eyebrow { color: rgba(255,255,255,0.40); letter-spacing: 0.14em; }
.hiw__steps { display: flex; align-items: flex-start; gap: 0; }
.hiw__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.hiw__step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 17px; font-weight: 900;
  display: grid; place-items: center; flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.hiw__step-body { max-width: 280px; }
.hiw__step-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.hiw__step-title { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; color: #fff; }
.hiw__step-desc { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); }
.hiw__connector { flex-shrink: 0; width: 64px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03)); margin-top: 30px; }

/* ═══════════════════════════════════════════════════════
   CASE STUDIES — Horizontal drag-scroll, not static grid
   ═══════════════════════════════════════════════════════ */
.cases {
  padding: 96px 0;
  background: var(--page-bg);
  position: relative; overflow: hidden;
}
.cases::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 100% 0%, rgba(59,130,246,0.07), transparent 65%),
    radial-gradient(500px 400px at 0% 100%, rgba(79,70,229,0.05), transparent 65%);
  pointer-events: none;
}
.cases .section-header { margin-bottom: 40px; }
.cases__scroll-area {
  overflow-x: auto;
  padding: 8px 24px 24px;
  margin: 0 -24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.cases__scroll-area::-webkit-scrollbar { display: none; }
.cases__scroll-area.is-grabbing { cursor: grabbing; }
.cases__track { display: flex; gap: 20px; width: max-content; }
.case-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 14px;
  width: 360px; flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cc-a, #4F46E5), var(--cc-b, #EC4899));
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(17,24,39,0.10); }
.case-card--dark {
  background: var(--dark); border-color: transparent; color: #fff;
  --cc-a: #EC4899; --cc-b: #FB923C;
}
.case-card--ocean { --cc-a: #3B82F6; --cc-b: #06B6D4; }
.case-card--dark .case-card__tag { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.65); }
.case-card--dark .case-card__desc { color: rgba(255,255,255,0.60); }
.case-card--dark .case-stat__label { color: rgba(255,255,255,0.45); }
.case-card--dark .case-card__stats { border-color: rgba(255,255,255,0.10); }
.case-card--dark .case-card__link { color: rgba(255,255,255,0.75); }
.case-card__tag { display: inline-block; background: rgba(79,70,229,0.08); color: var(--primary); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; padding: 4px 12px; width: fit-content; }
.case-card__title { font-size: 17px; font-weight: 800; line-height: 1.35; letter-spacing: -0.02em; }
.case-card__desc { font-size: 14px; line-height: 1.65; color: var(--muted); flex: 1; }
.case-card__stats { display: flex; gap: 20px; padding-top: 14px; border-top: 1px solid rgba(17,24,39,0.07); }
.case-stat { display: flex; flex-direction: column; gap: 3px; }
.case-stat__val { font-size: 22px; font-weight: 900; letter-spacing: -0.03em; }
.case-stat__label { font-size: 11px; color: var(--muted-2); font-weight: 500; }
.case-card__link { font-size: 13px; font-weight: 700; color: var(--primary); }
.case-card__link:hover { text-decoration: underline; }
.cases__scroll-hint { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.cases__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(17,24,39,0.15); transition: background .2s, transform .2s; }
.cases__dot.is-active { background: var(--primary); transform: scale(1.4); }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — Dual-row auto-marquee, no static grid
   ═══════════════════════════════════════════════════════ */
.testimonials {
  background: #fff;
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 50% 0%, rgba(236,72,153,0.04), transparent 60%);
  pointer-events: none;
}
.testimonials .section-header { margin-bottom: 48px; }
.tmarquee-wrap { display: flex; flex-direction: column; gap: 16px; }
.tmarquee { display: flex; gap: 16px; width: max-content; }
.tmarquee--forward { animation: tfwd 36s linear infinite; }
.tmarquee--reverse { animation: trev 32s linear infinite; }
@keyframes tfwd { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes trev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tcard {
  background: var(--page-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px; padding: 22px 26px;
  display: flex; flex-direction: column; gap: 12px;
  width: 320px; flex-shrink: 0;
}
.tcard--featured { background: var(--dark); border-color: transparent; color: #fff; }
.tcard--pink { background: linear-gradient(135deg, #FFF0F7, #FFF7F0); border-color: rgba(236,72,153,0.12); }
.tcard--blue { background: linear-gradient(135deg, #F0F4FF, #EFF6FF); border-color: rgba(59,130,246,0.12); }
.tcard--featured .tcard__quote { color: rgba(255,255,255,0.75); }
.tcard--featured .tcard__role { color: rgba(255,255,255,0.45); }
.tcard--featured .tcard__avatar { background: rgba(255,255,255,0.12); }
.tcard__stars { color: #F59E0B; font-size: 13px; letter-spacing: 2px; }
.tcard__quote { font-size: 14px; line-height: 1.70; color: var(--muted); flex: 1; font-style: italic; }
.tcard__author { display: flex; align-items: center; gap: 10px; }
.tcard__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; flex-shrink: 0; }
.tcard__name { font-size: 13px; font-weight: 700; }
.tcard__role { font-size: 11px; color: var(--muted-2); margin-top: 1px; }

/* ═══════════════════════════════════════════════════════
   PRICING — Featured card towers higher
   ═══════════════════════════════════════════════════════ */
.pricing {
  background: var(--page-bg);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 20% 60%, rgba(79,70,229,0.07), transparent 65%),
    radial-gradient(500px 400px at 80% 20%, rgba(251,146,60,0.06), transparent 65%);
  pointer-events: none;
}
.pricing__layout { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 20px; align-items: end; }
.plan {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.plan--featured {
  background: var(--dark);
  border-color: transparent;
  color: #fff;
  padding: 48px 32px;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(17,24,39,0.22);
  position: relative; overflow: hidden;
}
.plan--featured::before {
  content: '';
  position: absolute; top: -70px; left: -70px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,70,229,0.28), transparent 70%);
  pointer-events: none;
}
.plan--featured::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(236,72,153,0.18), transparent 70%);
  pointer-events: none;
}
.plan--featured .plan__desc { color: rgba(255,255,255,0.55); }
.plan--featured .plan__features li { color: rgba(255,255,255,0.70); }
.plan--featured .plan__features li::before { color: #4ADE80; }
.plan--featured .plan__guarantee { color: rgba(255,255,255,0.40); border-color: rgba(255,255,255,0.10); }
.plan__badge { display: inline-block; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; padding: 4px 12px; width: fit-content; }
.plan__name { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; }
.plan__price { font-size: 34px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.plan__price span { font-size: 16px; font-weight: 500; opacity: 0.55; }
.plan__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.plan__features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan__features li { font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.plan__features li::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.plan__guarantee { font-size: 12px; color: var(--muted-2); padding-top: 14px; border-top: 1px solid rgba(17,24,39,0.07); }
.plan__cta { width: 100%; justify-content: center; }

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 110px 24px; text-align: center;
  position: relative; overflow: hidden; color: #fff;
}
.cta-section__inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-blob { position: absolute; filter: blur(90px); opacity: 0.35; pointer-events: none; border-radius: 50%; }
.cta-blob--pink { width: 500px; height: 500px; background: radial-gradient(circle, rgba(236,72,153,1), transparent 70%); top: -150px; left: -150px; }
.cta-blob--blue { width: 500px; height: 500px; background: radial-gradient(circle, rgba(79,70,229,1), transparent 70%); bottom: -150px; right: -150px; }
.cta-section__title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 900; letter-spacing: -0.04em; color: #fff; margin: 12px 0 16px; }
.cta-section__subtitle { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.60); max-width: 500px; margin: 0 auto 36px; }
.cta-section__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-section__actions .btn { padding: 15px 24px; font-size: 15px; }
.cta-section__note { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── Footer ──────────────────────────────────────────── */
.footer { background: #070D1A; color: rgba(255,255,255,0.55); padding: 64px 24px 32px; }
.footer__inner { max-width: 1100px; margin: 0 auto 48px; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.35); margin-top: 10px; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.footer__col a { font-size: 14px; color: rgba(255,255,255,0.50); transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.25); flex-wrap: wrap; gap: 8px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing__layout { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hiw__steps { flex-direction: column; align-items: center; gap: 40px; }
  .hiw__connector { width: 2px; height: 36px; background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03)); margin: 0; }
  .services__layout { grid-template-columns: 1fr; }
  .services__sidebar { position: static; }
  .services__tabs { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .svc-tab { width: auto; flex: 0 0 auto; }
}
@media (max-width: 900px) {
  /* ── Topbar: brand left, hamburger right, one clean row ── */
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    position: relative;
    z-index: 200;
  }
  .brand { flex: 1; }

  /* Hide the desktop CTA button entirely on mobile */
  .actions { display: none; }

  /* Nav sits below the topbar row */
  .nav {
    position: static;
    display: block;
  }

  /* Hamburger toggle */
  .nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid var(--pill-border);
    background: var(--pill-bg);
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 300;
    color: var(--text);
  }
  /* SVG hamburger lines */
  .nav__toggle .bar {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
    left: 50%;
    transform-origin: center;
  }
  .nav__toggle .bar:nth-child(1) { transform: translateX(-50%) translateY(-6px); }
  .nav__toggle .bar:nth-child(2) { transform: translateX(-50%); }
  .nav__toggle .bar:nth-child(3) { transform: translateX(-50%) translateY(6px); }
  /* Open state — X */
  .nav__toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateX(-50%) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateX(-50%) rotate(-45deg); }

  /* Mobile nav panel — anchors to topbar, full width */
  .nav__pill {
    display: none;
    position: fixed;
    top: 76px; /* below topbar */
    left: 0;
    right: 0;
    z-index: 9999;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 0;
    border-top: 1px solid rgba(17,24,39,0.08);
    border-bottom: 1px solid rgba(17,24,39,0.08);
    border-left: none;
    border-right: none;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(17,24,39,0.12);
  }
  .nav__pill.is-open { display: flex; }

  .nav__link {
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: var(--text);
  }
  .nav__link:hover { background: rgba(17,24,39,0.05); }

  /* Mobile dropdown — inline, no absolute positioning */
  .nav__dropdown { position: static; width: 100%; }
  .nav__dropdown__trigger { width: 100%; display: flex; justify-content: space-between; }
  .nav__dropdown__menu {
    position: static !important;
    display: none;
    flex-direction: column;
    gap: 2px;
    background: rgba(17,24,39,0.04);
    border: none;
    box-shadow: none;
    border-radius: 10px;
    padding: 6px 6px 6px 14px;
    margin-top: 4px;
    min-width: unset;
    animation: none;
  }
  .nav__dropdown__menu.is-open { display: flex; }
  .nav__dropdown__item { font-size: 14px; padding: 10px 12px; }

  /* Mobile CTA inside nav panel */
  .nav__mobile-cta {
    display: flex;
    margin: 8px 4px 4px;
  }
  .nav__mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
  }

  .stats { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  .blob { filter: blur(50px); }
  .pricing__layout { grid-template-columns: 1fr; }
  .services__panel { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════
   PROBLEM — Dark agitation section
   ═══════════════════════════════════════════════════════ */
.problem {
  background: #0D1117;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.problem::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 80% 50%, rgba(236,72,153,0.10), transparent 65%),
    radial-gradient(600px 400px at 10% 50%, rgba(79,70,229,0.12), transparent 65%);
  pointer-events: none;
}
.problem__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.problem__title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 12px 0 20px;
  line-height: 1.15;
}
.problem__sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pain-item {
  border-radius: 20px;
  padding: 28px 24px;
}
.pain-item--bad {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.pain-item--good {
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.25);
}
.pain-item__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pain-item__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.pain-item--bad .pain-item__icon { background: rgba(239,68,68,0.2); color: #F87171; }
.pain-item--good .pain-item__icon { background: rgba(74,222,128,0.2); color: #4ADE80; }
.pain-item__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pain-item--bad .pain-item__label { color: rgba(255,255,255,0.35); }
.pain-item--good .pain-item__label { color: rgba(255,255,255,0.65); }
.pain-item ul { display: flex; flex-direction: column; gap: 10px; }
.pain-item li {
  font-size: 13px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.pain-item--bad li { color: rgba(255,255,255,0.45); }
.pain-item--bad li::before { content: '—'; position: absolute; left: 0; color: rgba(255,255,255,0.2); }
.pain-item--good li { color: rgba(255,255,255,0.80); }
.pain-item--good li::before { content: '✓'; position: absolute; left: 0; color: #4ADE80; font-weight: 800; }

/* ═══════════════════════════════════════════════════════
   WHY AI — Light section with performance curve
   ═══════════════════════════════════════════════════════ */
.why-ai {
  background: var(--page-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.why-ai::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(900px 600px at 50% 100%, rgba(79,70,229,0.06), transparent 65%);
  pointer-events: none;
}
.why-ai__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(17,24,39,0.08); }
.why-card--accent {
  background: var(--dark);
  border-color: transparent;
  color: #fff;
}
.why-card--accent .why-card__desc { color: rgba(255,255,255,0.60); }
.why-card--accent .why-card__num { color: rgba(255,255,255,0.15); }
.why-card__num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(17,24,39,0.06);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card__title { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.why-card__desc { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* Performance curve */
.perf-curve {
  background: var(--dark);
  border-radius: 24px;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.perf-curve::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 90% 50%, rgba(79,70,229,0.2), transparent 65%);
  pointer-events: none;
}
.perf-curve__labels {
  margin-bottom: 8px;
}
.perf-curve__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}
.perf-curve__chart {
  position: relative;
  margin-bottom: 12px;
}
.perf-curve__chart svg {
  width: 100%;
  height: 160px;
  display: block;
}
.perf-curve__legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.legend-item--ai { color: rgba(255,255,255,0.80); }
.legend-item--trad { color: rgba(255,255,255,0.35); }
.legend-item--ai span {
  width: 24px; height: 3px;
  background: linear-gradient(90deg, #EC4899, #4F46E5);
  border-radius: 2px;
}
.legend-item--trad span {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.20);
  border-radius: 2px;
  border-top: 1px dashed rgba(255,255,255,0.30);
}
.perf-curve__xaxis {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.perf-curve__xaxis span {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   SERVICES — 4 alternating blocks
   ═══════════════════════════════════════════════════════ */
.services {
  background: var(--page-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 90% 20%, rgba(251,146,60,0.07), transparent 65%),
    radial-gradient(600px 400px at 5% 80%, rgba(236,72,153,0.06), transparent 65%);
  pointer-events: none;
}
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(17,24,39,0.06);
}
.svc-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.svc-block--flip .svc-block__visual { order: 2; }
.svc-block--flip .svc-block__copy { order: 1; }

/* Visual mockup panels */
.svc-block__visual {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.svc-block__visual--campaigns { background: linear-gradient(135deg, #1E1B4B, #312E81); }
.svc-block__visual--content   { background: linear-gradient(135deg, #1F2937, #111827); }
.svc-block__visual--whatsapp  { background: linear-gradient(135deg, #064E3B, #065F46); }
.svc-block__visual--analytics { background: linear-gradient(135deg, #1E3A5F, #1E40AF); }

.svc-mock {
  width: 88%; padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.mock-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}
.mock-stat {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Campaign bar chart */
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}
.mock-bar {
  flex: 1;
  height: var(--h);
  background: var(--c);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  opacity: 0.7;
  transition: opacity .2s;
  position: relative;
}
.mock-bar--winner { opacity: 1; }
.mock-bar--winner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 0 20px var(--c);
  opacity: 0.4;
}
.mock-bar span { font-size: 9px; color: rgba(255,255,255,0.7); font-weight: 700; }

/* Content feed */
.content-feed { display: flex; flex-direction: column; gap: 8px; }
.content-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.content-item--new { border-color: rgba(79,70,229,0.4); background: rgba(79,70,229,0.08); }
.ci-type {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap; padding-top: 2px;
  min-width: 56px;
}
.ci-text { font-size: 12px; color: rgba(255,255,255,0.70); line-height: 1.45; }

/* WhatsApp chat */
.wa-chat { display: flex; flex-direction: column; gap: 8px; }
.wa-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.wa-msg--in {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  align-self: flex-start;
  border-radius: 4px 14px 14px 14px;
}
.wa-msg--out {
  background: #25D366;
  color: #fff;
  align-self: flex-end;
  border-radius: 14px 4px 14px 14px;
}
.wa-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  width: fit-content;
}
.wa-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: typing 1.2s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100% { opacity: 0.3; transform: scale(0.8); } 40% { opacity: 1; transform: scale(1); } }

/* Analytics bars */
.analytics-rows { display: flex; flex-direction: column; gap: 10px; }
.a-row { display: flex; align-items: center; gap: 10px; }
.a-channel { font-size: 11px; color: rgba(255,255,255,0.50); min-width: 88px; font-weight: 600; }
.a-bar-wrap { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.a-bar { height: 100%; width: var(--w); background: var(--c); border-radius: 4px; }
.a-val { font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.70); min-width: 60px; text-align: right; }

/* Copy side */
.svc-block__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
}
.svc-block__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.svc-block__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 24px;
}
.svc-block__list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.svc-block__list li {
  font-size: 14px;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.svc-block__list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--primary);
  font-weight: 700;
}
.svc-block__result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(79,70,229,0.06);
  border: 1px solid rgba(79,70,229,0.12);
  border-radius: 12px;
}
.svc-result-val {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.svc-result-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   DELIVERABLES — What clients get monthly
   ═══════════════════════════════════════════════════════ */
.deliverables {
  background: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.deliverables::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(800px 500px at 50% 0%, rgba(79,70,229,0.04), transparent 60%);
  pointer-events: none;
}
.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.deliv-category {
  background: var(--page-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px 24px;
}
.deliv-category__icon { font-size: 28px; margin-bottom: 14px; }
.deliv-category__title { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 18px; }
.deliv-list { display: flex; flex-direction: column; gap: 10px; }
.deliv-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.deliv-qty {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(79,70,229,0.08);
  border-radius: 6px;
  padding: 2px 7px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   FAQ — Accordion
   ═══════════════════════════════════════════════════════ */
.faq {
  background: var(--page-bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 500px at 0% 50%, rgba(236,72,153,0.05), transparent 65%);
  pointer-events: none;
}
.faq__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.faq__intro .eyebrow { display: block; margin-bottom: 12px; }
.faq__title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.faq__sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(17,24,39,0.08);
}
.faq-item {
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  gap: 16px;
}
.faq-item__q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted-2);
  flex-shrink: 0;
  transition: transform .2s;
  line-height: 1;
}
.faq-item__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-item__a {
  display: none;
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}
.faq-item__a.is-open { display: block; animation: fadeSlideIn .2s ease; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — new sections
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-ai__grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables__grid { grid-template-columns: repeat(2, 1fr); }
  .problem__layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-block { grid-template-columns: 1fr; gap: 36px; }
  .svc-block--flip .svc-block__visual { order: 0; }
  .svc-block--flip .svc-block__copy { order: 0; }
  .faq__layout { grid-template-columns: 1fr; gap: 40px; }
  .faq__intro { position: static; }
}
@media (max-width: 768px) {
  .why-ai__grid { grid-template-columns: 1fr 1fr; }
  .pain-list { grid-template-columns: 1fr; }
  .perf-curve { padding: 28px 24px; }
}
@media (max-width: 640px) {
  .why-ai__grid { grid-template-columns: 1fr; }
  .deliverables__grid { grid-template-columns: 1fr; }
  .svc-block { margin-bottom: 48px; padding-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════════
   LIVE METRICS TICKER — Full-width activity strip
   ═══════════════════════════════════════════════════════ */
.metrics-ticker {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.metrics-ticker__track { overflow: hidden; }
.metrics-ticker__items {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker 40s linear infinite;
  padding: 0 12px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  white-space: nowrap;
  flex-shrink: 0;
}
.metric-chip--accent {
  background: rgba(79,70,229,0.18);
  border-color: rgba(79,70,229,0.32);
}
.metric-chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.metric-chip__val {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}
.metric-chip__label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
}

/* ═══════════════════════════════════════════════════════
   COMPARISON TABLE — BrighterMarketing vs agency vs in-house
   ═══════════════════════════════════════════════════════ */
.compare {
  background: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.compare::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 100% 0%, rgba(79,70,229,0.04), transparent 60%),
    radial-gradient(600px 400px at 0% 100%, rgba(236,72,153,0.03), transparent 60%);
  pointer-events: none;
}
.compare__table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 40px rgba(17,24,39,0.06);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}
.compare__th {
  padding: 20px 24px 18px;
  text-align: center;
  font-weight: 700;
  background: var(--page-bg);
  border-bottom: 1px solid rgba(17,24,39,0.07);
}
.compare__th--label {
  text-align: left;
  width: 30%;
}
.compare__th--winner {
  background: var(--dark);
}
.compare__col-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.compare__col-badge--trad { background: rgba(17,24,39,0.07); color: var(--muted); }
.compare__col-badge--inhouse { background: rgba(17,24,39,0.07); color: var(--muted); }
.compare__col-badge--fai { background: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(79,70,229,0.30); }
.compare__row td { padding: 17px 24px; border-bottom: 1px solid rgba(17,24,39,0.05); }
.compare__row:last-child td { border-bottom: none; }
.compare__row--alt td { background: rgba(17,24,39,0.012); }
.compare__row--alt .compare__cell--win { background: rgba(79,70,229,0.08); }
.compare__label {
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
}
.compare__cell {
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
}
.compare__cell--win {
  background: rgba(79,70,229,0.05);
  color: var(--primary);
  font-weight: 700;
  border-left: 2px solid rgba(79,70,229,0.15);
  border-right: 2px solid rgba(79,70,229,0.15);
}
.compare__cell--bad { color: var(--muted-2); }
.compare__cell--mid { color: var(--muted); }
.compare__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}
.compare__footnote {
  font-size: 12px;
  color: var(--muted-2);
}

/* ═══════════════════════════════════════════════════════
   SOFT CTA — Midpage audit nudge
   ═══════════════════════════════════════════════════════ */
.soft-cta {
  background: var(--page-bg);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.soft-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% 50%, rgba(79,70,229,0.05), transparent 65%);
  pointer-events: none;
}
.soft-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: 0 4px 40px rgba(17,24,39,0.06);
  position: relative;
  overflow: hidden;
}
.soft-cta__inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #4F46E5, #EC4899, #FB923C);
}
.soft-cta__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
  line-height: 1.2;
}
.soft-cta__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
}
.soft-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.soft-cta__note {
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   GUARANTEE — Dark section, standalone trust block
   ═══════════════════════════════════════════════════════ */
.guarantee {
  background: var(--dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.guarantee::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 15% 50%, rgba(79,70,229,0.22), transparent 65%),
    radial-gradient(600px 400px at 85% 30%, rgba(236,72,153,0.12), transparent 65%);
  pointer-events: none;
}
.guarantee__blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.20;
  pointer-events: none;
  border-radius: 50%;
}
.guarantee__blob--left {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,1), transparent 70%);
  top: -120px; left: -120px;
}
.guarantee__blob--right {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,1), transparent 70%);
  bottom: -120px; right: -120px;
}
.guarantee__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.guarantee__badge {
  flex-shrink: 0;
  width: 80px; height: 80px;
  display: grid; place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.guarantee__title {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 10px 0 18px;
  color: #fff;
}
.guarantee__desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 580px;
  margin-bottom: 36px;
}
.guarantee__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.guarantee__pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.guarantee__pillar-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee__pillar-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.guarantee__pillar-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.50);
}

/* ── Responsive — new sections ──────────────────────── */
@media (max-width: 900px) {
  .soft-cta__inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
  .soft-cta__action { align-items: flex-start; }
  .soft-cta__note { white-space: normal; }
  .guarantee__inner { grid-template-columns: 1fr; gap: 32px; }
  .guarantee__badge { width: 64px; height: 64px; }
}
@media (max-width: 640px) {
  .compare__table { font-size: 12px; }
  .compare__row td { padding: 14px 16px; }
  .compare__th { padding: 16px; }
  .soft-cta__inner { padding: 28px 24px; border-radius: 20px; }
  .guarantee__pillars { gap: 12px; }
  .guarantee__pillar { padding: 16px; }
}

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Mobile nav dark-page overrides ─────────────────── */
@media (max-width: 900px) {
  /* Hamburger color on dark hero pages */
  .svc-hero .nav__toggle,
  .contact-hero .nav__toggle,
  .pricing-hero .nav__toggle {
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.15);
    color: #fff;
  }
  /* Nav panel stays light on all pages for readability */
  .svc-hero .nav__pill.is-open,
  .contact-hero .nav__pill.is-open,
  .pricing-hero .nav__pill.is-open,
  .contact-page .nav__pill.is-open {
    background: rgba(17,24,39,0.97);
    border-color: rgba(255,255,255,0.08);
  }
  .svc-hero .nav__link,
  .contact-hero .nav__link,
  .pricing-hero .nav__link,
  .contact-page .nav__link {
    color: rgba(255,255,255,0.75);
  }
  .svc-hero .nav__link:hover,
  .contact-hero .nav__link:hover,
  .pricing-hero .nav__link:hover,
  .contact-page .nav__link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
  .svc-hero .nav__dropdown__menu,
  .contact-hero .nav__dropdown__menu,
  .pricing-hero .nav__dropdown__menu,
  .contact-page .nav__dropdown__menu {
    background: rgba(255,255,255,0.06) !important;
  }
  .svc-hero .nav__dropdown__item,
  .contact-hero .nav__dropdown__item,
  .pricing-hero .nav__dropdown__item,
  .contact-page .nav__dropdown__item {
    color: rgba(255,255,255,0.65) !important;
  }
  .svc-hero .nav__dropdown__item:hover,
  .contact-hero .nav__dropdown__item:hover,
  .pricing-hero .nav__dropdown__item:hover,
  .contact-page .nav__dropdown__item:hover {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
  }
}
