/* ============================================================
   KFZ KLASEN — Design System
   Schwarz/Grün im Flyer-Look · handgeschrieben, kein Framework
   ============================================================ */

/* ---------- Font (selbst gehostet, OFL) ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/Archivo-Variable.woff2') format('woff2-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #08080a;
  --bg-2: #0e0e11;
  --bg-3: #141418;
  --line: rgba(255, 255, 255, .08);
  --line-soft: rgba(255, 255, 255, .05);
  --green: #00a048;
  --green-hi: #00c156;
  --green-lo: #008538;
  --grad: linear-gradient(100deg, var(--green-hi), var(--green-lo));
  --text: #f2f2f0;
  --text-dim: #9b9b97;
  --font: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.32, .72, 0, 1);
  --r-lg: 1.75rem;
  --r-md: 1.25rem;
  --container: 72rem;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; color-scheme: dark; }

a, button { touch-action: manipulation; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  z-index: 100;
  background: var(--green);
  color: #08080a;
  font-weight: 700;
  padding: .6rem 1.2rem;
  border-radius: 999px;
}
.skip-link:focus { left: 0.75rem; }

::selection { background: var(--green); color: #08080a; }

/* ---------- Grain Overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Typografie ---------- */
h1, h2 {
  font-weight: 880;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.6rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.green {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .42rem .95rem;
  margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, .02);
}

.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

/* ---------- Buttons (Island / Button-in-Button) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  border-radius: 999px;
  padding: .55rem .55rem .55rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: transform .5s var(--ease), background-color .5s var(--ease),
              border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.btn:active { transform: scale(.97); }

.btn-orb {
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform .5s var(--ease);
}
.btn-orb svg { width: 15px; height: 15px; }
.btn:hover .btn-orb { transform: translate(2px, -1px) scale(1.08); }

.btn-solid {
  background: var(--grad);
  color: #08080a;
  box-shadow: 0 0 0 1px rgba(0, 193, 86, .25), 0 12px 40px -12px rgba(0, 160, 72, .55);
}
.btn-solid:hover { box-shadow: 0 0 0 1px rgba(0, 193, 86, .4), 0 16px 50px -10px rgba(0, 160, 72, .7); }
.btn-solid .btn-orb { background: rgba(8, 8, 10, .18); color: #08080a; }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, .03);
}
.btn-ghost:hover { border-color: rgba(0, 193, 86, .5); background: rgba(0, 160, 72, .06); }
.btn-ghost .btn-orb { background: rgba(255, 255, 255, .07); color: var(--text); }

.btn-block { width: 100%; justify-content: space-between; margin-top: 1.2rem; }

/* WhatsApp-Button: Site-Ghost-Stil, nur der Icon-Orb in WhatsApp-Grün (#25d366) */
.btn-wa:hover { border-color: rgba(37, 211, 102, .55); background: rgba(37, 211, 102, .08); }
.btn-wa .btn-orb { background: #25d366; color: #08080a; }
.nav-wa { display: none; }

/* ---------- Floating Pill Nav ---------- */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 1.1rem 1rem 0;
  transition: padding .6s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 64rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 12, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: .55rem .65rem .55rem 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 50px -20px rgba(0, 0, 0, .8);
  transition: max-width .6s var(--ease), background-color .6s var(--ease);
}

.nav-wrap.scrolled { padding-top: .55rem; }
.nav-wrap.scrolled .nav { max-width: 56rem; background: rgba(10, 10, 12, .78); }

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-right: auto;
}
.brand picture { display: inline-flex; flex: none; }
.brand-mark { width: auto; height: 28px; max-width: none; flex: none; }
.brand-name {
  font-weight: 880;
  font-size: 1.02rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand-name em { color: var(--green); }
.brand-tag {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .55rem;
  white-space: nowrap;
}

.menu { display: flex; align-items: center; gap: 1.6rem; }

.menu-list { display: flex; gap: 1.6rem; }
.menu-list a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color .4s var(--ease);
}
.menu-list a:hover { color: var(--text); }

