/* ============================================================
   ELEKTRO RÄDER — Mobile overrides
   Loaded AFTER every page's inline <style> so these rules win the
   cascade at the same specificity. Includes hamburger menu chrome.
   Breakpoints:
     ≤ 980px  hamburger appears, desktop nav hides
     ≤ 720px  single-column layouts, tighter padding
     ≤ 480px  compact phone layout
   ============================================================ */

/* ---------- HAMBURGER + DRAWER (injected by mobile-menu.js) -------- */
.mm-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  cursor: pointer;
  align-items: center; justify-content: center;
  border-radius: 999px;
  transition: background .18s ease;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  flex-shrink: 0;
}
.mm-toggle:hover { background: rgba(0,0,0,.06); }
.mm-toggle__icon {
  position: relative; width: 22px; height: 18px;
  display: inline-block;
}
.mm-toggle__icon span {
  position: absolute; left: 0; right: 0;
  height: 2px; background: #000;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(0.65, 0, 0.35, 1), opacity .25s ease, top .35s cubic-bezier(0.65, 0, 0.35, 1);
}
.mm-toggle__icon span:nth-child(1) { top: 0; }
.mm-toggle__icon span:nth-child(2) { top: 8px; }
.mm-toggle__icon span:nth-child(3) { top: 16px; }

/* Dark variant of hamburger when topbar is dark */
.topbar.is-dark .mm-toggle:hover { background: rgba(255,255,255,.08); }
.topbar.is-dark .mm-toggle__icon span { background: #fff; }

/* When open — turn into an X */
.mm-toggle[aria-expanded="true"] .mm-toggle__icon span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.mm-toggle[aria-expanded="true"] .mm-toggle__icon span:nth-child(2) { opacity: 0; }
.mm-toggle[aria-expanded="true"] .mm-toggle__icon span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* Drawer */
.mm-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: #1a1a1c;
  color: #fff;
  z-index: 80;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(0.65, 0, 0.35, 1);
  box-shadow: -30px 0 80px rgba(0,0,0,.4);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.mm-drawer.is-open { transform: translateX(0); visibility: visible; }
.mm-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  min-height: 76px;
}
.mm-drawer__logo { height: 44px; width: auto; filter: brightness(0) invert(1); display: block; }
.mm-drawer__close {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06); border: 0; border-radius: 999px;
  color: #fff; font-size: 24px; cursor: pointer;
  line-height: 1;
  transition: background .2s ease;
}
.mm-drawer__close:hover { background: rgba(255,255,255,.12); }
.mm-drawer__nav {
  display: flex; flex-direction: column; gap: 2px;
  padding: 24px 16px 16px;
  flex: 1;
}
.mm-drawer__nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  color: rgba(255,255,255,.92);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 14px;
  transition: background .18s ease, color .18s ease;
  text-decoration: none;
  min-height: 56px;
}
.mm-drawer__nav a:hover,
.mm-drawer__nav a:focus {
  background: rgba(255,255,255,.06);
  color: #fff;
}
.mm-drawer__nav a.is-active {
  color: var(--color-yellow);
  background: rgba(255,204,51,.10);
}
.mm-drawer__nav a::after {
  content: "→";
  font-size: 18px; color: rgba(255,255,255,.35);
  transition: transform .2s ease, color .2s ease;
}
.mm-drawer__nav a:hover::after { transform: translateX(4px); color: rgba(255,255,255,.7); }
.mm-drawer__nav a.has-dot-mobile {
  background: rgba(204,0,0,.10);
  color: #fff;
}
.mm-drawer__nav a.has-dot-mobile::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-red-tesla);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 0 0 rgba(204,0,0,.5);
  animation: navpulse 2.4s ease-in-out infinite;
}

.mm-drawer__foot {
  padding: 16px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 12px;
}
.mm-drawer__foot .cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 24px;
  background: var(--color-yellow); color: #000;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
}
.mm-drawer__foot .cta:hover { background: #fff; color: #000; }
.mm-drawer__foot .contact {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 4px;
  font-size: 13.5px;
}
.mm-drawer__foot .contact a {
  color: rgba(255,255,255,.7); text-decoration: none;
  transition: color .18s ease;
}
.mm-drawer__foot .contact a:hover { color: var(--color-yellow); }
.mm-drawer__foot .contact strong { color: #fff; }

.mm-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0);
  z-index: 70;
  pointer-events: none;
  transition: background .35s ease;
}
.mm-backdrop.is-on { background: rgba(0,0,0,.55); pointer-events: auto; }

