/* ==========================================================================
   Fahrschule Aydin — Redesign 2026
   Gleiche Design-Sprache wie Fahrschule Mariendorf, Markenfarbe in Blau.
   ========================================================================== */

:root {
  /* Flächen (kühles Off-White statt Elfenbein) */
  --canvas:        #F2F5FA;
  --surface:       #FAFBFD;
  --surface-alt:   #E8EEF6;
  --surface-tint:  #F5F8FC;

  /* Text */
  --ink:           #0B1D3E;
  --muted:         #4E5A70;
  --faint:         #8A93A5;

  /* Linien */
  --line:          #DDE4EF;
  --line-strong:   #B7C1D3;

  /* Marke */
  --brand:         #1E3A6E;
  --brand-dark:    #14284D;
  --brand-light:   #2F55A0;
  --brand-tint:    #E5ECF7;
  --accent-soft:   #A8C0E8;
  --accent-softer: #C6D6F0;

  /* Auf dunklem Grund */
  --on-dark:        #F2F5FA;
  --on-dark-body:   rgba(242, 245, 250, 0.7);
  --on-dark-soft:   rgba(242, 245, 250, 0.6);
  --on-dark-strong: rgba(242, 245, 250, 0.8);
  --on-dark-line:   rgba(242, 245, 250, 0.2);

  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--brand); text-decoration: none; transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
a:hover { color: var(--brand-dark); }

img, svg, iframe { display: block; max-width: 100%; }

::selection { background: var(--brand); color: var(--canvas); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* padding-block, damit das horizontale Polster von .container erhalten bleibt,
   wenn beide Klassen auf demselben Element sitzen */
.section { padding-block: clamp(72px, 10vw, 120px); }
.section--tight { padding-block: 0 clamp(48px, 6vw, 72px); }
.section--alt { background: var(--surface-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--bordered { border-top: 1px solid var(--line); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--wide { max-width: 560px; }

/* ==========================================================================
   Typografie
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--soft { color: var(--accent-soft); letter-spacing: 0.22em; }

.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.eyebrow-row .hairline { height: 1px; width: 56px; background: var(--line-strong); display: block; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 6.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-top: 18px;
  color: var(--ink);
}
.section-title--sm { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 16px; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-top: 20px;
  color: var(--ink);
}

.accent { color: var(--brand); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: var(--muted);
  line-height: 1.7;
  margin-top: 26px;
  max-width: 540px;
}

/* Hero-Einblendung, gestaffelt */
.fadeup    { animation: fadeUp 0.9s var(--ease) both; }
.fadeup--1 { animation-delay: 0.08s; }
.fadeup--2 { animation-delay: 0.16s; }
.fadeup--3 { animation-delay: 0.24s; }

/* Scroll-Reveal — Startzustand nur, wenn JS die Elemente auch wieder einblenden kann */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--primary { background: var(--brand); color: var(--canvas); }
.btn--primary:hover { background: var(--brand-dark); color: var(--canvas); }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }

/* Auf dunklem Grund hellt der Hover auf, statt abzudunkeln */
.btn--on-dark { background: var(--brand-light); color: var(--on-dark); font-size: 1.02rem; padding: 18px 34px; border-radius: 9px; }
.btn--on-dark:hover { background: #3E68B8; color: var(--on-dark); }

.btn--sm { font-size: 0.88rem; padding: 11px 22px; border-radius: 7px; }
.btn--lg { font-size: 1rem; padding: 17px 32px; }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand);
  border-bottom: 1.5px solid var(--brand);
  padding-bottom: 3px;
}
.link-underline:hover { color: var(--brand-dark); border-color: var(--brand-dark); }

.link-inline { font-weight: 600; border-bottom: 1px solid rgba(30, 58, 110, 0.4); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(242, 245, 250, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Das Logo trägt weiße Schrift und braucht deshalb einen dunklen Untergrund */
.brand {
  display: flex;
  align-items: center;
  background: var(--ink);
  padding: 9px 16px;
  border-radius: 10px;
}
.brand img { height: 26px; width: auto; }

.nav { display: flex; align-items: center; gap: 38px; }

.nav-link {
  position: relative;
  padding: 4px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
}
.nav-link:hover { color: var(--ink); }
.nav-link.is-active { font-weight: 600; color: var(--ink); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand);
}

.nav-actions { display: flex; align-items: center; gap: 20px; }

.login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.login-link:hover { color: var(--brand); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--canvas);
  padding: 14px 28px 22px;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 500; color: var(--muted); padding: 12px 4px; }
.mobile-nav a.is-active { font-weight: 600; color: var(--ink); }
.mobile-nav .btn { margin-top: 10px; padding: 14px; font-size: 0.95rem; border-radius: 7px; }
.mobile-nav .btn--outline { margin-top: 8px; padding: 13px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { padding-block: clamp(64px, 11vw, 132px) clamp(48px, 7vw, 84px); }
.hero-inner { max-width: 920px; }
.hero .eyebrow-row { margin-bottom: 30px; }
.hero-lead { max-width: 560px; margin-top: 30px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--muted); line-height: 1.7; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--muted);
}
.hero-note svg { flex-shrink: 0; }

/* Page-Hero (Unterseiten) */
.page-hero { padding-block: clamp(56px, 8vw, 104px) clamp(40px, 5vw, 64px); }
.page-hero-inner { max-width: 800px; }
.page-hero--slim .page-hero-inner { max-width: 760px; }
.page-hero--legal { padding-block-end: clamp(32px, 4vw, 48px); }
.page-hero--legal .page-title { font-size: clamp(2.6rem, 6vw, 4.6rem); }

/* ==========================================================================
   Stats-Strip
   ========================================================================== */

.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.stat { padding: 34px 24px; border-right: 1px solid var(--line); }
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; border-right: none; }
.stat-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}
.stat-value svg { color: var(--brand); }
.stat p { margin-top: 8px; font-size: 0.86rem; color: var(--muted); }

