/* =============================================================
   Sun to Sale Media - Main Stylesheet
   Colors: #0A0A0A (bg) · #111111 (sections) · #F5A623 (accent)
           #FFFFFF (text) · #2A2A2A (borders)
   Fonts:  Space Grotesk (headings) · DM Sans (body)
============================================================= */

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

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

body {
  background: #0A0A0A;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* TYPOGRAPHY
============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { font-family: 'DM Sans', sans-serif; line-height: 1.65; }

.accent { color: #F5A623; }

.text-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5A623;
}

/* LAYOUT
============================================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--tight { max-width: 680px; margin: 0 auto; padding: 0 24px; }

section { position: relative; }

.section-pad { padding: 100px 24px; }
.section-pad--sm { padding: 70px 24px; }

/* DIVIDER
============================================================= */
.divider {
  width: 48px;
  height: 3px;
  background: #F5A623;
  border-radius: 2px;
  margin: 0 auto 28px;
}
.divider--left { margin-left: 0; }

/* SECTION HEADER
============================================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .text-label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
}

/* BUTTONS
============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: 4px;
  padding: 13px 26px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: #F5A623;
  color: #0A0A0A;
}
.btn--primary:hover {
  background: #ffba45;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.3);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.45);
  color: #FFFFFF;
}

.btn--outline-amber {
  border: 1px solid #F5A623;
  color: #F5A623;
}
.btn--outline-amber:hover { background: rgba(245,166,35,0.08); }

.btn--lg { font-size: 1.05rem; padding: 16px 34px; }

/* NAV
============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #2A2A2A;
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 30px; height: 30px;
  background: #F5A623;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #0A0A0A;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.nav__link:hover { color: #FFFFFF; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: #111111;
  border-top: 1px solid #2A2A2A;
  padding: 16px 24px 24px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  padding: 13px 0;
  font-size: 1rem;
  color: #FFFFFF;
  border-bottom: 1px solid #1A1A1A;
}
.nav__mobile .btn { margin-top: 16px; justify-content: center; }

/* HERO - Video Scroll + Page Reveal
============================================================= */
.hero {
  position: relative;
  height: 100vh;
  background: #000000;
  overflow: hidden;
}

/* Both layers stack on top of each other inside the pinned hero */
.hero__video-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  pointer-events: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #F5A623;
  opacity: 0;
  transition: opacity 0.8s ease;
  animation: scrollBob 2s ease-in-out infinite;
  animation-play-state: paused;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero__scroll-hint.visible {
  opacity: 1;
  animation-play-state: running;
}
.hero__scroll-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5A623;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Hero content page - slides in from left/right after video */
.hero__page {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: #0A0A0A;
  overflow: hidden;
}

/* Split-entrance text spans */
.hero__page .sl,
.hero__page .sr {
  display: inline-block;
  will-change: transform, opacity;
}

.hero__glow {
  position: absolute;
  top: -150px; right: -150px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(245,166,35,0.065) 0%, transparent 68%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow { margin-bottom: 20px; }

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero__title em { font-style: normal; color: #F5A623; }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__guarantee-note {
  margin-top: 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__guarantee-note span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__guarantee-note span::before {
  content: '✓';
  color: #F5A623;
}

/* PROOF BAR
============================================================= */
.proof-bar {
  background: #111111;
  border-top: 1px solid #2A2A2A;
  border-bottom: 1px solid #2A2A2A;
  padding: 28px 24px;
}
.proof-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.proof-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.proof-bar__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #F5A623;
  letter-spacing: -0.04em;
  line-height: 1;
}
.proof-bar__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 5px;
}
.proof-bar__sep {
  width: 1px; height: 36px;
  background: #2A2A2A;
  flex-shrink: 0;
}

/* PROBLEMS
============================================================= */
.problems { background: #0A0A0A; }

.problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.problem-card {
  background: #111111;
  border: 2px solid #2A2A2A;
  border-radius: 10px;
  padding: 32px 22px 26px;
  text-align: center;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(.165,.84,.44,1);
  will-change: transform, box-shadow, background, border-color;
}
.problem-card:hover {
  border-color: rgba(245,166,35,0.5);
  transform: translateY(-24px) scale(1.04);
  background: #1a1a1a;
  box-shadow:
    0 35px 60px rgba(0,0,0,0.4),
    0 15px 30px rgba(245,166,35,0.08),
    0 0 40px rgba(245,166,35,0.06);
}
.problem-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.problem-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.problem-card__text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.58;
}

/* SOLUTION / PILLARS
============================================================= */
.solution { background: #111111; }

.solution__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.pillar-card {
  background: #0A0A0A;
  border: 2px solid #2A2A2A;
  border-top: 3px solid #F5A623;
  border-radius: 10px;
  padding: 36px 28px;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(.165,.84,.44,1);
  will-change: transform, box-shadow, background, border-color;
}
.pillar-card:hover {
  transform: translateY(-24px) scale(1.04);
  background: #1a1a1a;
  border-color: #2A2A2A;
  border-top-color: #FFB840;
  box-shadow:
    0 35px 60px rgba(0,0,0,0.4),
    0 15px 30px rgba(245,166,35,0.08),
    0 0 40px rgba(245,166,35,0.06);
}
.pillar-card:hover .pillar-card__num {
  color: rgba(245,166,35,0.7);
}
.pillar-card__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(245,166,35,0.12);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.5s cubic-bezier(.165,.84,.44,1);
}
.pillar-card h3 { margin-bottom: 12px; }
.pillar-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.pillar-card__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-card__list li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pillar-card__list li::before {
  content: '→';
  color: #F5A623;
  flex-shrink: 0;
}

/* BONUS STACK
============================================================= */
.bonuses { background: #0A0A0A; }

/* Mega bonus card */
.bonus-mega-card {
  background: #111111;
  border: 2px solid #2A2A2A;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: all 0.5s cubic-bezier(.165,.84,.44,1);
  will-change: transform, box-shadow, background, border-color;
}
.bonus-mega-card:hover {
  transform: translateY(-24px) scale(1.04);
  background: #1a1a1a;
  border-color: rgba(245,166,35,0.5);
  box-shadow:
    0 35px 60px rgba(0,0,0,0.4),
    0 15px 30px rgba(245,166,35,0.08),
    0 0 40px rgba(245,166,35,0.06);
}
.bonus-mega-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid #2A2A2A;
}
.bonus-mega-card__item:last-of-type {
  border-bottom: none;
}
.bonus-mega-card__left {
  flex: 1;
}
.bonus-mega-card__left h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.bonus-mega-card__left p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.bonus-mega-card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.bonus-mega-card__total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: rgba(245,166,35,0.05);
  border-top: 1px solid rgba(245,166,35,0.15);
}
.bonus-mega-card__total-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.bonus-mega-card__total-old {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e04040;
  text-decoration: line-through;
}
.bonus-mega-card__total-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #F5A623;
}
.bonus-mega-card__total-sub {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-card {
  background: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  padding: 26px 22px;
  transition: border-color 0.25s;
}
.bonus-card:hover { border-color: rgba(245,166,35,0.22); }
.bonus-card__tag {
  display: inline-flex;
  background: rgba(245,166,35,0.09);
  color: #F5A623;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  width: fit-content;
}
.bonus-card h4 { margin-bottom: 8px; }
.bonus-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.58;
}

