/* ============================================
   AUSWANDER-GUIDE SCHWEIZ — Landingpage V10 (Live)
   ============================================ */

/* ---- Fonts (lokal, DSGVO-konform) ---- */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-serif-display-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dm-serif-display-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/outfit-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/outfit-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/outfit-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/outfit-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/outfit-700.woff2') format('woff2');
}

/* ---- CSS Variables ---- */
:root {
  /* Colors */
  --bg: #FDFBF7;
  --bg-alt: #F5F1EB;
  --text: #2B2B2B;
  --text-soft: #6B6560;
  --text-muted: #A39E97;
  --accent: #D4764E;
  --accent-hover: #BE6340;
  --green: #3A7D5C;
  --border: #E5E0D8;
  --white: #ffffff;

  /* Fonts */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lift: 0 12px 40px rgba(0,0,0,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s var(--ease);
  --transition-base: 0.35s var(--ease);
  --transition-slow: 0.6s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--accent);
  color: var(--white);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-link:focus { top: var(--space-sm); }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(212,118,78,0.35);
}
.btn--accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(212,118,78,0.45);
}
.btn--large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--small { padding: 0.55rem 1.4rem; font-size: 0.85rem; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}
.section-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: var(--space-sm);
}
.section-header__sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}
.section-header--light .section-header__title { color: var(--white); }
.section-header--light .section-header__eyebrow { color: rgba(255,255,255,0.7); }
.section-header--light .section-header__sub { color: rgba(255,255,255,0.75); }

/* ---- Photo Section (reusable) ---- */
.photo-section {
  position: relative;
  overflow: hidden;
}
.photo-section__bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}
.photo-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.photo-section__overlay--dark {
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}
.photo-section > .container,
.photo-section > * > .container {
  position: relative;
  z-index: 2;
}

/* ---- Glass Card ---- */
.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ---- Reveal Animations ---- */
.reveal, .reveal-hero {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible, .reveal-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition-base);
}
.nav.is-scrolled {
  padding: 0.7rem 0;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  transition: color var(--transition-base);
}
.nav.is-scrolled .nav__logo { color: var(--text); }
.nav__flag { flex-shrink: 0; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-fast);
}
.nav__link:hover::after { width: 100%; }
.nav.is-scrolled .nav__link { color: var(--text-soft); }
.nav.is-scrolled .nav__link:hover { color: var(--text); }

.nav__cta {
  background: var(--accent);
  color: var(--white);
}

/* Burger */
.nav__burger { display: none; width: 28px; height: 20px; position: relative; z-index: 1001; }
.nav__burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  border-radius: 2px;
}
.nav.is-scrolled .nav__burger span { background: var(--text); }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 9px; }
.nav__burger span:nth-child(3) { top: 18px; }
.nav__burger.is-open span { background: var(--white) !important; }
.nav__burger.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Mobile Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.nav__overlay.is-open { opacity: 1; pointer-events: all; }
.nav__overlay-inner { text-align: center; }
.nav__overlay-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  padding: 0.6rem 0;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}
.nav__overlay-link:hover { opacity: 1; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.hero__content { position: relative; z-index: 2; }
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}
.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.hero__secondary-link {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.hero__secondary-link:hover { color: var(--white); }

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================================
   STATS BAR
   ========================================================== */
.stats {
  background: var(--bg-alt);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stats__item { padding: var(--space-sm) 0; }
.stats__value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}
.stats__label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ==========================================================
   PROBLEM
   ========================================================== */
.problem {
  padding: var(--space-3xl) 0;
}
.problem__inner { position: relative; z-index: 2; }
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}
.glass-card__icon {
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-sm);
}
.glass-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}
.glass-card__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ==========================================================
   CHAPTERS
   ========================================================== */
