/* ============================================================
   UK CAREER HUB — SALES PAGE STYLES
   Premium Dark Theme | Navy + Gold + White
   ============================================================ */

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

:root {
  --navy-950: #050a1a;
  --navy-900: #080f24;
  --navy-800: #0c1535;
  --navy-700: #111e4a;
  --navy-600: #1a2d6b;
  --gold-500: #d4a843;
  --gold-400: #e8c060;
  --gold-300: #f5d580;
  --blue-bright: #3b82f6;
  --blue-vivid: #2563eb;
  --accent-cyan: #06b6d4;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --muted: #8ca0c4;
  --border: rgba(180,200,255,0.10);
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(180,200,255,0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow: 0 0 60px rgba(59,130,246,0.25);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --font-head: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 40%, #fff9e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── CONTAINER ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION LABELS ── */
.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(6,182,212,0.10));
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.75;
}

.section-intro strong { color: var(--off-white); }

/* ── STICKY NAV ── */
#sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,168,67,0.4);
}

/* ── CTA BUTTONS ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 800;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}

.cta-btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.cta-btn--hero {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 50%, #f0c040 100%);
  color: var(--navy-950);
  padding: 18px 44px;
  font-size: 1.15rem;
  box-shadow: 0 8px 40px rgba(212,168,67,0.45);
}

.cta-btn--hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(212,168,67,0.55);
}

.cta-btn--secondary {
  background: transparent;
  color: var(--gold-400);
  border: 2px solid var(--gold-500);
  padding: 14px 36px;
  font-size: 1rem;
}

.cta-btn--secondary:hover {
  background: rgba(212,168,67,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.2);
}

.cta-btn--buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-400) 60%, #f0c040 100%);
  color: var(--navy-950);
  padding: 20px 40px;
  font-size: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(212,168,67,0.4);
  gap: 4px;
  text-align: center;
}

.cta-btn--buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(212,168,67,0.55);
}

.buy-btn-main { font-size: 1.25rem; font-weight: 900; }
.buy-btn-sub { font-size: 0.8rem; font-weight: 600; opacity: 0.8; }

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, rgba(37,99,235,0.08) 40%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 2s ease-in-out infinite;
}

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

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-subheadline strong { color: var(--off-white); }

.hero-proof-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 36px;
  width: fit-content;
  animation: fadeInUp 0.7s 0.3s ease both;
  backdrop-filter: blur(10px);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.proof-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.hero .cta-btn--hero {
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  animation: fadeInUp 0.7s 0.5s ease both;
}

.hero-mockup-wrap {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.9s 0.3s ease both;
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-mockup-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,168,67,0.15);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(212,168,67,0.2));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-mockup-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,168,67,0.25);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── PAIN SECTION ── */
.pain-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  position: relative;
}

.pain-section .section-title { text-align: center; margin: 0 auto 20px; }
.pain-section .section-intro { text-align: center; margin: 0 auto 20px; }

.pain-callout {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--gold-400);
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.04));
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-md);
  padding: 24px 40px;
  max-width: 640px;
  margin: 32px auto 0;
}

.pain-quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-500);
  vertical-align: middle;
  margin: 0 4px;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.pain-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239,68,68,0.3);
  box-shadow: 0 20px 60px rgba(239,68,68,0.1);
}

.pain-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.pain-card p em { color: var(--off-white); font-style: normal; font-weight: 600; }

.pain-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.pain-bottom p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ── PRODUCT SECTION ── */
.product-section {
  padding: 100px 0;
  background: var(--navy-900);
  position: relative;
}

.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.3), transparent);
}

.product-section .section-title { text-align: center; margin: 0 auto 20px; }
.product-section .section-intro { text-align: center; margin: 0 auto 48px; }

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

.bundle-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s var(--card-delay, 0ms) ease both;
}

.bundle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--accent-cyan));
}

.bundle-card--bonus::before {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
}

.bundle-card--bonus {
  border-color: rgba(212,168,67,0.25);
  background: linear-gradient(135deg, rgba(212,168,67,0.06), var(--card-bg));
}

.bundle-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 24px 60px rgba(59,130,246,0.12);
}

.bundle-card--bonus:hover {
  border-color: rgba(212,168,67,0.4);
  box-shadow: 0 24px 60px rgba(212,168,67,0.15);
}

