/* ─── DESIGN TOKENS (matches hublle-landing-v4 exactly) ─────── */
:root {
  --blue-950: #0a1628;
  --blue-900: #0f1f3d;
  --blue-800: #1a3260;
  --blue-700: #1e4080;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --accent:   #0ea5e9;
  --accent-light: #e0f2fe;
  --wa-green: #25d366;
  --surface:  #f8faff;
  --white:    #ffffff;
  --text-primary: #0a1628;
  --text-secondary: #4b5e7e;
  --text-muted: #8499b8;
  --border: #e2eaf8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --shadow-sm: 0 1px 4px rgba(10,22,40,0.07);
  --shadow-md: 0 4px 20px rgba(37,99,235,0.10);
  --shadow-lg: 0 8px 40px rgba(37,99,235,0.15);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-50); color: var(--blue-600);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-full);
  border: 1px solid var(--blue-100);
}
.section-label { text-align: center; margin-bottom: 16px; }
.section-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-primary); text-align: center;
}
.section-sub {
  text-align: center; font-size: 18px; color: var(--text-secondary);
  max-width: 580px; margin: 16px auto 0; line-height: 1.6;
}
.highlight { color: var(--blue-600); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-600); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; padding: 13px 26px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-blue);
  transition: all 0.2s ease;
}
.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(37,99,235,0.30); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue-600);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; padding: 12px 24px;
  border-radius: var(--radius-full); border: 1.5px solid var(--blue-200);
  transition: all 0.2s ease;
}
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-600); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--blue-700);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 700; padding: 13px 26px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ─── ANNOUNCEMENT ───────────────────────────────────────────── */
#announcement {
  background: linear-gradient(90deg, var(--blue-600), var(--accent));
  color: var(--white); font-size: 13px; font-weight: 500;
  text-align: center; padding: 10px 48px 10px 16px; position: relative;
}
#announcement a { color: var(--white); font-weight: 700; text-decoration: underline; }
#announcement .close-ann {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: rgba(255,255,255,0.7); cursor: pointer;
}
#announcement .close-ann:hover { color: var(--white); }

/* Navbar/mobile menu styles come from css/header-footer.css (universal header) */

/* ─── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { background: var(--surface); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; gap: 8px; font-size: 13px; color: var(--text-muted); align-items: center; }
.breadcrumb-list a { color: var(--text-secondary); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--blue-600); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--blue-600); font-weight: 600; }

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 10px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); font-weight: 500; }
.trust-item .dot-green { width: 7px; height: 7px; background: var(--wa-green); border-radius: 50%; }

/* ─── STICKY CTA ─────────────────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: var(--blue-950); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0; transform: translateY(100%); transition: transform 0.3s;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.sticky-cta-text strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); display: block; }
.sticky-cta-text span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  background: var(--surface);
  background-image:
    radial-gradient(ellipse 60% 40% at 70% 50%, rgba(37,99,235,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(14,165,233,0.05) 0%, transparent 60%);
  padding: 80px 0 96px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text-primary); margin-bottom: 20px; margin-top: 16px;
}
.hero-h1 .line2 { color: var(--blue-600); display: block; }
.hero-sub {
  font-size: 18px; line-height: 1.65; color: var(--text-secondary);
  margin-bottom: 32px; max-width: 480px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-top: 20px; }
.hero-trust-item { display: flex; align-items: center; gap: 5px; }
.hero-trust-item svg { color: var(--wa-green); }
.hero-stat-strip {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: var(--text-primary); line-height: 1;
}
.hero-stat-num .unit { font-size: 16px; color: var(--blue-600); }
.hero-stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.hero-feature-list {
  display: flex; flex-wrap: wrap; gap: 20px 32px; margin-top: 20px;
  font-size: 13px; color: var(--text-secondary); font-weight: 500;
}
.hero-feature-list .trust-item { font-size: inherit; color: inherit; }

/* ─── HERO VISUAL — Dashboard Mockup ────────────────────────── */
.hero-visual { position: relative; }
.dash-mockup {
  background: var(--blue-950); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.dash-topbar {
  background: var(--blue-900); padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots { display: flex; gap: 5px; }
.dash-dot { width: 9px; height: 9px; border-radius: 50%; }
.dash-dot-r { background: #ff5f57; }
.dash-dot-y { background: #febc2e; }
.dash-dot-g { background: #28c840; }
.dash-url {
  flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px;
  padding: 4px 12px; font-size: 11px; color: rgba(255,255,255,0.3);
  font-family: monospace;
}
.dash-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
/* Campaign header */
.camp-header {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 12px 14px;
}
.camp-title-wrap { display: flex; align-items: center; gap: 10px; }
.camp-icon { font-size: 18px; }
.camp-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
.camp-segment { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.camp-live-pill {
  display: flex; align-items: center; gap: 5px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-full); padding: 4px 10px;
  font-size: 10px; font-weight: 700; color: #4ade80;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Progress bar */
.progress-wrap { }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 6px; }
.progress-text { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; }
.progress-count { font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 700; }
.progress-track { height: 8px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--wa-green));
  width: 0%; transition: width 3s ease-in-out;
}
.progress-fill.animated { width: 73%; }
.progress-meta { display: flex; justify-content: space-between; margin-top: 5px; }
.progress-meta span { font-size: 10px; color: rgba(255,255,255,0.3); }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.stat-cell {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); padding: 12px 10px; text-align: center;
}
.stat-cell.good { border-color: rgba(74,222,128,0.2); background: rgba(34,197,94,0.07); }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--white); display: block;
}
.stat-cell.good .stat-num { color: #4ade80; }
.stat-lbl { font-size: 9px; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; display: block; }

/* Activity feed */
.activity-feed { display: flex; flex-direction: column; gap: 6px; }
.activity-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
  font-size: 11px; color: rgba(255,255,255,0.5);
  transition: all 0.4s ease;
}
.activity-item.new-activity {
  background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.25);
  color: rgba(255,255,255,0.75);
}
.act-icon { font-size: 14px; flex-shrink: 0; }
.act-text { flex: 1; }
.act-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 700; color: #4ade80; }

