﻿
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FAFAF7;
  --cream-dk:   #F0EDE5;
  --white:      #FFFFFF;
  --navy:       #1C2D4F;
  --navy-lt:    #243960;
  --amber:      #B8720A;
  --amber-text: #4A2D00;
  --amber-bg:   #FEF6E4;
  --amber-bdr:  #DEB96A;
  --green:      #0D3B20;
  --green-bg:   #EAF5EE;
  --green-bdr:  #7EC49A;
  --text:       #111111;
  --text-md:    #2E2E2E;
  --text-lt:    #5A5A5A;
  --border:     #D4CFC6;
  --border-lt:  #E8E4DC;
  --ff-serif:   'Merriweather', Georgia, serif;
  --ff-sans:    'Source Sans 3', Arial, sans-serif;
}

html { scroll-behavior: smooth; font-size: 20px; scroll-padding-top: 80px; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--navy); color: var(--white);
  padding: 0.75rem 1.5rem; border-radius: 4px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── TOP BANNER ── */
.top-banner {
  background: var(--green);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--white);
  line-height: 1.5;
}
.top-banner a {
  color: #A8EDBE; font-weight: 700;
  text-decoration: underline; white-space: nowrap;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  height: 64px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  gap: 0.5rem;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 0.72rem; font-weight: 900;
  color: var(--navy); text-decoration: none;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  min-width: 0; flex-shrink: 1;
}
.nav-logo-tld { color: var(--amber-text); }
.nav-back { color: var(--navy); text-decoration: none; font-size: 0.72rem; font-weight: 600; white-space: nowrap; padding: 0.25rem 0.1rem; flex-shrink: 0; }
.nav-back:hover { color: var(--amber); }
.nav-back-long { display: none; }
.nav-back-short { display: inline; }
@media (min-width: 768px) {
  .nav-logo { font-size: 1.1rem; }
  .nav-back { font-size: 0.9rem; }
  .nav-back-long { display: inline; }
  .nav-back-short { display: none; }
}
.nav-links { display: flex; gap: 0.5rem; list-style: none; align-items: center; flex-shrink: 0; }
.nav-link-item { display: none; }

/* ── BURGER-MENÜ (mobil) ── */
.nav-burger-item { display: list-item; }
.nav-burger {
  display: flex; align-items: center; gap: 0.3rem;
  background: none; border: none; color: var(--navy);
  font-weight: 700; font-size: 0.78rem; cursor: pointer;
  padding: 0.5rem 0.35rem; font-family: var(--ff-sans);
  flex-shrink: 0;
}
.nav-burger-icon { font-size: 1.15rem; line-height: 1; }
.nav-menu-panel {
  background: var(--navy);
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.nav-menu-panel.open { max-height: 500px; }
.nav-menu-inner { padding: 0.25rem 0 0.75rem; }
.nav-menu-back {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.25rem; color: #FFEC90;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-family: var(--ff-sans);
}
.nav-menu-item {
  display: block; padding: 1rem 1.25rem;
  color: var(--white); font-weight: 600; font-size: 1.05rem;
  text-decoration: none; font-family: var(--ff-sans);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-menu-item:last-child { border-bottom: none; }
.nav-btn {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.45rem 0.65rem;
  min-height: 40px;
  display: inline-flex; align-items: center;
  border-radius: 6px;
  font-weight: 700; font-size: 0.78rem;
  text-decoration: none; white-space: nowrap;
  border: none; transition: background 0.2s;
  flex-shrink: 0;
}
.nav-btn:hover { background: #CF8310; }
.nav-btn-long { display: none; }
.nav-btn-short { display: inline; }
@media (min-width: 768px) {
  .nav-btn-long { display: inline; }
  .nav-btn-short { display: none; }
  .nav-btn { font-size: 0.85rem; padding: 0.55rem 1.1rem; min-height: 44px; }
}

/* ── HERO ── */
.hero { background: var(--white); border-bottom: 2px solid var(--border-lt); }

.hero-video-wrap {
  position: relative; width: 100%;
  background: var(--navy); cursor: pointer; overflow: hidden;
}
.hero-video-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  max-height: 56vw; /* 16:9 ratio */
  transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-video-wrap:hover img { transform: scale(1.02); filter: brightness(0.85); }
.hero-video-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.28); transition: background 0.3s;
}
.hero-video-wrap:hover .hero-video-overlay { background: rgba(0,0,0,0.42); }
/* play-btn removed */
.video-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  padding: 2rem 1.25rem 1rem;
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.video-label::before { content: '▶'; color: #FFEC90; font-size: 0.75rem; }

.hero-body { padding: 2rem 1.25rem 2.5rem; text-align: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--amber-bg); border: 2px solid var(--amber-bdr);
  border-radius: 100px; padding: 0.45rem 1rem;
  font-size: 0.8rem; font-weight: 700; color: var(--amber-text);
  margin-bottom: 1.25rem;
}
.hero-badge::before { content: '✦'; color: var(--amber); }

h1 {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 6vw, 3.2rem);
  font-weight: 900; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
h1 em { font-style: italic; color: var(--amber-text); display: block; }
h2 em { font-style: italic; color: var(--amber-text); }

.hero-lead {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  line-height: 1.85; color: var(--text-md);
  margin-bottom: 2rem;
}

/* Highlight the most emotional sentence */
.hero-lead .emotional-beat {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  color: var(--navy);
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--amber);
  background: var(--amber-bg);
  border-radius: 0 6px 6px 0;
  text-align: left;
}