.nav-cta { padding: .4rem .4rem .4rem 1.1rem; font-size: .8rem; }
.nav-cta .btn-orb { width: 1.8rem; height: 1.8rem; }

/* Burger */
.burger {
  display: none;
  position: relative;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  flex: none;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .5s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 3.5px)); }
.burger span:nth-child(2) { transform: translate(-50%, calc(-50% + 3.5px)); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 1.5rem 5rem;
}

.hero-bg { position: absolute; inset: 0; }

/* Glow ohne teuren blur()-Filter: der weiche Radial-Verlauf ist bereits diffus.
   Spart auf schwacher GPU die teuerste Paint-Operation der Seite. */
.orb {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.orb-1 {
  width: 46vw; height: 46vw;
  min-width: 380px; min-height: 380px;
  right: -12vw; top: -14vw;
  background: radial-gradient(circle, rgba(0, 160, 72, .26), rgba(0, 160, 72, .08) 45%, transparent 72%);
}
.orb-2 {
  width: 34vw; height: 34vw;
  min-width: 300px; min-height: 300px;
  left: -10vw; bottom: -8vw;
  background: radial-gradient(circle, rgba(0, 133, 56, .18), rgba(0, 133, 56, .05) 45%, transparent 72%);
}

.mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 75%);
}

/* Diagonale Flyer-Slashes */
.slash {
  position: absolute;
  height: 10px;
  width: 130%;
  left: -15%;
  background: var(--grad);
  transform: rotate(-8deg);
  will-change: transform;
}
.slash-1 { top: 17%; opacity: .85; box-shadow: 0 0 50px rgba(0, 160, 72, .4); }
.slash-2 { top: calc(17% + 26px); height: 4px; opacity: .35; }
.slash-3 { top: calc(17% + 44px); height: 2px; opacity: .15; }

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

h1 .line { display: block; }
.line-green {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(0, 160, 72, .35));
}

.hero-sub {
  margin-top: 1.6rem;
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.4rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2.8rem;
  margin-top: clamp(3rem, 7vh, 5.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}
.hero-facts dt {
  font-size: .64rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-dim);
  margin-bottom: .25rem;
}
.hero-facts dd { font-weight: 700; font-size: 1.02rem; }

/* Scroll-Hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  display: flex;
  justify-content: center;
}
.scroll-hint span {
  width: 3px; height: 8px;
  margin-top: 7px;
  border-radius: 2px;
  background: var(--green);
  animation: hint 2.2s var(--ease) infinite;
}
@keyframes hint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  55% { transform: translateY(14px); opacity: 0; }
  56% { transform: translateY(0); opacity: 0; }
}

/* Hero Entrance (staggered) */
.stagger {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  animation: rise .9s var(--ease) forwards;
  animation-delay: calc(.12s + var(--i) * .11s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---------- Sektionen ---------- */
.section {
  position: relative;
  padding: clamp(6rem, 12vw, 9.5rem) 1.5rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

/* Diagonale Sektions-Kante */
.section-split {
  background: var(--bg-2);
  clip-path: polygon(0 2.8vw, 100% 0, 100% calc(100% - 2.8vw), 0 100%);
  padding-top: clamp(8rem, 14vw, 11rem);
  padding-bottom: clamp(8rem, 14vw, 11rem);
}

/* ---------- Bento (Leistungen) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.1rem;
}

.card { grid-column: span 4; }
.card-wide { grid-column: span 8; }

/* Double-Bezel: äußere Schale + innerer Kern */
.card {
  background: rgba(255, 255, 255, .025);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: .45rem;
  transition: transform .6s var(--ease), border-color .6s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: rgba(0, 193, 86, .35); }

.card-core {
  height: 100%;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--r-lg) - .45rem);
  padding: 1.8rem 1.7rem;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .05);
}

