/* =========================================================
   Mr. Phone – Frankfurt Zeil
   Stylesheet – Schwarz/Weiß mit Logo-Grün als Akzentfarbe
   ========================================================= */

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --green: #8dc63f;
  --green-dark: #6fa62d;
  --gray-50: #f7f7f6;
  --gray-100: #eeeeec;
  --gray-200: #e0e0de;
  --gray-400: #a9a9a6;
  --gray-600: #5c5c59;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 14px rgba(26, 26, 26, 0.08);
  --shadow-hover: 0 10px 28px rgba(26, 26, 26, 0.14);
  --max-width: 1200px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

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

.bg-light { background: var(--gray-50); }
.bg-dark {
  background: var(--black);
  color: var(--white);
}
.bg-dark h2, .bg-dark h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  min-height: 48px;
  line-height: 1.1;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo {
  width: 150px;
  height: auto;
}

.header-phone {
  display: none;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.8rem;
  margin-left: auto;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.burger-label {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.burger-label:hover { background: var(--gray-100); }

.burger-label span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav {
  display: none;
  width: 100%;
  order: 10;
}

.nav-toggle:checked ~ .main-nav {
  display: block;
}

.main-nav ul {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.7rem;
}

.main-nav a {
  display: block;
  padding: 0.9rem 0.25rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: 0.8rem;
}

@media (max-width: 479px) {
  .header-inner { padding-inline: 0.9rem; gap: 0.6rem; }
  .logo { width: 118px; }
}

@media (min-width: 900px) {
  .header-inner { padding-block: 0.9rem; }
  .logo { width: 170px; }
  .burger-label { display: none; }
  .main-nav {
    display: block;
    width: auto;
    order: 0;
  }
  .main-nav ul {
    flex-direction: row;
    border-top: none;
    margin-top: 0;
    padding: 0;
    gap: 1.9rem;
  }
  .main-nav a {
    padding: 0.4rem 0;
    border-bottom: none;
    position: relative;
  }
  .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -4px;
    height: 2px;
    background: var(--green);
    transition: right 0.2s ease;
  }
  .main-nav a:hover::after,
  .main-nav a[aria-current="page"]::after {
    right: 0;
  }
  .header-phone { display: inline-block; }
  .header-cta { display: flex; }
  .nav-mobile-actions { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: var(--white);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-block: 2.5rem;
}

.hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  max-width: 420px;
  margin-inline: auto;
}

.hero-content { text-align: center; }

.hero-badge {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 { color: var(--white); }

.hero-lead {
  font-size: 1.1rem;
  color: var(--gray-200);
  max-width: 55ch;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1.4fr;
    padding-block: 4.5rem;
  }
  .hero-content { text-align: left; }
  .hero-lead { margin-inline: 0; }
  .cta-row { justify-content: flex-start; }
  .hero-image-wrap { margin-inline: 0; max-width: 100%; }
}

/* ---------- Hero-Intro-Animation (nur Startseite, siehe .hero-home) ---------- */
.hero-home .hero-image-wrap {
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  animation: heroImageIn 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: 0.05s;
}
.hero-home .hero-badge,
.hero-home .hero-content h1,
.hero-home .hero-lead,
.hero-home .hero-content .bewertungen-kompakt,
.hero-home .hero-content .cta-row {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-home .hero-badge { animation-delay: 0.1s; }
.hero-home .hero-content h1 { animation-delay: 0.2s; }
.hero-home .hero-lead { animation-delay: 0.34s; }
.hero-home .hero-content .bewertungen-kompakt { animation-delay: 0.42s; }
.hero-home .hero-content .cta-row { animation-delay: 0.48s; }

@keyframes heroImageIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes heroTextIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Leistungs-Kacheln ---------- */
.tile-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
}

.tile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
}

.tile-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(141, 198, 63, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Line-Icons statt Emoji (Leistungen/Vertrauen/Anfahrt/Vorteile): SVG braucht
   explizite Groesse, Emoji-Glyphen skalierten sonst automatisch mit font-size. */
.tile-icon svg { width: 28px; height: 28px; }
.trust-icon svg,
.vorteil-icon svg,
.badge-inline svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* ---------- Unser Sortiment: Kategorie-Kacheln ---------- */
.kategorie-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 560px) {
  .kategorie-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .kategorie-grid { grid-template-columns: repeat(5, 1fr); }
}