.bundle-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bundle-icon { font-size: 2rem; }

.bundle-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.1em;
  background: var(--navy-800);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

.bonus-tag {
  color: var(--gold-400) !important;
  border-color: rgba(212,168,67,0.3) !important;
  background: rgba(212,168,67,0.1) !important;
}

.bundle-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.bundle-subhead {
  font-size: 0.78rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.bundle-card--bonus .bundle-subhead { color: var(--gold-400); }

.bundle-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.bundle-card p strong { color: var(--off-white); }
.bundle-card p em { font-style: italic; }

.bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bundle-list li {
  font-size: 0.82rem;
  color: #93c5fd;
  font-weight: 500;
}

.bundle-card--bonus .bundle-list li { color: var(--gold-300); }

/* ── FOR WHOM SECTION ── */
.for-whom-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.for-whom-section .section-title { text-align: center; margin: 0 auto 48px; }

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59,130,246,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.audience-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 24px 60px rgba(59,130,246,0.1);
}

.audience-card:hover::after { opacity: 1; }

.audience-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.audience-card p strong { color: var(--off-white); }

/* ── QUOTE SECTION ── */
.quote-section {
  padding: 100px 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.quote-card {
  max-width: 800px;
  margin: 0 auto 64px;
  text-align: center;
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.03));
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  position: relative;
}

.quote-stars {
  color: var(--gold-400);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.quote-card blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.5;
  font-style: italic;
}

.quote-attribution {
  font-size: 0.9rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-top: 24px;
}

.motivation-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.motivation-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--white);
}

.motivation-block p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.motivation-block p strong { color: var(--off-white); }

/* ── BUY SECTION ── */
.buy-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  position: relative;
  overflow: hidden;
}

.buy-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite;
}

.buy-section .section-title { text-align: center; margin: 0 auto 20px; }
.buy-section .section-intro { text-align: center; margin: 0 auto 48px; }

.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(255,255,255,0.03));
  border: 2px solid rgba(212,168,67,0.3);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,67,0.1);
  backdrop-filter: blur(10px);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 28px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 36px;
}

.pricing-header h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-edition {
  font-size: 0.9rem;
  color: var(--gold-400);
  font-weight: 600;
}

.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--off-white);
  font-weight: 500;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(6,182,212,0.15));
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 50%;
  font-size: 0.7rem;
  color: #60a5fa;
  flex-shrink: 0;
  font-weight: 700;
}

.check--bonus {
  background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(212,168,67,0.1));
  border-color: rgba(212,168,67,0.4);
  color: var(--gold-400);
}

.pricing-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.price-old {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.7;
}

.price-new {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-save {
  background: linear-gradient(135deg, rgba(34,197,94,0.2), rgba(16,185,129,0.15));
  border: 1px solid rgba(34,197,94,0.35);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  flex-wrap: wrap;
}

/* ── FAQ SECTION ── */
.faq-section {
  padding: 100px 0;
  background: var(--navy-950);
}

.faq-section .section-title { text-align: center; margin: 0 auto 48px; }

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(59,130,246,0.25);
}

.faq-item.open {
  border-color: rgba(59,130,246,0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: rgba(255,255,255,0.02); }

.faq-chevron {
  font-size: 0.7rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--accent-cyan); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-answer p strong { color: var(--off-white); }

/* ── FINAL CTA ── */
.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15) 0%, rgba(212,168,67,0.08) 40%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-400);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(140,160,196,0.6);
  max-width: 500px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-proof-bar { margin: 0 auto 36px; }

  .hero-mockup-wrap { order: -1; }
  .hero-mockup-img { max-width: 320px; margin: 0 auto; display: block; }

  .hero .cta-btn--hero { justify-content: center; width: 100%; }

  .pain-cards { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
  .audience-cards { grid-template-columns: 1fr; }

  .pricing-card { padding: 40px 24px; }

  .quote-card { padding: 40px 24px; }

  .hero-trust { text-align: center; }
  .final-cta-content .cta-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-proof-bar { flex-direction: column; gap: 12px; width: 100%; }
  .proof-divider { width: 100%; height: 1px; }

  .nav-cta { font-size: 0.78rem; padding: 8px 16px; }

  .section-title { font-size: 1.8rem; }
  .pricing-trust-row { flex-direction: column; gap: 8px; align-items: center; }
}
