/* ==========================================================================
   Der KI-App-Kurs B2C Landingpage
   Design: warm, editorial-premium auf tiefem Teal. Fraunces + Manrope.
   Brand: Gelb #F2CD5C, Grün #6FBFB1, Teal #2C5B70, BG #081520.
   ========================================================================== */

/* ---------- Fonts (lokal) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-wght.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-italic.woff2") format("woff2-variations");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-300.woff2") format("woff2");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-800.woff2") format("woff2");
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg: #081520;
  --surface: #0d2530;
  --surface-2: #123240;
  --surface-3: #16404f;
  --teal: #2c5b70;
  --green: #6fbfb1;
  --green-deep: #4a9e90;
  --yellow: #f2cd5c;
  --yellow-deep: #e0b53f;

  --text: #eef5f4;
  --text-soft: #c2d4d5;
  --text-mute: #8ba6a9;

  --line: rgba(111, 191, 177, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);

  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1120px;

  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 48px; --sp-6: 64px; --sp-7: 80px; --sp-8: 120px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }
.section { padding: var(--sp-8) 0; position: relative; }

.section__head { max-width: 720px; margin: 0 auto var(--sp-6); text-align: center; }
.section__lead { color: var(--text-soft); font-size: 1.12rem; margin-top: var(--sp-2); }

.eyebrow {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: var(--sp-2);
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.28rem; line-height: 1.25; }
.section__head h2 { font-size: clamp(2rem, 4.5vw, 3.1rem); }

.hl {
  display: inline;
  background: var(--yellow);
  color: #10202a;
  padding: 0 12px 4px;
  border-radius: 6px;
  white-space: nowrap;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  color: #10202a; background: var(--yellow);
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 18px rgba(242, 205, 92, 0.28), 0 0 0 rgba(242, 205, 92, 0);
  min-height: 48px;
}
.btn:hover { background: var(--yellow-deep); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 205, 92, 0.42), 0 0 60px rgba(242, 205, 92, 0.18); }
.btn:active { transform: translateY(0); }
.btn--big { font-size: 1.12rem; padding: 18px 38px; min-height: 58px; }
.btn--full { width: 100%; }
.btn--nav { padding: 11px 20px; font-size: 0.94rem; min-height: 42px; }

/* ---------- Reveal Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.nav.is-scrolled {
  background: rgba(8, 21, 32, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 24px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.24rem;
  color: var(--text); margin-right: auto;
}
.nav__logo-mark {
  width: 26px; height: 26px; border-radius: 8px; flex: none;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  box-shadow: 0 2px 10px rgba(242, 205, 92, 0.3);
}
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--text-soft); font-weight: 600; font-size: 0.96rem; transition: color 0.2s; }
.nav__links a:hover { color: var(--text); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 28px;
  background: rgba(8, 21, 32, 0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line-soft);
}
.nav.is-open .nav__mobile { display: flex; }
.nav__mobile a { color: var(--text-soft); font-weight: 600; padding: 12px 0; font-size: 1.05rem; }
.nav__mobile .btn { margin-top: 12px; color: #10202a; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 140px 0 90px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 78% 18%, rgba(111, 191, 177, 0.16) 0%, transparent 62%),
    radial-gradient(ellipse 50% 55% at 10% 12%, rgba(242, 205, 92, 0.10) 0%, transparent 58%),
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(44, 91, 112, 0.4) 0%, transparent 70%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__headline {
  font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 600;
  line-height: 1.08; letter-spacing: -0.015em; margin: 20px 0 22px;
}
.hero__sub { font-size: 1.2rem; color: var(--text-soft); font-weight: 400; max-width: 540px; }
.hero__cta { margin: 34px 0 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__cta-note { font-size: 0.9rem; color: var(--text-mute); }
.hero__trust { display: flex; gap: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero__trust li { font-size: 0.92rem; color: var(--text-mute); }
.hero__trust strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--text); line-height: 1; }

/* Badge */
.badge {
  display: inline-block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--green); background: var(--surface-2);
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line);
}