body.mm-open { overflow: hidden; }

/* ============================================================
   ≤ 980px — phone & tablet
   ============================================================ */
@media (max-width: 980px) {

  /* Show hamburger, hide desktop nav + CTA */
  .mm-toggle { display: inline-flex; }
  .topbar__nav { display: none !important; }
  .topbar__cta { display: none !important; }

  .topbar__inner { padding: 10px 18px !important; gap: 12px !important; }
  .topbar__logo { height: 48px !important; }
}

/* ============================================================
   ≤ 900px — section padding shrinks
   ============================================================ */
@media (max-width: 900px) {
  section { padding: 72px 0 !important; }
  section.tight { padding: 44px 0 !important; }

  .wrap, .wrap-w, .wrap-n { padding: 0 22px !important; }
}

/* ============================================================
   ≤ 720px — single column, finer typography
   ============================================================ */
@media (max-width: 720px) {

  /* ---- HOMEPAGE HERO ---- */
  .hero { min-height: 78vh !important; align-items: center !important; }
  .hero__veil { background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.15) 100%) !important; }
  .hero__inner { padding: 110px 22px 70px !important; gap: 28px !important; }
  .hero h1 { font-size: clamp(36px, 9vw, 52px) !important; line-height: 1.05 !important; margin: 0 0 18px !important; }
  .hero__sub { font-size: 16px !important; max-width: 100% !important; margin-bottom: 28px !important; }
  .hero__tag { font-size: 10px !important; letter-spacing: .22em !important; margin-bottom: 18px !important;
    background: rgba(0,0,0,.55); padding: 8px 14px; border-radius: 999px;
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .hero__tag::before { display: none !important; }
  .hero__ctas .btn { padding: 14px 22px !important; font-size: 13px !important; }
  .hero__ctas { gap: 10px !important; }
  .hero__meta {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 14px !important;
    padding-top: 22px !important;
  }
  .hero__meta .v { font-size: 22px !important; }
  .hero__meta .v small { font-size: 12px !important; }
  .hero__meta .l { font-size: 10px !important; margin-top: 6px !important; letter-spacing: .1em !important; }
  .hero__scroll-hint { display: none !important; }

  /* ---- SUB-HERO (other pages) ---- */
  .subhero { min-height: 44vh !important; align-items: flex-end !important; }
  .subhero__inner { padding: 90px 22px 44px !important; }
  .subhero h1 { font-size: clamp(28px, 8vw, 40px) !important; line-height: 1.05 !important; }
  .subhero__tag { font-size: 10px !important; letter-spacing: .22em !important; margin-bottom: 14px !important; }
  .subhero__tag::before { width: 24px !important; }
  .subhero__sub { font-size: 15px !important; margin-top: 16px !important; }
  .subhero__crumb { top: 18px !important; left: 22px !important; font-size: 10px !important; letter-spacing: .1em !important; }

  /* ---- PROMISE STRIP ---- */
  .promise { padding: 36px 0 !important; }
  .promise__inner { gap: 18px !important; justify-content: flex-start !important; }
  .promise h2 { font-size: 22px !important; }
  .promise__pill { font-size: 12px !important; padding: 10px 16px !important; }
  .promise .btn { padding: 12px 22px !important; font-size: 13px !important; }

  /* ---- WELCOME ---- */
  .welcome__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .welcome__lead h2 { font-size: 28px !important; }
  .welcome__body p { font-size: 16px !important; line-height: 1.65 !important; }
  .welcome__sign img { width: 48px !important; height: 48px !important; }

  /* ---- SERVICES GRID ---- */
  .services__head { flex-direction: column !important; align-items: flex-start !important; margin-bottom: 32px !important; gap: 16px !important; }
  .services__head h2 { font-size: 28px !important; }
  .services__count { padding-bottom: 0 !important; font-size: 11px !important; }
  .services__grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .svc--lg, .svc--md, .svc--tesla { grid-column: span 1 !important; }
  .svc--lg .svc__img-wrap, .svc__img-wrap { aspect-ratio: 16/10 !important; }
  .svc__body { padding: 20px 22px 24px !important; }
  .svc--lg .svc__body { padding: 22px 24px 26px !important; }
  .svc__title { font-size: 20px !important; }
  .svc--lg .svc__title { font-size: 22px !important; }
  .svc__body p { font-size: 14px !important; line-height: 1.55 !important; }

  /* Tesla bridge card */
  .svc--tesla { grid-template-columns: 1fr !important; }
  .svc--tesla__visual {
    border-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
    padding: 28px !important; order: 1;
  }
  .svc--tesla__visual img { max-height: 200px !important; }
  .svc--tesla .svc__body { padding: 30px 26px !important; order: 2; }
  .svc--tesla .svc__title { font-size: 24px !important; }
  .svc--tesla .svc__body p { font-size: 14px !important; }
  .svc--tesla__badge {
    top: 16px !important; right: 16px !important;
    font-size: 10px !important; padding: 6px 10px !important;
  }
  .svc--tesla__badge img { height: 10px !important; }

  /* ---- KFW BAND (homepage; only if shown) ---- */
  .kfw__inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .kfw h2 { font-size: 24px !important; }
  .kfw p { font-size: 15px !important; }
  .kfw__stat-row { flex-wrap: wrap !important; gap: 18px !important; }
  .kfw__stat .v { font-size: 22px !important; }

  /* ---- TESLA INTEGRATED BLOCK (homepage) ---- */
  .tesla-block::before { height: 60px !important; }
  .tesla-intro { padding: 100px 0 60px !important; }
  .tesla-intro__inner { padding: 0 22px !important; }
  .tesla-intro h2 { font-size: clamp(36px, 11vw, 56px) !important; margin: 14px 0 18px !important; }
  .tesla-intro p { font-size: 15px !important; }
  .tesla-intro__logos { gap: 22px !important; margin-top: 36px !important; padding-top: 28px !important; }
  .tesla-intro__logos img { height: 24px !important; }
  .tesla-intro__logos .x { font-size: 11px !important; }
  .tesla-intro .eyebrow::before,
  .tesla-intro .eyebrow::after { width: 22px !important; }

  .tesla-product { padding: 30px 0 80px !important; }
  .tesla-product__inner { grid-template-columns: 1fr !important; gap: 28px !important; padding: 0 22px !important; }
  .tesla-product__copy h3 { font-size: 30px !important; margin: 18px 0 16px !important; }
  .tesla-product__copy p { font-size: 15px !important; margin-bottom: 24px !important; }
  .tesla-stats {
    grid-template-columns: 1fr 1fr !important;
    border-radius: 18px !important;
    padding: 12px 8px !important;
    width: 100%;
  }
  .tesla-stats .stat {
    padding: 10px 14px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .tesla-stats .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .tesla-stats .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .tesla-stats .v { font-size: 16px !important; }
  .tesla-stats .l { font-size: 9px !important; }
  .tesla-product__visual { aspect-ratio: 4/5 !important; }
  .tesla-product__img { max-height: 380px !important; }

  .tesla-keys { padding: 64px 0 80px !important; }
  .tesla-keys__inner { padding: 0 22px !important; }
  .tesla-keys__head { grid-template-columns: 1fr !important; gap: 16px !important; margin-bottom: 32px !important; align-items: flex-start !important; }
  .tesla-keys__head h2 { font-size: 28px !important; }
  .tesla-keys__head p { font-size: 14px !important; }
  .tesla-keys__grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .tkey { min-height: unset !important; padding: 22px 22px 24px !important; }
  .tkey h4 { font-size: 16px !important; }
  .tkey p { font-size: 13px !important; }

  .tesla-specs { padding: 0 0 80px !important; }
  .tesla-specs__inner { padding: 0 22px !important; }
  .tesla-specs__head { margin-bottom: 22px !important; }
  .tesla-specs__head h3 { font-size: 24px !important; }
  .tesla-specs__grid { grid-template-columns: 1fr 1fr !important; }
  .tspec { padding: 16px 18px !important; }
  .tspec .v { font-size: 14px !important; }

  .tesla-app { padding: 80px 0 !important; }
  .tesla-app__inner { grid-template-columns: 1fr !important; gap: 40px !important; padding: 0 22px !important; }
  .tesla-app__copy h3 { font-size: 26px !important; }
  .tesla-app__copy p { font-size: 15px !important; }
  .tesla-app__features .item { padding: 14px 16px !important; }
  .tesla-app__features .ttl { font-size: 13px !important; }
  .tesla-app__features .desc { font-size: 12px !important; }
  .phone-stage { aspect-ratio: 5/6 !important; max-height: 480px; }
  .phone { width: 240px !important; }

  .tesla-cta { padding: 80px 0 100px !important; }
  .tesla-cta__inner { padding: 0 22px !important; }
  .tesla-cta h3 { font-size: clamp(30px, 9vw, 44px) !important; }
  .tesla-cta p { font-size: 15px !important; margin-bottom: 28px !important; }

  /* ---- TEAM SECTION ON HOMEPAGE ---- */
  .team-section { padding-top: 72px !important; }
  .team-section__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .team-section__photo { aspect-ratio: 4/4 !important; max-height: 360px; }
  .team-section h2 { font-size: 26px !important; }
  .team-section p { font-size: 16px !important; line-height: 1.6 !important; }
  .team-section .quote { font-size: 16px !important; padding: 4px 0 4px 16px !important; }

  /* ---- CERTS ---- */
  .certs__head { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; margin-bottom: 24px !important; }
  .certs__head h3 { font-size: 22px !important; }
  .certs__strip { gap: 22px !important; padding: 24px 18px !important; border-radius: 18px !important; }
  .certs__strip img { height: 48px !important; }
  .certs__strip img.tall { height: 60px !important; }

  /* ---- FINAL CTA ---- */
  .final { padding: 80px 0 !important; }
  .final h2 { font-size: clamp(26px, 8vw, 36px) !important; }
  .final p { font-size: 15px !important; margin-bottom: 28px !important; }
  .final__ctas .btn { padding: 14px 22px !important; font-size: 13px !important; }
  .final__phone { font-size: 13px !important; }

  /* ---- BUTTONS GENERAL ---- */
  .btn { padding: 14px 24px !important; font-size: 13px !important; }

  /* ---- FOOTER ---- */
  footer.site { padding: 56px 0 28px !important; }
  .footer__top { grid-template-columns: 1fr !important; gap: 36px !important; margin-bottom: 36px !important; }
  .footer__brand img { height: 52px !important; margin-bottom: 14px !important; }
  .footer__brand p { font-size: 13.5px !important; }
  .footer__col h4 { margin: 0 0 12px !important; }
  .footer__col p, .footer__col a { font-size: 13.5px !important; line-height: 1.8 !important; }
  .footer__col .social img { height: 36px !important; width: 36px !important; }
  .footer__bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 22px 22px 0 !important;
  }
  .footer__bottom .tesla-mention img { height: 42px !important; }
}