.card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: .55rem;
  letter-spacing: .005em;
}
.card p { color: var(--text-dim); font-size: .96rem; }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: .95rem;
  background: rgba(0, 160, 72, .09);
  border: 1px solid rgba(0, 160, 72, .22);
  color: var(--green);
  margin-bottom: 1.2rem;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card-icon svg { width: 26px; height: 26px; }
.card:hover .card-icon {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 0 24px rgba(0, 160, 72, .25);
}

.card-accent .card-core {
  background: linear-gradient(150deg, rgba(0, 160, 72, .14), var(--bg-2) 55%);
  border-color: rgba(0, 160, 72, .25);
}

/* ---------- Werkstatt Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.split-text p { color: var(--text-dim); margin-bottom: 1.1rem; max-width: 36rem; }
.split-text p strong { color: var(--text); font-weight: 700; }
.split-text h2 { margin-bottom: 1.6rem; }

.checklist { margin-top: 1.8rem; display: grid; gap: .8rem; }
.checklist li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-weight: 600;
  font-size: 1rem;
}
.checklist em { color: var(--green); font-weight: 800; }

.check {
  flex: none;
  width: 1.45rem; height: 1.45rem;
  border-radius: 50%;
  background: rgba(0, 160, 72, .12);
  border: 1px solid rgba(0, 160, 72, .4);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 50%; top: 48%;
  width: 7px; height: 4px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translate(-50%, -60%) rotate(-45deg);
}

/* Badge-Karte (Logo-Platzhalter im Flyer-Stil) */
.split-visual { position: relative; }

.badge-card {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(0, 160, 72, .12), transparent 55%),
    linear-gradient(165deg, var(--bg-3), #0a0a0c);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .06), 0 40px 80px -40px rgba(0, 0, 0, .9);
  transform: rotate(2deg);
  transition: transform .7s var(--ease);
}
.badge-card:hover { transform: rotate(0deg) scale(1.015); }

.badge-logo {
  width: min(100%, 24rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 36px rgba(0, 160, 72, .3));
}

.badge-title {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
}
.badge-title em { color: var(--green); }

.badge-sub {
  display: inline-block;
  margin-top: .7rem;
  background: var(--text);
  color: #08080a;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .34em;
  padding: .3rem .9rem .3rem 1.2rem;
}