/* App-Mockup */
.hero__visual { position: relative; }
.mock {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.03);
  transform: rotate(1.2deg);
}
.mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; background: var(--surface-2); border-bottom: 1px solid var(--line-soft);
}
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: #34515c; }
.mock__dot:nth-child(1) { background: #e0705f; }
.mock__dot:nth-child(2) { background: var(--yellow); }
.mock__dot:nth-child(3) { background: var(--green); }
.mock__url { margin-left: 12px; font-size: 0.78rem; color: var(--text-mute); font-weight: 600; }
.mock__body { padding: 24px; }
.mock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mock__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.mock__pill { font-size: 0.72rem; font-weight: 700; color: #10202a; background: var(--green); padding: 4px 11px; border-radius: 999px; }
.mock__cards { display: grid; gap: 12px; margin-bottom: 22px; }
.mock__card {
  background: var(--surface-2); border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
}
.mock__tag { font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 6px; white-space: nowrap; }
.mock__tag--y { background: rgba(242, 205, 92, 0.2); color: var(--yellow); }
.mock__tag--g { background: rgba(111, 191, 177, 0.2); color: var(--green); }
.mock__tag--b { background: rgba(120, 170, 200, 0.2); color: #9cc4dc; }
.mock__line { flex: 1; height: 8px; border-radius: 6px; background: linear-gradient(90deg, var(--surface-3), transparent); }
.mock__progress { display: flex; flex-direction: column; gap: 8px; }
.mock__progress span { font-size: 0.8rem; color: var(--text-mute); font-weight: 600; }
.mock__bar-fill { height: 10px; border-radius: 6px; background: var(--surface-2); overflow: hidden; }
.mock__bar-fill i { display: block; height: 100%; width: 72%; border-radius: 6px; background: linear-gradient(90deg, var(--green), var(--yellow)); }
.mock__prompt {
  position: relative; margin: -14px auto 0; max-width: 90%;
  background: var(--surface-3); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  font-size: 0.94rem; color: var(--text-soft); font-style: italic;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  transform: rotate(-1deg);
}
.mock__prompt-label {
  display: block; font-style: normal; font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--yellow); margin-bottom: 5px;
}

/* ==========================================================================
   Problem
   ========================================================================== */
.problem { background: var(--surface); }
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.problem__old, .problem__new { padding: 34px; border-radius: var(--radius); }
.problem__old { background: var(--bg); border: 1px solid var(--line-soft); }
.problem__new { background: var(--surface-2); border: 1px solid var(--line); }
.problem__old h3, .problem__new h3 { margin-bottom: 20px; font-size: 1.3rem; }
.problem__old h3 { color: var(--text-mute); }
.problem__new h3 { color: var(--green); }

.xlist li, .clist li { position: relative; padding-left: 34px; margin-bottom: 15px; color: var(--text-soft); font-size: 1.02rem; }
.xlist li strong, .clist li strong { color: var(--text); font-weight: 700; }
.xlist li::before, .clist li::before {
  position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800;
}
.xlist li::before { content: "\00d7"; background: rgba(224, 112, 95, 0.16); color: #e0705f; }
.clist li::before { content: "\2713"; background: rgba(111, 191, 177, 0.18); color: var(--green); }

.problem__punch {
  text-align: center; margin-top: var(--sp-6); font-size: 1.25rem; color: var(--text-soft);
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.problem__punch strong { color: var(--yellow); font-weight: 700; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 36px 30px; position: relative;
}
.step__num {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 20px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: #10202a;
  background: linear-gradient(135deg, var(--yellow), var(--green));
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-soft); }

/* ==========================================================================
   Niches
   ========================================================================== */
.niches { background: var(--surface); }
.niches__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.niche {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.niche:hover { transform: translateY(-4px); border-color: rgba(111, 191, 177, 0.4); }
.niche__icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-3); color: var(--green);
}
.niche__icon svg { width: 26px; height: 26px; }
.niche h3 { margin-bottom: 10px; }
.niche p { color: var(--text-soft); font-size: 1rem; }
.niche--more { background: linear-gradient(155deg, var(--surface-3), var(--surface-2)); border-color: rgba(242, 205, 92, 0.3); }
.niche--more .niche__icon { background: rgba(242, 205, 92, 0.14); color: var(--yellow); }

/* ==========================================================================
   Modules Timeline
   ========================================================================== */
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(180deg, var(--green), rgba(111, 191, 177, 0.15));
}
.timeline__item { display: flex; gap: 26px; padding: 16px 0; position: relative; }
.timeline__num {
  flex: none; width: 56px; height: 56px; border-radius: 16px; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line);
}
.timeline__body {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 22px 26px; flex: 1;
  transition: transform 0.2s ease;
}
.timeline__item:hover .timeline__body { transform: translateX(4px); }
.timeline__item:hover .timeline__num { border-color: var(--green); color: var(--green); }
.timeline__body h3 { margin-bottom: 6px; font-size: 1.18rem; }
.timeline__body p { color: var(--text-soft); font-size: 1rem; }