.kategorie-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 1rem;
  background: linear-gradient(155deg, rgba(38, 38, 41, 0.96), rgba(20, 20, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kategorie-tile:hover,
.kategorie-tile:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(141, 198, 63, 0.55);
  box-shadow: 0 14px 30px rgba(141, 198, 63, 0.22), var(--shadow-hover);
}

.kategorie-tile svg {
  width: 30px;
  height: 30px;
  color: var(--green);
  transition: filter 0.2s ease;
}

.kategorie-tile:hover svg,
.kategorie-tile:focus-visible svg {
  filter: drop-shadow(0 0 7px rgba(141, 198, 63, 0.75));
}

.kategorie-tile span {
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.3;
}

.sortiment-seo-text {
  max-width: 760px;
  margin: 2.2rem auto 0;
  text-align: center;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.tile h3 { margin-bottom: 0.5rem; }
.tile p { margin-bottom: 0; color: var(--gray-600); }

/* ---------- Vertrauens-Sektion ---------- */
.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  text-align: center;
}

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  padding: 1.6rem 1rem;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}

.trust-item h3 {
  font-size: 1.05rem;
  color: var(--green);
}

.trust-item p {
  color: var(--gray-200);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ---------- Bild-Sektionen ---------- */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .split.reverse .split-media { order: 2; }
}

.split-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bild-fehlt {
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bild-fehlt img { display: none; }
.bild-fehlt::after {
  content: "Bild folgt – siehe BILDER-TODO.md";
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

/* ---------- Vorher/Nachher-Vergleich ---------- */
.vn-grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 900px) {
  .vn-grid { grid-template-columns: repeat(3, 1fr); }
}

.vn-compare {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--gray-100);
}

.vn-compare.bild-fehlt .vn-slider { display: none; }
.vn-compare.bild-fehlt::after {
  content: "Bilder folgen – siehe BILDER-TODO.md";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.vn-nachher,
.vn-vorher {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vn-vorher-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--vn-pos, 50%)) 0 0);
}

.vn-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.vn-slider::-webkit-slider-runnable-track { background: transparent; height: 100%; }
.vn-slider::-moz-range-track { background: transparent; height: 100%; }
.vn-slider::-webkit-slider-thumb {
  appearance: none;
  width: 4px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(0,0,0,.25), var(--shadow);
  border-radius: 2px;
  cursor: ew-resize;
}
.vn-slider::-moz-range-thumb {
  width: 4px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(0,0,0,.25), var(--shadow);
  border-radius: 2px;
  border: none;
  cursor: ew-resize;
}

.vn-caption {
  text-align: center;
  font-weight: 700;
  margin-top: 0.6rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius); }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-hover); }

.gallery-grid.portrait img {
  aspect-ratio: 3 / 4;
}

.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(141, 198, 63, 0.15);
  color: var(--green-dark);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ---------- Bewertungs-CTA ---------- */
.review-cta {
  text-align: center;
  background: var(--green);
  color: var(--black);
}

.review-cta h2 { color: var(--black); }

.stars {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.8rem;
}

/* ---------- Anfahrt / Info-Box ---------- */
.info-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.info-box dt {
  font-weight: 700;
  margin-top: 0.9rem;
}
.info-box dt:first-child { margin-top: 0; }
.info-box dd {
  margin: 0.15rem 0 0;
  color: var(--gray-600);
}

.map-embed {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- Prozess-Schritte ---------- */
.steps {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--green);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* ---------- Reparatur/Ankauf Listen ---------- */
.service-list {
  display: grid;
  gap: 1rem;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow);
}

.service-row:hover { border-color: var(--green); }

.service-row .service-name {
  font-weight: 700;
  margin: 0;
}

.service-row .service-price {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin: 0;
}

.service-row .service-actions {
  display: flex;
  gap: 0.6rem;
  margin-left: auto;
}

