/* ════════════════════════════════════════════════════════════
   Fahrschule Oguzhan – style.css v3
   Dark theme, Orange accent — inspiriert von Bojan & Gusti
   ════════════════════════════════════════════════════════════ */

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

:root {
  /* Farben */
  --bg:          #0D0D0D;
  --bg-2:        #141414;
  --bg-3:        #1C1C1C;
  --bg-4:        #242424;
  --orange:      #F59E0B;
  --orange-dark: #D97706;
  --orange-glow: rgba(245,158,11,.15);
  --white:       #FFFFFF;
  --text:        rgba(255,255,255,.88);
  --muted:       rgba(255,255,255,.5);
  --border:      rgba(255,255,255,.08);
  --border-2:    rgba(255,255,255,.14);
  --wa-green:    #25D366;
  --wa-dark:     #1da851;

  /* Spacing & Radius */
  --nav-h:    68px;
  --radius:   10px;
  --radius-lg:18px;
  --shadow:   0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:0 24px 64px rgba(0,0,0,.6);
  --transition:.22s ease;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; scroll-margin-top: var(--nav-h); }

/* Labels */
.label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 6px 0 14px;
  line-height: 1.15;
}

.section-header p { color: var(--muted); font-size: 1rem; }

h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.15; }
h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  min-height: 50px;
  white-space: nowrap;
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
  border-color: var(--wa-green);
}
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-2px); }

.btn-orange {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.45); }

.btn-big { padding: 16px 32px; font-size: 1rem; min-height: 56px; width: 100%; }
.btn-full { width: 100%; }
.mt-1 { margin-top: 24px; }

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-float span { display: block; }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}

#navbar.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1160px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--orange);
  color: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

.logo-mark.sm { width: 34px; height: 34px; font-size: 1.1rem; border-radius: 8px; }

.logo-title {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.logo-sub {
  display: block;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--bg-3); }
.nav-links a.active { color: var(--orange); }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  transition: var(--transition);
  flex-shrink: 0;
  min-height: 40px;
}
.nav-wa:hover { background: var(--wa-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 7px;
  cursor: pointer;
  padding: 9px 10px;
  width: 44px;
  height: 44px;
  margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  z-index: 198;
}
.nav-overlay.active { display: block; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(13,13,13,.92) 0%, rgba(13,13,13,.65) 55%, rgba(13,13,13,.3) 100%),
    linear-gradient(to top, rgba(13,13,13,.7) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  padding: calc(var(--nav-h) + 40px) 24px 64px;
  margin-left: max(24px, calc(50vw - 560px));
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-accent {
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  width: fit-content;
}

.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.hstat strong { font-size: 1.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hstat span { font-size: .7rem; color: var(--muted); margin-top: 3px; text-align: center; }
.hstat-div { width: 1px; height: 36px; background: var(--border-2); }

/* ════════════════════════════════════════════════════════════
   ÜBER OGUZHAN
   ════════════════════════════════════════════════════════════ */
.about-section { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-col { display: flex; flex-direction: column; gap: 24px; }

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.about-quote {
  background: var(--bg-3);
  border-left: 3px solid var(--orange);
  padding: 18px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  font-size: .95rem;
  color: var(--white);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 6px;
}

.about-quote span {
  font-size: .78rem;
  color: var(--orange);
  font-weight: 600;
}

.about-text h2 { margin: 6px 0 16px; }

.about-text p {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   ANGEBOT
   ════════════════════════════════════════════════════════════ */
.angebot-section { background: var(--bg); }

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.angebot-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.angebot-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.angebot-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
}

.angebot-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--bg-3);
}

.angebot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.angebot-card:hover .angebot-img img { transform: scale(1.04); }

.ac-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #000;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.angebot-body { padding: 20px; }

.angebot-body h3 { font-size: 1rem; margin-bottom: 8px; }

.angebot-body p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ac-list { margin-bottom: 18px; }

.ac-list li {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
  padding: 4px 0 4px 16px;
  position: relative;
}

.ac-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.ac-link {
  font-size: .83rem;
  font-weight: 700;
  color: var(--orange);
  transition: opacity var(--transition);
}

.ac-link:hover { opacity: .75; }

/* ════════════════════════════════════════════════════════════
   PREISE
   ════════════════════════════════════════════════════════════ */
.preise-section { background: var(--bg-2); }

.preise-wrap {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.preise-divider { background: var(--border); }

.preise-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.price-list { display: flex; flex-direction: column; }

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.price-item:last-child { border-bottom: none; }

.price-item span {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.3;
}

.price-item strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.price-item.highlight {
  background: var(--orange-glow);
  border-color: transparent;
  border-radius: 8px;
  padding: 13px 14px;
  margin: 4px -14px;
}

.price-item.highlight span { color: var(--white); font-weight: 600; }
.price-item.highlight strong { color: var(--orange); }

.preise-note-box {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.preise-note-box strong { color: var(--white); }

.preise-wa-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 700;
  font-size: .875rem;
}
.preise-wa-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   ABLAUF
   ════════════════════════════════════════════════════════════ */
.ablauf-section { background: var(--bg); }

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ablauf-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition);
}

.ablauf-step:hover { border-color: var(--border-2); transform: translateX(4px); }

.ablauf-step.highlight-step {
  border-color: var(--orange);
  background: var(--orange-glow);
}

.as-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  opacity: .25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.highlight-step .as-num { opacity: .6; }

.as-body h3 { font-size: 1rem; margin-bottom: 6px; }
.as-body p { color: var(--muted); font-size: .875rem; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   STIMMEN / TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.stimmen-section { background: var(--bg-2); }

.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stimme {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition);
}

.stimme:hover { border-color: var(--border-2); }

.stimme-stars { color: var(--orange); font-size: .95rem; letter-spacing: 2px; margin-bottom: 14px; }

.stimme p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.stimme-autor { display: flex; align-items: center; gap: 12px; }

.sa-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .95rem;
  flex-shrink: 0;
}

