/* ══════════════════════════════════════════
   AUTOAPPLY – WHITE + ELECTRIC BLUE THEME
   ══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --blue:        #0066FF;
  --blue-dark:   #0052CC;
  --blue-light:  #3385FF;
  --blue-pale:   #EBF2FF;
  --blue-mid:    #D0E4FF;
  --cyan:        #00C6FF;
  --indigo:      #6366F1;
  --green:       #10B981;
  --orange:      #F59E0B;
  --red:         #EF4444;

  /* Backgrounds */
  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFF;
  --bg-muted:    #F1F5F9;
  --bg-card:     #FFFFFF;
  --border:      #E2E8F0;
  --border-blue: rgba(0,102,255,0.15);

  /* Text */
  --text-h:      #0A0E1A;
  --text-body:   #374151;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --text-white:  #FFFFFF;

  /* Fonts */
  --font-body:    'Inter', sans-serif;
  --font-display: 'Sora', sans-serif;

  /* Spacing */
  --sec-py:     100px;
  --max-w:      1160px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.10);
  --shadow-blue:0 8px 40px rgba(0,102,255,0.20);

  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-muted); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

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

/* ── Typography helpers ── */
.blue-text {
  color: var(--blue);
}

.section-label {
  display: block;
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  padding: 5px 14px;
  border-radius: 100px;
  margin: 0 auto 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-h);
  margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hidden ── */
.hidden { display: none !important; }

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  color: var(--text-h);
  flex-shrink: 0;
}

.logo-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); }

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: var(--transition);
}
.btn-ghost-nav:hover { border-color: var(--blue); color: var(--blue); }

.btn-primary-nav {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,102,255,0.3);
}
.btn-primary-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-h);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.12), transparent 65%);
  top: -300px; left: -200px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,198,255,0.10), transparent 65%);
  top: 0; right: -100px;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,102,255,0.10) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
  animation: fadeInDown 0.5s ease both;
}

.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7.5vw, 76px);
  font-weight: 900;
  line-height: 1.06;
  color: var(--text-h);
  margin-bottom: 24px;
  animation: fadeInUp 0.55s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.55s ease 0.18s both;
}
.br-desktop { display: inline; }

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInUp 0.55s ease 0.26s both;
}

/* CTA Buttons */
.btn-blue-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-blue-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 12px 48px rgba(0,102,255,0.28); }

.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  color: var(--blue);
  background: transparent;
  border: 2px solid var(--blue);
  transition: var(--transition);
}
.btn-outline-lg:hover { background: var(--blue-pale); transform: translateY(-2px); }

.btn-blue-xl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-blue-xl:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 16px 56px rgba(0,102,255,0.32); }

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 52px;
  animation: fadeInUp 0.55s ease 0.34s both;
  font-weight: 500;
}
.hero-trust i { color: var(--blue); margin-right: 4px; }
.trust-sep { color: var(--border); font-size: 16px; }

/* Counter strip */
.hero-counter-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto 64px;
  animation: fadeInUp 0.55s ease 0.4s both;
  box-shadow: var(--shadow-sm);
}

.counter-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
}

.counter-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
}

.counter-num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 4px;
}

.counter-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dashboard mockup */
.hero-visual {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeInUp 0.7s ease 0.48s both;
}

.dashboard-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,102,255,0.04);
}