.service-row .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  min-height: 40px;
}

.service-row .service-price-ab {
  color: var(--green-dark);
  font-weight: 800;
  font-size: 1.05rem;
}

.service-price-hinweis {
  color: var(--gray-400);
  font-size: 0.78rem;
  margin: 0.15rem 0 0;
}

.reparatur-preise-hinweis {
  background: rgba(141, 198, 63, 0.12);
  border: 1px solid rgba(141, 198, 63, 0.35);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 1.4rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1.1rem 1.4rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 1.4rem 1.2rem;
  color: var(--gray-600);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--gray-200);
  padding-block: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col a:hover { color: var(--green); }

.footer-logo {
  width: 130px;
  margin-bottom: 1rem;
  background: var(--white);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.footer-bottom a:hover { color: var(--green); }

/* ---------- Sticky WhatsApp Button (Mobile) ---------- */
.whatsapp-float {
  display: none;
}

@media (max-width: 899px) {
  .whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    z-index: 200;
    font-size: 1.6rem;
  }
  .whatsapp-float:hover { background: var(--green-dark); }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--black);
  padding: 0.8rem 1.2rem;
  z-index: 999;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.breadcrumb {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-top: 1.4rem;
}
.breadcrumb a:hover { color: var(--green-dark); }

/* =========================================================
   Scroll-Reveal (IntersectionObserver, siehe main.js)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Gruppen-Reveal: Container selbst bleibt statisch, Kinder erscheinen gestaffelt */
.reveal-stagger {
  opacity: 1;
  transform: none;
  transition: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.38s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.44s; }

/* =========================================================
   Hero v2 – dunkler Bild-Hero mit Ken-Burns & Wortanimation
   ========================================================= */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
}

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

.hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroKenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-v2-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.55) 0%, rgba(26, 26, 26, 0.82) 65%, rgba(26, 26, 26, 0.95) 100%),
    linear-gradient(90deg, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.35) 60%);
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.14); }
}

.hero-v2-glow {
  position: absolute;
  z-index: 0;
  width: 42vw;
  max-width: 460px;
  aspect-ratio: 1;
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 63, 0.55), transparent 70%);
  filter: blur(50px);
  animation: heroGlowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

.hero-v2-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 10vw, 6rem);
}

.hero-v2-badge {
  display: inline-block;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero-v2-title {
  color: var(--white);
  max-width: 16ch;
}

.hero-v2-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroWordIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroWordIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-v2-lead {
  font-size: 1.15rem;
  color: var(--gray-200);
  max-width: 52ch;
  opacity: 0;
  animation: heroWordIn 0.8s ease forwards;
  animation-delay: 0.9s;
}

.hero-v2 .cta-row {
  opacity: 0;
  animation: heroWordIn 0.8s ease forwards;
  animation-delay: 1.1s;
}

/* =========================================================
   Marken-Ticker (reines CSS-Marquee)
   ========================================================= */
.brand-marquee {
  background: var(--black);
  color: var(--gray-200);
  overflow: hidden;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-inline: 1.75rem;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.82;
}

.marquee-track span::after {
  content: "•";
  color: var(--green);
  opacity: 0.8;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Glassmorphism-Sektion für Leistungs-Kacheln
   ========================================================= */
.glass-section {
  position: relative;
  overflow: hidden;
}

.glass-section::before,
.glass-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.glass-section::before {
  width: 360px;
  height: 360px;
  background: rgba(141, 198, 63, 0.22);
  top: -100px;
  left: -80px;
}

.glass-section::after {
  width: 320px;
  height: 320px;
  background: rgba(26, 26, 26, 0.08);
  bottom: -120px;
  right: -60px;
}

.glass-section .container {
  position: relative;
  z-index: 1;
}

.tile.glass {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.tile.glass:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(141, 198, 63, 0.28), var(--shadow-hover);
  border-color: rgba(141, 198, 63, 0.5);
}

/* =========================================================
   Micro-Interactions
   ========================================================= */
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 28px rgba(141, 198, 63, 0.45);
}

.link-underline {
  position: relative;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}
.link-underline:hover::after,
.link-underline:focus-visible::after {
  right: 0;
}

/* =========================================================
   Animierte Zähler (Vertrauens-Sektion)
   ========================================================= */
.counter-value {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   Aktuelle Angebote – Glassmorphism-Karten
   ========================================================= */
.angebote-section {
  background: var(--gray-50);
}

.angebot-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .angebot-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .angebot-grid { grid-template-columns: repeat(4, 1fr); }
}

.angebot-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.angebot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(141, 198, 63, 0.28), var(--shadow-hover);
  border-color: rgba(141, 198, 63, 0.5);
}