.stimme-autor strong { display: block; font-size: .88rem; color: var(--white); }
.stimme-autor span   { font-size: .75rem; color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════════════════════════ */
.kontakt-section { background: var(--bg); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.kontakt-left h2 { margin: 6px 0 14px; }
.kontakt-left > p { color: var(--muted); font-size: .95rem; margin-bottom: 28px; }

.kontakt-oder {
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 20px 0;
  position: relative;
}

.kontakt-oder::before,
.kontakt-oder::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: var(--border);
}

.kontakt-oder::before { left: 0; }
.kontakt-oder::after  { right: 0; }

.kontakt-details { display: flex; flex-direction: column; gap: 16px; }

.kd-item { display: flex; gap: 12px; align-items: flex-start; }
.kd-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

.kd-item strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 1px;
}

.kd-item a, .kd-item span {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}

.kd-item a:hover { color: var(--orange); }

/* Form */
.kontakt-form {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.kontakt-form h3 { font-size: 1.05rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  min-height: 44px;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }

.form-group select option { background: var(--bg-3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success { text-align: center; padding: 48px 24px; }
.fs-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { color: var(--white); margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 36px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand span { font-size: .78rem; color: var(--muted); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-nav a {
  padding: 6px 12px;
  font-size: .82rem;
  color: var(--muted);
  border-radius: 6px;
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--orange); }

.footer-bottom-text p {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}

.footer-bottom-text a { color: rgba(255,255,255,.35); }
.footer-bottom-text a:hover { color: var(--orange); }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL (Desktop only)
   ════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════
   TABLET (≤ 1080px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .angebot-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE (≤ 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-wa    { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(290px, 88vw);
    height: 100dvh;
    background: var(--bg-2);
    z-index: 199;
    padding: 72px 20px 40px;
    gap: 2px;
    box-shadow: -8px 0 40px rgba(0,0,0,.6);
    animation: slideIn .22s ease;
    overflow-y: auto;
    border-left: 1px solid var(--border-2);
  }

  @keyframes slideIn {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
  }

  .nav-links.open a {
    color: var(--muted);
    font-size: 1rem;
    padding: 13px 14px;
    border-radius: 8px;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open a:last-child { border-bottom: none; }
  .nav-links.open a:active { background: var(--bg-3); color: var(--orange); }

  /* WhatsApp Float anpassen */
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }

  /* Hero */
  .hero-content {
    margin: 0;
    padding: calc(var(--nav-h) + 24px) 16px 48px;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-sub { max-width: 100%; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-actions .btn { width: 100%; max-width: 340px; }

  .hero-stats {
    width: 100%;
    justify-content: center;
    padding: 16px 8px;
    gap: 0;
  }
  .hstat { padding: 0 12px; }
  .hstat strong { font-size: 1rem; }
  .hstat span { font-size: .62rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-img-wrap img { height: 340px; }

  /* Angebot */
  .angebot-grid { grid-template-columns: 1fr; gap: 14px; }
  .angebot-img { height: 200px; }
  .angebot-body { padding: 18px; }

  /* Preise */
  .preise-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .preise-divider { height: 1px; width: 100%; }
  .preise-note-box { padding: 22px 18px; font-size: .875rem; }

  /* Ablauf */
  .ablauf-grid { grid-template-columns: 1fr; gap: 12px; }
  .ablauf-step { padding: 18px; gap: 14px; }
  .as-num { font-size: 1.7rem; min-width: 36px; }

  /* Stimmen */
  .stimmen-grid { grid-template-columns: 1fr; gap: 12px; }
  .stimme { padding: 22px 18px; }

  /* Kontakt */
  .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .kontakt-form { padding: 22px 16px; border-radius: var(--radius); }
  .form-row { grid-template-columns: 1fr; }
  .btn-big { padding: 14px 20px; }

  /* Footer */
  .footer-nav { gap: 2px; }
}

/* ════════════════════════════════════════════════════════════
   SMALL MOBILE (≤ 400px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .hstat-div { display: none; }
  .hstat { flex: 1 1 45%; padding: 8px 4px; }
}
