/* ============================================================
   BARCA PRODUCTION — Design System
   Premium Resume Templates | barcaproduction.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ---- TOKENS ---- */
:root {
  /* Colors — Dark Luxury Theme */
  --bg:          #07091A;
  --bg-2:        #0C1030;
  --surface:     #0D1535;
  --surface-2:   #111A42;
  --navy:        #1E2D5A;
  --navy-2:      #162246;
  --gold:        #C4993A;
  --gold-light:  #D4A843;
  --gold-pale:   rgba(212,168,67,.08);
  --text:        #F0F2F8;
  --text-2:      #B8C4E0;
  --text-3:      #7A8BB5;
  --border:      rgba(212,168,67,.13);
  --border-2:    rgba(212,168,67,.24);
  --success:     #22C55E;
  --teal:        #0A9090;
  --purple:      #7C3AED;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-accent:  'Poppins', system-ui, sans-serif;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Borders */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.25);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.35);
  --shadow-md: 0 4px 20px rgba(0,0,0,.50);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.60);
  --shadow-xl: 0 16px 64px rgba(0,0,0,.70);
  --shadow-gold: 0 4px 24px rgba(212,168,67,.35);

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 160ms;
  --dur-med:  280ms;
  --dur-slow: 480ms;

  /* Layout */
  --max-width: 1200px;
  --content-width: 720px;
  --nav-height: 88px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.container--narrow { max-width: 860px; }
.container--wide   { max-width: 1440px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(7,9,26,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,168,67,.10);
  transition: box-shadow var(--dur-med) var(--ease);
  padding-top: 14px;       /* push content down from top edge */
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo — horizontal with mark */
.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(255,255,255,.15));
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
}
.nav__logo-sub {
  font-family: var(--font-accent);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ---- NAV DROPDOWN ---- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__item {
  position: relative;
}
.nav__link--active {
  color: #FFFFFF !important;
  opacity: 1 !important;
  font-weight: 600;
}
.nav__link--drop {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav__link--drop .nav__chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--dur-fast);
  color: rgba(255,255,255,.70);
  flex-shrink: 0;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); }

/* Dropdown panel */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #0D1535;
  border: 1px solid rgba(212,168,67,.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 4px 16px rgba(0,0,0,.40);
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
  z-index: 200;
  min-width: 520px;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Bridge gap so hover doesn't close */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
}

/* Mega menu layout */
.nav__dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.nav__dd-col {
  padding: 20px 20px 16px;
}
.nav__dd-col:first-child {
  border-right: 1px solid var(--border);
}
.nav__dd-col-title {
  font-family: var(--font-accent);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.nav__dd-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 8px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--dur-fast);
}
.nav__dd-link:hover { background: rgba(212,168,67,.08); }
.nav__dd-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
}
.nav__dd-link-text {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}
.nav__dd-link-sub {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 400;
}
.nav__dd-link--featured {
  background: linear-gradient(135deg, rgba(30,45,90,.06) 0%, rgba(184,137,42,.06) 100%);
  border: 1px solid rgba(184,137,42,.2);
  margin-top: 4px;
}
.nav__dd-link--featured:hover {
  background: linear-gradient(135deg, rgba(30,45,90,.10) 0%, rgba(184,137,42,.10) 100%);
}
.nav__dd-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(212,168,67,.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7,9,26,.6);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.nav__dd-footer-link {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--dur-fast);
}
.nav__dd-footer-link:hover { gap: 8px; }

/* Simple bundles dropdown */
.nav__dropdown--simple {
  min-width: 240px;
  left: 0;
  transform: translateY(-6px);
}
.nav__item:hover .nav__dropdown--simple {
  transform: translateY(0);
}
.nav__dropdown--simple .nav__dd-col {
  border-right: none;
}

/* Highlight badge in dropdown */
.nav__dd-badge {
  font-family: var(--font-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__link {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 8px;
  transition: color var(--dur-fast), opacity var(--dur-fast);
  opacity: 0.88;
}
.nav__link:hover { color: #FFFFFF; opacity: 1; }
.nav__cta {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, #B8892A 0%, #D4A843 100%);
  padding: 11px 26px;
  border-radius: var(--radius-full);
  transition: all var(--dur-fast);
  box-shadow: 0 4px 18px rgba(212,168,67,.35);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,168,67,.50);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.80);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}

/* ---- HERO ---- */
.hero {
  padding-top: calc(var(--nav-height) + var(--space-10));
  padding-bottom: var(--space-10);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   CINEMATIC DARK HERO
   Left = solid dark navy panel with text
   Right = video plays here with a soft left-edge blend
   ============================================================ */
.hero--cinematic {
  /* Deep neutral — matches the dark shadow zones of the video */
  background: #08090E;
  padding-top: var(--nav-height);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* ── Video — right 68%, native quality, left edge masked to dissolve into bg ── */
.hero__video {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
  /* Dissolve the video's own left edge — no hard line */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent   0%,
    rgba(0,0,0,0.25) 8%,
    rgba(0,0,0,0.65) 16%,
    rgba(0,0,0,0.88) 24%,
    black         34%,
    black        100%
  );
  mask-image: linear-gradient(
    to right,
    transparent   0%,
    rgba(0,0,0,0.25) 8%,
    rgba(0,0,0,0.65) 16%,
    rgba(0,0,0,0.88) 24%,
    black         34%,
    black        100%
  );
}

/* ── Overlay — neutral fade in from left, dissolves into video, grounds bottom ── */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    /* LEFT FADE — exactly matches section bg #08090E, melts into video */
    linear-gradient(
      to right,
      rgba(8,9,14,1.00)  0%,
      rgba(8,9,14,1.00) 20%,
      rgba(8,9,14,0.88) 28%,
      rgba(8,9,14,0.60) 35%,
      rgba(8,9,14,0.28) 42%,
      rgba(8,9,14,0.08) 50%,
      transparent        60%
    ),
    /* BOTTOM VIGNETTE — grounds the scene */
    linear-gradient(
      to top,
      rgba(8,9,14,0.65) 0%,
      rgba(8,9,14,0.18) 20%,
      transparent        40%
    );
}

/* ── Mute button ── */
.hero__mute-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 20;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--dur-fast), transform var(--dur-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__mute-btn:hover { background: rgba(0,0,0,.60); transform: scale(1.08); }
.hero__mute-btn svg   { pointer-events: none; flex-shrink: 0; }

/* ── Container: fill full width so text locks to left ── */
.hero--cinematic > .container {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

/* ── Text column — left band only ── */
.hero--cinematic .hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 72px 0;
  max-width: 520px;
  min-height: calc(100vh - var(--nav-height));
  position: relative;
  z-index: 4;
}

/* ── Translucent copy panel — deep neutral glass matching video shadows ── */
.hero--cinematic .hero__copy {
  background: linear-gradient(
    145deg,
    rgba(10,11,16,0.78) 0%,
    rgba(8,9,14,0.74)   60%,
    rgba(10,11,16,0.76) 100%
  );
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  border-top-color: rgba(212,168,67,0.18);
  padding: 44px 40px 40px;
  box-shadow:
    0 12px 56px rgba(0,0,0,0.55),
    0 2px 12px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(212,168,67,0.07);
}

.hero__bg { z-index: 0; }
.hero--cinematic .hero__headline {
  color: #FFFFFF;
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero--cinematic .hero__headline em {
  font-style: italic;
  color: #D4A843;
  display: block;
}
.hero--cinematic .hero__subhead { color: rgba(255,255,255,.62); max-width: 500px; }
.hero--cinematic .hero__trust {
  border-top-color: rgba(255,255,255,.12);
}
.hero--cinematic .hero__trust-item { color: rgba(255,255,255,.45); }
.hero--cinematic .hero__trust-item svg { color: var(--gold); }
.hero--cinematic .hero__eyebrow { color: var(--gold); }

/* Stars row */
.hero__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
}
.hero__stars-gold {
  color: #F5C842;
  letter-spacing: 3px;
  font-size: 13px;
}

/* Watch demo button */
.btn--demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.btn--demo:hover {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-color: rgba(255,255,255,.25);
  transform: translateY(-1px);
}
.btn--demo-ring {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast);
}
.btn--demo:hover .btn--demo-ring { background: var(--gold); }