/* Float badges */
.hero-float-badges {
  position: absolute; right: -16px; top: 50px;
  display: flex; flex-direction: column; gap: 10px;
}
.float-badge {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 14px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.float-badge .fb-icon { font-size: 18px; }
.float-badge-title { font-weight: 700; color: var(--text-primary); font-size: 11px; }
.float-badge-sub { font-size: 10px; color: var(--text-muted); }
@keyframes fb1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes fb2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-badge:nth-child(1) { animation: fb1 3.5s ease-in-out infinite; }
.float-badge:nth-child(2) { animation: fb2 4.2s ease-in-out infinite 1s; }

/* ─── SOCIAL PROOF ───────────────────────────────────────────── */
#social-proof { padding: 32px 0; }
.proof-label {
  text-align: center; font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; font-weight: 700;
}
.proof-cards-v4 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.proof-card-v4 {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px; transition: all 0.3s;
}
.proof-card-v4:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proof-metric-number { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 36px; color: var(--blue-600); margin-bottom: 4px; }
.proof-metric-desc { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; font-weight: 700; }
.proof-quote-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.proof-attribution { display: flex; align-items: center; gap: 12px; }
.proof-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--white); flex-shrink: 0;
}
.proof-stars-sm { color: #fbbf24; font-size: 11px; margin-bottom: 2px; }
.proof-attr-name { font-size: 11px; font-weight: 700; color: var(--text-primary); }
.proof-attr-vol { font-size: 10px; color: var(--text-muted); }

/* ─── TRUST STRIP ────────────────────────────────────────────── */
#trust-strip { background: var(--surface); }
.trust-strip-label { text-align: center; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; font-weight: 700; }
.trust-strip-badges { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.trust-strip-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 10px 18px;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.trust-strip-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.trust-strip-badge .badge-icon { font-size: 18px; }
.trust-strip-badge .badge-label strong { display: block; color: var(--text-primary); font-size: 12px; }
.trust-strip-badge .badge-label span { font-size: 10px; color: var(--text-muted); font-weight: 500; }

/* ─── FEATURES — HOW IT WORKS ────────────────────────────────── */
#how-it-works { background: var(--blue-950); }
#how-it-works .section-headline { color: var(--white); }
#how-it-works .section-sub { color: rgba(255,255,255,0.45); }
#how-it-works .tag { background: rgba(255,255,255,0.08); color: var(--blue-400); border-color: rgba(255,255,255,0.1); }

.flow-rows { display: flex; flex-direction: column; gap: 0; margin-top: 64px; }
.flow-row {
  display: grid; grid-template-columns: 72px 1fr 1fr; gap: 40px;
  align-items: center; padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.flow-row:last-child { border-bottom: none; }
.flow-num-col { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.flow-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(37,99,235,0.2); border: 2px solid var(--blue-500);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 18px; color: var(--blue-400);
}
.flow-connector { width: 2px; height: 36px; background: rgba(37,99,235,0.2); }
.flow-row:last-child .flow-connector { display: none; }
.flow-content-col { }
.flow-step-tag {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-400); margin-bottom: 6px;
}
.flow-step-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 10px;
}
.flow-step-desc { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.flow-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.flow-chip {
  font-size: 11px; font-weight: 600; padding: 4px 10px;
  border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}
.flow-chip.green { border-color: rgba(37,211,102,0.3); color: #4ade80; }
.flow-chip.blue { border-color: rgba(96,165,250,0.3); color: #93c5fd; }
.flow-chip.purple { border-color: rgba(167,139,250,0.3); color: #c4b5fd; }
.flow-chip.yellow { border-color: rgba(252,211,77,0.3); color: #fcd34d; }
.flow-visual-col {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 20px; min-height: 140px;
}

/* Flow visual: Step 1 — Import */
.import-ui { display: flex; flex-direction: column; gap: 10px; }
.import-dropzone {
  border: 2px dashed rgba(255,255,255,0.15); border-radius: var(--radius-md);
  padding: 16px; text-align: center; cursor: pointer;
  transition: border-color 0.2s;
}
.import-dropzone:hover { border-color: var(--blue-400); }
.import-dropzone-icon { font-size: 24px; margin-bottom: 6px; }
.import-dropzone-text { font-size: 11px; color: rgba(255,255,255,0.4); }
.import-dropzone-text strong { color: rgba(255,255,255,0.7); }
.import-alt { display: flex; gap: 8px; }
.import-alt-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 8px 10px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); cursor: pointer;
  transition: all 0.2s;
}
.import-alt-btn:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.import-alt-btn .btn-icon { font-size: 14px; }
.import-preview {
  background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.07); overflow: hidden;
}
.import-preview-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  font-size: 9px; padding: 6px 10px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.import-preview-row:last-child { border-bottom: none; }
.import-preview-row.header { color: rgba(255,255,255,0.3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.import-preview-row.data { color: rgba(255,255,255,0.6); }
.import-count-badge {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.25);
  border-radius: var(--radius-sm); padding: 7px 10px;
}
.import-count-text { font-size: 11px; color: rgba(255,255,255,0.6); }
.import-count-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; color: var(--blue-400); }

/* Flow visual: Step 2 — Segments */
.segment-ui { display: flex; flex-direction: column; gap: 8px; }
.seg-row {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); padding: 9px 12px; cursor: pointer; transition: all 0.2s;
}
.seg-row.active { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.3); }
.seg-row:hover { background: rgba(255,255,255,0.07); }
.seg-icon { font-size: 14px; flex-shrink: 0; }
.seg-info { flex: 1; }
.seg-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); }
.seg-meta { font-size: 9px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.seg-count { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 800; color: var(--blue-400); }
.seg-check { font-size: 14px; color: var(--blue-400); }
.seg-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.seg-filter-chip {
  font-size: 9px; font-weight: 600; padding: 3px 8px;
  border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.2s;
}
.seg-filter-chip.active { border-color: rgba(96,165,250,0.4); color: #93c5fd; background: rgba(37,99,235,0.12); }

/* Flow visual: Step 3 — Template */
.template-ui { }
.template-preview {
  background: #1a2332; border-radius: var(--radius-md); padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.template-header { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.template-wa-av { width: 22px; height: 22px; background: var(--wa-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.template-wa-name { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.7); }
.template-wa-badge { font-size: 8px; color: rgba(255,255,255,0.3); margin-left: auto; }
.template-msg {
  background: rgba(255,255,255,0.06); border-radius: 10px; border-bottom-left-radius: 2px;
  padding: 10px 12px; font-size: 10px; color: rgba(255,255,255,0.7); line-height: 1.6;
}
.template-var { background: rgba(37,99,235,0.3); color: #93c5fd; border-radius: 3px; padding: 1px 4px; font-weight: 700; }
.template-img-placeholder {
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(14,165,233,0.2));
  border-radius: 8px; height: 56px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 8px; border: 1px dashed rgba(255,255,255,0.15);
}
.template-btns { display: flex; gap: 6px; margin-top: 8px; }
.template-btn {
  flex: 1; background: rgba(37,99,235,0.25); border: 1px solid rgba(37,99,235,0.4);
  border-radius: 6px; padding: 6px 4px; font-size: 9px; font-weight: 700;
  color: #93c5fd; text-align: center;
}
.template-meta { display: flex; gap: 8px; margin-top: 10px; }
.template-meta-chip {
  font-size: 9px; font-weight: 600; padding: 3px 8px;
  border-radius: var(--radius-full); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
}
.template-meta-chip.approved { border-color: rgba(74,222,128,0.3); color: #4ade80; }

/* Flow visual: Step 4 — Analytics */
.analytics-ui { display: flex; flex-direction: column; gap: 8px; }
.analytics-header { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.analytics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.analytics-cell {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); padding: 10px; text-align: center;
}
.analytics-cell.roi { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.25); grid-column: 1/-1; }
.analytics-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); }
.analytics-cell.roi .analytics-num { font-size: 28px; color: #4ade80; }
.analytics-lbl { font-size: 8px; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
.analytics-funnel { display: flex; flex-direction: column; gap: 4px; }
.funnel-row { display: flex; align-items: center; gap: 8px; }
.funnel-label { font-size: 9px; color: rgba(255,255,255,0.4); width: 52px; }
.funnel-track { flex: 1; height: 14px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.funnel-fill { height: 100%; border-radius: 3px; }
.funnel-val { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.6); width: 32px; text-align: right; }

/* ─── SEGMENTS DEEP DIVE ─────────────────────────────────────── */
#segments { background: var(--white); }
.seg-showcase { display: grid; grid-template-columns: 320px 1fr; gap: 32px; margin-top: 56px; align-items: start; }
.seg-selector { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 100px; }
.seg-option {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px; cursor: pointer; transition: all 0.2s; position: relative;
}
.seg-option::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--blue-600); border-radius: 4px 0 0 4px; opacity: 0; transition: opacity 0.2s;
}
.seg-option:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.seg-option.active { border-color: var(--blue-600); background: var(--blue-50); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.seg-option.active::before { opacity: 1; }
.seg-option-inner { display: flex; align-items: center; gap: 12px; }
.seg-option-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.seg-option-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; color: var(--text-primary); margin-bottom: 2px; }
.seg-option-label { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.seg-panel { display: none; background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-xl); padding: 32px; min-height: 380px; }
.seg-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.seg-panel-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 22px; color: var(--text-primary); margin-bottom: 8px; }
.seg-panel-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
/* Filter builder UI */
.filter-builder { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.filter-builder-header { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.filter-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.filter-select {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: 12px; font-weight: 600; color: var(--text-primary);
  font-family: 'DM Sans', sans-serif; flex: 1; cursor: pointer;
}
.filter-op { font-size: 11px; font-weight: 700; color: var(--blue-600); flex-shrink: 0; }
.filter-input {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 12px; font-size: 12px; color: var(--text-primary);
  font-family: 'DM Sans', sans-serif; flex: 1;
}
.filter-add { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--blue-600); cursor: pointer; padding: 4px 0; }
.filter-result { margin-top: 16px; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius-md); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }
.filter-result-count { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--blue-600); }
.filter-result-label { font-size: 12px; color: var(--blue-700); font-weight: 600; }
/* Shopify sync */
.shopify-sync-ui { }
.shopify-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.shopify-logo-badge {
  width: 36px; height: 36px; background: #96bf48; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.shopify-header-text strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-primary); display: block; }
.shopify-header-text span { font-size: 12px; color: var(--text-muted); }
.shopify-segment-list { display: flex; flex-direction: column; gap: 8px; }
.shopify-seg {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 14px;
  transition: all 0.2s; cursor: pointer;
}
.shopify-seg:hover { border-color: var(--blue-300); box-shadow: var(--shadow-sm); }
.shopify-seg-icon { font-size: 18px; flex-shrink: 0; }
.shopify-seg-name { font-size: 13px; font-weight: 700; color: var(--text-primary); flex: 1; }
.shopify-seg-count { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: var(--blue-600); }
.shopify-seg-arrow { font-size: 12px; color: var(--text-muted); }
.import-btn-row { margin-top: 16px; display: flex; gap: 10px; }
/* Tags */
.tags-panel { }
.tags-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.tag-def-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px;
}
.tag-def-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.tag-badge { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: var(--radius-full); }
.tag-badge.green { background: #dcfce7; color: #16a34a; }
.tag-badge.orange { background: #fef3c7; color: #92400e; }
.tag-badge.blue { background: var(--blue-50); color: var(--blue-700); }
.tag-def-rule { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.tags-flow { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; }
.tags-flow-title { font-size: 11px; font-weight: 700; color: var(--text-secondary); margin-bottom: 10px; }
.tags-flow-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.tags-flow-row:last-child { margin-bottom: 0; }
.tags-flow-icon { font-size: 14px; flex-shrink: 0; }
.tags-arrow { font-size: 12px; color: var(--text-muted); }

/* ─── ROI CALCULATOR ─────────────────────────────────────────── */
#roi-calculator { background: var(--blue-950); position: relative; overflow: hidden; }
#roi-calculator::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(37,99,235,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(14,165,233,0.1) 0%, transparent 60%);
}
.roi-inner { position: relative; z-index: 1; }
#roi-calculator .section-headline { color: var(--white); }
#roi-calculator .section-sub { color: rgba(255,255,255,0.5); }
#roi-calculator .tag { background: rgba(255,255,255,0.08); color: var(--blue-400); border-color: rgba(255,255,255,0.1); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.calc-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl); padding: 32px 28px;
}
.calc-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 4px;
}
.calc-card-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.calc-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.calc-field { display: flex; flex-direction: column; gap: 5px; }
.calc-field-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.05em; }
.calc-field-wrap { position: relative; }
.calc-input {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); padding: 10px 12px; padding-right: 44px;
  color: var(--white); font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s;
}
.calc-input:focus { border-color: var(--blue-400); }
.calc-field-suffix {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.3); pointer-events: none;
}
.calc-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-btn {
  width: 100%; padding: 13px; background: var(--blue-600);
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 14px; border-radius: var(--radius-full);
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.calc-btn:hover { background: var(--blue-500); transform: translateY(-1px); }
.calc-results {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: none; flex-direction: column; gap: 12px;
}
.calc-results.visible { display: flex; animation: slideUp 0.45s ease; }
@keyframes slideUp { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:translateY(0)} }
.calc-result-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc-result-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 14px 12px; text-align: center;
}
.calc-result-item.good { border-color: rgba(74,222,128,0.35); background: rgba(34,197,94,0.1); }
.calc-result-item.hero { border-color: var(--blue-500); background: rgba(37,99,235,0.15); grid-column: 1/-1; }
.calc-result-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.calc-result-item.good .calc-result-num { color: #4ade80; }
.calc-result-item.hero .calc-result-num { color: #4ade80; font-size: 28px; }
.calc-result-label { font-size: 9px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.4; }
.calc-result-breakdown {
  background: rgba(255,255,255,0.03); border-radius: var(--radius-md);
  padding: 12px 14px; font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.7; border: 1px solid rgba(255,255,255,0.06);
}
.calc-result-breakdown strong { color: rgba(255,255,255,0.8); }
.calc-cta-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.calc-cta-row a { flex: 1; text-align: center; min-width: 160px; }

/* ─── CAMPAIGN ANALYTICS SECTION ────────────────────────────── */
#campaign-analytics { background: var(--surface); }
.analytics-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 56px; }
.analytics-left { }
.analytics-feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.analytics-feat { display: flex; align-items: flex-start; gap: 12px; }
.analytics-feat-dot {
  width: 22px; height: 22px; background: var(--blue-50); border: 1px solid var(--blue-100);
  border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.analytics-feat-dot svg { width: 10px; height: 10px; color: var(--blue-600); }
.analytics-feat-text { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.analytics-feat-text strong { color: var(--text-primary); }
/* Campaign table mockup */
.camp-table-wrap {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md);
}
.camp-table-header {
  background: var(--surface); padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.camp-table-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-primary); }
.camp-table-meta { font-size: 11px; color: var(--text-muted); }
.camp-table table { width: 100%; border-collapse: collapse; font-size: 12px; }
.camp-table th {
  padding: 10px 16px; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.06em; background: var(--surface); border-bottom: 1px solid var(--border);
}
.camp-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-secondary); vertical-align: middle; }
.camp-table tr:last-child td { border-bottom: none; }
.camp-table tr:hover td { background: var(--surface); }
.camp-name-cell { display: flex; flex-direction: column; gap: 2px; }
.camp-name-cell strong { font-weight: 700; color: var(--text-primary); font-size: 12px; }
.camp-name-cell span { font-size: 10px; color: var(--text-muted); }
.status-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px;
}
.status-pill.sent { background: #dcfce7; color: #16a34a; }
.status-pill.draft { background: #f1f5f9; color: #64748b; }
.status-pill.live { background: #dbeafe; color: #1d4ed8; }
.roi-cell { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: var(--blue-600); }
.revenue-cell { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: #16a34a; }

/* ─── COMPARISON TABLE ───────────────────────────────────────── */
#comparison { background: var(--white); border-top: 1px solid var(--border); }
.comp-table-wrap {
  margin-top: 48px; overflow-x: auto;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comp-table th {
  padding: 16px 20px; text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700; background: var(--white);
  border-bottom: 2px solid var(--border); white-space: nowrap;
}
.comp-table th:first-child { text-align: left; width: 220px; }
.comp-table th.hublle-th { background: var(--blue-600); color: var(--white); border-bottom-color: var(--blue-700); }
.comp-table td { padding: 12px 20px; text-align: center; border-bottom: 1px solid var(--border); color: var(--text-secondary); background: var(--white); }
.comp-table td:first-child { text-align: left; font-weight: 500; color: var(--text-primary); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--surface); }
.comp-table td.hublle-td { background: var(--blue-50); color: var(--blue-700); font-weight: 700; }
.comp-table tr:hover td.hublle-td { background: #dbeafe; }
.comp-yes { color: var(--blue-600); font-size: 16px; font-weight: 700; }
.comp-no { color: #cbd5e1; font-size: 16px; }
.comp-partial { color: #f59e0b; font-size: 12px; font-weight: 600; }

/* ─── PRICING ────────────────────────────────────────────────── */
#pricing { background: var(--surface); }
.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.pricing-toggle {
  display: flex; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 4px; gap: 4px;
}
.ptog-btn {
  padding: 8px 22px; border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
  border: none; background: transparent; display: flex; align-items: center; gap: 6px;
}
.ptog-btn.active { background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-sm); }
.ptog-save { background: #dcfce7; color: #166534; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: var(--radius-full); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; align-items: start; }
.price-card {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 28px; background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--blue-600); background: var(--blue-900);
  position: relative; transform: translateY(-8px);
}
.price-card.popular:hover { transform: translateY(-12px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue-600), var(--accent));
  color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.price-card.popular .plan-name { color: rgba(255,255,255,0.5); }
.plan-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800; color: var(--text-primary); line-height: 1; }
.price-card.popular .plan-price { color: var(--white); }
.plan-price .currency { font-size: 20px; vertical-align: super; margin-right: 2px; }
.plan-price .period { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.price-card.popular .plan-price .period { color: rgba(255,255,255,0.4); }
.plan-tagline { font-size: 13px; color: var(--text-muted); margin: 8px 0 20px; }
.price-card.popular .plan-tagline { color: rgba(255,255,255,0.45); }
.price-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.price-card.popular .price-divider { border-color: rgba(255,255,255,0.1); }
.price-features { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 24px; }
.price-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.price-card.popular .price-feat { color: rgba(255,255,255,0.55); }
.price-feat-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: 9px; color: var(--blue-600);
}
.price-card.popular .price-feat-check { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.plan-cta { display: block; text-align: center; }

/* ─── FAQ (matches screenshot: light bg, white cards, neutral border) ─── */
#faq { background: #fff !important; }
#faq .section-label .tag { background: #fff; color: #5c85e1; border: 1px solid #e0e0e0; }
#faq .section-headline { color: #2b2b2b; margin-bottom: 32px; }
#faq .section-headline .highlight { color: #3366ff; }
.faq-list { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid #e0e0e0; border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: #2b2b2b; cursor: pointer; transition: background 0.2s;
}
.faq-q:hover { background: var(--blue-50); }
.faq-chevron { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; font-size: 14px; color: var(--text-secondary); line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 24px 20px; }

/* ─── FINAL CTA ──────────────────────────────────────────────── */
#final-cta { background: var(--surface); border-top: 1px solid var(--border); }
.final-cta-card {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  border-radius: var(--radius-xl); padding: 72px 48px;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.final-cta-card::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(14,165,233,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 50%, rgba(37,99,235,0.12) 0%, transparent 60%);
}
.final-cta-left { position: relative; z-index: 1; }
.final-cta-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-400); margin-bottom: 12px; }
.final-cta-h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(26px, 3.5vw, 38px); line-height: 1.15; color: var(--white); margin-bottom: 12px; letter-spacing: -0.02em; }
.final-cta-sub { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 480px; }
.final-cta-metrics { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.fcm-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); }
.fcm-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.final-cta-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.final-cta-actions { display: flex; flex-direction: column; gap: 10px; }
.final-cta-secondary-text { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; }
.trust-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 6px 12px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-float-badges { display: none; }
  .hero-h1 { font-size: clamp(32px, 6vw, 46px); }
  .flow-row { grid-template-columns: 1fr; gap: 20px; }
  .flow-num-col { flex-direction: row; justify-content: flex-start; }
  .flow-connector { display: none; }
  .seg-showcase { grid-template-columns: 1fr; }
  .seg-selector { position: static; }
  .calc-grid { grid-template-columns: 1fr; }
  .analytics-showcase { grid-template-columns: 1fr; }
  .final-cta-card { grid-template-columns: 1fr; padding: 48px 32px; }
  .final-cta-right { min-width: unset; flex-direction: row; flex-wrap: wrap; }
  .trust-badges { flex-direction: row; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.popular { transform: none; }
}
@media (max-width: 768px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding: 48px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 48px 0 64px; }
  .hero-h1 { font-size: clamp(28px, 6vw, 40px); }
  .hero-sub { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost { min-height: 48px; justify-content: center; }
  .proof-cards-v4 { grid-template-columns: 1fr; }
  .hero-stat-strip { gap: 16px; }
  .analytics-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .camp-table { font-size: 11px; }
  .camp-table th, .camp-table td { padding: 10px 12px; }
  .final-cta-card { padding: 40px 24px; grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .final-cta-left { text-align: center; }
  .final-cta-sub { margin-left: auto; margin-right: auto; }
  .final-cta-metrics { justify-content: center; }
  .final-cta-right { align-items: center; min-width: unset; }
  .final-cta-actions { flex-direction: column; }
  .final-cta-actions a { min-height: 48px; justify-content: center; }
  .faq-list { margin-top: 32px; padding: 0 4px; }
  .faq-q { padding: 16px 18px; min-height: 52px; font-size: 14px; }
  .filter-row { flex-direction: column; }
  .flow-visual-col { display: none; }
  .flow-row { grid-template-columns: 48px 1fr; }
  .sticky-cta .container { padding-left: 20px; padding-right: 20px; }
  .sticky-cta-inner { flex-wrap: wrap; gap: 12px; }
  .sticky-cta a { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 480px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 40px 0; }
  #hero { padding: 40px 0 56px; }
  .hero-h1 { font-size: 26px; }
  .trust-bar-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat-strip { flex-direction: column; gap: 16px; }
  .hero-feature-list { gap: 12px 20px; }
  .section-headline { font-size: clamp(24px, 6vw, 32px); }
  .final-cta-card { padding: 32px 20px; }
  .final-cta-h2 { font-size: 24px; }
}