.chapters {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}
.chapter {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  max-width: 700px;
  margin-bottom: var(--space-xl);
}
.chapter--left { margin-right: auto; margin-left: 0; }
.chapter--right { margin-left: auto; margin-right: 0; flex-direction: row-reverse; text-align: right; }
.chapter__number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.chapter__number span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
}
.chapter__number--bonus {
  background: var(--accent);
  border-color: var(--accent);
}
.chapter__number--bonus span { color: var(--white); }
.chapter:hover .chapter__number {
  background: var(--accent);
  border-color: var(--accent);
}
.chapter:hover .chapter__number span { color: var(--white); }
.chapter__content { flex: 1; }
.chapter__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}
.chapter__title {
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.chapter__text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ==========================================================
   STEPS
   ========================================================== */
.steps {
  padding: var(--space-3xl) 0;
  background: var(--bg-alt);
}
.steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.steps__item {
  text-align: center;
  flex: 0 0 220px;
}
.steps__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  box-shadow: 0 4px 14px rgba(212,118,78,0.3);
}
.steps__title {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.steps__text {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.steps__line {
  flex: 0 0 80px;
  height: 2px;
  background: var(--border);
  margin-top: 32px;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: var(--space-3xl) 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.glass-card--testimonial { text-align: center; }
.glass-card__stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: var(--space-sm);
}
.glass-card__quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.glass-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ==========================================================
   PERFECT FOR YOU
   ========================================================== */
.perfect {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}
.perfect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}
.perfect__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}
.perfect__item:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.perfect__check { flex-shrink: 0; margin-top: 2px; }
.perfect__item p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
}

/* ==========================================================
   PRICING
   ========================================================== */
.pricing {
  padding: var(--space-3xl) 0;
  background: var(--bg-alt);
}
.pricing__card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}
.pricing__card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Shine effect */
.pricing__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
}
.pricing__card.is-shine .pricing__shine {
  animation: shineSlide 0.8s ease-in-out forwards;
}
@keyframes shineSlide {
  0% { left: -100%; }
  100% { left: 150%; }
}

.pricing__header { margin-bottom: var(--space-lg); }
.pricing__label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}
.pricing__currency {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
}
.pricing__amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--text);
  line-height: 1;
}
.pricing__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}
.pricing__features {
  text-align: left;
  margin-bottom: var(--space-lg);
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing__features li:last-child { border-bottom: none; }
.pricing__features svg { flex-shrink: 0; }
.pricing__cta { width: 100%; }
.pricing__guarantee {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--bg);
}
.faq__list {
  max-width: 700px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }
.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq__item[open] .faq__answer {
  grid-template-rows: 1fr;
}
.faq__answer p {
  overflow: hidden;
  padding-bottom: var(--space-md);
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  padding: var(--space-3xl) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.final-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.final-cta__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--space-md);
}
.final-cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
}
.footer__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ==========================================================
   RESPONSIVE — 1024px
   ========================================================== */
@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid > :nth-child(3) { grid-column: span 2; max-width: 400px; justify-self: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================
   RESPONSIVE — 768px
   ========================================================== */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }

  .hero__subtitle br { display: none; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

  .problem__grid { grid-template-columns: 1fr; max-width: 480px; }

  .chapter--right { flex-direction: row; text-align: left; }
  .chapter { max-width: 100%; }

  .steps__grid { flex-direction: column; align-items: center; }
  .steps__line {
    width: 2px;
    height: 40px;
    flex: 0 0 40px;
    margin-top: 0;
  }

  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonials__grid > :nth-child(3) { grid-column: span 1; max-width: none; }

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

  .final-cta__title br { display: none; }

  /* No parallax on mobile */
  .photo-section__bg { transform: none !important; inset: 0; }
}

/* ==========================================================
   RESPONSIVE — 375px
   ========================================================== */
@media (max-width: 375px) {
  .container { padding: 0 var(--space-sm); }
  .hero__title { font-size: 1.8rem; }
  .pricing__amount { font-size: 2.8rem; }
  .pricing__card { padding: var(--space-lg); }
  .chapter { gap: var(--space-sm); }
  .chapter__number { width: 48px; height: 48px; }
  .chapter__number span { font-size: 1rem; }
}

/* ==========================================================
   REDUCED MOTION
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-hero {
    opacity: 1;
    transform: none;
  }
  .photo-section__bg {
    transform: none !important;
  }
  .hero__scroll-line {
    animation: none;
    opacity: 0.5;
  }
}