/* Gold primary button */
.btn--gold {
  background: linear-gradient(135deg, #B8892A 0%, #D4A843 100%);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 24px rgba(184,137,42,.4);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,137,42,.55);
}

/* ---- HERO SHOWCASE (Right visual) ---- */
.hero__showcase {
  position: relative;
  width: 420px;
  height: 600px;
  flex-shrink: 0;
}

/* The "screen" device */
.hero__screen {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  border-radius: 20px;
  background: #0C1224;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 40px 100px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  z-index: 3;
}
/* macOS-style toolbar */
.hero__screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero__screen-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero__screen-label {
  font-family: var(--font-accent);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.25);
  flex: 1;
  text-align: center;
  text-transform: uppercase;
}
/* Card reel area */
.hero__reel {
  position: relative;
  height: 510px;
  overflow: hidden;
}
.hero__reel-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.hero__reel-card.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero__reel-card.is-exiting {
  opacity: 0;
  transform: translateY(-12px) scale(0.97);
}
/* Template scale wrapper inside reel */
.hero__reel-tpl {
  width: 180px;
  height: 254px;
  transform: scale(1.578);
  transform-origin: top center;
  flex-shrink: 0;
}
.hero__reel-tpl .rp {
  width: 180px !important;
  height: 254px !important;
}
/* Slide card inside reel */
.hero__reel-slide {
  width: 240px;
  height: 135px;
  transform: scale(1.16);
  transform-origin: top center;
  flex-shrink: 0;
  margin-top: 90px;
}
.hero__reel-slide .rp {
  width: 240px !important;
  height: 135px !important;
}
/* Progress dots */
.hero__reel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  background: rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero__reel-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.hero__reel-dot.is-active {
  background: var(--gold);
  width: 18px;
  border-radius: 3px;
}

/* Floating back card — peeking behind, left side */
.hero__back-card {
  position: absolute;
  top: 60px;
  left: 8px;
  width: 148px;
  height: 208px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06);
  z-index: 1;
  opacity: 0.65;
  transform: rotate(-5deg);
  clip-path: inset(0 0 0 0 round 12px);
}
.hero__back-card-inner {
  width: 180px;
  height: 254px;
  transform: scale(0.82);
  transform-origin: top left;
}
.hero__back-card-inner .rp {
  width: 180px !important;
  height: 254px !important;
}

/* Floating slide mini-card — top right, tight clip */
.hero__slide-float {
  position: absolute;
  top: -18px;
  right: -8px;
  width: 176px;
  height: 99px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.1);
  z-index: 5;
  transform: rotate(2.5deg);
  clip-path: inset(0 0 0 0 round 10px);
}
.hero__slide-float-inner {
  width: 240px;
  height: 135px;
  transform: scale(0.733);
  transform-origin: top left;
}
.hero__slide-float-inner .rp {
  width: 240px !important;
  height: 135px !important;
}

/* Floating stat badges */
.hero__badge {
  position: absolute;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(30,45,90,.12);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.hero__badge--ats {
  bottom: 80px;
  left: 10px;
  animation: float 4s ease-in-out infinite;
}
.hero__badge--interview {
  top: 50%;
  left: -10px;
  animation: float 5s 1s ease-in-out infinite;
  white-space: nowrap;
  transform: translateY(-50%);
}
.hero__badge--dl {
  bottom: 165px;
  right: -16px;
  animation: float 4.5s 0.5s ease-in-out infinite;
  white-space: nowrap;
}
.hero__badge-score {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #16A34A;
  line-height: 1;
}
.hero__badge-label {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
}
.hero__badge-label strong { color: var(--navy); }
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
.hero__badge-dot--gold {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,137,42,.2);
}