.hero-cta-group {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 0.85rem;
  max-width: 400px; margin: 0 auto 1rem;
}
.btn-primary {
  display: block; text-align: center;
  background: var(--amber); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(184,114,10,0.3);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
  border: none; cursor: pointer;
}
.btn-primary:hover, .btn-primary:active { background: #CF8310; }
.btn-secondary {
  display: block; text-align: center;
  background: transparent; color: var(--navy);
  padding: 0.9rem 1.5rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 2.5px solid var(--navy);
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

/* Hero examples line */
.hero-examples {
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  line-height: 1.8; color: var(--text-md);
  margin-bottom: 1.75rem;
  padding-top: 0.5rem;
  border-top: 1.5px solid var(--border-lt);
}
.hero-reassure {
  font-size: 0.82rem; color: var(--text-lt);
  display: flex; align-items: center;
  justify-content: center; gap: 0.5rem; flex-wrap: wrap;
}



/* ── SECTIONS ── */
.section { padding: 3.5rem 1.25rem; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-cream-dk { background: var(--cream-dk); }
.section-navy { background: var(--navy); }

.inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--amber-text); margin-bottom: 0.6rem;
}
h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.45rem, 5vw, 2.5rem);
  font-weight: 900; line-height: 1.25;
  color: var(--navy); margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
h2.on-dark { color: var(--white); }
.section-lead {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--text-md); line-height: 1.85;
  margin-bottom: 2rem;
}

/* ── FEAR → NOW CARDS ── */
.fear-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.fear-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 10px; padding: 1.75rem 1.5rem;
}
.fc-then-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 0.6rem;
}
.fc-then-text {
  font-family: var(--ff-serif);
  font-size: 0.95rem; font-style: italic;
  color: var(--text-md); line-height: 1.65;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid var(--border-lt);
  margin-bottom: 1rem;
}
.fc-now-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.5rem;
}
.fc-now-text { font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.6; }

/* ── ABOUT ── */
.about-photo-wrap { position: relative; margin-bottom: 3.5rem; }
.about-accent {
  position: absolute; top: -1rem; left: -0.75rem;
  width: 48%; height: 48%;
  background: var(--amber); opacity: 0.09;
  border-radius: 10px; z-index: 0;
}
.about-photo-main {
  width: 100%; border-radius: 10px; display: block;
  position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  object-fit: cover; max-height: 420px;
  aspect-ratio: 3 / 2;
}
/* Lernpfad-Illustration: Mobile-Bild hat komplett anderes Seitenverhaeltnis
   als das per width/height im <img> deklarierte Desktop-Bild (Hochformat vs.
   Querformat) — ohne diese Korrektur reserviert der Browser auf Mobilgeraeten
   zu wenig Platz, das Bild laedt spaeter nach und verschiebt alles darunter
   (u. a. #anmelden) deutlich nach unten. */
@media (max-width: 640px) {
  #lernpfad picture img { aspect-ratio: 800 / 1688; }
}
.about-photo-family {
  position: absolute; bottom: -2.5rem; right: -0.5rem;
  width: 50%; border-radius: 10px;
  border: 4px solid var(--white);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  z-index: 3; object-fit: cover;
}
.about-badge {
  position: absolute; top: 1rem; right: -0.5rem;
  background: var(--amber); color: var(--white);
  padding: 0.75rem 1rem; border-radius: 8px;
  z-index: 4; text-align: center;
  box-shadow: 0 4px 16px rgba(184,114,10,0.35);
  line-height: 1.3;
}
.about-badge strong { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-badge span { font-size: 0.75rem; font-weight: 600; }

.siezen-box {
  background: var(--amber-bg);
  border: 2px solid var(--amber-bdr);
  border-radius: 8px; padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem; color: var(--text-md); line-height: 1.7;
}
.siezen-box strong { color: var(--amber-text); }

.about-text p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--text-md); margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text); font-weight: 700; }