/* ============================================================
   ≤ 720px — Photovoltaik & Tesla page specifics
   ============================================================ */
@media (max-width: 720px) {

  /* PV INTRO */
  .pv-intro__grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .pv-intro__lead h2 { font-size: 28px !important; }
  .pv-intro__cols { grid-template-columns: 1fr !important; gap: 0 !important; }
  .pv-intro__cols p { font-size: 15px !important; line-height: 1.65 !important; }

  /* PV Tesla banner */
  .tesla-banner { padding: 48px 0 !important; }
  .tesla-banner__inner { grid-template-columns: 1fr !important; gap: 22px !important; }
  .tesla-banner h3 { font-size: 24px !important; line-height: 1.15 !important; }
  .tesla-banner p { font-size: 15px !important; }
  .tesla-banner__visual { min-height: 180px !important; }
  .tesla-banner__visual img { max-height: 220px !important; }
  .tesla-banner__ctas .btn { padding: 13px 22px !important; font-size: 13px !important; }
  .tesla-banner__badge { font-size: 10px !important; padding: 6px 12px !important; letter-spacing: .14em !important; }

  /* KFW block on PV */
  .kfw-block { padding: 64px 0 !important; }
  .kfw-block__inner { grid-template-columns: 1fr !important; gap: 28px !important; }
  .kfw-block h2 { font-size: 24px !important; }
  .kfw-block p { font-size: 15px !important; }
  .kfw-cards { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .kfw-card { padding: 18px 20px !important; }
  .kfw-card .v { font-size: 22px !important; }
  .kfw-faq__item { padding: 16px 20px !important; }
  .kfw-faq__item summary { font-size: 14px !important; }
  .kfw-faq__item p { font-size: 13.5px !important; }

  /* Planning gallery */
  .planning__head { flex-direction: column !important; align-items: flex-start !important; gap: 14px !important; margin-bottom: 28px !important; }
  .planning h2 { font-size: 24px !important; }
  .planning__sub { text-align: left !important; font-size: 14px !important; }
  .planning__grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .planning__cell .caption { font-size: 12px !important; padding: 14px 16px !important; }

  /* PV WIZARD */
  .wizard-section { padding: 64px 0 80px !important; }
  .wizard-section__head { margin-bottom: 32px !important; }
  .wizard-section__head h2 { font-size: 26px !important; }
  .wizard-section__head p { font-size: 14.5px !important; }
  .wizard { border-radius: 20px !important; }
  .wizard__progress { padding: 20px 18px 0 !important; }
  .wizard__progress-step .lbl { display: none !important; }
  .wizard__body { padding: 28px 18px 28px !important; min-height: unset !important; }
  .wizstep__title { font-size: 22px !important; }
  .wizstep__sub { font-size: 13.5px !important; }
  .wizstep__grouplabel { font-size: 11.5px !important; }
  .chip { font-size: 12.5px !important; padding: 9px 14px !important; }
  .chip--featured { padding: 10px 16px !important; }
  .wizard__nav { padding: 16px 18px !important; flex-wrap: wrap !important; }
  .wizard__nav .step-label { width: 100%; text-align: center; font-size: 11.5px !important; order: -1; margin-bottom: 4px; }
  .wizard__nav .btn { padding: 12px 22px !important; font-size: 13px !important; flex: 1; min-width: 130px; justify-content: center; }
  .wiz-alert { font-size: 13px !important; padding: 12px 14px !important; }
  .summary-card { padding: 16px 18px !important; }
  .summary-card .row { font-size: 12.5px !important; flex-direction: column; gap: 4px; padding: 6px 0 !important; }
  .summary-card .row .v { text-align: left !important; max-width: 100% !important; }
  .slider-row .bubble { font-size: 13px !important; min-width: 70px !important; padding: 7px 10px !important; }

  /* PV cross-sell cards */
  .cross__grid { grid-template-columns: 1fr !important; }
  .cross__card { min-height: 240px !important; padding: 26px !important; }
  .cross__card h3 { font-size: 22px !important; }
  .cross__card p { font-size: 13.5px !important; }

  /* ---- TESLA STANDALONE PAGE ---- */
  .t-hero { padding: 90px 0 56px !important; }
  .t-hero__inner { padding: 0 22px !important; }
  .t-hero h1 { font-size: clamp(36px, 11vw, 56px) !important; margin: 14px 0 18px !important; }
  .t-hero p { font-size: 15px !important; }
  .t-hero__crumb { top: 16px !important; left: 22px !important; font-size: 10px !important; letter-spacing: .1em !important; }
  .t-hero__logos { gap: 22px !important; margin-top: 36px !important; padding-top: 28px !important; }
  .t-hero__logos img { height: 24px !important; }

  .t-product { padding: 30px 0 80px !important; }
  .t-product__inner { grid-template-columns: 1fr !important; gap: 28px !important; padding: 0 22px !important; }
  .t-product__copy h2 { font-size: 28px !important; margin: 18px 0 16px !important; }
  .t-product__copy p { font-size: 15px !important; margin-bottom: 24px !important; }
  .t-stats {
    grid-template-columns: 1fr 1fr !important;
    border-radius: 18px !important;
    padding: 12px 8px !important;
    width: 100%;
  }
  .t-stats .stat {
    padding: 10px 14px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .t-stats .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .t-stats .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .t-stats .v { font-size: 16px !important; }
  .t-stats .l { font-size: 9px !important; }
  .t-product__visual { aspect-ratio: 4/5 !important; }
  .t-product__img { max-height: 380px !important; }

  .t-keys { padding: 64px 0 80px !important; }
  .t-keys__inner { padding: 0 22px !important; }
  .t-keys__head { grid-template-columns: 1fr !important; gap: 16px !important; margin-bottom: 32px !important; align-items: flex-start !important; }
  .t-keys__head h2 { font-size: 28px !important; }
  .t-keys__head p { font-size: 14px !important; }
  .t-keys__grid { grid-template-columns: 1fr !important; gap: 12px !important; }

  .t-specs { padding: 0 0 80px !important; }
  .t-specs__inner { padding: 0 22px !important; }
  .t-specs__head h2 { font-size: 22px !important; }
  .t-specs__grid { grid-template-columns: 1fr 1fr !important; }

  .t-app { padding: 80px 0 !important; }
  .t-app__inner { grid-template-columns: 1fr !important; gap: 40px !important; padding: 0 22px !important; }
  .t-app__copy h2 { font-size: 24px !important; }
  .t-app__copy p { font-size: 15px !important; }
  .t-app__features .item { padding: 14px 16px !important; }
  .t-app__features .ttl { font-size: 13px !important; }
  .t-app__features .desc { font-size: 12px !important; }

  .t-cta { padding: 80px 0 100px !important; }
  .t-cta__inner { padding: 0 22px !important; }
  .t-cta h2 { font-size: clamp(30px, 9vw, 44px) !important; }
  .t-cta p { font-size: 15px !important; margin-bottom: 28px !important; }

  /* ---- TEAM PAGE ---- */
  .team-hero__stats { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; padding-top: 20px !important; }
  .team-hero__stats .v { font-size: 20px !important; }
  .team-hero__stats .l2 { font-size: 10px !important; }
  /* Members-Liste ist auf Mobile so hoch (alle Cards untereinander), dass der
     IntersectionObserver-Threshold (0.10) nie erreicht wird — daher Reveal
     hier deaktivieren, sonst bleiben die Cards unsichtbar. */
  .members.reveal { opacity: 1 !important; transform: none !important; }
  .members { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .member__photo { aspect-ratio: 1/1 !important; }
  .member__body { padding: 14px 14px 18px !important; }
  .member__name { font-size: 15px !important; }
  .member__role { font-size: 12px !important; line-height: 1.45 !important; }
  .member__contact a { font-size: 11.5px !important; }
  .dept-divider {
    font-size: 11px !important;
    padding: 22px 0 8px !important;
    grid-column: 1 / -1 !important;
  }
  .members-cta { padding: 28px 22px !important; }
  .members-cta h3 { font-size: 18px !important; }
  .members-cta p { font-size: 13.5px !important; }
  .team-section__quote h2 { font-size: 24px !important; }
  .team-section__quote { padding: 64px 0 !important; }

  /* ---- KONTAKT PAGE ---- */
  .qc { padding: 36px 0 !important; }
  .qc__grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .qc__card { padding: 18px 20px !important; gap: 14px !important; }
  .qc__icon { width: 38px !important; height: 38px !important; border-radius: 10px !important; }
  .qc__icon svg { width: 18px !important; height: 18px !important; }
  .qc__v { font-size: 15px !important; }
  .qc__sub { font-size: 12px !important; }

  .form-section { padding: 64px 0 !important; }
  .form-section__grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .form-section__lead h2 { font-size: 26px !important; }
  .form-section__lead p { font-size: 15px !important; line-height: 1.6 !important; }
  .form-card { padding: 24px 20px !important; border-radius: 20px !important; }
  .form-card h3 { font-size: 19px !important; }
  .form-card .lede { font-size: 13px !important; }
  .topic-row > .label { font-size: 11.5px !important; }
  .field label { font-size: 11.5px !important; }
  .field input, .field textarea, .field select { font-size: 14px !important; padding: 12px 14px !important; }
  .dsgvo { font-size: 12px !important; padding: 14px 16px !important; }
  .dsgvo input[type=checkbox] { width: 20px !important; height: 20px !important; }
  .form-card .submit-row { flex-direction: column !important; align-items: stretch !important; }
  .form-card .submit-row .btn { justify-content: center; }
  .form-card .submit-row .hint { font-size: 11px !important; order: 2; text-align: center; }
  .form-success { padding: 36px 22px !important; }
  .form-success h3 { font-size: 22px !important; }
  .form-success p { font-size: 14px !important; }

  .map-section { padding: 64px 0 36px !important; }
  .map-section__head { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; margin-bottom: 22px !important; }
  .map-section__head h2 { font-size: 24px !important; }
  .map-section__addr { text-align: left !important; }
  .map-section__addr .v { font-size: 14px !important; }
  .map-wrap iframe { height: 320px !important; }
  .map-link { font-size: 12px !important; }
  .hours { grid-template-columns: 1fr 1fr !important; gap: 12px !important; margin-top: 28px !important; }
  .hours__item { padding: 16px 18px !important; }
  .hours__item .v { font-size: 14px !important; }

  /* ---- LEGAL PAGES (Impressum / Datenschutz) ---- */
  .legal__inner { padding: 0 22px !important; }
  .legal h1 { font-size: 36px !important; margin: 0 0 28px !important; }
  .legal h2 { font-size: 19px !important; margin: 36px 0 14px !important; padding-top: 28px !important; }
  .legal p { font-size: 15px !important; line-height: 1.65 !important; }
  .legal ul, .legal ol { font-size: 15px !important; line-height: 1.65 !important; }
  .legal__card { padding: 18px 20px !important; }
  .legal__card p { font-size: 14px !important; }
  .legal__meta { grid-template-columns: 1fr !important; gap: 4px 0 !important; }
  .legal__meta dt { margin-top: 12px; font-size: 14px !important; }
  .legal__meta dd { font-size: 14px !important; }
  .legal__toc { padding: 18px 20px !important; margin-bottom: 36px !important; }
  .legal__toc ol { columns: 1 !important; font-size: 13.5px !important; }
}

/* ============================================================
   ≤ 480px — extra compact
   ============================================================ */
@media (max-width: 480px) {
  .topbar__inner { padding: 8px 14px !important; }
  .topbar__logo { height: 42px !important; }
  .members { grid-template-columns: 1fr !important; }
  .kfw-cards { grid-template-columns: 1fr !important; }
  .tesla-specs__grid, .t-specs__grid { grid-template-columns: 1fr !important; }
  .tesla-stats, .t-stats { grid-template-columns: 1fr !important; }
  .tesla-stats .stat:nth-child(odd), .t-stats .stat:nth-child(odd) { border-right: 0 !important; }
  .tesla-stats .stat, .t-stats .stat { border-bottom: 1px solid rgba(255,255,255,.08) !important; }
  .tesla-stats .stat:last-child, .t-stats .stat:last-child { border-bottom: 0 !important; }
  .hours { grid-template-columns: 1fr !important; }
  .hero__meta { grid-template-columns: repeat(3, 1fr) !important; gap: 12px 10px !important; }

  /* Wizard chips stack better on tiny screens */
  .chips { gap: 6px !important; }
  .chip { padding: 8px 12px !important; font-size: 12px !important; }

  /* Hero CTA buttons full width on tiny screens */
  .hero__ctas .btn,
  .final__ctas .btn,
  .tesla-banner__ctas .btn,
  .t-cta__ctas .btn,
  .tesla-cta__ctas .btn { flex: 1; min-width: 0; justify-content: center; }
}

/* ============================================================
   Touch-friendly: bigger tap targets across the board
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 44px; }
  .chip { min-height: 40px; }
  .svc__link, .footer__col a { padding: 4px 0; }
}