/* Video modal */
.hero__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}
.hero__modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.hero__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
}
.hero__modal-wrap {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  background: #0C1224;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 100px rgba(0,0,0,.8);
  transform: scale(0.94) translateY(20px);
  transition: transform .3s var(--ease);
}
.hero__modal.is-open .hero__modal-wrap {
  transform: none;
}
.hero__modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__modal-title {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero__modal-close {
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.6);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
}
.hero__modal-close:hover { background: rgba(255,255,255,.15); color: #fff; }
.hero__modal-video {
  width: 100%;
  aspect-ratio: 16/9;
  background: #060A14;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__modal-video video { width: 100%; height: 100%; object-fit: cover; }
.hero__modal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.3);
  font-family: var(--font-accent);
  font-size: 13px;
}
.hero__modal-placeholder-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(30,45,90,.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 50%, rgba(184,137,42,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(30,45,90,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,45,90,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-5);
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: var(--space-5);
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}
.hero__subhead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: var(--space-7);
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
}
.hero__trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero visual — real template showcase */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Ambient glow behind cards */
.hero__glow {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 60% 50% at 60% 40%, rgba(30,45,90,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 40% 60%, rgba(184,137,42,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__mockup-stack {
  position: relative;
  width: 440px;
  height: 520px;
  z-index: 1;
}
/* Card base */
.hero__mockup {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.18), 0 8px 24px rgba(0,0,0,.10);
  transition: transform .3s var(--ease);
}
/* Main template card — front center */
.hero__mockup--main {
  width: 248px;
  height: 350px;
  top: 60px;
  right: 20px;
  z-index: 3;
  box-shadow: 0 32px 80px rgba(0,0,0,.22), 0 0 0 1px rgba(255,255,255,.5);
}
.hero__mockup--main:hover { transform: translateY(-6px) scale(1.01); }
/* Back template card */
.hero__mockup--back {
  width: 210px;
  height: 296px;
  top: 20px;
  left: 0px;
  z-index: 2;
  opacity: 0.88;
  transform: rotate(-2deg);
  box-shadow: 0 20px 50px rgba(0,0,0,.20);
}
/* Slide card — floating top right */
.hero__mockup--slide {
  width: 210px;
  height: 118px;
  top: 0;
  right: 0;
  z-index: 4;
  transform: rotate(1.5deg);
  box-shadow: 0 16px 40px rgba(0,0,0,.20);
  border-radius: 10px;
}
/* Scaling wrapper — renders template at designed size, then scales up */
.hero__tpl-wrap {
  width: 180px;
  height: 254px;
  transform: scale(1.378);
  transform-origin: top left;
  pointer-events: none;
}
.hero__tpl-wrap .rp {
  width: 180px !important;
  height: 254px !important;
}
/* Slide scaling wrapper */
.hero__slide-wrap {
  width: 240px;
  height: 135px;
  transform: scale(0.875);
  transform-origin: top left;
  pointer-events: none;
}
.hero__slide-wrap .rp {
  width: 240px !important;
  height: 135px !important;
}
/* Score badge */
.hero__score-badge {
  position: absolute;
  bottom: 90px;
  left: -10px;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  animation: float 4s ease-in-out infinite;
}
.hero__score-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--success);
  line-height: 1;
}
.hero__score-label {
  font-size: 11px;
  line-height: 1.3;
  color: var(--text-2);
  font-weight: 500;
}
/* Floating success notification badge */
.hero__notify-badge {
  position: absolute;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.hero__notify-badge--1 {
  bottom: 40px;
  right: -10px;
  animation: float 5s 1s ease-in-out infinite;
}
.hero__notify-badge--2 {
  top: 280px;
  left: -20px;
  animation: float 4.5s 0.5s ease-in-out infinite;
}
.hero__notify-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__notify-dot--green { background: #22C55E; }
.hero__notify-dot--gold  { background: var(--gold); }

/* Photo photo banner — "Get Hired" strip */
.photo-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.photo-banner__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.photo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,20,45,.88) 0%, rgba(14,20,45,.55) 60%, rgba(14,20,45,.3) 100%);
}
.photo-banner__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-8);
}
.photo-banner__eyebrow {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.photo-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 640px;
}
.photo-banner__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.photo-banner__stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.photo-banner__stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}
.photo-banner__stat-label {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* PowerPoint Spotlight Section */
.pptx-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.pptx-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}
.pptx-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,30,.92) 0%, rgba(12,18,40,.96) 100%);
}
.pptx-section .container { position: relative; z-index: 2; }
.pptx-header {
  text-align: center;
  margin-bottom: 56px;
}
.pptx-eyebrow {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.pptx-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pptx-headline em { font-style: italic; color: var(--gold-light); }
.pptx-sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
/* Slide deck grid */
.pptx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.pptx-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
  text-decoration: none;
  display: block;
}
.pptx-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 32px 64px rgba(0,0,0,.5);
}
.pptx-card__slide {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pptx-card__slide .rp--slide {
  width: 240px;
  height: 135px;
  transform-origin: top left;
}
.pptx-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, transparent 100%);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.06em;
}
/* Presentation bundle CTA */
.pptx-bundle {
  background: linear-gradient(135deg, rgba(184,137,42,.15) 0%, rgba(184,137,42,.05) 100%);
  border: 1px solid rgba(184,137,42,.3);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.pptx-bundle__left {}
.pptx-bundle__badge {
  font-family: var(--font-accent);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.pptx-bundle__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.pptx-bundle__sub {
  font-size: 14px;
  color: rgba(255,255,255,.5);
}
.pptx-bundle__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pptx-bundle__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}
.pptx-bundle__orig {
  font-size: 18px;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}

/* B2B Section */
.b2b-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.b2b-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.4) saturate(0.8);
  transform: scale(1.05);
}
.b2b-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,30,.75);
}
.b2b-section .container { position: relative; z-index: 2; }
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.b2b-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s, transform .2s;
}
.b2b-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(184,137,42,.4);
  transform: translateY(-4px);
}
.b2b-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(184,137,42,.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}
.b2b-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.b2b-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  margin-bottom: 20px;
}
.b2b-card__features {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.b2b-card__feat {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-accent);
  font-size: 12px;
  color: rgba(255,255,255,.7);
}
.b2b-card__feat::before {
  content: '✓';
  color: var(--gold-light);
  font-size: 11px;
  flex-shrink: 0;
}

/* Social proof photo grid */
.social-proof {
  padding: 80px 0;
  background: var(--surface);
}
.social-proof__photos {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.social-proof__photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.social-proof__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s var(--ease);
}
.social-proof__photo:hover img { transform: scale(1.04); }
.social-proof__photo--tall { height: 340px; }
.social-proof__photo--sq   { height: 160px; }
.social-proof__photo-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  letter-spacing: 0.04em;
}

/* Testimonial cards with photo */
.testimonial-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.tpc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.tpc:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tpc__photo {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.tpc__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.tpc__stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}
.tpc__quote {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.55;
  font-style: italic;
}
.tpc__name {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.tpc__role {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--text-3);
}

/* Clapping success banner */
.success-banner {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.success-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.success-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14,20,45,.9) 0%, rgba(14,20,45,.6) 50%, rgba(14,20,45,.2) 100%);
}
.success-banner__content {
  position: relative;
  z-index: 2;
}
.success-banner__num {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.success-banner__label {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.success-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 400px;
  line-height: 1.6;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  transition: all var(--dur-med) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--lg   { font-size: 15px; padding: 14px 30px; }
.btn--md   { font-size: 13px; padding: 11px 22px; }
.btn--sm   { font-size: 12px; padding: 8px  16px; }

.btn--primary {
  background: var(--navy);
  color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(30,45,90,.15);
}
.btn--primary:hover {
  background: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30,45,90,.22);
}

.btn--gold {
  background: var(--gold);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: #A37822;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,137,42,.28);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(212,168,67,.40);
}
.btn--outline:hover {
  background: rgba(212,168,67,.10);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
}
.btn--ghost:hover { color: var(--gold-light); }

.btn--white {
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy);
  padding: var(--space-4) 0;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255,255,255,.7);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.trust-bar__item svg { color: var(--gold-light); }
.trust-bar__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