/* ==========================================================================
   For Whom
   ========================================================================== */
.forwhom { background: var(--surface); }
.forwhom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; }
.forwhom__col { padding: 36px; border-radius: var(--radius); }
.forwhom__col--yes { background: var(--surface-2); border: 1px solid var(--line); }
.forwhom__col--no { background: var(--bg); border: 1px solid var(--line-soft); }
.forwhom__col h3 { margin-bottom: 22px; font-size: 1.35rem; }
.forwhom__col--yes h3 { color: var(--green); }
.forwhom__col--no h3 { color: var(--text-mute); }

/* ==========================================================================
   About
   ========================================================================== */
.about__inner { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: center; max-width: 960px; margin: 0 auto; }
.about__portrait {
  aspect-ratio: 1; border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--surface-3), var(--teal));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.about__initials { font-family: var(--font-display); font-size: 4.5rem; font-weight: 600; color: var(--yellow); }
.about__copy h2 { margin-bottom: 18px; }
.about__copy p { color: var(--text-soft); margin-bottom: 16px; font-size: 1.08rem; }
.about__copy em { color: var(--text); font-style: italic; }
.about__facts { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.about__facts li { display: flex; flex-direction: column; }
.about__facts strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--green); font-weight: 600; }
.about__facts span { font-size: 0.9rem; color: var(--text-mute); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.price-card {
  position: relative; max-width: 620px; margin: 0 auto; overflow: hidden;
  background: var(--surface-2); border: 1px solid rgba(242, 205, 92, 0.35);
  border-radius: var(--radius-lg); padding: 44px 42px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.price-card__glow {
  position: absolute; top: -40%; right: -20%; width: 60%; height: 120%; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(242, 205, 92, 0.14) 0%, transparent 70%);
}
.price-card__top { position: relative; text-align: center; margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.price-card__name { display: block; font-size: 0.92rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.price-card__amount { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.price-card__eur { font-family: var(--font-display); font-size: 4rem; font-weight: 600; line-height: 1; color: var(--text); }
.price-card__once { font-size: 0.95rem; color: var(--text-mute); }
.price-card__list { position: relative; margin-bottom: 30px; }
.price-card__list li { position: relative; padding-left: 32px; margin-bottom: 14px; color: var(--text-soft); font-size: 1.04rem; }
.price-card__list li::before {
  content: "\2713"; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%; background: rgba(111, 191, 177, 0.18); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800;
}
.price-card__guarantee {
  position: relative; display: flex; gap: 14px; align-items: flex-start;
  margin-top: 26px; padding: 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--line);
}
.price-card__guarantee svg { width: 30px; height: 30px; flex: none; color: var(--green); margin-top: 2px; }
.price-card__guarantee p { font-size: 0.96rem; color: var(--text-soft); }
.price-card__guarantee strong { color: var(--text); }
.price-card__note { position: relative; margin-top: 18px; font-size: 0.86rem; color: var(--text-mute); text-align: center; }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.acc.is-open { border-color: var(--line); }
.acc__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; font-family: var(--font-body); font-weight: 700; font-size: 1.06rem; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.acc__icon { position: relative; flex: none; width: 20px; height: 20px; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--green);
  transform: translate(-50%, -50%); border-radius: 2px; transition: transform 0.3s ease;
}
.acc__icon::before { width: 14px; height: 2px; }
.acc__icon::after { width: 2px; height: 14px; }
.acc.is-open .acc__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc__a p { padding: 0 24px 24px; color: var(--text-soft); font-size: 1.02rem; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.finalcta { text-align: center; overflow: hidden; }
.finalcta__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(111, 191, 177, 0.14) 0%, transparent 65%);
}
.finalcta__inner { position: relative; }
.finalcta__inner h2 { margin-bottom: 16px; }
.finalcta__inner p { color: var(--text-soft); font-size: 1.15rem; margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.finalcta__note { display: block; margin-top: 14px; font-size: 0.9rem; color: var(--text-mute); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--surface); border-top: 1px solid var(--line-soft); padding: var(--sp-6) 0 var(--sp-4); }
.footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line-soft); }
.footer__brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.footer__by { flex-basis: 100%; font-family: var(--font-body); font-size: 0.88rem; font-weight: 400; color: var(--text-mute); margin-top: 4px; }
.footer__links { display: flex; gap: 26px; }
.footer__links a { color: var(--text-soft); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.footer__legal { margin-top: 24px; font-size: 0.82rem; color: var(--text-mute); max-width: 780px; line-height: 1.6; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
  .about__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .about__portrait { max-width: 220px; margin: 0 auto; }
  .about__facts { justify-content: center; }
  .problem__grid, .forwhom__grid { grid-template-columns: 1fr; }
  .steps__grid, .niches__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --sp-8: 72px; }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 120px 0 70px; }
  .hero__trust { gap: 22px; }
  .steps__grid, .niches__grid { grid-template-columns: 1fr; }
  .section__head { margin-bottom: var(--sp-5); }
  .price-card { padding: 34px 24px; }
  .timeline__num { width: 48px; height: 48px; font-size: 1rem; }
  .timeline::before { left: 23px; }
  .timeline__item { gap: 18px; }
}