.angebot-card[hidden] { display: none; }

/* ---------- Sortiment: Kategorie-Filter ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-btn {
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.filter-btn:hover { border-color: var(--green); color: var(--black); }

.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.filter-row-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.filter-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-600);
}

.filter-inline select {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  font: inherit;
  font-size: 0.88rem;
  color: var(--black);
  background: var(--white);
}

.filter-inline select:focus-visible { outline: 2px solid var(--green); outline-offset: 1px; }

.empty-hint {
  color: var(--gray-600);
  font-size: 0.95rem;
  max-width: 60ch;
  padding: 1.4rem 1.6rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}
.empty-hint a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.empty-hint a:hover { color: var(--green); }
.empty-hint p { margin: 0 0 1rem; }
.empty-hint p:last-child { margin-bottom: 0; }

.angebot-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-100);
}

.angebot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.angebot-media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
}
.angebot-media--empty svg { width: 32%; height: 32%; }

.angebot-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.angebot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  width: fit-content;
}

.angebot-badge.badge-neu {
  background: var(--green);
  color: var(--black);
}

.angebot-badge.badge-gebraucht {
  background: var(--gray-100);
  color: var(--gray-600);
}

.angebot-card h3 {
  margin: 0.1rem 0 0;
  font-size: 1.05rem;
}

.angebot-price {
  font-size: 1.55rem;
  font-weight: 800;
  margin: 0.2rem 0 0;
}

.angebot-oldprice {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-400);
  text-decoration: line-through;
}

.angebot-warranty {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin: 0;
}

.angebot-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.3rem;
}

.reservieren-hinweis {
  font-size: 0.72rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.35;
}

/* ---------- Live-Öffnungsstatus-Badge ---------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-600);
  white-space: nowrap;
}

.status-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-400);
  flex-shrink: 0;
}

.status-badge.is-open {
  background: rgba(141, 198, 63, 0.18);
  color: var(--green-dark);
}
.status-badge.is-open .status-dot { background: var(--green); }

.status-badge.is-closing-soon {
  background: rgba(230, 159, 0, 0.16);
  color: #a06a00;
}
.status-badge.is-closing-soon .status-dot { background: #e69f00; }

.status-badge.is-closed .status-dot { background: var(--gray-400); }

.status-badge--mobile {
  margin-left: 0.2rem;
  flex: 1 1 0;
  min-width: 0;
}

.status-badge--mobile .status-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

@media (min-width: 900px) {
  .status-badge--mobile { display: none; }
}

/* ---------- Google-Bewertungen ---------- */
.sterne {
  color: #e69f00;
  letter-spacing: 1px;
  font-size: 1rem;
}