/* ---- SECTION HEADERS ---- */
.section {
  padding: var(--space-10) 0;
}
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--navy); color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}
.section-header--left { text-align: left; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}
.section-title--light { color: #FFFFFF; }
.section-desc {
  font-size: 17px;
  line-height: 1.65;
  color: #B8C4E0;
  max-width: 560px;
  margin: 0 auto;
}
.section-desc--light { color: rgba(255,255,255,.72); }

/* ---- PRODUCT CARDS ---- */
.product-card {
  background: #121D52;
  border: 1px solid rgba(212,168,67,.22);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(212,168,67,.35);
  border-color: rgba(212,168,67,.50);
}
.product-card__preview {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(160deg, #1A2860 0%, #111E50 100%);
}
/* Hidden state for JS filter */
.product-card--hidden { display: none !important; }

/* Presentation / PPTX cards — shorter preview for landscape slide feel */
.product-card--presentation .product-card__preview {
  height: 158px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
/* Scale down and center the slide panels inside presentation cards */
.product-card--presentation .product-card__preview > div {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 14px 14px 0;
  align-items: flex-end;
  justify-content: center;
}
.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.badge--gold     { background: var(--gold); color: #fff; }
.badge--blue     { background: var(--navy); color: #fff; }
.badge--teal     { background: var(--teal); color: #fff; }
.badge--purple   { background: var(--purple); color: #fff; }

.product-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__category {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-2);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}
.product-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: #B8C4E0;
  margin-bottom: var(--space-4);
  flex: 1;
}
.product-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}
.product-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #8A9FCC;
  font-weight: 500;
}
.product-card__meta-item svg { width: 13px; height: 13px; }
.product-card__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(212,168,67,.13);
  padding-top: var(--space-4);
  margin-top: auto;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-light);
}
.product-card__original {
  font-size: 13px;
  color: #6B7FA8;
  text-decoration: line-through;
  margin-left: var(--space-2);
}
.product-card__savings {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  margin-left: var(--space-2);
}

/* Featured product card */
.product-card--featured {
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

/* ---- CATEGORY CARDS ---- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.category-card {
  background: #121D52;
  border: 1px solid rgba(212,168,67,.22);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-card:hover {
  border-color: rgba(212,168,67,.40);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(212,168,67,.20);
  transform: translateY(-3px);
}
.category-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  font-size: 20px;
}
.category-card__name {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--space-1);
}
.category-card__count {
  font-size: 11px;
  color: var(--text-3);
}

/* ---- HOW IT WORKS ---- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16% + 28px);
  width: calc(68% - 56px);
  height: 1px;
  background: linear-gradient(90deg, var(--border) 0%, var(--border) 45%, transparent 45%, transparent 55%, var(--border) 55%, var(--border) 100%);
  background-size: 100% 100%;
  border-top: 1px dashed var(--border-2);
}
.how-step { text-align: center; }
.how-step__num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B8892A 0%, #D4A843 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.how-step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: var(--space-3);
}
.how-step__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-2);
}

/* ---- STATS ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: var(--space-7) var(--space-5);
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-item__label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.stat-item__sub {
  font-size: 11px;
  color: var(--text-3);
  margin-top: var(--space-1);
}

/* ============================================================
   RESULTS IMPACT SECTION — stock photo cards with overlays
   ============================================================ */
.results-section {
  background: #06091A;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
}
.results-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-8);
  padding: 0 24px;
}
.results-section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.results-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.results-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  max-width: 100%;
  background: rgba(212,168,67,.30);
  border: 3px solid rgba(212,168,67,.30);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 32px;
}
.results-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
}
.results-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
}
.results-card:hover .results-card__bg {
  transform: scale(1.06);
}
.results-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,9,26,0.95) 0%,
    rgba(6,9,26,0.75) 40%,
    rgba(6,9,26,0.30) 70%,
    rgba(6,9,26,0.10) 100%
  );
  transition: background .4s ease;
}
.results-card:hover .results-card__overlay {
  background: linear-gradient(
    to top,
    rgba(6,9,26,0.98) 0%,
    rgba(6,9,26,0.80) 45%,
    rgba(6,9,26,0.40) 75%,
    rgba(6,9,26,0.15) 100%
  );
}
.results-card__content {
  position: relative;
  z-index: 2;
  padding: 32px 28px 36px;
}
.results-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.results-card__label {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.results-card__sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 200px;
}
/* Gold accent line at bottom of each card */
.results-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
  z-index: 3;
}
.results-card:hover::after {
  transform: scaleX(1);
}
.results-section__cta {
  text-align: center;
  padding: var(--space-9) 24px var(--space-4);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: var(--space-7);
}
.results-section__cta-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   HOW IT WORKS — 3-step visual story with stock photos
   ============================================================ */
.how-section {
  background: var(--bg);
  padding: var(--space-10) 0;
  overflow: hidden;
}
.how-section__header {
  text-align: center;
  margin-bottom: var(--space-9);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
  border-radius: 12px;
  border: 3px solid rgba(212,168,67,.30);
  background: rgba(212,168,67,.30);
  box-shadow: 0 8px 40px rgba(0,0,0,.40);
  margin: 0 32px;
}
.how-steps .how-step {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255,255,255,.08);
}
.how-steps .how-step:last-child { border-right: none; }
.how-steps .how-step__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.how-steps .how-step:hover .how-step__bg {
  transform: scale(1.05);
}
.how-steps .how-step__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,9,26,0.96) 0%,
    rgba(6,9,26,0.70) 45%,
    rgba(6,9,26,0.20) 100%
  );
}
.how-steps .how-step__content {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.how-steps .how-step__num {
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 4px 0;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 600;
  color: rgba(212,168,67,.35);
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  text-align: left;
}
.how-steps .how-step__title {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.how-steps .how-step__desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  max-width: 240px;
}
.how-step__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  background: rgba(184,137,42,.15);
  border: 1px solid rgba(184,137,42,.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   FULL-BLEED CTA BANNER — aerial meeting photo
   ============================================================ */
.photo-cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.photo-cta-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/aerial-meeting.jpeg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.02);
  transition: transform 8s linear;
}
.photo-cta-banner:hover .photo-cta-banner__bg {
  transform: scale(1.06);
}
.photo-cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,9,26,0.92) 0%,
    rgba(6,9,26,0.85) 50%,
    rgba(6,9,26,0.55) 100%
  );
}
.photo-cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 72px 0;
}
.photo-cta-banner__eyebrow {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.photo-cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.photo-cta-banner__title em {
  font-style: italic;
  color: var(--gold-light);
}
.photo-cta-banner__sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.photo-cta-banner__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .results-cards { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .how-step { min-height: 340px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .how-step:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .results-cards { grid-template-columns: 1fr 1fr; }
  .results-card { min-height: 280px; }
  .results-card__num { font-size: 40px; }
  .photo-cta-banner__content { padding: 56px 0; }
}
@media (max-width: 480px) {
  .results-cards { grid-template-columns: 1fr; }
  .results-card { min-height: 260px; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: box-shadow var(--dur-med);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
  color: var(--gold);
}
.testimonial-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: var(--space-5);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.testimonial-card__role {
  font-size: 12px;
  color: var(--text-3);
}

/* ---- ATS SECTION ---- */
.ats-section {
  background: var(--navy);
  color: #fff;
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}
.ats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(184,137,42,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(184,137,42,.06) 0%, transparent 60%);
  pointer-events: none;
}
.ats-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}
.ats-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.ats-bar-item {}
.ats-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}
.ats-bar-label span { color: var(--gold-light); font-weight: 700; }
.ats-bar-track {
  height: 6px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.ats-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  transform-origin: left;
  animation: barFill 1.5s var(--ease) forwards;
  transform: scaleX(0);
}
@keyframes barFill { to { transform: scaleX(1); } }