.mockup-topbar {
  background: var(--bg-soft);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots { display: flex; gap: 6px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-red    { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green  { background: #10b981; }

.mockup-url {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: monospace;
}

.mockup-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.status-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mockup-body { display: flex; min-height: 300px; }

.mockup-sidebar {
  width: 150px;
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  flex-shrink: 0;
}

.sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 0;
  transition: var(--transition);
}
.sb-item i { width: 14px; font-size: 12px; }
.sb-item.active { color: var(--blue); background: var(--blue-pale); font-weight: 600; border-right: 3px solid var(--blue); }
.sb-item:hover:not(.active) { background: var(--bg-muted); color: var(--text-h); }

.mockup-main { flex: 1; padding: 18px; overflow: hidden; }

.mockup-chips { display: flex; gap: 10px; margin-bottom: 16px; }

.chip {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid transparent;
}
.chip-blue   { background: #EBF2FF; border-color: rgba(0,102,255,0.15); }
.chip-green  { background: #ECFDF5; border-color: rgba(16,185,129,0.2); }
.chip-indigo { background: #EEF2FF; border-color: rgba(99,102,241,0.15); }

.chip-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-h);
  line-height: 1;
}
.chip-val span { font-size: 14px; }
.chip-blue .chip-val { color: var(--blue); }
.chip-green .chip-val { color: var(--green); }
.chip-indigo .chip-val { color: var(--indigo); }

.chip-lbl { font-size: 10px; color: var(--text-muted); margin-top: 3px; font-weight: 500; }

/* Progress bars */
.mockup-progs { margin-bottom: 16px; }
.mprog-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 11px; color: var(--text-muted); }
.mprog-row > span:first-child { width: 80px; flex-shrink: 0; }
.mprog-bar { flex: 1; height: 5px; background: var(--bg-muted); border-radius: 100px; overflow: hidden; }
.mprog-fill { height: 100%; background: var(--blue); border-radius: 100px; transition: width 1.5s ease; }
.mprog-green { background: var(--green); }
.mprog-pct { width: 32px; text-align: right; font-weight: 600; color: var(--text-h); flex-shrink: 0; }

/* Job rows in mockup */
.mockup-jobs { display: flex; flex-direction: column; gap: 7px; }

.job-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: var(--transition);
  cursor: default;
}

.job-logo {
  width: 30px; height: 30px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.job-info { flex: 1; }
.job-role { font-size: 12px; font-weight: 600; color: var(--text-h); }
.job-co { font-size: 10px; color: var(--text-muted); }

.job-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}
.pill-match { background: var(--blue-pale); color: var(--blue); }
.pill-applied { background: #ECFDF5; color: var(--green); }

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}

.float-badge i {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.badge-top {
  left: -100px;
  top: 25%;
  animation: floatY 4s ease-in-out infinite;
}
.badge-top i { background: var(--blue-pale); color: var(--blue); }

.badge-bot {
  right: -100px;
  bottom: 22%;
  animation: floatY 4s ease-in-out 1.2s infinite;
}
.badge-bot i { background: #ECFDF5; color: var(--green); }

.fb-title { font-size: 13px; font-weight: 700; color: var(--text-h); }
.fb-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════
   PROBLEM SECTION
   ══════════════════════════════════════════ */
.problem-section {
  padding: var(--sec-py) 0;
  background: var(--bg-soft);
}

.problem-story {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 0 auto 56px;
}

.story-line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-left: 3px solid var(--border-blue);
  margin-left: 24px;
  position: relative;
}

.story-line:first-child { border-radius: 0 12px 0 0; }
.story-line:last-child  { border-radius: 0 0 12px 0; }

.story-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--border-blue);
}
.si-red    { background: #FEF2F2; color: var(--red); border-color: rgba(239,68,68,0.2); }
.si-orange { background: #FFFBEB; color: var(--orange); border-color: rgba(245,158,11,0.2); }
.si-yellow { background: #FFF7ED; color: #EA580C; border-color: rgba(234,88,12,0.2); }

.story-text {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.5;
}
.story-text strong { color: var(--text-h); font-weight: 700; }

/* Reality contrast */
.problem-reality {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}

.reality-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  background: #FFFBEB;
  border: 1px solid rgba(245,158,11,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.reality-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 32px;
  line-height: 1.25;
}

.reality-contrast {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contrast-item {
  flex: 1;
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid transparent;
}
.contrast-human {
  background: var(--bg-soft);
  border-color: var(--border);
}
.contrast-ai {
  background: var(--blue-pale);
  border-color: var(--border-blue);
}

.contrast-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: var(--text-muted);
}
.contrast-ai .contrast-icon { color: var(--blue); }

.contrast-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contrast-ai .contrast-label { color: var(--blue); }

.contrast-stat {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--text-h);
  line-height: 1.1;
  margin-bottom: 8px;
}
.contrast-ai .contrast-stat { color: var(--blue); }
.contrast-stat span { display: block; font-size: 13px; color: var(--text-muted); font-weight: 500; font-family: var(--font-body); }

.contrast-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.contrast-ai .contrast-note { color: var(--blue); font-weight: 600; }

.contrast-vs {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   URGENCY BANNER
   ══════════════════════════════════════════ */
.urgency-banner {
  background: linear-gradient(135deg, #0052CC, #0066FF, #3385FF);
  padding: 18px 0;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.urgency-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.urgency-banner p {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 500;
}
.urgency-banner p strong { color: #fff; font-weight: 700; }

.urgency-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  white-space: nowrap;
}
.urgency-link:hover { background: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════ */
.hiw-section {
  padding: var(--sec-py) 0;
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(0,102,255,0.2); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-card:hover::before { transform: scaleX(1); }

.step-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0,102,255,0.06);
  line-height: 1;
  user-select: none;
}

.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.si-blue   { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--border-blue); }
.si-indigo { background: #EEF2FF; color: var(--indigo); border: 1px solid rgba(99,102,241,0.15); }
.si-cyan   { background: #E0F9FF; color: #0891B2; border: 1px solid rgba(6,182,212,0.2); }
.si-green  { background: #ECFDF5; color: var(--green); border: 1px solid rgba(16,185,129,0.2); }

.step-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 14px;
  padding-right: 48px;
}
.step-card h3 em { font-style: normal; color: var(--text-muted); font-weight: 500; font-size: 15px; }

.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.step-body p strong { color: var(--text-h); }

.step-you-see {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
}

.ys-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.step-you-see ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.step-you-see ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-body);
}
.step-you-see ul li i.fa-circle-dot { color: var(--blue); font-size: 7px; flex-shrink: 0; }
.step-you-see ul li i.fa-check { color: var(--green); font-size: 11px; flex-shrink: 0; }

.step-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.step-sources span {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  padding: 4px 10px;
  border-radius: 6px;
}

.step-example {
  background: linear-gradient(135deg, var(--blue-pale), #E8F4FF);
  border: 1px solid var(--border-blue);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-h);
  line-height: 1.5;
}
.step-example i { color: var(--blue); margin-top: 2px; flex-shrink: 0; font-size: 12px; }

.step-note { font-size: 14px; color: var(--text-muted); }
.step-note strong { color: var(--text-h); }
.step-bold { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text-h); line-height: 1.3; margin-bottom: 16px; }

/* ══════════════════════════════════════════
   FEATURES SECTION
   ══════════════════════════════════════════ */
.features-section {
  padding: var(--sec-py) 0;
  background: var(--bg-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-wide { grid-column: span 2; }

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: var(--transition);
}
.feat-card:hover { border-color: rgba(0,102,255,0.2); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.fi-blue   { background: var(--blue-pale); color: var(--blue); }
.fi-indigo { background: #EEF2FF; color: var(--indigo); }
.fi-cyan   { background: #E0F9FF; color: #0891B2; }
.fi-green  { background: #ECFDF5; color: var(--green); }
.fi-orange { background: #FFFBEB; color: var(--orange); }
.fi-purple { background: #F5F3FF; color: #7C3AED; }

.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.feat-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border-blue);
}

/* ══════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════ */
.stats-section {
  padding: var(--sec-py) 0;
  background: var(--bg);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.stat-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  border-top: 3px solid var(--blue);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  display: inline;
  line-height: 1;
}

.stat-suf {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  display: inline;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testi:hover { border-color: rgba(0,102,255,0.2); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testi-stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.testi p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 10px; }

.testi-av {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: var(--text-h); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════ */
.pricing-section {
  padding: var(--sec-py) 0;
  background: var(--bg-soft);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  text-align: left;
}

.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  flex: 1;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.price-popular {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.price-popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 1px;
  margin-bottom: 10px;
}
.pc-currency {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  align-self: flex-start;
  margin-top: 6px;
}
.pc-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--text-h);
  line-height: 1;
}

.pc-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; min-height: 42px; }

.pc-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-body);
}
.pc-features li i { font-size: 11px; flex-shrink: 0; }
.feat-on i.fa-check { color: var(--green); }
.feat-off { opacity: 0.4; }
.feat-off i.fa-times { color: var(--text-muted); }

.feat-inherit {
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 4px;
}
.feat-inherit i.fa-layer-group { color: var(--blue); font-size: 11px; }
.feat-inherit strong { color: var(--blue); font-size: 13px; }

/* ── LinkedIn Pack card ── */
.lp-card-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}

/* Left panel */
.lp-info {
  background: linear-gradient(160deg, #0047B3 0%, #0066FF 60%, #3385FF 100%);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-info-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lp-info-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  flex: 1;
}

.lp-info-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.lp-info-currency {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  align-self: flex-start;
  margin-top: 6px;
}

.lp-info-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.lp-info-tag2 {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-left: 4px;
  align-self: flex-end;
  margin-bottom: 6px;
}

.lp-buy-btn {
  background: #fff !important;
  color: var(--blue) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
  font-weight: 700;
  width: 100%;
  justify-content: center;
}
.lp-buy-btn:hover {
  background: var(--blue-pale) !important;
  transform: translateY(-2px);
}

/* Right panel */
.lp-feats {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--bg-soft);
}

.lp-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  position: relative;
}

.lp-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.lp-feat-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1px;
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-feat-icon-new {
  width: 42px; height: 42px;
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}
.lp-feat-icon-new.si-indigo {
  background: #EEF2FF;
  border-color: rgba(99,102,241,0.2);
  color: var(--indigo);
}

.lp-feat-body { flex: 1; }
.lp-feat-title { font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 5px; }
.lp-feat-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.65; }

.btn-price-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,102,255,0.3);
  transition: var(--transition);
}
.btn-price-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-price-outline {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  color: var(--blue);
  background: transparent;
  border: 2px solid var(--blue);
  transition: var(--transition);
}
.btn-price-outline:hover { background: var(--blue-pale); }

/* ══════════════════════════════════════════
   TRUST + TRANSPARENCY
   ══════════════════════════════════════════ */
.trust-section {
  padding: var(--sec-py) 0;
  background: var(--bg);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.trust-list { display: flex; flex-direction: column; gap: 20px; }

.trust-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.trust-item-row:hover { border-color: rgba(0,102,255,0.2); box-shadow: var(--shadow-sm); }

.ti-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.ti-green { background: #ECFDF5; color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.ti-blue  { background: var(--blue-pale); color: var(--blue); border: 1px solid var(--border-blue); }

.ti-title { font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 3px; }
.ti-sub { font-size: 13px; color: var(--text-muted); }

.security-card {
  background: linear-gradient(135deg, #0052CC, #0066FF);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: #fff;
}

.sec-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}

.security-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.sec-items { display: flex; flex-direction: column; gap: 14px; }

.sec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.sec-row i {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SECONDARY FEATURES
   ══════════════════════════════════════════ */
.secondary-section {
  padding: var(--sec-py) 0;
  background: var(--bg-soft);
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-section {
  padding: var(--sec-py) 0;
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(0,102,255,0.2); }
.faq-item[data-open="true"] { border-color: var(--blue); box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-h);
  user-select: none;
}
.faq-q:hover { color: var(--blue); }

.faq-ic {
  color: var(--blue);
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 13px;
}
.faq-item[data-open="true"] .faq-ic { transform: rotate(45deg); }

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item[data-open="true"] .faq-ans { max-height: 300px; }

.faq-ans p {
  padding: 0 22px 22px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FINAL CTA
   ══════════════════════════════════════════ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(150deg, #0047B3, #0066FF 40%, #3385FF 80%, #00C6FF);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.fcta-inner { position: relative; z-index: 1; }

.fcta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}

.fcta-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.fcta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  padding: 72px 0 28px;
  background: var(--text-h);
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 56px;
}

.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; display: inline-flex; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-icon { background: var(--blue); }

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════
   STICKY BOTTOM CTA
   ══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-h);
}

.sc-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s ease infinite;
  flex-shrink: 0;
}

.btn-sticky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  white-space: nowrap;
  transition: var(--transition);
}
.btn-sticky:hover { background: var(--blue-dark); }