/* ==========================================================================
   Karten
   ========================================================================== */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 38px 34px;
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--brand-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 26px;
}
.icon-box--sm { width: 48px; height: 48px; margin-bottom: 22px; }

.card h3 { font-size: 1.24rem; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
.card p  { font-size: 0.98rem; color: var(--muted); line-height: 1.7; }

/* Leistungen: nahtloses Raster, Trennung nur über 1px-Fugen */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.feature { background: var(--surface); padding: 40px 34px; }
.feature h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.feature p  { font-size: 0.96rem; color: var(--muted); line-height: 1.7; }
.feature .icon-box { margin-bottom: 22px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.grid--wide { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--half { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ==========================================================================
   Ablauf-Schritte
   ========================================================================== */

.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  margin-bottom: 20px;
}
.step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.step-head .step-num { margin-bottom: 0; }

.pill {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-tint);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ==========================================================================
   Dunkle Banner
   ========================================================================== */

.panel-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: 20px;
  padding: clamp(44px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 44px;
  align-items: center;
}
.panel-dark > * { position: relative; z-index: 1; }

.glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 85, 160, 0.65) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.glow--bl { top: auto; right: auto; bottom: -90px; left: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(47, 85, 160, 0.6) 0%, transparent 70%); }

.panel-dark h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-top: 18px;
  color: var(--on-dark);
}
.panel-dark p { margin-top: 20px; max-width: 440px; font-size: 1.02rem; line-height: 1.7; color: var(--on-dark-body); }

.link-soft {
  display: inline-block;
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-soft);
  border-bottom: 1.5px solid rgba(168, 192, 232, 0.5);
  padding-bottom: 3px;
}
.link-soft:hover { color: var(--accent-softer); border-color: var(--accent-softer); }

/* ==========================================================================
   Bottom-CTA
   ========================================================================== */

.cta { padding-block: clamp(80px, 11vw, 140px); text-align: center; }
.cta .cta-title { max-width: 820px; margin-left: auto; margin-right: auto; }
.cta p { max-width: 480px; margin: 22px auto 0; font-size: 1.08rem; color: var(--muted); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }

.cta--strip { padding-block: clamp(64px, 9vw, 104px); }
.cta--strip .section-title { max-width: 600px; margin: 0 auto; }
.cta--strip p { max-width: 440px; margin: 18px auto 0; font-size: 1.05rem; }
.cta--strip .cta-actions { margin-top: 34px; }

/* ==========================================================================
   Team
   ========================================================================== */

.lead-card { padding: clamp(40px, 5vw, 64px); gap: 44px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.lead-card-id { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.lead-card h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--on-dark); line-height: 1; margin-top: 0; }
.lead-card p { margin-top: 0; font-size: 1rem; line-height: 1.75; color: rgba(242, 245, 250, 0.72); max-width: none; }

.monogram {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand-light), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3rem;
  color: var(--on-dark);
}
.monogram--sm {
  width: 64px;
  height: 64px;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 1.8rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(168, 192, 232, 0.45);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.person-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.person-head h3 { font-size: 1.4rem; font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 0; }
.person-head span { font-size: 0.82rem; color: var(--faint); }
.person p { font-size: 0.96rem; }

/* Sprach-Chips */
.lang-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.lang-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--brand-tint);
  border-radius: 999px;
  padding: 8px 16px;
}

/* ==========================================================================
   Preise
   ========================================================================== */

.price-hero { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.price-hero .amount { display: flex; align-items: baseline; gap: 6px; }
.price-hero .amount span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 6vw, 4.4rem);
  color: var(--on-dark);
  line-height: 1;
}
.price-hero .amount span:last-child { font-family: var(--font-display); font-weight: 600; font-size: 2rem; color: var(--accent-soft); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  font-size: 0.8rem;
  color: rgba(242, 245, 250, 0.82);
  border: 1px solid rgba(242, 245, 250, 0.22);
  padding: 7px 14px;
  border-radius: 999px;
}

.price-group { margin-bottom: 44px; }