/* ---- PRICING / BUNDLES ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-7) var(--space-6);
  position: relative;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.pricing-card--featured {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__eyebrow {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}
.pricing-card--featured .pricing-card__name { color: #fff; }
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.pricing-card--featured .pricing-card__price { color: var(--gold-light); }
.pricing-card__price sup {
  font-size: 24px;
  vertical-align: super;
  font-weight: 400;
  margin-right: 2px;
}
.pricing-card__original {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: var(--space-5);
}
.pricing-card--featured .pricing-card__original { color: rgba(255,255,255,.4); }
.pricing-card__divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-5) 0;
}
.pricing-card--featured .pricing-card__divider { background: rgba(255,255,255,.1); }
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}
.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,.75); }
.pricing-card--mega    .pricing-card__feature { color: rgba(255,255,255,.90); }
.pricing-card__feature svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card--featured .pricing-card__feature svg { color: var(--gold-light); }
.pricing-card--mega    .pricing-card__feature svg { color: var(--gold-light); }

/* ---- NEWSLETTER / CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: var(--space-10) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% 120%, rgba(184,137,42,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; }
.cta-section .section-title { color: #fff; }
.cta-section .section-desc { color: rgba(255,255,255,.7); margin-bottom: var(--space-7); }
.email-form {
  display: flex;
  gap: var(--space-3);
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px var(--space-5);
}
.email-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: #fff;
  padding: 10px 8px 10px 16px;
}
.email-form input::placeholder { color: rgba(255,255,255,.4); }

/* ---- FOOTER ---- */
.footer {
  background: #13151F;
  color: rgba(255,255,255,.6);
  padding: var(--space-9) 0 var(--space-7);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-2);
}
.footer__brand-sub {
  font-family: var(--font-accent);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}
.footer__brand-desc {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: var(--space-5);
}
.footer__col-title {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--space-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__link:hover { color: rgba(255,255,255,.9); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.footer__legal {
  display: flex;
  gap: var(--space-5);
}
.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,.7); }
.footer__social {
  display: flex;
  gap: var(--space-3);
}
.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: all var(--dur-fast);
  font-size: 14px;
}
.footer__social-link:hover {
  background: var(--gold);
  color: #fff;
}

/* ---- ANIMATIONS ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fadeup {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards;
}
.animate-fadeup.delay-1 { animation-delay: 0.1s; }
.animate-fadeup.delay-2 { animation-delay: 0.2s; }
.animate-fadeup.delay-3 { animation-delay: 0.3s; }
.animate-fadeup.delay-4 { animation-delay: 0.4s; }

/* Intersection observer animate-in */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- MOBILE ---- */
@media (max-width: 1024px) {
  .grid-4, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .testimonials-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .ats-inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 var(--space-5); }
  .grid-2, .grid-3, .grid-4, .category-grid,
  .testimonials-grid, .how-grid, .stats-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: var(--space-8) 0; }
  .trust-bar__inner { justify-content: flex-start; gap: var(--space-5); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .how-grid::before { display: none; }
}

/* ---- MOBILE NAV OPEN ---- */
.nav__mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--surface);
  z-index: 999;
  padding: var(--space-7) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
}
.nav__mobile-menu.open { transform: none; }
.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-4);
  transition: color var(--dur-fast);
}
.nav__mobile-link:hover { color: var(--gold); }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-6 { margin-bottom: var(--space-6); }
.flex-center { display: flex; align-items: center; justify-content: center; gap: var(--space-4); }
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }

/* ============================================================
   JOB BOARDS SECTION
   ============================================================ */
.job-boards-section {
  background: var(--bg-2);
  padding: var(--space-9) 0;
}
.job-boards-intro {
  max-width: 600px;
  margin: 0 auto var(--space-8);
  text-align: center;
}
.job-boards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .job-boards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .job-boards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.job-board-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 16px;
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med);
  text-decoration: none;
  color: var(--text);
  gap: 10px;
}
.job-board-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-2);
}
.job-board-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.job-board-card__name {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.job-board-card__desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
  flex: 1;
}
.job-board-card__cta {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.job-board-card__cta svg { flex-shrink: 0; }

.job-boards-footer-note {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 13px;
  color: var(--text-3);
}
.job-boards-footer-note strong {
  color: var(--navy);
}

/* ============================================================
   FREE TEMPLATE LEAD MAGNET SECTION
   ============================================================ */
.free-template-section {
  background: #0A0C1E;
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.06);
}
.free-template-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .free-template-inner { grid-template-columns: 1fr; gap: 40px; }
}
.free-template-copy {}
.free-template-copy .section-eyebrow { color: var(--gold-light); }
.free-template-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
  margin: 0 0 12px;
}
.free-template-headline em { color: rgba(255,255,255,.65); font-style: italic; }
.free-template-desc {
  font-size: 13px;
  color: rgba(255,255,255,.40);
  line-height: 1.55;
  margin: 0 0 20px;
}
.free-template-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 36px;
}
.free-template-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.free-template-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(184,137,42,.25);
  border: 1.5px solid var(--gold-light);
  border-radius: 50%;
  position: relative;
  top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A843' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.free-template-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}
.free-template-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  text-align: center;
}
.free-template-form-sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
  margin: 0 0 24px;
}
.lc-form-field {
  margin-bottom: 14px;
}
.lc-form-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}
.lc-form-field input {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  transition: border-color var(--dur-fast), background var(--dur-fast);
  outline: none;
}
.lc-form-field input::placeholder { color: rgba(255,255,255,.35); }
.lc-form-field input:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,.14);
}
.lc-form-note {
  font-size: 11px;
  color: rgba(255,255,255,.38);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================================
   LEAD CAPTURE MODAL
   ============================================================ */
#lc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,.72);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}
#lc-overlay.lc-active {
  opacity: 1;
  pointer-events: auto;
}
#lc-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  z-index: 9001;
  width: min(520px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}
#lc-modal.lc-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.lc-modal-header {
  background: linear-gradient(135deg, #1E2D5A, #162246);
  padding: 28px 32px 24px;
  position: relative;
  text-align: center;
}
.lc-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.35);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.lc-modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 8px;
}
.lc-modal-title em { color: var(--gold-light); }
.lc-modal-sub {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
  line-height: 1.5;
}
#lc-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--dur-fast), color var(--dur-fast);
  font-size: 16px;
  line-height: 1;
}
#lc-close:hover { background: rgba(255,255,255,.22); color: #fff; }