/* HOW IT WORKS
============================================================= */
.how-it-works { background: #111111; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.steps::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(to right, rgba(245,166,35,0.6), rgba(245,166,35,0.1));
  pointer-events: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  background: #F5A623;
  color: #0A0A0A;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step h4 { margin-bottom: 10px; font-size: 1rem; }
.step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.58;
}

/* GUARANTEE
============================================================= */
.guarantee { background: #0A0A0A; }

.guarantee__box {
  max-width: 780px;
  margin: 0 auto;
  background: #111111;
  border: 1px solid rgba(245,166,35,0.5);
  border-radius: 8px;
  padding: 60px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(245,166,35,0.06);
}
.guarantee__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #F5A623, transparent);
}
.guarantee__icon { font-size: 2.8rem; margin-bottom: 16px; }
.guarantee__box h2 { margin-bottom: 20px; }
.guarantee__quote {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  border-left: 3px solid #F5A623;
  padding-left: 20px;
  text-align: left;
}
.guarantee__conditions {
  text-align: left;
  background: rgba(255,255,255,0.025);
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  padding: 18px 22px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.guarantee__conditions p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.guarantee__conditions ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.guarantee__conditions li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.guarantee__conditions li::before {
  content: '•';
  color: #F5A623;
  flex-shrink: 0;
}

/* PRICING
============================================================= */
.pricing { background: #111111; }

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto 40px;
}

.pricing-card {
  background: #0A0A0A;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 40px 34px;
  position: relative;
}
.pricing-card--featured {
  border-color: #F5A623;
  box-shadow: 0 0 40px rgba(245,166,35,0.08);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #F5A623;
  color: #0A0A0A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-card__amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #F5A623;
  letter-spacing: -0.05em;
  line-height: 1;
}
.pricing-card__period {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
}
.pricing-card__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.pricing-card__features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '✓';
  color: #F5A623;
  flex-shrink: 0;
  font-weight: 700;
}
.pricing-card__features li.muted {
  color: rgba(255,255,255,0.3);
}
.pricing-card__features li.muted::before {
  content: '–';
  color: rgba(255,255,255,0.2);
}