.badge-tag {
  margin-top: .9rem;
  color: var(--green);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.stat-strip {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  margin-top: 1.3rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .02);
  padding: 1.1rem 1.4rem;
}
.stat-strip div { display: grid; gap: .1rem; text-align: center; }
.stat-strip strong { font-size: 1.05rem; font-weight: 800; color: var(--green); white-space: nowrap; }
.stat-strip span { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Zeiten & Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.hours { width: 100%; border-collapse: collapse; margin-top: .6rem; }
.hours th, .hours td {
  text-align: left;
  font-size: .95rem;
  padding: .52rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
}
.hours th { color: var(--text-dim); font-weight: 500; }
.hours td { text-align: right; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

.hours tr.today th, .hours tr.today td {
  color: var(--green);
  font-weight: 800;
}
.hours tr.today th::after {
  content: "· heute";
  margin-left: .45rem;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-list { font-style: normal; display: grid; gap: 1.1rem; margin-top: .6rem; }
.contact-list p { color: var(--text); font-size: .98rem; line-height: 1.5; }
.contact-list a { font-weight: 700; transition: color .4s var(--ease); }
.contact-list a:hover { color: var(--green); }

.contact-label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-dim);
  margin-bottom: .2rem;
}

.card-cta .card-core {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(130% 100% at 50% 0%, rgba(0, 160, 72, .16), transparent 60%),
    linear-gradient(160deg, var(--bg-3), var(--bg-2));
}
.cta-kicker {
  font-size: .66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--green);
}
.cta-line {
  font-size: 1.6rem;
  font-weight: 880;
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: .4rem;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: 2.2rem 1.5rem calc(2.2rem + env(safe-area-inset-bottom));
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dim);
  font-size: .85rem;
}
.footer-inner nav { display: flex; gap: 1.4rem; }
.footer-inner a { font-weight: 600; transition: color .4s var(--ease); }
.footer-inner a:hover { color: var(--green); }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stagger { animation: none; opacity: 1; transform: none; filter: none; }
  .reveal { transition: none; opacity: 1; transform: none; filter: none; }
  .scroll-hint span { animation: none; }
  .orb, .slash { will-change: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .card, .card-wide { grid-column: span 6; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .card-cta { grid-column: span 2; }
}

@media (max-width: 768px) {
  body { font-size: 1rem; }

  .brand-tag { display: none; }
  .burger { display: block; }

  /* backdrop-filter macht .nav zum Bezugsrahmen für position:fixed-Kinder und
     würde das Vollbild-Menü in der Pille einsperren -> auf Mobile solider BG */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(10, 10, 12, .94);
  }

  /* Fullscreen-Menü */
  .menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    overscroll-behavior: contain;
    background: rgba(8, 8, 10, .92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s var(--ease);
  }
  .menu.open { opacity: 1; pointer-events: auto; }

  .menu-list { flex-direction: column; align-items: center; gap: 1.6rem; }
  .menu-list a {
    font-size: 1.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text);
    display: inline-block;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  .menu.open .menu-list a { opacity: 1; transform: translateY(0); }
  .menu.open .menu-list li:nth-child(1) a { transition-delay: .08s; }
  .menu.open .menu-list li:nth-child(2) a { transition-delay: .14s; }
  .menu.open .menu-list li:nth-child(3) a { transition-delay: .20s; }
  .menu.open .menu-list li:nth-child(4) a { transition-delay: .26s; }

  .nav-cta {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease) .32s, transform .6s var(--ease) .32s;
  }
  .menu.open .nav-cta { opacity: 1; transform: translateY(0); }

  /* WhatsApp im Mobil-Menü sichtbar (Desktop: ausgeblendet) */
  .nav-wa {
    display: inline-flex;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s var(--ease) .38s, transform .6s var(--ease) .38s;
  }
  .menu.open .nav-wa { opacity: 1; transform: translateY(0); }

  .hero { padding: 7rem 1.25rem 4.5rem; }
  .hero-facts { gap: 1.4rem 2rem; }
  .section { padding-left: 1.25rem; padding-right: 1.25rem; }

  .bento { grid-template-columns: 1fr; gap: .9rem; }
  .card, .card-wide { grid-column: span 1; }

  .split { grid-template-columns: 1fr; }
  .badge-card { transform: none; }

  .contact-grid { grid-template-columns: 1fr; }
  .card-cta { grid-column: span 1; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2rem, 10.4vw, 2.6rem); }
  .hero-cta .btn { width: 100%; justify-content: space-between; }
  .br-d { display: none; }
  .stat-strip { flex-direction: column; gap: 1rem; }
}

/* Rechtsseiten */
.legal-section { padding-top: clamp(7rem, 14vw, 10rem); }

.legal-container {
  max-width: 46rem;
}

.legal-body {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  margin-top: 2.4rem;
  margin-bottom: .7rem;
}

.legal-body h3:first-child {
  margin-top: 0;
}

.legal-body p {
  color: var(--text-dim);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: .85rem;
}

.legal-body p strong {
  color: var(--text);
  font-weight: 700;
}

.legal-body a {
  color: var(--green);
  font-weight: 600;
  transition: color .4s var(--ease);
}

.legal-body a:hover {
  color: var(--green-hi);
}

.legal-list {
  list-style: none;
  margin: .6rem 0 .85rem 0;
  display: grid;
  gap: .45rem;
}

.legal-list li {
  color: var(--text-dim);
  font-size: .97rem;
  padding-left: 1.3rem;
  position: relative;
}

.legal-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.legal-list strong {
  color: var(--text);
  font-weight: 700;
}