.lc-modal-body {
  padding: 28px 32px 32px;
}
.lc-field {
  margin-bottom: 14px;
}
.lc-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.lc-field input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}
.lc-field input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,45,90,.08);
}
.lc-field input::placeholder { color: var(--text-3); }
.lc-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #B8892A, #D4A843);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 16px 24px;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  box-shadow: 0 4px 20px rgba(184,137,42,.35);
}
.lc-btn-submit:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}
.lc-btn-submit:disabled { opacity: 0.65; cursor: wait; }
.lc-error {
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  color: #B91C1C;
  margin-bottom: 14px;
  display: none;
}
.lc-privacy-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.5;
}
.lc-privacy-note a { color: var(--gold); }
.lc-modal-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.lc-proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-3);
}
.lc-proof-item svg { flex-shrink: 0; }

/* Success state */
#lc-success {
  display: none;
  padding: 0 0 28px;
}
.lc-success-header {
  background: linear-gradient(135deg, #1E2D5A, #162246);
  padding: 32px;
  text-align: center;
}
.lc-success-icon {
  width: 60px;
  height: 60px;
  background: rgba(76,175,80,.15);
  border: 2px solid #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.lc-success-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 6px;
}
.lc-success-sub {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.lc-success-body {
  padding: 28px 32px;
}
.lc-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #1E2D5A, #162246);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 16px 24px;
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
  box-shadow: var(--shadow-md);
}
.lc-download-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.lc-discount-box {
  background: linear-gradient(135deg, #FFF8E8, #FFF3D4);
  border: 1px solid #E8D5A3;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.lc-discount-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A6000;
  margin-bottom: 4px;
}
.lc-discount-code {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.1em;
}
.lc-discount-desc {
  font-size: 12px;
  color: #6A5000;
  margin-top: 4px;
}
.lc-share-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
  text-align: center;
}
.lc-share-subtitle {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin: -8px 0 12px;
}
.lc-share-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.lc-share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  color: #fff;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}
.lc-share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.lc-share-btn--linkedin { background: #0A66C2; }
.lc-share-btn--twitter  { background: #000000; }
.lc-share-btn--facebook { background: #1877F2; }
.lc-share-btn--copy     { background: var(--text-3); }

/* Spinner */
.lc-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lcSpin 0.6s linear infinite;
}
@keyframes lcSpin { to { transform: rotate(360deg); } }

/* ============================================================
   FLOATING BOTTOM BAR — "Get Free Template"
   ============================================================ */
#lc-floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(7,9,26,.92);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease);
}
#lc-floating-bar.lc-bar-visible {
  transform: translateY(0);
}
.lc-bar-text {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-weight: 400;
}
.lc-bar-text strong { color: rgba(255,255,255,.55); font-weight: 500; }
.lc-cta-link {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-accent);
  transition: color var(--dur-fast);
  padding: 0;
}
.lc-bar-cta {
  flex-shrink: 0;
  background: none;
  color: rgba(255,255,255,.45);
  border: none;
  border-radius: var(--radius-full);
  padding: 0;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: color var(--dur-fast);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lc-bar-cta:hover { color: rgba(255,255,255,.70); }
#lc-floating-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.25);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 4px;
  margin-left: 4px;
  flex-shrink: 0;
  transition: color var(--dur-fast);
}
#lc-floating-close:hover { color: rgba(255,255,255,.50); }
@media (max-width: 480px) {
  #lc-floating-bar { flex-wrap: wrap; gap: 8px; padding: 8px 16px; }
}

/* ============================================================
   RESPONSIVE — COMPREHENSIVE MOBILE/TABLET
   ============================================================ */

/* ---- Tablet (≤1100px): tighten nav before hamburger kicks in ---- */
@media (max-width: 1100px) {
  .nav__links { gap: 14px; }
  .nav__link  { padding: 4px 5px; font-size: 12.5px; }
  .nav__cta   { padding: 9px 18px; font-size: 12px; }
}

/* ---- iPad landscape (≤1024px) ---- */
@media (max-width: 1024px) {
  /* Hero */
  .hero--cinematic .hero__inner {
    padding: 72px 0 56px;
    max-width: 400px;
  }
  .hero--cinematic .hero__video { width: 75%; right: 0; }
  .hero--cinematic .hero__video-overlay { width: 100%; }
  .hero--cinematic .hero__copy { padding: 36px 32px; }
  .hero--cinematic .hero__headline { font-size: clamp(38px, 6vw, 58px); }
  .hero__visual { display: none; }

  /* Section spacing */
  .section { padding: var(--space-8) 0; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; }

  /* ATS section */
  .ats-inner { grid-template-columns: 1fr; gap: var(--space-7); }
}