@media (max-width: 430px) {
  .container { padding: 0 18px; }
  .hero__headline { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hl { padding: 0 8px 3px; }
  .hero__sub { font-size: 1.08rem; }
  .btn--big { width: 100%; padding: 16px 24px; }
  .hero__cta { align-items: stretch; }
  .problem__old, .problem__new, .forwhom__col { padding: 26px 22px; }
  .about__facts { gap: 20px; }
  .price-card__eur { font-size: 3.2rem; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .mock { transform: none; }
  .mock__prompt { transform: none; }
}

/* ==========================================================================
   Legal-Subpages (Impressum / Datenschutz)
   ========================================================================== */
.legal { padding: 150px 0 var(--sp-8); position: relative; }
.legal__glow {
  position: absolute; inset: 0; height: 420px; pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(111,191,177,0.12) 0%, transparent 70%);
}
.legal .container { max-width: 820px; position: relative; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 8px; }
.legal__subtitle { color: var(--text-mute); font-size: 1rem; margin-bottom: var(--sp-5); }
.legal__content h2 {
  font-size: 1.5rem; margin: var(--sp-5) 0 var(--sp-2);
  padding-top: var(--sp-4); border-top: 1px solid var(--line-soft);
}
.legal__content h2:first-of-type { border-top: none; padding-top: 0; }
.legal__content h3 { font-size: 1.15rem; margin: var(--sp-3) 0 var(--sp-1); color: var(--green); }
.legal__content p { color: var(--text-soft); margin-bottom: var(--sp-2); }
.legal__content strong { color: var(--text); font-weight: 700; }
.legal__content a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal__content a:hover { color: var(--yellow); }
.legal__content ul { margin: 0 0 var(--sp-2) 0; padding-left: 0; }
.legal__content ul li {
  position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--text-soft);
}
.legal__content ul li::before {
  content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.legal__content code {
  background: var(--surface-2); color: var(--text); padding: 2px 7px; border-radius: 5px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.88em;
}
/* Kontakt-Karten Impressum */
.legal__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: var(--sp-3) 0 var(--sp-4); }
.legal__card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; }
.legal__card--wide { grid-column: 1 / -1; }
.legal__card-label {
  display: flex; align-items: center; gap: 9px; margin-bottom: 12px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green);
}
.legal__card-label svg { width: 16px; height: 16px; }
.legal__card p { color: var(--text-soft); margin: 0; }
.legal__card strong { color: var(--text); }
/* Hinweis-/TODO-Box */
.legal__note {
  background: var(--surface); border: 1px solid rgba(242,205,92,0.35); border-left: 4px solid var(--yellow);
  border-radius: 12px; padding: 18px 22px; margin: var(--sp-3) 0;
}
.legal__note p { margin: 0; color: var(--text-soft); }
.legal__note strong { color: var(--yellow); }
.legal__stamp { margin-top: var(--sp-4); font-size: 0.85rem; color: var(--text-mute); }

@media (max-width: 560px) {
  .legal { padding: 120px 0 var(--sp-7); }
  .legal__cards { grid-template-columns: 1fr; }
}