.pricing__footnote {
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  max-width: 560px;
  margin: 0 auto;
}
.pricing__footnote strong { color: #F5A623; }

.pricing__scarcity {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 6px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.pricing__scarcity strong { color: #F5A623; }

/* FAQ
============================================================= */
.faq { background: #0A0A0A; }

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}
.faq__item { border-bottom: 1px solid #2A2A2A; }
.faq__item:first-child { border-top: 1px solid #2A2A2A; }

.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.faq__icon {
  width: 24px; height: 24px;
  border: 1px solid #2A2A2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F5A623;
  font-size: 1rem;
  line-height: 1;
  transition: all 0.3s;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  border-color: #F5A623;
  background: rgba(245,166,35,0.1);
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease, padding 0.3s ease;
}
.faq__a-inner {
  padding: 0 0 22px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.faq__item.open .faq__a { max-height: 500px; }

/* COUNTY CHECKER
============================================================= */
.county-checker {
  background: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
}
.county-checker__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.county-checker__row {
  display: flex;
  gap: 10px;
}
.county-checker select {
  flex: 1;
  background: #0A0A0A;
  border: 1px solid #2A2A2A;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.county-checker select:focus { outline: none; border-color: #F5A623; }
.county-checker select option { background: #111111; color: #FFFFFF; }

.county-result {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  line-height: 1.6;
  display: none;
}
.county-result.available {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.3);
  color: rgba(255,255,255,0.85);
  display: block;
}
.county-result.available strong { color: #F5A623; }
.county-result.taken {
  background: rgba(255,255,255,0.03);
  border: 1px solid #2A2A2A;
  color: rgba(255,255,255,0.45);
  display: block;
}

/* FINAL CTA
============================================================= */
.cta-final {
  background: #111111;
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final__glow {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final h2 { margin-bottom: 18px; }
.cta-final > .container > p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-final__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-final__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* FOOTER
============================================================= */
.footer {
  background: #0A0A0A;
  border-top: 1px solid #2A2A2A;
  padding: 64px 24px 32px;
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  max-width: 260px;
}
.footer__col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__link:hover { color: #FFFFFF; }

.footer__bottom {
  border-top: 1px solid #1A1A1A;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,0.22); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* PAGE HERO (inner pages)
============================================================= */
.page-hero {
  padding: 140px 24px 72px;
  background: #0A0A0A;
  text-align: center;
  border-bottom: 1px solid #2A2A2A;
}
.page-hero .text-label { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
}

/* CONTACT FORM
============================================================= */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 7px; }
.form__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.form__input,
.form__select,
.form__textarea {
  background: #111111;
  border: 1px solid #2A2A2A;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 4px;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus { outline: none; border-color: #F5A623; }
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(255,255,255,0.22); }
.form__textarea { resize: vertical; min-height: 110px; }
.form__select { cursor: pointer; }
.form__select option { background: #111111; color: #FFFFFF; }
.form__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
}

/* ABOUT / TIMELINE
============================================================= */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline__item {
  display: flex;
  gap: 28px;
  padding-bottom: 36px;
  position: relative;
}
.timeline__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: #2A2A2A;
}
.timeline__dot {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #F5A623;
  flex-shrink: 0;
}
.timeline__content h4 { margin-bottom: 6px; }
.timeline__content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* VALUE PROPS (about page)
============================================================= */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  background: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 6px;
  padding: 28px 26px;
}
.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.value-card h4 { margin-bottom: 8px; }
.value-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* PROCESS DETAIL (cum functioneaza)
============================================================= */
.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #2A2A2A;
}
.process-step:last-child { border-bottom: none; }
.process-step:nth-child(even) .process-step__content { order: 2; }
.process-step:nth-child(even) .process-step__visual { order: 1; }

.process-step__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(245,166,35,0.08);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: -10px;
}
.process-step h3 { margin-bottom: 14px; }
.process-step > .process-step__content > p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.process-step__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-step__list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.process-step__list li::before {
  content: '→';
  color: #F5A623;
  flex-shrink: 0;
}

.process-step__visual {
  background: #111111;
  border: 1px solid #2A2A2A;
  border-radius: 8px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process-visual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245,166,35,0.04);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 4px;
}
.process-visual-item__icon { font-size: 1.1rem; flex-shrink: 0; }
.process-visual-item__text {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.process-visual-item__text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

/* ANIMATIONS - initial states for GSAP
============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .nb-placeholder { max-width: 420px; aspect-ratio: 16/9; }

  .problems__grid,
  .bonuses__grid { grid-template-columns: repeat(2, 1fr); }

  .solution__pillars { grid-template-columns: 1fr; max-width: 560px; }

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

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .process-step { grid-template-columns: 1fr; gap: 32px; }
  .process-step:nth-child(even) .process-step__content,
  .process-step:nth-child(even) .process-step__visual { order: unset; }

  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .section-pad { padding: 70px 24px; }
  .section-pad--sm { padding: 50px 24px; }

  .hero {
    text-align: center;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero__video-stage { display: none; }
  .hero__page {
    opacity: 1 !important;
    position: relative;
    padding: 120px 24px 60px;
  }
  .hero__page .sl,
  .hero__page .sr {
    transform: none !important;
    opacity: 1 !important;
  }
  .hero__ctas { justify-content: center; }
  .hero__guarantee-note { justify-content: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }

  .proof-bar__sep { display: none; }

  .problems__grid,
  .bonuses__grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }

  .pricing__grid { grid-template-columns: 1fr; }

  .guarantee__box { padding: 40px 24px; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }

  .form__row { grid-template-columns: 1fr; }
  .county-checker__row { flex-direction: column; }

  .section-header { margin-bottom: 44px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta-final__btns .btn { width: 100%; justify-content: center; }
}