.bewertungen-kompakt {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.bewertungen-kompakt[hidden] { display: none; }

.bewertungen-kompakt-text { color: var(--gray-600); font-weight: 600; }

.hero-content .bewertungen-kompakt { margin-top: 0.6rem; }
.hero-content .bewertungen-kompakt-text { color: var(--gray-200); }

.bewertungen-kompakt.trust-badge {
  font-size: 0.95rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.bewertungen-kompakt.trust-badge .sterne { font-size: 1.1rem; }
.bewertungen-kompakt.trust-badge .bewertungen-kompakt-text { color: var(--gray-900, #1a1a1a); }
.hero-content .bewertungen-kompakt.trust-badge { margin-top: 0.9rem; }
.hero-content .bewertungen-kompakt.trust-badge .bewertungen-kompakt-text { color: var(--gray-900, #1a1a1a); }

.rechner-trust-badge {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.bewertungen-section {
  background: var(--gray-50);
}

.bewertungen-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  margin-bottom: 1.8rem;
}

.bewertungen-summary .sterne { font-size: 1.6rem; }

.bewertungen-note {
  font-size: 2rem;
  font-weight: 800;
}

.bewertungen-anzahl {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.bewertungen-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.3rem 0.2rem 1rem;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.zitat-karte {
  scroll-snap-align: start;
  flex: 0 0 min(320px, 82vw);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.zitat-karte blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.zitat-karte figcaption {
  color: var(--gray-600);
  font-size: 0.82rem;
  font-weight: 600;
}

.bewertungen-google-link {
  display: block;
  text-align: center;
  margin-top: 0.6rem;
  font-weight: 700;
}

/* =========================================================
   prefers-reduced-motion: alle Animationen deaktivieren
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-home .hero-image-wrap,
  .hero-home .hero-badge,
  .hero-home .hero-content h1,
  .hero-home .hero-lead,
  .hero-home .hero-content .cta-row {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-v2-title .word,
  .hero-v2-lead,
  .hero-v2 .cta-row {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-v2-bg img,
  .hero-v2-glow,
  .marquee-track {
    animation: none !important;
  }
}

/* =========================================================
   Ankaufsrechner (handy-ankauf-frankfurt.html)
   ========================================================= */
.rechner-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.rechner-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.rechner-progress-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  text-align: center;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gray-400);
  background: transparent;
  border: none;
  padding: 0.5rem 0.2rem;
  min-height: 44px;
  cursor: default;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Verbindungslinie zwischen den Kreisen */
.rechner-progress-step:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
  transition: background-color 0.3s ease;
}
.rechner-progress-step.done:not(:first-child)::before,
.rechner-progress-step.active:not(:first-child)::before {
  background: var(--green);
}

.rechner-progress-circle {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.rechner-progress-num { font-weight: 800; }
.rechner-progress-check {
  display: none;
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* Offene (noch nicht erreichte) Schritte */
.rechner-progress-label { transition: color 0.2s ease, font-weight 0.2s ease; }

/* Erreichbare Schritte: klickbar */
.rechner-progress-step.erreichbar {
  cursor: pointer;
}
.rechner-progress-step.erreichbar:hover .rechner-progress-circle,
.rechner-progress-step.erreichbar:focus-visible .rechner-progress-circle {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(141, 198, 63, 0.3);
}
.rechner-progress-step:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* Nicht erreichbare Schritte: gedimmt, nicht klickbar */
.rechner-progress-step:disabled {
  cursor: default;
  opacity: 0.55;
}

/* Aktiver Schritt: grüner Kreis mit Glow, schwarze Zahl (weiß auf grün war 2.04:1, WCAG-Fail) */
.rechner-progress-step.active .rechner-progress-circle {
  background: var(--green);
  border-color: var(--green);
  color: var(--black);
  box-shadow: 0 0 0 5px rgba(141, 198, 63, 0.22);
}
.rechner-progress-step.active .rechner-progress-label {
  color: var(--black);
  font-weight: 800;
}

/* Abgeschlossener Schritt: grüner Kreis, weißes Häkchen */
.rechner-progress-step.done .rechner-progress-circle {
  background: var(--green);
  border-color: var(--green);
}
.rechner-progress-step.done .rechner-progress-num { display: none; }
.rechner-progress-step.done .rechner-progress-check { display: block; }
.rechner-progress-step.done .rechner-progress-label {
  color: var(--gray-600);
  font-weight: 700;
}

.rechner-step h2,
.rechner-ergebnis h2 { margin-bottom: 1.4rem; }

.rechner-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: var(--gray-600);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}
.rechner-back:hover { color: var(--black); }

.rechner-kategorie-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 560px) { .rechner-kategorie-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .rechner-kategorie-grid { grid-template-columns: repeat(5, 1fr); } }

.rechner-kategorie-btn {
  cursor: pointer;
  font: inherit;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.rechner-kategorie-btn.active {
  border-color: var(--green);
  box-shadow: 0 14px 30px rgba(141, 198, 63, 0.22), var(--shadow-hover);
}

.rechner-marken-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.rechner-chip {
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.rechner-chip:hover { border-color: var(--green); color: var(--black); }
.rechner-chip.active { background: var(--black); color: var(--white); border-color: var(--black); }

.rechner-search { display: block; margin-bottom: 1rem; }
.rechner-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 1rem;
  background: var(--white);
}
.rechner-search input:focus-visible { outline: 2px solid var(--green); outline-offset: 1px; }

.rechner-modell-liste {
  display: grid;
  gap: 0.6rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.rechner-modell-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.rechner-modell-btn:hover,
.rechner-modell-btn.active { border-color: var(--green); background: rgba(141, 198, 63, 0.08); }
.rechner-modell-btn .modell-marke { color: var(--gray-600); font-weight: 500; font-size: 0.85rem; }

.rechner-varianten-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.rechner-variante-btn {
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.rechner-variante-btn:hover,
.rechner-variante-btn.active { border-color: var(--green); transform: translateY(-2px); }

.rechner-zustand-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .rechner-zustand-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }

.rechner-zustand-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.rechner-zustand-btn:hover,
.rechner-zustand-btn.active {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rechner-zustand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: rgba(141, 198, 63, 0.14);
  color: var(--green-dark);
}
.rechner-zustand-icon svg { width: 17px; height: 17px; }
.rechner-zustand-btn strong { display: block; margin-bottom: 0.3rem; font-size: 1.05rem; }
.rechner-zustand-btn span { color: var(--gray-600); font-size: 0.88rem; }

.rechner-ergebnis { text-align: center; }
.rechner-ergebnis-label { font-weight: 600; color: var(--gray-600); margin-bottom: 0.2rem; }
.rechner-ergebnis-preis {
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 0.3rem;
  text-shadow: 0 0 26px rgba(141, 198, 63, 0.35);
}
.rechner-ergebnis-sub { color: var(--gray-600); margin-bottom: 1.6rem; }
.rechner-ergebnis .btn { width: 100%; max-width: 420px; margin-inline: auto; }
.rechner-hinweis { max-width: 480px; margin: 1rem auto 0; font-size: 0.88rem; color: var(--gray-600); }
.rechner-hinweis-kategorie { max-width: 480px; margin: 0.6rem auto 0; font-size: 0.85rem; font-style: italic; color: var(--green-dark); }
.rechner-disclaimer { max-width: 560px; margin: 1.4rem auto 0; font-size: 0.78rem; color: var(--gray-400); }

.rechner-fallback {
  text-align: center;
  margin-top: 1.6rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.rechner-fallback a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }

/* ---------- Vorteils-Leiste (Ankauf) ---------- */
.vorteile-leiste {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: center;
}
@media (min-width: 700px) { .vorteile-leiste { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .vorteile-leiste { grid-template-columns: repeat(5, 1fr); } }

.vorteil-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 0.8rem;
}
.vorteil-icon { font-size: 1.6rem; }
.vorteil-item span:last-child { font-weight: 600; font-size: 0.9rem; }

/* ---------- Sprachumschalter (DE/EN) ---------- */
.lang-switch {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink, #1a1a1a);
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  text-decoration: none;
}
.lang-switch:hover { opacity: 0.7; }
.nav-mobile-actions .lang-switch {
  display: inline-block;
  text-align: center;
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

/* ---------- Ratgeber ---------- */
.ratgeber-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .ratgeber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ratgeber-grid { grid-template-columns: repeat(3, 1fr); } }

.ratgeber-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.6rem;
  border-radius: 14px;
  background: var(--bg-light, #f5f5f5);
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ratgeber-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.ratgeber-card h2 { font-size: 1.15rem; margin: 0.2rem 0; }
.ratgeber-card p { margin: 0; opacity: 0.8; font-size: 0.95rem; }

.ratgeber-article {
  max-width: 760px;
}
.ratgeber-article .eyebrow { display: block; margin-bottom: 0.4rem; }
.ratgeber-article h2 { margin-top: 2rem; }
.ratgeber-back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}