/* ── TRUST SIGNALS (replaces career timeline) ── */
.trust-signals { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.ts-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--cream); border-radius: 8px; padding: 1rem 1.25rem;
  border: 1.5px solid var(--border-lt);
}
.ts-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.ts-text { font-size: 0.88rem; line-height: 1.7; color: var(--text-md); }
.ts-text strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 0.1rem; }


/* ── CV STATIONS (inside 🌍 ts-item) ── */
.cv-stations {
  margin-top: 1rem;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1.5px solid var(--border-lt);
  padding-top: 0.75rem;
}
.cv-station {
  padding: 0.75rem 0;
  border-bottom: 1.5px solid var(--border-lt);
}
.cv-station:last-child { border-bottom: none; padding-bottom: 0; }
.cv-loc {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--amber-text); margin-bottom: 0.25rem;
}
.cv-role {
  font-size: 0.88rem; font-weight: 700;
  color: var(--navy); line-height: 1.4; margin-bottom: 0.2rem;
}
.cv-note {
  font-size: 0.82rem; color: var(--text-md); line-height: 1.65;
}
.ts-item-expanded { align-items: flex-start; }

/* ── PERSONAL LETTER ── */
.letter-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 5px solid var(--amber);
  border-radius: 10px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.letter-salutation {
  font-family: var(--ff-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1.25rem;
}
.letter-body {
  font-size: 0.95rem; line-height: 1.9;
  color: var(--text-md);
}
.letter-body p { margin-bottom: 1rem; }
.letter-body strong { color: var(--text); }
.letter-sig {
  margin-top: 1.75rem;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--navy); font-size: 1rem;
}
.letter-sig span {
  display: block; font-style: normal;
  font-family: var(--ff-sans); font-size: 0.82rem;
  color: var(--text-lt); margin-top: 0.25rem;
}

/* ── QUOTE ── */
.quote-inner {
  padding: 3.5rem 1.25rem;
  text-align: center; max-width: 820px; margin: 0 auto;
}
.blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 4vw, 1.8rem);
  font-weight: 400; font-style: italic;
  line-height: 1.75; color: var(--white);
  margin-bottom: 1.25rem;
}
.blockquote strong { font-style: normal; font-weight: 900; color: #FFEC90; }
.quote-attr { font-size: 0.85rem; color: #E8E8E8; }

/* ── WHAT CHANGES ── */
.change-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.change-item {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--white);
  border: 2px solid var(--green-bdr);
  border-radius: 10px; padding: 1.5rem;
  border-left: 5px solid var(--green);
}
.change-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem;
}
.change-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-md); }
.change-text strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 0.2rem; }

/* ── OFFERS ── */
.offer-list { display: flex; flex-direction: column; gap: 1.25rem; }
.offer-item {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 10px; padding: 1.5rem;
  display: grid; grid-template-columns: 2.8rem 1fr;
  grid-template-rows: auto auto; gap: 0.75rem 1rem;
  transition: border-color 0.2s;
}
.offer-item:hover { border-color: var(--amber); }
.offer-icon { font-size: 2rem; line-height: 1; grid-row: 1; grid-column: 1; align-self: start; }
.offer-content { grid-row: 1; grid-column: 2; }
.offer-tag {
  display: inline-block; font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--white); background: var(--navy);
  padding: 0.18rem 0.55rem; border-radius: 3px; margin-bottom: 0.4rem;
}
.offer-name { font-weight: 700; font-size: 1rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.35rem; }
.offer-desc { font-size: 0.85rem; color: var(--text-md); line-height: 1.65; }
.offer-price {
  grid-column: 1 / -1;
  background: var(--cream); border-radius: 6px; padding: 0.65rem 1rem;
  display: flex; align-items: baseline; gap: 0.5rem;
}
.offer-price strong { font-size: 1.2rem; color: var(--navy); font-weight: 900; }
.offer-price small { font-size: 0.78rem; color: var(--text-lt); }
.offer-free .offer-price { background: var(--green-bg); }
.offer-free .offer-price strong { color: var(--green); }