/* ---- Mobile (≤768px): hamburger nav, single column everything ---- */
@media (max-width: 768px) {
  /* Nav size shrinks on mobile */
  :root { --nav-height: 80px; }

  /* Logo scale down */
  .nav__logo-mark { width: 28px; height: 28px; }
  .nav__logo-main { font-size: 15px; }
  .nav__logo-sub  { font-size: 7px; letter-spacing: 0.12em; }

  /* Cinematic hero — mobile: hide video, solid navy, full-width text */
  .hero--cinematic { min-height: auto; }
  .hero--cinematic .hero__inner { padding: 48px 0 40px; max-width: 100%; min-height: auto; }
  .hero--cinematic .hero__copy { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border: none; box-shadow: none; padding: 0; border-radius: 0; }
  .hero--cinematic .hero__video { display: none; }
  .hero--cinematic .hero__video-overlay { display: none; }
  .hero--cinematic .hero__mute-btn { display: none; }
  .hero__video-wrap { display: none; }
  .hero--cinematic .hero__headline { font-size: clamp(32px, 8vw, 46px); }
  .hero--cinematic .hero__subhead { font-size: 15px; max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__badge { display: none; }

  /* Generic hero (inner pages) */
  .hero { padding-top: calc(var(--nav-height) + var(--space-8)); padding-bottom: var(--space-8); }
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero__headline { font-size: clamp(30px, 7vw, 44px); }
  .hero__subhead { font-size: 15px; }
  .hero__visual { display: none; }

  /* Trust bar */
  .trust-bar__inner { flex-wrap: wrap; gap: var(--space-4); }
  .trust-bar__item  { font-size: 12px; }

  /* Section */
  .section { padding: var(--space-7) 0; }
  .section-title  { font-size: clamp(26px, 6vw, 36px); }
  .section-desc   { font-size: 14px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .category-grid, .testimonials-grid, .how-grid, .stats-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; }

  /* Cards */
  .product-card { padding: 20px; }
  .template-card { max-width: 340px; margin: 0 auto; }

  /* How it works connector line */
  .how-grid::before { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ATS section */
  .ats-inner { grid-template-columns: 1fr; }
  .ats-visual { display: none; }

  /* Free template section */
  .free-template-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer__grid  { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__brand { max-width: 100%; }

  /* Job boards */
  .job-boards-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Dropdown — disable on mobile (hamburger handles nav) */
  .nav__dropdown { display: none !important; }
}

/* ---- Small mobile (≤640px) ---- */
@media (max-width: 640px) {
  .container { padding: 0 var(--space-4); }

  /* Section spacing tighter */
  .section { padding: 48px 0; }
  .section-header { margin-bottom: var(--space-6); }

  /* Hero */
  .hero--cinematic .hero__inner { padding: 40px 0 32px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }

  /* Pricing cards */
  .pricing-card { padding: 24px 20px; }

  /* Job boards */
  .job-boards-grid { grid-template-columns: repeat(2, 1fr); }

  /* Trust bar — wrap tightly */
  .trust-bar__inner { gap: 12px; }

  /* How-grid cards */
  .how-step { padding: 24px 20px; }

  /* Buttons full-width on tiny screens */
  .btn-group { flex-direction: column; gap: 10px; }
  .btn-group .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ---- Phone (≤480px) ---- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Nav logo — smallest */
  .nav__logo-mark { width: 26px; height: 26px; }
  .nav__logo-main { font-size: 14px; }
  .nav__logo-sub  { display: none; }

  /* Hero */
  .hero--cinematic .hero__headline { font-size: clamp(28px, 9vw, 38px); }
  .hero__eyebrow { font-size: 10px; }

  /* Section */
  .section { padding: 40px 0; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }

  /* Testimonial cards — prevent overflow */
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: 14px; }

  /* Footer bottom */
  .footer__legal { font-size: 11px; }
  .footer__bottom-links { flex-wrap: wrap; gap: 10px; }
}

/* ---- Product layout (product.html) ---- */
@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .product-sidebar {
    position: static !important;
  }
  .product-preview {
    justify-content: center !important;
  }
}

/* ---- Bundles layout (bundles.html) ---- */
@media (max-width: 1024px) {
  .pricing-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--mega {
    grid-column: 1 / -1 !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 40px 32px !important;
  }
}
@media (max-width: 640px) {
  .pricing-grid-5 { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 9px 10px; }
}

/* ---- Schedule page ---- */
@media (max-width: 768px) {
  .schedule-grid  { grid-template-columns: 1fr !important; }
  .event-filters  { flex-wrap: wrap; gap: 8px; }
  .event-card     { padding: 16px; }
}

/* ---- Brand guidelines & campaign pages ---- */
@media (max-width: 768px) {
  .brand-section  { padding: 48px 0 !important; }
  .color-swatches { grid-template-columns: repeat(2, 1fr) !important; }
  .do-dont-grid   { grid-template-columns: 1fr !important; }
  .phase-grid     { grid-template-columns: 1fr !important; }
  .format-grid    { grid-template-columns: 1fr !important; }
}

/* ---- About page two-col ---- */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ---- Contact page ---- */
@media (max-width: 768px) {
  .contact-grid  { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-form  { padding: 28px 20px !important; }
}

/* ---- Mobile menu CTA ---- */
@media (max-width: 768px) {
  .nav__mobile-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, #B8892A 0%, #D4A843 100%);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-top: auto;
    text-decoration: none;
  }
}

/* ============================================================
   DARK LUXURY THEME — Additional Overrides
   Midnight navy + gold = premium impulse-buy aesthetic
   ============================================================ */

/* Hero floating badges — dark glass instead of white pills */
.hero__badge {
  background: rgba(13,21,53,.90);
  border-color: rgba(212,168,67,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0,0,0,.55), 0 2px 8px rgba(0,0,0,.30);
}
.hero__badge-label { color: var(--text-2); }
.hero__badge-label strong { color: #FFFFFF; }

/* Hero score + notify badges */
.hero__score-badge {
  background: rgba(13,21,53,.92);
  border-color: rgba(212,168,67,.18);
  box-shadow: 0 12px 40px rgba(0,0,0,.50);
}
.hero__score-num { color: #22C55E; }
.hero__score-label { color: var(--text-2); }
.hero__notify-badge {
  background: rgba(13,21,53,.92);
  border-color: rgba(212,168,67,.15);
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}

/* Stats grid */
.stats-grid {
  background: rgba(212,168,67,.10);
  border-color: rgba(212,168,67,.15);
}
.stat-item { background: #0D1535; }

/* How-steps section borders */
.how-steps {
  border-color: rgba(212,168,67,.15);
}
.how-grid::before {
  border-top-color: rgba(212,168,67,.12);
}

/* Section alt (alternating sections) */
.section--alt { background: #0C1030; }

/* Featured product card */
.product-card--featured {
  border-color: rgba(212,168,67,.28);
  box-shadow: 0 0 0 1px rgba(212,168,67,.15), 0 16px 48px rgba(0,0,0,.50);
}

/* Filter tabs on templates page */
.filter-tab {
  background: rgba(13,21,53,.70) !important;
  border-color: rgba(212,168,67,.15) !important;
  color: var(--text-2) !important;
}
.filter-tab.active,
.filter-tab:hover {
  background: rgba(212,168,67,.12) !important;
  border-color: rgba(212,168,67,.45) !important;
  color: var(--gold-light) !important;
}

/* Contact / FAQ form inputs */
input, textarea, select {
  background: #0D1535 !important;
  border-color: rgba(212,168,67,.15) !important;
  color: #E8EAF0 !important;
}
input::placeholder, textarea::placeholder { color: var(--text-3) !important; }
input:focus, textarea:focus, select:focus {
  border-color: rgba(212,168,67,.45) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,168,67,.08) !important;
}

/* FAQ accordion */
.faq-item {
  background: #0D1535 !important;
  border-color: rgba(212,168,67,.13) !important;
}
button.faq-question, .faq-question {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
.faq-answer { color: rgba(255,255,255,.70) !important; }
.faq-answer a { color: rgba(212,168,67,.90) !important; }

/* Pricing / comparison tables */
.pricing-card {
  background: #0D1535 !important;
  border-color: rgba(212,168,67,.13) !important;
}
.pricing-card--featured {
  border-color: rgba(212,168,67,.40) !important;
  box-shadow: 0 0 0 1px rgba(212,168,67,.20), 0 20px 60px rgba(0,0,0,.55) !important;
}
.pricing-card__name { color: #FFFFFF !important; }
.pricing-card__price { color: var(--gold-light) !important; }

/* Primary button — gold on dark bg */
.btn--primary,
a.btn--primary,
button.btn--primary {
  background: linear-gradient(135deg, #B8892A 0%, #D4A843 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.40) !important;
  border: none !important;
}
.btn--primary:hover,
a.btn--primary:hover,
button.btn--primary:hover {
  background: linear-gradient(135deg, #A37822 0%, #C49738 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.45) !important;
}

/* Nav dropdown link text */
.nav__dd-link-text { color: #E8EAF0; }
.nav__dd-link-sub  { color: var(--text-3); }
.nav__dd-col:first-child { border-right-color: rgba(212,168,67,.10); }
.nav__dd-col-title {
  color: rgba(212,168,67,.90);
  border-bottom-color: rgba(212,168,67,.20);
}

/* Nav dropdown icons — override light inline backgrounds with dark-glass style */
.nav__dd-link-icon {
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
}
.nav__dd-link--featured .nav__dd-link-icon {
  background: linear-gradient(135deg,#B8892A 0%,#D4A843 100%) !important;
  border: none !important;
}

/* Trust bar — keep navy but boost gold icons */
.trust-bar { background: #0C1030; border-top: 1px solid rgba(212,168,67,.10); border-bottom: 1px solid rgba(212,168,67,.10); }

/* Footer — dark */
.footer {
  background: #04050F !important;
  border-top: 1px solid rgba(212,168,67,.10) !important;
}
.footer__col-title { color: #FFFFFF !important; }
.footer__link { color: var(--text-3) !important; }
.footer__link:hover { color: var(--gold-light) !important; }
.footer__bottom { border-top-color: rgba(212,168,67,.10) !important; }
.footer__copy { color: var(--text-3) !important; }

/* Success / download page */
.success-section { background: #07091A !important; }

/* ============================================================
   READABILITY FIXES — boost all dim text for dark theme
   ============================================================ */

/* Section eyebrows & subtitles */
.section-eyebrow { color: rgba(212,168,67,.75) !important; }
.section-desc, .section__sub { color: #B8C4E0 !important; }

/* Hero subheadline */
.hero__subhead { color: rgba(255,255,255,.82) !important; }
.hero--cinematic .hero__subhead { color: rgba(255,255,255,.82) !important; }

/* Trust bar — slightly brighter */
.trust-bar__item { color: rgba(255,255,255,.85) !important; }
.trust-bar__sep { width: 5px !important; height: 5px !important; background: rgba(212,168,67,.70) !important; }

/* How-it-works step descriptions */
.how-step__desc { color: #B8C4E0 !important; }

/* Category card count */
.category-card__count { color: #8BAAD0 !important; }

/* Results section */
.results-section__sub { color: rgba(255,255,255,.80) !important; }
.results-section__cta-text {
  color: var(--gold-light) !important;
  opacity: 1 !important;
  font-style: italic;
  font-size: clamp(20px, 3vw, 32px) !important;
  text-shadow: 0 2px 24px rgba(212,168,67,.20);
}
.results-card__sub { color: rgba(255,255,255,.78) !important; }

/* ATS progress bar labels */
.ats-bar-label { color: #C8D4EC !important; }

/* Testimonial cards */
.testimonial-card { background: #0D1535 !important; border-color: rgba(212,168,67,.14) !important; }
.testimonial-card__text { color: #C0CCDF !important; }
.testimonial-card__name { color: #FFFFFF !important; }
.testimonial-card__role { color: #8BAAD0 !important; }

/* Pricing cards */
.pricing-card__desc { color: #B8C4E0 !important; }
.pricing-card__feature { color: #B8C4E0 !important; }
.pricing-card__original { color: rgba(255,255,255,.45) !important; }
.pricing-card__guarantee { color: #8BAAD0 !important; }

/* Job board cards */
.job-board-card { background: #0D1535 !important; border-color: rgba(212,168,67,.13) !important; }
.job-board-card__name { color: #FFFFFF !important; }
.job-board-card__desc { color: #B0C0D8 !important; }

/* CTA / newsletter section */
.cta-section .section-desc { color: rgba(255,255,255,.82) !important; }
.email-form__disclaimer { color: rgba(255,255,255,.55) !important; }

/* Form labels */
label, .form-label { color: #C0CCDF !important; }
.form-hint, .form-note { color: #8BAAD0 !important; }

/* Footer — brighter links */
.footer__link { color: #8BAAD0 !important; }
.footer__desc { color: #8BAAD0 !important; }
.footer__copy { color: #6A80A8 !important; }

/* Product card meta & description */
.product-card__desc { color: #B8C4E0 !important; }
.product-card__meta-item { color: #8BAAD0 !important; }
.product-card__original { color: rgba(255,255,255,.38) !important; text-decoration: line-through; }
.product-card__savings { color: #4ADE80 !important; }

/* No-results / empty state */
.empty-state h3, .no-results h3 { color: #FFFFFF !important; }
.empty-state p, .no-results p { color: #B8C4E0 !important; }

/* Product detail page preview stage — keep periwinkle but shift to dark version */
.preview-stage {
  background: linear-gradient(160deg, #0A1240 0%, #061030 100%) !important;
}

/* Zoom overlay dark theme */
.zoom-overlay { background: rgba(4,5,15,.96) !important; }

/* Mobile nav drawer */
.nav__mobile { background: rgba(7,9,26,.98) !important; border-right-color: rgba(212,168,67,.12) !important; }
.nav__mobile-link { color: var(--text-2) !important; }
.nav__mobile-link:hover { color: var(--gold-light) !important; }

/* ── Product detail sidebar ── */
.product-sidebar-card {
  background: #0C1230 !important;
  border-color: rgba(212,168,67,.22) !important;
}
.product-price-main { color: #D4A843 !important; }
.product-price-orig { color: rgba(255,255,255,.35) !important; text-decoration: line-through; }
.savings-badge {
  background: rgba(74,222,128,.12) !important;
  color: #4ADE80 !important;
  border: 1px solid rgba(74,222,128,.25) !important;
}
.product-meta-row {
  color: rgba(255,255,255,.78) !important;
  border-bottom-color: rgba(255,255,255,.07) !important;
}
.product-meta-row svg { color: #D4A843 !important; }
.include-item {
  background: rgba(255,255,255,.04) !important;
  color: rgba(255,255,255,.78) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
}
.guarantee-note { color: rgba(255,255,255,.45) !important; }

/* ── About / pillar cards ── */
.pillar-card {
  background: #0C1230 !important;
  border-color: rgba(255,255,255,.09) !important;
}
.pillar-title { color: #FFFFFF !important; }
.pillar-desc { color: #B8C4E0 !important; }

/* ── Product detail: preview badge ── */
.pp-badge {
  background: #0B1028 !important;
  border-color: rgba(255,255,255,.14) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.55) !important;
}
.pp-badge__num { color: #D4A843 !important; }
.pp-badge__label { color: rgba(255,255,255,.55) !important; }
.pp-badge__label strong { color: rgba(255,255,255,.85) !important; }

/* Product detail: zoom hint + sidebar trust block text */
.product-zoom-hint { color: rgba(255,255,255,.55) !important; }
.trust-signals-block {
  background: rgba(12,18,48,.80) !important;
  border-color: rgba(255,255,255,.07) !important;
}
.trust-signals-block .trust-row { color: rgba(255,255,255,.78) !important; }
.trust-signals-block .trust-label { color: rgba(255,255,255,.45) !important; }

/* Nav — keep visited links looking the same as unvisited */
.nav__link:visited,
a.nav__link:visited { color: #FFFFFF !important; opacity: 0.88; }
.nav__link:visited:hover,
a.nav__link:visited:hover { color: #FFFFFF !important; opacity: 1; }