.group-label { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.group-label h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.rhombus { width: 9px; height: 9px; background: var(--brand); border-radius: 2px; transform: rotate(45deg); display: block; flex-shrink: 0; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 1px solid var(--line); }
.price-row-name { min-width: 180px; }
.price-row-name strong { display: block; font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.price-row-name span  { display: block; font-size: 0.85rem; color: var(--faint); margin-top: 2px; }
.price-row-end { display: flex; align-items: center; gap: 26px; }
.price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
}
.btn-book {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--brand);
  border: 1.5px solid var(--line-strong);
  padding: 9px 18px;
  border-radius: 7px;
  white-space: nowrap;
}
.btn-book:hover { border-color: var(--brand); background: var(--brand-tint); color: var(--brand); }

.footnote { margin-top: 36px; font-size: 0.85rem; color: var(--faint); max-width: 560px; }

/* Unterlagen für den Fahrerlaubnis-Antrag */
.docs { margin-top: 56px; }
.docs-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 22px; }
.docs-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.96rem;
  font-weight: 500;
}
.docs-list svg { color: var(--brand); flex-shrink: 0; }

/* ==========================================================================
   Kontakt
   ========================================================================== */

.contact-card h2 { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
.contact-card p  { font-size: 0.98rem; color: var(--muted); line-height: 1.7; }
.contact-card .phone { font-size: 0.9rem; color: var(--muted); margin-top: 12px; }
.contact-card .phone a { font-weight: 600; }
.contact-card .hint  { font-size: 0.85rem; color: var(--faint); margin-top: 10px; }

.hours { display: flex; flex-direction: column; gap: 9px; font-size: 0.92rem; }
.hours div { display: flex; justify-content: space-between; gap: 12px; }
.hours div span:first-child { color: var(--muted); }
.hours div span:last-child  { color: var(--ink); font-weight: 500; text-align: right; }
.hours .closed { border-top: 1px solid var(--line); padding-top: 9px; margin-top: 2px; }
.hours .closed span:last-child { color: var(--faint); font-weight: 400; }

.theory-list { display: flex; flex-direction: column; gap: 14px; }
.theory-list div { display: flex; flex-direction: column; gap: 2px; }
.theory-day { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand); font-weight: 600; }
.theory-when { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.theory-where { font-size: 0.85rem; color: var(--faint); }

.field { margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field-label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 4px; }
.field a { display: block; font-size: 1.05rem; font-weight: 600; color: var(--brand); }
.field a + a { margin-top: 4px; }
.field--mail a { font-size: 0.98rem; word-break: break-all; }

.social-list { display: flex; flex-direction: column; gap: 12px; }
.social-list a { display: flex; align-items: center; gap: 12px; font-size: 0.96rem; font-weight: 500; color: var(--ink); }
.social-list a:hover { color: var(--brand); }

.maps { margin-top: 56px; }
.maps h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); margin-bottom: 24px; }
.map-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.map-frame { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-frame iframe { width: 100%; height: clamp(340px, 40vw, 460px); border: 0; }

/* ==========================================================================
   Impressum
   ========================================================================== */

.legal { max-width: 820px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) 28px; }
.legal-block { margin-bottom: 44px; }
.legal-block:last-child { margin-bottom: 0; }
.legal h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--ink); margin-bottom: 16px; }
.legal p  { font-size: 1rem; color: var(--muted); line-height: 1.9; }
.legal p + p { margin-top: 18px; line-height: 1.8; }
.legal strong { font-weight: 600; }
.legal-divider { height: 1px; background: var(--line); margin: 44px 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--ink); color: rgba(242, 245, 250, 0.72); }

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 44px;
}

.footer-brand { max-width: 280px; }
.wordmark { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.wordmark .rhombus { width: 11px; height: 11px; background: var(--accent-soft); }
.wordmark-text { display: flex; flex-direction: column; line-height: 1; }
.wordmark-text strong { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark); }
.wordmark-text span   { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent-soft); margin-top: 3px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: var(--on-dark-soft); }
.footer-sister { margin-top: 14px; font-size: 0.88rem; }
.footer-sister a { color: var(--accent-soft); font-weight: 600; border-bottom: 1px solid rgba(168, 192, 232, 0.4); }
.footer-sister a:hover { color: var(--accent-softer); border-color: var(--accent-softer); }

.footer-col h2 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 245, 250, 0.5);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 0.94rem; }
.footer-links a, .footer-links span { color: var(--on-dark-strong); font-size: 0.94rem; }
.footer-links a:hover { color: var(--on-dark); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--on-dark-line);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-dark-strong);
}
.footer-social a:hover { border-color: var(--accent-soft); color: var(--accent-soft); }

.footer-bottom { border-top: 1px solid rgba(242, 245, 250, 0.12); }
.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(242, 245, 250, 0.5);
}
.footer-bottom-inner a { color: rgba(242, 245, 250, 0.7); }
.footer-bottom-inner a:hover { color: var(--on-dark); }

/* ==========================================================================
   Responsive — Umschaltpunkt 860px
   ========================================================================== */

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }

  .stat { padding-left: 0; padding-right: 0; border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }

  .panel-dark { gap: 32px; }
  .price-row-end { width: 100%; justify-content: space-between; gap: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fadeup { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