/* Ensure footer content isn't hidden behind sticky CTA */
.footer { padding-bottom: 80px; }

/* ══════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-wide { grid-column: span 2; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testi:last-child { grid-column: span 2; max-width: 520px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 auto; }
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-popular { transform: scale(1); }
  .price-popular:hover { transform: translateY(-6px); }
  .lp-card-wrap { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .secondary-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .reality-contrast { flex-direction: column; gap: 12px; }
  .contrast-vs { transform: rotate(90deg); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --sec-py: 72px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-links.open li a {
    display: block;
    padding: 12px 14px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-h);
  }
  .nav-links.open li a:hover { background: var(--bg-soft); color: var(--blue); }

  .nav-cta.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 290px;
    left: 0; right: 0;
    padding: 0 24px 20px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 999;
    gap: 8px;
  }
  .nav-cta.open .btn-ghost-nav,
  .nav-cta.open .btn-primary-nav {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: 15px;
  }

  .hero { padding: 110px 0 60px; }
  .br-desktop { display: none; }

  .badge-top, .badge-bot { display: none; }
  .mockup-sidebar { display: none; }

  .hero-counter-strip { flex-direction: column; max-width: 100%; border-radius: 12px; }
  .counter-divider { width: 100%; height: 1px; }

  .features-grid { grid-template-columns: 1fr; }
  .feat-wide { grid-column: span 1; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testi:last-child { grid-column: span 1; max-width: 100%; }

  .pricing-grid,
  .pricing-grid-4 { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-cta { padding: 12px 16px; }
  .sticky-counter { font-size: 12px; }
  .sticky-counter span:not(.sc-dot) { white-space: nowrap; }

  .problem-reality { padding: 28px 20px; }
  .reality-contrast { gap: 10px; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 36px; }

  .mockup-chips { flex-direction: column; }
  .chip { padding: 10px; }

  .step-card { padding: 24px 20px; }
  .problem-story { margin-left: 0; }
  .story-line { margin-left: 0; border-left: none; border-top: 2px solid var(--border-blue); }
  .story-line:first-child { border-top: none; padding-top: 0; }

  .section-heading { font-size: 26px; }
  .lp-feat-item { flex-wrap: wrap; }
}