/* ── TESTIMONIALS ── */
.testi-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.testi-card {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 1.75rem 1.5rem;
}
.testi-stars { color: #FFEC90; font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testi-text {
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(255,255,255,0.9); margin-bottom: 1rem; font-style: italic;
}
.testi-text strong { color: #FFEC90; font-style: normal; }
.testi-author { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testi-meta { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.1rem; }
.testi-notice {
  display: inline-block; font-size: 0.8rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); border-radius: 4px;
  padding: 0.4rem 0.85rem; margin-bottom: 0.5rem;
}

/* ── CTA BOX ── */
.cta-box {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-top: 5px solid var(--amber);
  border-radius: 12px; padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.cta-free-pill {
  display: inline-block; background: var(--green-bg);
  color: var(--green); border: 1.5px solid var(--green-bdr);
  border-radius: 100px; padding: 0.3rem 1rem;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem;
}
.cta-box h2 { font-size: clamp(1.3rem, 4vw, 2rem); margin-bottom: 0.85rem; }
.cta-box p { font-size: 0.95rem; color: var(--text-md); line-height: 1.75; margin-bottom: 1.5rem; }
.cta-form {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 420px; margin: 0 auto 1rem;
}
.cta-form input[type="email"] {
  width: 100%; padding: 0.9rem 1rem;
  border: 2px solid var(--border); border-radius: 8px;
  font-size: 1rem; font-family: var(--ff-sans);
  color: var(--text); background: var(--cream);
  outline: none; transition: border-color 0.2s;
  min-height: 52px;
}
.cta-form input[type="email"]:focus { border-color: var(--amber); background: var(--white); }
.cta-note {
  font-size: 0.78rem; color: var(--text-lt);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.3rem 0.75rem; margin-top: 0.5rem;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1.5px solid var(--border-lt); }
.faq-item:first-child { border-top: 1.5px solid var(--border-lt); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.1rem 2.5rem 1.1rem 0;
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); font-family: var(--ff-sans);
  line-height: 1.5; position: relative; min-height: 52px;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; color: var(--amber);
  font-weight: 300; transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem; color: var(--text-md); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.25rem; }
.faq-a strong { color: var(--text); }

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--navy); color: rgba(255,255,255,0.85);
  text-align: center; padding: 1.25rem 1.25rem;
  font-size: 0.85rem; line-height: 1.6;
}
.contact-strip a { color: #FFEC90; font-weight: 700; text-decoration: none; }
.contact-strip a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #0F1C34; padding: 2rem 1.25rem;
  text-align: center;
}
.footer-logo {
  font-family: var(--ff-serif); font-size: 1rem; font-weight: 900;
  color: var(--white); text-decoration: none; display: inline-block; margin-bottom: 1rem;
}
.footer-logo .tld { color: #DEB96A; }
.footer-links {
  list-style: none; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.25rem 1.25rem; margin-bottom: 1rem;
}
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.8rem; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── VIDEO MODAL ── */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
  padding: 1.25rem;
}
.video-modal.open { display: flex; }
.video-modal-inner { position: relative; width: 100%; max-width: 900px; }
.video-close {
  position: absolute; top: -2.75rem; right: 0;
  background: none; border: none; color: var(--white);
  font-size: 1.5rem; cursor: pointer; padding: 0.5rem; line-height: 1;
}
.video-ratio-wrap { position: relative; padding-bottom: 56.25%; height: 0; }
.video-ratio-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none; border-radius: 8px;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .nav-link-item { display: list-item; }
  .nav-link-item a { color: var(--navy); text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 0.25rem 0.1rem; }
  .nav-link-item a:hover { color: var(--amber); }
  .nav-burger-item { display: none; }
  .nav-menu-panel { display: none !important; }

  /* Hero: split layout on desktop */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 540px;
  }
  .hero-video-wrap {
    order: 2;
    max-height: none;
  }
  .hero-video-wrap img {
    max-height: none;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  .hero-body {
    order: 1;
    text-align: left;
    padding: 4rem 3rem 4rem 4rem;
    display: flex; flex-direction: column;
    justify-content: center;
  }
  .hero-cta-group { align-items: flex-start; }
  
/* Hero examples line */
.hero-examples {
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  line-height: 1.8; color: var(--text-md);
  margin-bottom: 1.75rem;
  padding-top: 0.5rem;
  border-top: 1.5px solid var(--border-lt);
}
.hero-reassure { justify-content: flex-start; }
  .hero-badge { align-self: flex-start; }
  .hero-lead .emotional-beat { max-width: 480px; }

  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  /* play-btn desktop removed */

  .section { padding: 5.5rem 3rem; }
  .fear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

  .about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
  .about-photo-wrap { margin-bottom: 0; padding-bottom: 4.5rem; }
  .about-photo-main { max-height: none; }

  .change-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .offer-item { grid-template-columns: 3.5rem 1fr 170px; grid-template-rows: auto; align-items: center; }
  .offer-price { grid-column: 3; grid-row: 1; flex-direction: column; align-items: flex-end; gap: 0.15rem; text-align: right; background: none; padding: 0; border-left: 1.5px solid var(--border-lt); padding-left: 1.25rem; }
  .offer-free .offer-price { background: none; }
  .offer-price strong { font-size: 1.4rem; }
  .offer-price small { font-size: 0.8rem; }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .testi-card { background: rgba(255,255,255,0.07); }
  .cta-form { flex-direction: row; }
  .cta-form input[type="email"] { flex: 1; }
  .cta-form .btn-primary { white-space: nowrap; padding: 0.9rem 1.4rem; display: inline-block; width: auto; }
}

