/* ============================================
   DESIGN SYSTEM — System-Font-Stack (DSGVO-safe)
   Keine externen Fonts → kein Google-Request
   ============================================ */
:root {
  --color-bg: #fbfbfd;
  --color-surface: #ffffff;
  --color-surface-2: #f5f5f7;
  --color-text: #1d1d1f;
  --color-text-secondary: #515154;
  --color-text-tertiary: #86868b;
  --color-accent: #0071e3;
  --color-accent-hover: #0077ed;
  --color-accent-2: #16a34a;
  --color-success: #34c759;
  --color-warning: #ff9500;
  --color-danger: #ff3b30;
  --color-border: #d2d2d7;
  --color-border-light: #e8e8ed;
  --color-eco: #2d6a4f;
  --color-eco-light: #d8f3dc;

  /* System-Font-Stack (lädt NICHTS extern) */
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);

  --transition: cubic-bezier(0.28, 0.11, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #f5f5f7;
  line-height: 1.47;
  font-size: 17px;
  letter-spacing: -0.022em;
  font-feature-settings: "kern", "liga";
}
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Edit-mode highlight */
[data-edit] { transition: outline 0.15s ease; }
body.edit-mode [data-edit] {
  outline: 2px dashed rgba(0,113,227,0.3);
  outline-offset: 4px;
  cursor: text;
  border-radius: 4px;
}
body.edit-mode [data-edit]:hover { outline-color: var(--color-accent); }
body.edit-mode [data-edit]:focus { outline: 2px solid var(--color-accent); }

/* WICHTIG: bei Gradient-Texten (metric-num, hero accent) KEINEN Background-Hover */
body.edit-mode .metric-num[data-edit]:hover,
body.edit-mode .hero h1 .accent[data-edit]:hover,
body.edit-mode .hero h1[data-edit]:hover .accent {
  background: linear-gradient(135deg, var(--color-accent), #5856d6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Bearbeitbare Preistabelle / Modal-Inhalte */
body.edit-mode .price-table td:not(:first-child),
body.edit-mode .price-table td.model,
body.edit-mode .modal p,
body.edit-mode .modal h3,
body.edit-mode .modal li {
  outline: 1px dashed rgba(0,113,227,0.25);
  outline-offset: 2px;
  cursor: text;
  border-radius: 3px;
}

/* ============================================
   ADMIN BAR (standardmäßig versteckt — nur nach Login)
   ============================================ */
.admin-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgb(29, 29, 31);
  color: #f5f5f7;
  padding: 8px 16px;
  display: none; /* Versteckt — wird per JS aktiviert */
  align-items: center; justify-content: space-between;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 8px;
}
body.admin-active .admin-bar { display: flex; }
body.admin-active nav.main-nav { top: 38px; }
body.admin-active .dash-panel { top: 38px; height: calc(100vh - 38px); }
.admin-left { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.admin-brand { font-weight: 600; letter-spacing: -0.01em; }
.admin-brand .dot { display: inline-block; width: 6px; height: 6px; background: var(--color-success); border-radius: 50%; margin-right: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.admin-right { display: flex; gap: 6px; flex-wrap: wrap; }
.admin-btn {
  background: rgba(255,255,255,0.08);
  color: #f5f5f7;
  border: none;
  padding: 6px 12px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  white-space: nowrap;
}
.admin-btn:hover { background: rgba(255,255,255,0.15); }
.admin-btn.primary { background: var(--color-accent); }
.admin-btn.primary:hover { background: var(--color-accent-hover); }
.admin-btn.active { background: var(--color-success); }
@media (max-width: 720px) {
  .admin-bar { padding: 8px 12px; font-size: 12px; }
  .admin-brand { font-size: 12px; }
  .admin-session-info { display: none; }
  .admin-btn { padding: 5px 10px; font-size: 11px; }
  body.admin-active nav.main-nav { top: 70px; }
  body.admin-active .dash-panel { top: 70px; height: calc(100vh - 70px); }
}

/* ============================================
   NAV
   ============================================ */
nav.main-nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(251, 251, 253, 0.97);
  border-bottom: 1px solid var(--color-border-light);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  transition: transform 0.2s var(--transition);
}
.nav-logo-wrap:hover .nav-logo-img { transform: scale(1.04); }
@media (max-width: 600px) {
  .nav-logo-img { height: 20px; }
}

/* Text-Logo (statt Bild) */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
  line-height: 1;
}
.nav-logo-accent {
  color: var(--color-accent);
}
.nav-logo-wrap:hover .nav-logo-text { opacity: 0.85; }
@media (max-width: 600px) {
  .nav-logo-text { font-size: 19px; }
}

/* Footer Text-Logo */
.footer-logo-text {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 14px;
}
.footer-logo-accent { color: var(--color-accent); }

/* Login Text-Logo */
.login-logo-text {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1;
}
.login-logo-accent { color: var(--color-accent); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--color-text); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s var(--transition);
}
.nav-links a:hover { color: var(--color-accent); }
.nav-cta {
  background: var(--color-text); color: white !important;
  padding: 8px 18px; border-radius: 980px;
  transition: background 0.2s var(--transition) !important;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--color-accent); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s var(--transition);
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s var(--transition);
}
/* unsichtbare Brücke über die 8px-Lücke, damit Hover nicht abreißt */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-text);
  transition: background 0.15s;
}
.nav-dropdown-menu a:hover {
  background: var(--color-surface-2);
  color: var(--color-accent);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--color-border-light);
  margin: 6px 4px;
}

@media (max-width: 900px) {
  .nav-links > a:not(.nav-cta) { display: none; }
  .nav-dropdown { display: none; }
}

/* ============================================
   HERO — Weißer Hintergrund, kompakt
   ============================================ */
.hero {
  padding: 56px 28px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 28px;
  margin: 14px 14px 16px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.02),
    0 4px 24px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.hero > * {
  position: relative;
  z-index: 2;
}
/* Sehr subtile Light-Akzente (Apple-Style) */
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(10,132,255,0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(175,82,222,0.04) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-pattern { display: none; }

/* Hero Spacing kompakter */
.hero-eyebrow { margin-bottom: 12px !important; }
.hero h1 { margin-bottom: 14px !important; }
.hero-sub { margin-bottom: 18px !important; }
.apple-trust-row { margin: 16px auto 20px !important; padding: 12px 16px !important; }
.hero-rating { margin: 4px 0 16px !important; }
.hero-ctas { margin-bottom: 12px !important; }
.hero-express-note { margin-bottom: 0 !important; }

@media (max-width: 768px) {
  .hero {
    padding: 36px 18px 30px;
    margin: 8px 8px 12px;
    border-radius: 22px;
  }
  .hero-eyebrow {
    font-size: 11px !important;
    padding: 4px 11px !important;
    margin-bottom: 10px !important;
  }
  .hero h1 {
    font-size: clamp(28px, 8vw, 38px) !important;
    margin-bottom: 12px !important;
    line-height: 1.08 !important;
  }
  .hero-sub {
    font-size: 14.5px !important;
    margin-bottom: 14px !important;
    line-height: 1.45 !important;
  }
  .hero-rating { margin: 2px 0 12px !important; }
  .apple-trust-row {
    margin: 12px auto 16px !important;
    padding: 10px 4px !important;
    border-radius: 14px;
  }
  .hero-ctas { gap: 8px !important; margin-bottom: 10px !important; }
  .hero-express-note {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }
}
.hero-eyebrow {
  font-size: 13px; color: var(--color-accent);
  font-weight: 600; margin-bottom: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-block;
  background: rgba(0,113,227,0.08);
  padding: 5px 14px;
  border-radius: 980px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: 16px;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #5856d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}
.hero-sub {
  font-size: clamp(17px, 1.9vw, 21px);
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto 28px;
  letter-spacing: -0.015em;
  line-height: 1.4;
}
/* Premium Hero Rating */
.hero-eyebrow-premium {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(10,132,255,0.08), rgba(88,86,214,0.08)) !important;
  border: 1px solid rgba(10,132,255,0.2) !important;
  color: #0a84ff !important;
  padding: 8px 18px 8px 14px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  box-shadow: 0 4px 20px rgba(10,132,255,0.15), 0 0 0 4px rgba(10,132,255,0.05);
  position: relative;
  margin-bottom: 24px !important;
  animation: premium-float 4s ease-in-out infinite;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #0a84ff, #5856d6);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(10,132,255,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
.eyebrow-text {
  background: linear-gradient(135deg, #0a84ff, #5856d6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(10,132,255,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(10,132,255,0); }
}

@keyframes premium-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@media (max-width: 600px) {
  .hero-eyebrow-premium {
    font-size: 11.5px !important;
    padding: 7px 14px 7px 11px !important;
    gap: 8px;
  }
  .eyebrow-dot { width: 6px; height: 6px; }
}

/* Apple-Style Trust Row — monochrom, edel, minimalistisch */
.apple-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 720px;
  margin: 24px auto 32px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  flex-wrap: wrap;
}
.apple-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
}
.apple-trust-icon {
  width: 22px;
  height: 22px;
  color: #1a1a1a;
  flex-shrink: 0;
  opacity: 0.85;
}
.apple-trust-icon svg {
  width: 100%;
  height: 100%;
}
.apple-trust-text {
  text-align: left;
}
.apple-trust-num {
  font-size: 13.5px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.apple-trust-label {
  font-size: 11px;
  color: #6e6e73;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-top: 1px;
}
.apple-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .apple-trust-row {
    gap: 0;
    padding: 12px 8px;
    max-width: calc(100% - 20px);
    align-items: flex-start;
  }
  .apple-trust-item {
    padding: 8px 8px;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 6px;
    min-width: 0;
  }
  .apple-trust-text { text-align: center; }
  .apple-trust-icon { width: 20px; height: 20px; }
  .apple-trust-num { font-size: 12px; white-space: nowrap; }
  .apple-trust-label { font-size: 10px; }
  .apple-trust-divider { height: 36px; align-self: flex-start; margin-top: 4px; }
  /* MacBook-Label: kurz auf dem Handy (einzeilig, symmetrisch) */
  .apple-trust-label .tl-full { display: none; }
  .apple-trust-label .tl-short { display: inline; }
}
/* Desktop: volle MacBook-Beschriftung */
@media (min-width: 721px) {
  .apple-trust-label .tl-short { display: none; }
  .apple-trust-label .tl-full { display: inline; }
}

/* Premium Hero Rating Pill */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.04);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 8px 0 24px;
}
.hero-rating-stars {
  color: #ff9500;
  font-size: 11.5px;
  letter-spacing: 1.5px;
}
.hero-rating-text {
  font-size: 12.5px;
  font-weight: 500;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}
.hero-rating-text strong {
  font-weight: 700;
}

/* Premium Hero Stats Grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 28px;
}
.hero-stat {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10,132,255,0.12);
  border-color: rgba(10,132,255,0.25);
}
.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0a84ff, #5856d6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat-num span {
  font-size: 16px;
  font-weight: 700;
  margin-left: 1px;
  vertical-align: text-top;
  position: relative;
  top: 4px;
}
.hero-stat-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #5b6b7f;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .hero-rating { padding: 8px 14px; margin: 8px 0 18px; }
  .hero-rating-text { font-size: 12px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 360px;
  }
  .hero-stat { padding: 14px 8px; border-radius: 14px; }
  .hero-stat-num { font-size: 24px; margin-bottom: 4px; }
  .hero-stat-num span { font-size: 13px; top: 3px; }
  .hero-stat-label { font-size: 10.5px; }
}

/* Alte Trust-Badges CSS (für Kompatibilität in Filial-Pages) */
.hero-trust-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px 0 18px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  backdrop-filter: blur(8px);
}
.trust-stars {
  color: #ffb800;
  font-size: 12px;
  letter-spacing: 1px;
  margin-right: 2px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.hero-express-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-eco);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* Wertgarantie Promo-Banner */
.wg-banner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1.5px solid #0284c7;
  color: #0c4a6e;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  margin: 0 auto 32px;
  max-width: 720px;
  transition: all 0.25s var(--transition);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.08);
}
.wg-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.18);
  border-color: #0369a1;
}
.wg-banner-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.wg-banner-icon svg { width: 20px; height: 20px; }
.wg-banner-text { text-align: left; flex: 1; min-width: 0; }
.wg-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0c4a6e;
  margin-bottom: 2px;
}
.wg-banner-text span {
  display: block;
  font-size: 13px;
  color: #075985;
  line-height: 1.35;
}
.wg-banner-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #0284c7;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .wg-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 10px;
  }
  .wg-banner-text { text-align: center; }
  .wg-banner-cta { font-size: 13px; }
}

/* Wertgarantie Section */
.wg-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #ffffff 100%);
  padding: 80px 24px;
}
.wg-section .section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}
.wg-section-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 880px) {
  .wg-section-grid { grid-template-columns: 1fr; gap: 32px; }
  .wg-section { padding: 60px 18px; }
}
.wg-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
@media (max-width: 600px) {
  .wg-benefits { grid-template-columns: 1fr; gap: 14px; }
}
.wg-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wg-benefit-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.wg-benefit-icon svg { width: 18px; height: 18px; }
.wg-benefit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 3px;
}
.wg-benefit p {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.45;
  margin: 0;
}
.wg-section-cta {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.wg-section-cta .btn {
  display: inline-flex;
  align-items: center;
}
.wg-section-cta .btn:hover { background: #0369a1; }
.wg-trust-badge {
  font-size: 12.5px;
  color: var(--color-text-tertiary);
}
.wg-section-visual {
  display: flex;
  justify-content: center;
}
.wg-shield-card {
  background: white;
  border: 1.5px solid rgba(2, 132, 199, 0.2);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 20px 60px rgba(2, 132, 199, 0.15);
}
.wg-shield-icon {
  width: 80px; height: 80px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.wg-shield-icon svg { width: 42px; height: 42px; }
.wg-shield-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.wg-shield-price {
  font-size: 15px;
  color: var(--color-text-secondary);
}
.wg-shield-price strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: #0284c7;
}

/* HERO TRUST BOXES — kompakter */
.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.trust-box {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 18px 16px;
  transition: all 0.25s var(--transition);
  text-align: center;
}
.trust-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: white;
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: #f5f5f7;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: #1d1d1f;
  border: 1px solid rgba(0,0,0,0.04);
}
.trust-icon svg { width: 18px; height: 18px; opacity: 0.85; }
.trust-box .trust-icon[style] {
  background: #f5f5f7 !important;
  color: #1d1d1f !important;
}
.trust-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 3px;
}
.trust-text {
  font-size: 12.5px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ============================================
   SECTIONS
   ============================================ */
.btn {
  font-family: var(--font-body);
  padding: 13px 28px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s var(--transition);
  letter-spacing: -0.01em;
}
.btn-primary { background: var(--color-accent); color: white; }
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.btn-dark { background: var(--color-text); color: white; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost { color: var(--color-text); background: rgba(0,0,0,0.06); }
.btn-ghost:hover { background: rgba(0,0,0,0.12); }

section {
  padding: 70px 24px;
  scroll-margin-top: 90px;
}
@media (max-width: 768px) {
  section { padding: 50px 18px; }
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--color-text);
}
.section-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--color-text-secondary);
  max-width: 720px;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

/* Storytelling / Emotion strip */
.story-strip {
  background: var(--color-text);
  color: white;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.story-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0,113,227,0.15) 0%, transparent 50%);
}
.story-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto;
}
.story-quote .quote-mark {
  color: var(--color-accent);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.2em;
}
.story-author {
  position: relative;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* SERVICES GRID — kompakt */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--color-surface);
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid var(--color-border-light);
  transition: all 0.25s var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #f5f5f7;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: #1d1d1f;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-icon svg { width: 22px; height: 22px; opacity: 0.85; }
/* Inline-Styles auf Service-Icons überschreiben (waren bunte Gradient-Backgrounds) */
.service-card .service-icon[style] {
  background: #f5f5f7 !important;
  color: #1d1d1f !important;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  /* Fixe Höhe: 2 Zeilen, damit alle Karten identisch starten */
  min-height: 2.4em;
  display: flex;
  align-items: flex-end;
}
.service-card p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 16px;
  /* Fixe Höhe: 4 Zeilen für Konsistenz */
  min-height: 5.8em;
  flex-grow: 1;
}
/* Preis-Zeile am Boden — alle Karten auf gleicher Höhe */
.service-card .price {
  font-size: 12.5px;
  color: var(--color-text-tertiary);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.service-card .price strong {
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
}
.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--color-eco-light);
  color: var(--color-eco);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 980px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* MACBOOK FEATURE SECTION */
.feature-section {
  background: linear-gradient(135deg, #1a1a1c 0%, #2d2d30 50%, #1a1a1c 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
}
.feature-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,113,227,0.18) 0%, transparent 65%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .feature-section::before { display: none; }
}
.feature-section .section-title { color: white; }
.feature-section .section-sub { color: rgba(255,255,255,0.7); }
.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; gap: 30px; } }
.feature-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.feature-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  line-height: 1.5;
}
.feature-list {
  list-style: none;
  margin-top: 18px;
}
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; }
.feature-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/4;
  max-height: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.feature-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* PRICE TABLE */
.price-section { background: var(--color-surface-2); }
.price-tabs {
  display: flex; gap: 4px;
  background: white;
  padding: 4px;
  border-radius: 980px;
  margin: 0 auto 40px;
  width: fit-content;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.price-tab {
  padding: 10px 22px;
  border-radius: 980px;
  border: none;
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.2s var(--transition);
}
.price-tab.active { background: var(--color-accent); color: white; }
.price-tab:hover:not(.active) { background: var(--color-surface-2); }

.price-table-wrap {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead { background: var(--color-surface-2); }
.price-table th {
  text-align: left;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-border-light);
}
.price-table th:not(:first-child) { text-align: right; }
.price-table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 15px;
}
.price-table td:not(:first-child) { text-align: right; font-weight: 500; font-variant-numeric: tabular-nums; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover { background: rgba(0,113,227,0.02); }
.price-table .model { font-weight: 500; color: var(--color-text); }
.price-disclaimer {
  margin-top: 22px;
  font-size: 13px;
  color: var(--color-text-tertiary);
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* COLLAPSIBLE PRICE SECTION (Variante C: SEO-freundlich aber visuell kompakt) */
.price-details {
  background: transparent;
}
.price-details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 30px;
  background: var(--ph-grey);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  transition: all 0.25s var(--transition);
  margin-bottom: 0;
}
.price-details > summary::-webkit-details-marker { display: none; }
.price-details > summary:hover {
  background: #ececf0;
  border-color: transparent;
}
.price-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition);
}
.price-toggle-icon svg { width: 22px; height: 22px; }
.price-details[open] .price-toggle-icon { transform: rotate(180deg); }
.price-details-inner {
  margin-top: 24px;
  animation: priceFadeIn 0.4s ease;
}
@keyframes priceFadeIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .price-details > summary { padding: 20px 18px; }
  .price-details > summary .section-title { font-size: 24px !important; }
  .price-details > summary .section-sub { font-size: 14px !important; }
}

/* PROCESS — kompakt */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.process-step { text-align: left; }
.process-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.9;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--color-accent);
}
.process-step p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

/* B2B GESCHÄFTSKUNDEN — saubere Feature-Grid + CTA */
.split-section { background: linear-gradient(135deg, #1d1d1f 0%, #2d2d30 100%); color: #f5f5f7; padding: 70px 24px; }
.split-section .section-title { color: white; }
.split-section .section-sub { color: rgba(245,245,247,0.7); }
.split-section .section-eyebrow { color: var(--color-accent); }

.b2b-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.b2b-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 14px;
  transition: all 0.2s var(--transition);
}
.b2b-feature:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.b2b-feature-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-accent), #5856d6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.b2b-feature-icon svg { width: 20px; height: 20px; }
.b2b-feature h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: white;
}
.b2b-feature p {
  color: rgba(245,245,247,0.7);
  font-size: 13.5px;
  line-height: 1.5;
}

.b2b-cta-card {
  background: linear-gradient(135deg, rgba(0,113,227,0.15), rgba(88,86,214,0.1));
  border: 1px solid rgba(0,113,227,0.25);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .b2b-cta-card { grid-template-columns: 1fr; padding: 24px; }
}
.b2b-cta-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 8px;
}
.b2b-cta-card p {
  color: rgba(245,245,247,0.75);
  font-size: 14.5px;
  line-height: 1.5;
}
.b2b-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* METRICS */
.metrics-section { background: var(--color-surface-2); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  text-align: center;
}
.metric-card {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
  padding: 32px 22px;
  transition: all 0.25s var(--transition);
}
.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(0, 113, 227, 0.2);
}
.metric-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-accent), #5856d6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.metric-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media (max-width: 600px) {
  .metrics-grid { gap: 12px; }
  .metric-card { padding: 24px 16px; }
}

/* ============================================
   REPAIR ORDER WIZARD
   ============================================ */
.repair-section { background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 100%); }
.repair-wizard {
  background: white;
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
}
@media (max-width: 600px) { .repair-wizard { padding: 24px 18px; border-radius: 22px; } }

.wizard-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}
.wizard-progress::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  height: 2px;
  background: var(--color-border-light);
  z-index: 0;
}
.wizard-step {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-tertiary);
  font-weight: 500;
  flex: 1;
  text-align: center;
}
.wizard-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: white;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  font-weight: 600;
  color: var(--color-text-tertiary);
  font-size: 14px;
  transition: all 0.3s var(--transition);
}
.wizard-step.active span, .wizard-step.completed span {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
}
.wizard-step.active { color: var(--color-text); }
@media (max-width: 600px) {
  .wizard-step { font-size: 0; }
  .wizard-step span { font-size: 14px; }
}

.wizard-pane { display: none; min-height: 0; }
.wizard-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.wizard-pane h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.wizard-hint { color: var(--color-text-secondary); font-size: 14px; margin-bottom: 20px; }

.device-grid, .damage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.device-card, .damage-card {
  background: var(--color-surface-2);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 20px 14px;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  font-family: inherit;
}
.device-card:hover, .damage-card:hover {
  background: white;
  border-color: var(--color-border);
}
.device-card svg { width: 32px; height: 32px; color: var(--color-accent); }
.device-card.selected, .damage-card:has(input:checked) {
  background: rgba(0,113,227,0.08);
  border-color: var(--color-accent);
}
.damage-card { padding: 14px; gap: 0; }
.damage-card input { display: none; }
.damage-card span { font-size: 13.5px; }

.model-input-wrap { margin-top: 28px; }
.model-select-wrap { margin-top: 28px; }
.model-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
}
.model-chip {
  background: var(--color-surface-2);
  border: 1px solid transparent;
  border-radius: 980px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s var(--transition);
  font-family: inherit;
  color: var(--color-text);
}
.model-chip:hover {
  background: white;
  border-color: var(--color-border);
}
.model-chip.selected {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.wizard-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.wizard-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 14px;
}
.wizard-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.1);
}
textarea.wizard-input { resize: vertical; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 500px) { .form-grid { grid-template-columns: 1fr; } }

.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 700px) { .delivery-options { grid-template-columns: 1fr; } }
.delivery-card {
  background: var(--color-surface-2);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.delivery-card:has(input:checked) {
  background: rgba(0,113,227,0.05);
  border-color: var(--color-accent);
}
.delivery-card input { display: none; }
.delivery-icon {
  width: 48px; height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}
.delivery-icon svg { width: 26px; height: 26px; }
.delivery-card strong { font-size: 16px; font-weight: 600; display: block; margin-bottom: 6px; }
.delivery-card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; margin: 0 0 10px; }
.delivery-card ul { list-style: none; padding: 0; font-size: 13px; color: var(--color-text-secondary); }
.delivery-card li { padding: 3px 0; padding-left: 18px; position: relative; }
.delivery-card li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--color-success); font-weight: 700;
}

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 14px 0;
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; flex-shrink: 0; }
.checkbox-row a { color: var(--color-accent); text-decoration: underline; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-light);
}
.wizard-nav .btn-primary { margin-left: auto; }

.confirm-screen { text-align: center; padding: 20px 0; }
.confirm-icon {
  width: 72px; height: 72px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: white;
}
.confirm-icon svg { width: 36px; height: 36px; }
.confirm-screen h3 { font-size: 28px; margin-bottom: 8px; }
.confirm-screen > p { color: var(--color-text-secondary); margin-bottom: 14px; }
.order-number {
  display: inline-block;
  font-family: ui-monospace, Menlo, Monaco, monospace;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--color-surface-2);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  margin: 16px 0 24px;
  color: var(--color-accent);
}
.confirm-text { color: var(--color-text-secondary); font-size: 15px; line-height: 1.5; max-width: 480px; margin: 0 auto 24px; }
.confirm-summary {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 24px;
  font-size: 14px;
  line-height: 1.7;
}
.confirm-summary strong { color: var(--color-text); }

/* Cross-Sell im Bestätigungsscreen */
.confirm-crosssell {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0,113,227,0.06), rgba(88,86,214,0.06));
  border: 1px solid rgba(0,113,227,0.15);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}
.confirm-crosssell-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-accent), #5856d6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.confirm-crosssell-icon svg { width: 22px; height: 22px; }
.confirm-crosssell strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}
.confirm-crosssell p {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  margin: 0 0 10px;
  line-height: 1.4;
}
.confirm-crosssell .btn {
  padding: 7px 16px;
  font-size: 13px;
}
@media (max-width: 500px) {
  .confirm-crosssell { flex-direction: column; text-align: center; }
}

/* TEAM SECTION — kompakt */
.team-section { background: var(--color-bg); padding: 70px 24px; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; gap: 30px; } }
.team-image {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  max-height: 440px;
}
.team-image img { width: 100%; height: 100%; object-fit: cover; }
.team-content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.team-content p {
  font-size: 15.5px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  line-height: 1.55;
}
.team-sig {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
  font-size: 13px;
  color: var(--color-text-tertiary);
}

/* TESTIMONIAL SLIDER */
.testimonials-section { background: var(--color-surface-2); overflow: hidden; }

/* Reviews CTA — ersetzt erfundene Testimonials */
.reviews-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 24px;
}
.review-cta-card {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s var(--transition);
}
.review-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.review-cta-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #4285f4, #34a853);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.review-cta-icon svg { width: 22px; height: 22px; }
.review-cta-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 2px;
}
.review-cta-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}
.review-trust-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--color-text-tertiary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.45;
}
/* Bei reduced-motion Animationen aus */
body.reduce-motion body.reduce-motion * {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}
/* LOCATIONS — phonedoc24-Stil, gleiche Höhe */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
}
.location-card {
  background: #f5f5f7;
  border-radius: 22px;
  padding: 40px 32px;
  border: 1px solid var(--color-border-light);
  text-align: center;
  transition: all 0.3s var(--transition);
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.location-tag {
  display: inline-block;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-text);
  min-height: 2.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.location-info {
  color: var(--color-text-secondary);
  margin-bottom: 22px;
  line-height: 1.5;
  font-size: 15px;
  min-height: 3em;
}
.location-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.location-actions a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 980px;
  background: white;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s var(--transition);
}
.location-actions a:hover {
  background: var(--color-text);
  color: white;
  border-color: var(--color-text);
}
.location-actions a.primary {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}
.location-actions a.primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}
.location-actions svg { width: 14px; height: 14px; }
.location-hours {
  font-size: 13px;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border-light);
  padding-top: 18px;
  margin-top: auto;
}
.location-hours strong { font-weight: 600; color: var(--color-text); }

/* CTA */
.cta-section { background: var(--color-text); color: white; text-align: center; }
.cta-section .section-title { color: white; }
.cta-section .section-sub { color: rgba(255,255,255,0.7); margin-left: auto; margin-right: auto; }

/* SEO CONTENT BLOCK */
.seo-content { background: var(--color-surface-2); padding-top: 70px; padding-bottom: 80px; }
.seo-content .info-cards-grid + div { margin-top: 60px; }

/* INFO CARDS — saubere Karten-Optik, 2 Spalten */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.info-card {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  transition: all 0.25s var(--transition);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.info-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 113, 227, 0.15);
  transform: translateY(-1px);
}
.info-card details[open] {
  background: var(--color-bg);
}
.info-card details {
  border: none;
  padding: 0;
}
.info-card summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: relative;
  padding: 20px 50px 20px 22px;
  line-height: 1.4;
  transition: color 0.2s;
}
.info-card summary::-webkit-details-marker { display: none; }
.info-card summary:hover { color: var(--color-accent); }
.info-card summary::after {
  content: '+';
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-text-tertiary);
  font-weight: 300;
  background: var(--color-surface-2);
  border-radius: 50%;
  transition: all 0.2s;
}
.info-card details[open] summary::after {
  content: '−';
  background: var(--color-accent);
  color: white;
}
.info-card details p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
}

/* SEO Text Blocks alte CSS — nicht mehr verwendet, aber drin lassen falls noch genutzt */
.seo-text-block {
  margin-top: 30px;
}
.seo-text-block details {
  border-bottom: 1px solid var(--color-border-light);
  padding: 18px 0;
}
.seo-text-block summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  position: relative;
  padding-right: 32px;
}
.seo-text-block summary::-webkit-details-marker { display: none; }


/* FOOTER */
footer { background: #fbfbfd; border-top: 1px solid var(--color-border-light); padding: 60px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.footer-logo { height: 40px; margin-bottom: 14px; }
.footer-tagline { color: var(--color-text-secondary); font-size: 14px; line-height: 1.55; max-width: 320px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-accent); }

/* Social Links — Hover-Effekt */
.footer-social-links {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-text-secondary);
}
.footer-social-links a {
  text-decoration: none;
  color: var(--color-text);
  margin-right: 14px;
  position: relative;
  transition: color 0.2s;
  display: inline-block;
}
.footer-social-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width 0.25s var(--transition);
}
.footer-social-links a:hover {
  color: var(--color-accent);
}
.footer-social-links a:hover::after {
  width: 100%;
}

.footer-shop-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--color-text);
  color: white;
  text-decoration: none;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s var(--transition);
}
.footer-shop-btn:hover {
  background: var(--color-accent) !important;
  color: white !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* E-Mail Button im CTA — Hover */
.cta-section .btn-ghost {
  background: rgba(255,255,255,0.1) !important;
  color: white !important;
  transition: all 0.2s var(--transition);
}
.cta-section .btn-ghost:hover {
  background: rgba(255,255,255,0.2) !important;
  transform: translateY(-1px);
}
.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  font-size: 12px; color: var(--color-text-tertiary); gap: 16px;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: flex-start; justify-content: center;
  padding: 60px 24px;
  overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 820px;
  width: 100%;
  padding: 44px;
  position: relative;
  margin: auto;
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.modal h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  margin: 22px 0 8px;
}
.modal p, .modal li { font-size: 14.5px; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 10px; }
.modal ul, .modal ol { margin-left: 20px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--color-surface-2); border: none;
  width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.modal-disclaimer {
  background: #fff3cd;
  border-left: 4px solid var(--color-warning);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  font-size: 13.5px;
  color: #856404;
  line-height: 1.5;
}

/* DASHBOARD PANEL */
.dash-panel {
  position: fixed; top: 0; right: -480px;
  width: 460px; height: 100vh;
  background: white;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  z-index: 950;
  transition: right 0.4s var(--transition);
  overflow-y: auto;
  border-left: 1px solid var(--color-border-light);
}
.dash-panel.open { right: 0; }
.dash-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--color-border-light);
  position: sticky; top: 0;
  background: rgb(255,255,255);
  z-index: 10;
}
.dash-header h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.dash-tabs { display: flex; gap: 4px; margin-top: 14px; background: var(--color-surface-2); padding: 3px; border-radius: 10px; }
.dash-tab {
  flex: 1; padding: 8px; border: none;
  background: transparent; border-radius: 8px;
  font-size: 12.5px; font-weight: 500;
  cursor: pointer; color: var(--color-text-secondary);
}
.dash-tab.active { background: white; color: var(--color-text); box-shadow: var(--shadow-sm); }
.dash-content { padding: 22px; }
.dash-pane { display: none; }
.dash-pane.active { display: block; }
.dash-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
}
.dash-card-title { font-size: 11px; font-weight: 600; color: var(--color-text-secondary); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.dash-card-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.dash-card-value.good { color: var(--color-success); }
.dash-card-value.warn { color: var(--color-warning); }
.dash-card-value.bad { color: var(--color-danger); }
.dash-card-sub { font-size: 12.5px; color: var(--color-text-tertiary); margin-top: 4px; }

.seo-score-ring { position: relative; width: 140px; height: 140px; margin: 0 auto 14px; }
.seo-score-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.02em;
}
.dash-list { list-style: none; }
.dash-list li {
  padding: 11px 14px;
  background: var(--color-surface-2);
  border-radius: var(--radius-sm);
  margin-bottom: 7px;
  font-size: 12.5px;
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.dash-list .icon-ok { color: var(--color-success); font-weight: 700; flex-shrink: 0; }
.dash-list .icon-warn { color: var(--color-warning); font-weight: 700; flex-shrink: 0; }
.dash-list .icon-bad { color: var(--color-danger); font-weight: 700; flex-shrink: 0; }

.keyword-bar { background: var(--color-surface-2); border-radius: var(--radius-sm); padding: 11px 14px; margin-bottom: 7px; font-size: 12.5px; }
.keyword-bar-top { display: flex; justify-content: space-between; margin-bottom: 5px; }
.keyword-bar-meter { height: 4px; background: var(--color-border-light); border-radius: 2px; overflow: hidden; }
.keyword-bar-fill { height: 100%; background: var(--color-accent); border-radius: 2px; transition: width 0.4s; }

.dash-section-title { font-size: 11px; font-weight: 700; color: var(--color-text-tertiary); text-transform: uppercase; letter-spacing: 0.07em; margin: 18px 0 9px; }

.dash-input, .dash-textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 13.5px;
  margin-bottom: 8px;
}
.dash-textarea { min-height: 70px; resize: vertical; font-size: 12.5px; }
.dash-label { font-size: 11.5px; font-weight: 600; color: var(--color-text-secondary); display: block; margin-bottom: 4px; margin-top: 10px; }

.dash-btn-full {
  width: 100%; padding: 11px;
  background: var(--color-accent); color: white;
  border: none; border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500; cursor: pointer; margin-top: 6px;
}
.dash-btn-full:hover { background: var(--color-accent-hover); }
.dash-btn-secondary {
  width: 100%; padding: 9px;
  background: var(--color-surface-2); color: var(--color-text);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  font-size: 12.5px; cursor: pointer; margin-top: 5px;
}

/* Eco-Banner — dezent, hochwertig */
.eco-banner {
  background: linear-gradient(180deg, #f5f5f7 0%, #ececef 100%);
  padding: 22px 24px;
  text-align: center;
  font-size: 14.5px;
  color: var(--color-text);
  font-weight: 500;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  letter-spacing: -0.01em;
}
.eco-banner .leaf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--color-eco);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: -7px;
}
.eco-banner .leaf svg { width: 14px; height: 14px; color: white; }
.eco-banner strong { color: var(--color-eco); }

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--color-text); color: white;
  padding: 12px 22px;
  border-radius: 980px;
  font-size: 14px; z-index: 3000;
  transition: transform 0.3s var(--transition);
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================
   FLOATING BUTTONS (WhatsApp + Scroll-Top)
   ============================================ */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 110px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: all 0.25s var(--transition);
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.float-btn:active { transform: scale(0.96); }
.float-top {
  background: var(--color-text);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.float-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-top svg { width: 22px; height: 22px; }
@media (max-width: 600px) {
  .float-actions { right: 16px; bottom: 88px; }
  .float-btn { width: 44px; height: 44px; }
  .float-top svg { width: 20px; height: 20px; }
}

/* ============================================
   LOGIN MODAL
   ============================================ */
.login-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 4000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-overlay.active { display: flex; }
.login-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.login-box img {
  height: 48px;
  width: auto;
  margin: 0 auto 16px;
}
.login-box h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.login-box p {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 24px;
}
.login-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: border-color 0.2s;
}
.login-input:focus { outline: none; border-color: var(--color-accent); }
.login-error {
  color: var(--color-danger);
  font-size: 13px;
  margin-bottom: 12px;
  min-height: 18px;
}
.login-btn {
  width: 100%;
  padding: 13px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.login-btn:hover { background: var(--color-accent-hover); }
.login-hint {
  margin-top: 18px;
  font-size: 12px;
  color: var(--color-text-tertiary);
  line-height: 1.5;
}
.login-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.1); color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 600px) {
  section { padding: 70px 16px; }
  .hero { padding: 110px 16px 60px; }
  .dash-panel { width: 100%; right: -100%; }
  .price-table th, .price-table td { padding: 12px 14px; font-size: 13.5px; }
  .modal { padding: 28px 22px; }
}

/* Cookie / Speicher Banner */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 18px 20px;
  z-index: 5000;
  animation: cookieBannerSlideUp 0.4s var(--transition);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 4900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.25s var(--transition);
  white-space: nowrap;
}
.whatsapp-float:hover {
  background: #1ebd5b;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.2);
}
.whatsapp-float:active { transform: translateY(0); }
.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.whatsapp-float-text {
  display: inline-block;
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 11px 18px 11px 14px;
    font-size: 14px;
    gap: 6px;
  }
  .whatsapp-float svg { width: 22px; height: 22px; }
}
/* Auf sehr kleinen Bildschirmen Text ausblenden für mehr Platz */
@media (max-width: 380px) {
  .whatsapp-float {
    padding: 12px;
    width: 52px;
    height: 52px;
    justify-content: center;
    border-radius: 50%;
  }
  .whatsapp-float-text { display: none; }
}
/* Wenn Cookie-Banner sichtbar ist, Buttons etwas höher */
.cookie-banner ~ .whatsapp-float,
.cookie-banner:not([style*="display:none"]) ~ .whatsapp-float {
  bottom: 120px;
}
.cookie-banner ~ .float-actions,
.cookie-banner:not([style*="display:none"]) ~ .float-actions {
  bottom: 188px;
}
@media (max-width: 600px) {
  .cookie-banner ~ .whatsapp-float {
    bottom: 160px;
  }
  .cookie-banner ~ .float-actions {
    bottom: 220px;
  }
}
/* Bei kleinen Screens nur Icon, kein Text */
@media (max-width: 400px) {
  .whatsapp-float-text { display: none; }
  .whatsapp-float {
    padding: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
}
@keyframes cookieBannerSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text strong {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}
.cookie-banner-text p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--color-text-secondary);
  margin: 0;
}
.cookie-banner-text a { color: var(--color-accent); text-decoration: underline; }
.cookie-banner .btn {
  font-size: 13.5px;
  padding: 9px 18px;
  white-space: nowrap;
}
/* Breadcrumb */
.breadcrumb {
  background: var(--color-bg);
  padding: 12px 24px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: 13px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  color: var(--color-text-tertiary);
}
.breadcrumb-inner a {
  color: var(--color-accent);
  text-decoration: none;
}
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner span { margin: 0 8px; opacity: 0.5; }

/* ============================================
   v6 — Header WhatsApp + Mobile Kompression + Bildschutz
   ============================================ */

/* Wegbeschreibung dezenter (war: schwarzer CTA) */
.nav-link-subtle {
  color: var(--color-text-secondary) !important;
  font-weight: 500;
  font-size: 13.5px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s var(--transition);
  white-space: nowrap;
}
.nav-link-subtle:hover {
  color: var(--color-text) !important;
  background: var(--color-surface-2);
}

/* WhatsApp-Button im Header */
.nav-cta-whatsapp {
  background: #25D366 !important;
  color: white !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 14px !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  transition: all 0.2s var(--transition);
}
.nav-cta-whatsapp:hover {
  background: #1ebd5b !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

@media (max-width: 900px) {
  .nav-link-subtle { display: none; }
}

/* Scroll-Top zurück an alten Platz (allein, unten rechts) */
.float-actions {
  bottom: 22px !important;
}
@media (max-width: 600px) {
  .float-actions { bottom: 16px !important; }
}

/* Bildschutz */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

/* ============================================
   MOBILE KOMPRESSION
   ============================================ */
@media (max-width: 768px) {

  /* Hero kompakter (3cm weniger oben) */
  .hero {
    padding: 30px 16px 28px !important;
  }
  .hero h1 {
    font-size: clamp(28px, 7vw, 38px) !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
  }
  .hero-eyebrow { margin-bottom: 10px !important; font-size: 11.5px !important; }
  .hero-sub { font-size: 14px !important; margin-bottom: 16px !important; line-height: 1.4 !important; }
  .hero-ctas { gap: 8px !important; margin-bottom: 14px !important; }
  .hero-ctas .btn { padding: 11px 18px !important; font-size: 13.5px !important; }
  .hero-express-note { font-size: 12.5px !important; margin-bottom: 16px !important; }

  /* Wertgarantie-Banner kompakter */
  .wg-banner {
    padding: 10px 14px !important;
    margin-bottom: 18px !important;
    gap: 10px !important;
  }
  .wg-banner-icon { width: 32px !important; height: 32px !important; }
  .wg-banner-icon svg { width: 16px !important; height: 16px !important; }
  .wg-banner-text strong { font-size: 13px !important; }
  .wg-banner-text span { font-size: 11.5px !important; }

  /* Trust-Boxen (12 Monate, Express, Festpreis, Ankauf) kompakter */
  .hero-trust-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }
  .trust-box {
    padding: 14px 10px !important;
  }
  .trust-icon {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 6px !important;
  }
  .trust-icon svg { width: 16px !important; height: 16px !important; }
  .trust-title { font-size: 13px !important; margin-bottom: 4px !important; }
  .trust-text { font-size: 11.5px !important; line-height: 1.35 !important; }

  /* Statistik-Karten (15+, 10.000+) deutlich kleiner */
  .metrics-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .metrics-section .section-inner {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .metric-card {
    padding: 16px 10px !important;
    border-radius: 12px !important;
  }
  .metric-num {
    font-size: clamp(24px, 7vw, 30px) !important;
    margin-bottom: 4px !important;
  }
  .metric-label {
    font-size: 11.5px !important;
    line-height: 1.3 !important;
  }

  /* Generelle Section-Padding kürzen */
  section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .section-inner {
    padding: 0 16px !important;
  }
  .section-title {
    font-size: clamp(22px, 6vw, 30px) !important;
    margin-bottom: 8px !important;
  }
  .section-sub {
    font-size: 13.5px !important;
    margin-bottom: 20px !important;
  }
  .section-eyebrow {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  /* Aus Leidenschaft / Story-Strip — Foto kleiner */
  .story-image,
  .feature-image,
  .about-image {
    max-height: 240px !important;
    object-fit: cover !important;
  }
  .feature-section {
    padding: 36px 16px !important;
  }
  .feature-grid {
    gap: 18px !important;
  }

  /* Service-Karten ("Wir kaufen dein...") kompakter */
  .service-grid,
  .leistung-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .service-card,
  .leistung-card {
    padding: 18px !important;
  }

  /* B2B kompakter */
  .b2b-section,
  #b2b {
    padding: 36px 16px !important;
  }

  /* Standorte / Filialen kompakter */
  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .location-card {
    padding: 18px !important;
  }
  .location-card h3 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  .location-info,
  .location-hours {
    font-size: 13px !important;
  }
  .location-actions {
    gap: 6px !important;
    margin-top: 12px !important;
  }
  .location-actions a {
    font-size: 12.5px !important;
    padding: 8px 12px !important;
  }

  /* Reparatur-Wizard kompakter */
  .repair-section { padding: 36px 16px !important; }
  .repair-wizard { padding: 18px !important; }

  /* Wertgarantie-Sektion */
  .wg-section {
    padding: 36px 16px !important;
  }
  .wg-section-grid {
    gap: 20px !important;
  }
  .wg-benefits {
    gap: 10px !important;
    margin: 14px 0 !important;
  }
  .wg-benefit strong { font-size: 13.5px !important; }
  .wg-benefit p { font-size: 12.5px !important; }
  .wg-shield-card {
    padding: 24px 18px !important;
    max-width: 100% !important;
  }
  .wg-shield-icon { width: 56px !important; height: 56px !important; margin-bottom: 12px !important; }
  .wg-shield-icon svg { width: 28px !important; height: 28px !important; }
  .wg-shield-text { font-size: 15px !important; }
  .wg-shield-price { font-size: 13px !important; }
  .wg-shield-price strong { font-size: 18px !important; }

  /* Process-Steps (4 Schritte) kompakter */
  .process-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .process-step {
    padding: 14px 12px !important;
  }
  .process-num {
    width: 32px !important;
    height: 32px !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  .process-step h3 {
    font-size: 14px !important;
    margin-bottom: 4px !important;
  }
  .process-step p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* FAQ Info-Cards kompakter */
  .info-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .info-card summary {
    padding: 14px 44px 14px 16px !important;
    font-size: 13.5px !important;
  }
  .info-card summary::after {
    right: 14px !important;
    width: 24px !important;
    height: 24px !important;
    font-size: 18px !important;
  }
  .info-card details p {
    padding: 0 16px 16px !important;
    font-size: 13px !important;
  }

  /* SEO-Content Section */
  .seo-content {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .seo-content .info-cards-grid + div {
    margin-top: 30px !important;
  }

  /* Footer viel kompakter */
  footer {
    padding: 28px 16px 18px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
  }
  .footer-col h4 {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  .footer-col ul {
    font-size: 12px !important;
  }
  .footer-col ul li {
    margin-bottom: 4px !important;
  }
  .footer-col p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  .footer-logo-text {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  .footer-bottom {
    font-size: 11px !important;
    padding-top: 16px !important;
    margin-top: 18px !important;
  }
}

/* Sehr kleine Bildschirme: Footer 1-spaltig */
@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Wertgarantie Mobile-Collapse */
.wg-mobile-collapse {
  /* Desktop: nichts machen, immer offen */
}
.wg-mobile-collapse > summary {
  display: none;
}
@media (max-width: 768px) {
  .wg-mobile-collapse {
    border: 1px solid rgba(2, 132, 199, 0.25);
    border-radius: 12px;
    background: white;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .wg-mobile-collapse > summary {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: #0c4a6e;
    list-style: none;
  }
  .wg-mobile-collapse > summary::-webkit-details-marker { display: none; }
  .wg-toggle-icon {
    width: 22px; height: 22px;
    background: #0284c7;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
  }
  .wg-mobile-collapse[open] .wg-toggle-icon {
    transform: rotate(45deg);
  }
  .wg-mobile-collapse > .wg-benefits {
    padding: 0 12px 12px;
  }
  /* Wertgarantie-Sektion: Visual auf Mobile ausblenden um Platz zu sparen */
  .wg-section-visual { display: none !important; }
  .wg-section-grid { grid-template-columns: 1fr !important; }
}

/* ============================================
   v7 — Widerrufs-Button (§ 356a BGB)
   ============================================ */
.footer-widerruf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1.5px solid #f59e0b;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-widerruf-text {
  flex: 1;
  min-width: 220px;
}
.footer-widerruf-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #78350f;
  margin-bottom: 4px;
}
.footer-widerruf-text span {
  display: block;
  font-size: 13px;
  color: #92400e;
  line-height: 1.4;
}
.footer-widerruf-btn {
  background: #d97706 !important;
  color: white !important;
  padding: 11px 22px !important;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px !important;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s var(--transition);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.25);
}
.footer-widerruf-btn:hover {
  background: #b45309 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}
@media (max-width: 600px) {
  .footer-widerruf {
    padding: 14px 16px;
    gap: 12px;
  }
  .footer-widerruf-text strong { font-size: 14px !important; }
  .footer-widerruf-text span { font-size: 12px !important; }
  .footer-widerruf-btn {
    width: 100%;
    text-align: center;
    padding: 11px 18px !important;
  }
}

/* ============================================
   v8 — Legal-Seiten (Impressum, Datenschutz, AGB, Widerruf-Batterie)
   ============================================ */
.legal-section {
  background: var(--color-surface-2);
  padding: 50px 16px 60px;
  min-height: 70vh;
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 18px;
  padding: 44px 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .legal-section { padding: 28px 12px 36px; }
  .legal-container { padding: 26px 22px; border-radius: 14px; }
}
.legal-container h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  line-height: 1.15;
}
.legal-container .legal-lead {
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 32px;
}
.legal-block {
  margin-bottom: 32px;
  padding-bottom: 4px;
}
.legal-block:last-child {
  margin-bottom: 0;
}
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-light);
}
.legal-block h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin: 22px 0 8px;
}
.legal-block p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text);
  margin: 0 0 12px;
}
.legal-block ul, .legal-block ol {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--color-text);
  padding-left: 24px;
  margin: 0 0 12px;
}
.legal-block li {
  margin-bottom: 5px;
}
.legal-block a {
  color: var(--color-accent);
  text-decoration: none;
}
.legal-block a:hover {
  text-decoration: underline;
}
.legal-cta-box {
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
  border: 1.5px solid #f59e0b;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 32px;
}
.legal-cta-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: #78350f;
  margin-bottom: 6px;
}
.legal-cta-box p {
  font-size: 13.5px;
  color: #92400e;
  margin: 0 0 6px;
  line-height: 1.45;
}
.legal-cta-box .btn {
  background: #d97706;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
}
.legal-cta-box .btn:hover {
  background: #b45309;
  text-decoration: none;
}

/* Kompakter Footer auf Legal-Seiten */
.legal-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.65);
  padding: 28px 16px;
}
.legal-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.legal-footer-nav {
  font-size: 13px;
  margin-bottom: 14px;
}
.legal-footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin: 0 4px;
}
.legal-footer-nav a:hover {
  color: white;
}
.legal-footer .footer-bottom {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.legal-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   v9 — Mobile Verschlankung + Sticky Bottom Bar
   ============================================ */

/* Hilfsklassen */
.mobile-only { display: none; }
.desktop-only { display: block; }
@media (max-width: 768px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  .hide-on-mobile { display: none !important; }
}

/* === STICKY BOTTOM BAR (Mobile only) === */
.sticky-bottom-bar {
  display: none;
}
@media (max-width: 768px) {
  .sticky-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4800;
    background: white;
    border-top: 1px solid var(--color-border-light);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
  }
  .sticky-bottom-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.15s;
  }
  .sticky-bottom-bar a:active {
    background: var(--color-surface-2);
  }
  .sticky-bottom-bar a .icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface-2);
  }
  .sticky-bottom-bar a svg {
    width: 18px;
    height: 18px;
  }
  .sticky-bottom-bar a.primary .icon-wrap {
    background: var(--color-accent);
    color: white;
  }
  .sticky-bottom-bar a.wa .icon-wrap {
    background: #25D366;
    color: white;
  }
  /* Buttons höher schieben damit sie nicht von Bottom-Bar verdeckt werden */
  .float-actions { bottom: 80px !important; }
  body { padding-bottom: 68px; }
  footer { margin-bottom: 0 !important; }
}

/* === MOBILE: Sektionen ausblenden / vereinfachen === */
@media (max-width: 768px) {
  /* Story / "Aus Leidenschaft" → ausblenden */
  .story-strip,
  #story,
  .about-story-section { display: none !important; }
  
  /* "Was uns ausmacht" FAQ-Bereich ausblenden */
  .seo-content > .section-inner > div:nth-of-type(2) { display: none; }
  
  /* B2B → kompakter */
  #b2b, .b2b-section {
    padding: 30px 16px !important;
  }
  #b2b h2, .b2b-section h2 {
    font-size: 20px !important;
  }
  
  /* Statistik-Karten → schmaler */
  .metrics-section {
    padding: 24px 16px !important;
  }
  
  /* Mobile-Quick-Actions Buttons unter dem Hero */
  .mobile-quick-cta {
    display: flex;
    gap: 8px;
    margin: 16px 0 8px;
    padding: 0;
  }
  .mobile-quick-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 14px;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.25);
  }
  .mobile-quick-cta a.secondary {
    background: var(--color-text);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
  .mobile-quick-cta a svg {
    width: 18px; height: 18px;
  }
  
  /* Mobile-Leistungen als 2x2 Tile-Grid */
  .mobile-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
  }
  .mobile-services-grid a {
    background: white;
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s;
  }
  .mobile-services-grid a:active {
    background: var(--color-surface-2);
    transform: scale(0.98);
  }
  .mobile-services-grid .tile-icon {
    font-size: 28px;
    margin-bottom: 6px;
    display: block;
  }
  .mobile-services-grid .tile-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .mobile-services-grid .tile-hint {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-top: 2px;
  }
}

/* Auf Mobile: Bottom-Bar Footer wegrechnen */
@media (max-width: 768px) {
  .legal-footer { margin-bottom: 0; }
}

/* ============================================
   v10 — Mobile Drastisch Kompakt
   ============================================ */

@media (max-width: 768px) {
  /* === STORY (Aus Leidenschaft) komplett verstecken === */
  .team-section,
  section.team-section { display: none !important; }

  /* === SERVICE-CARDS ("Alles was dein Gerät braucht") deutlich kleiner === */
  #leistungen { padding: 30px 12px !important; }
  #leistungen .section-inner { padding: 0 !important; }
  
  #leistungen .service-grid,
  #leistungen .grid-services,
  #leistungen [class*="grid"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  #leistungen .service-card,
  .service-card {
    padding: 14px 10px !important;
    border-radius: 12px !important;
  }
  #leistungen .service-card h3,
  .service-card h3 {
    font-size: 14px !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }
  #leistungen .service-card p,
  .service-card p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    display: -webkit-box !important;
    overflow: hidden !important;
  }
  #leistungen .service-card .icon,
  .service-card .icon,
  .service-card svg {
    width: 26px !important;
    height: 26px !important;
    margin-bottom: 6px !important;
  }
  
  /* === WERTGARANTIE SEKTION: nur Headline + Button === */
  .wg-section { padding: 30px 16px !important; }
  .wg-section .section-title {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }
  .wg-section .section-sub,
  .wg-section .wg-benefits,
  .wg-section .wg-mobile-collapse,
  .wg-section .wg-trust-badge,
  .wg-section-visual {
    display: none !important;
  }
  .wg-section .wg-section-cta {
    margin-top: 8px !important;
  }
  .wg-section .wg-section-cta .btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px !important;
    font-size: 14.5px !important;
  }

  /* === "In 3 Schritten zum Festpreis" === */
  /* Process / Steps Section auf Mobile kompakt */
  .process-section,
  section[class*="process"],
  .steps-section { padding: 28px 14px !important; }
  
  .process-grid,
  .steps-grid,
  .three-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .process-step,
  .step-item,
  .three-step {
    padding: 12px 14px !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 12px !important;
  }
  .process-step .process-num,
  .step-item .step-num,
  .three-step .step-num {
    width: 32px !important;
    height: 32px !important;
    font-size: 14px !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
  }
  .process-step h3,
  .step-item h3,
  .three-step h3 {
    font-size: 14px !important;
    margin: 0 0 2px !important;
  }
  .process-step p,
  .step-item p,
  .three-step p {
    font-size: 12px !important;
    line-height: 1.35 !important;
    margin: 0 !important;
  }

  /* === "Wir kaufen dein Gerät" / Ankauf-Sektion === */
  #ankauf, .ankauf-section { padding: 30px 14px !important; }
  #ankauf .section-title, .ankauf-section .section-title { font-size: 22px !important; }
  #ankauf .section-sub, .ankauf-section .section-sub { font-size: 13px !important; }
  #ankauf .grid, #ankauf [class*="grid"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  #ankauf .ankauf-card, .ankauf-card,
  #ankauf .feature-card, .feature-card {
    padding: 12px 10px !important;
  }
  #ankauf h3, .ankauf-card h3, .feature-card h3 {
    font-size: 13.5px !important;
    margin-bottom: 4px !important;
  }
  #ankauf p, .ankauf-card p, .feature-card p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }

  /* === B2B-Sektion === */
  #b2b, .b2b-section { padding: 30px 14px !important; }
  #b2b .section-title, .b2b-section .section-title { font-size: 22px !important; }
  #b2b .section-sub, .b2b-section .section-sub { font-size: 13px !important; }
  #b2b .grid, #b2b [class*="grid"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  #b2b .b2b-card, .b2b-card {
    padding: 12px 10px !important;
  }
  #b2b h3, .b2b-card h3 {
    font-size: 13px !important;
  }
  #b2b p, .b2b-card p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
  }
  /* B2B CTA-Box kompakter */
  #b2b .b2b-cta, .b2b-cta {
    padding: 14px !important;
    margin-top: 14px !important;
  }
  #b2b .b2b-cta h3, .b2b-cta h3 {
    font-size: 15px !important;
  }

  /* === STANDORTE (alt, ungenutzt) === */
  .locations-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .location-card {
    padding: 14px 14px !important;
    border-radius: 12px !important;
  }
  .location-card .location-tag {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }
  .location-card h3 {
    font-size: 17px !important;
    margin-bottom: 4px !important;
  }
  .location-card .location-info {
    font-size: 12.5px !important;
    margin-bottom: 8px !important;
  }
  .location-card .location-actions {
    gap: 5px !important;
    flex-wrap: wrap;
    margin-bottom: 8px !important;
  }
  .location-card .location-actions a {
    padding: 7px 11px !important;
    font-size: 11.5px !important;
    flex: 1 1 30%;
  }
  .location-card .location-actions a svg {
    width: 13px !important;
    height: 13px !important;
  }
  .location-card .location-hours {
    font-size: 11.5px !important;
    margin-top: 6px !important;
  }

  /* === FOOTER kompakter === */
  footer {
    padding: 20px 14px 14px !important;
  }
  footer .footer-widerruf {
    padding: 10px 14px !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
  }
  footer .footer-widerruf-text strong {
    font-size: 13px !important;
  }
  footer .footer-widerruf-text span {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
  footer .footer-widerruf-btn {
    padding: 9px 14px !important;
    font-size: 12px !important;
    width: 100%;
    text-align: center;
  }
  footer .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
  }
  footer .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
  footer .footer-logo-text { font-size: 16px !important; margin-bottom: 4px !important; }
  footer .footer-tagline,
  footer p { font-size: 11.5px !important; line-height: 1.4 !important; margin-bottom: 6px !important; }
  footer .footer-social-links { font-size: 12px !important; margin: 8px 0 !important; }
  footer .footer-shop-btn { font-size: 12px !important; padding: 8px 12px !important; }
  footer h4 {
    font-size: 12px !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.04em !important;
  }
  footer .footer-col a {
    font-size: 11.5px !important;
    padding: 2px 0 !important;
    line-height: 1.4 !important;
  }
  footer .footer-bottom {
    font-size: 10.5px !important;
    padding-top: 10px !important;
    margin-top: 14px !important;
    line-height: 1.4 !important;
  }
  
  /* Show fewer footer items on mobile — hide some columns */
  footer .footer-col:nth-of-type(2),
  footer .footer-col:nth-of-type(3) {
    /* Reparatur Hamburg + Service - kompakter, max 4 Items */
  }
  footer .footer-col a:nth-of-type(n+5) {
    display: none;
  }
  /* Rechtliches-Spalte: alle anzeigen (wichtig!) */
  footer .footer-col:nth-of-type(5) a {
    display: block !important;
  }

  /* Preis-Tabelle auf Mobile besser sichtbar */
  .price-table-container,
  #preise table,
  .preisliste-table {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 0 -14px !important;
    padding: 0 14px !important;
  }
  #preise { padding: 28px 14px !important; }
  #preise .section-title { font-size: 22px !important; }
  #preise table { font-size: 12px !important; }
  #preise th, #preise td { padding: 8px 10px !important; }
}

/* Preise-Sektion: ankerbar (für Scroll von Buttons) */
section#preise { scroll-margin-top: 80px; }

/* ============================================
   v11 — Mobile Final Polish
   ============================================ */

@media (max-width: 768px) {
  /* "Dein Gerät wartet" Kontakt-CTA komplett ausblenden auf Mobile */
  #kontakt,
  section#kontakt,
  .cta-section { display: none !important; }
}

/* === B2B Collapse (Desktop offen, Mobile zugeklappt) === */
.b2b-collapse summary {
  list-style: none;
  cursor: default;
}
.b2b-collapse summary::-webkit-details-marker { display: none; }
.b2b-mobile-tap { display: none; }

@media (max-width: 768px) {
  .b2b-collapse[open] .b2b-mobile-tap { display: none; }
  .b2b-collapse:not([open]) .b2b-mobile-tap {
    display: inline-block;
    margin-top: 10px;
    color: var(--color-accent);
    font-size: 13px;
    font-weight: 700;
  }
  .b2b-collapse summary {
    cursor: pointer;
    padding: 4px;
    border-radius: 14px;
    transition: background 0.15s;
  }
  .b2b-collapse summary:active {
    background: var(--color-surface-2);
  }
  .b2b-collapse:not([open]) .b2b-desktop-sub { display: none; }
  .b2b-collapse:not([open]) summary > div {
    margin-bottom: 0 !important;
  }
}

/* === Ankauf-Cards alle gleich hoch === */
#ankauf .services-grid {
  align-items: stretch;
}
#ankauf .service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#ankauf .service-card h3 {
  min-height: 24px;
}
#ankauf .service-card p {
  flex: 1;
}
@media (max-width: 768px) {
  #ankauf .services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  #ankauf .service-card {
    padding: 14px 12px !important;
    min-height: 0;
  }
  #ankauf .service-card .service-icon {
    width: 36px !important;
    height: 36px !important;
  }
  #ankauf .service-card h3 {
    font-size: 14px !important;
    margin: 8px 0 4px !important;
    min-height: 36px;
    line-height: 1.2 !important;
  }
  #ankauf .service-card p {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 8px !important;
  }
  #ankauf .service-card .price {
    font-size: 12px !important;
    padding-top: 8px !important;
    border-top: 1px solid var(--color-border-light);
  }
  #ankauf .service-card .price strong {
    font-size: 15px !important;
  }
  #ankauf .service-badge {
    font-size: 10px !important;
    padding: 3px 7px !important;
  }
}

/* === Preis-Tabelle auf Mobile (vollständig sichtbar, lesbar) === */
@media (max-width: 768px) {
  #preise .price-table-wrap,
  #preise [class*="table-wrap"],
  #preise [class*="table-scroll"] {
    overflow-x: visible !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #preise table {
    width: 100% !important;
    table-layout: fixed !important;
    font-size: 12px !important;
  }
  #preise table th,
  #preise table td {
    padding: 8px 6px !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  /* Erste Spalte (Modellname) breiter */
  #preise table th:first-child,
  #preise table td:first-child {
    width: 38% !important;
    text-align: left !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding-left: 10px !important;
  }
  /* Andere Spalten kompakter */
  #preise table th:not(:first-child),
  #preise table td:not(:first-child) {
    width: 20.5% !important;
    text-align: right !important;
    padding-right: 8px !important;
    font-size: 12px !important;
  }
  #preise table th {
    font-size: 10.5px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase;
  }
  #preise table .model {
    font-size: 12px !important;
    line-height: 1.25 !important;
  }
  /* Tab-Buttons (iPhone/Samsung/MacBook) */
  #preise .tabs,
  #preise .price-tabs {
    flex-wrap: wrap !important;
    gap: 6px !important;
    padding: 6px !important;
  }
  #preise .tabs button,
  #preise .price-tabs button {
    flex: 1 1 calc(50% - 4px) !important;
    font-size: 13px !important;
    padding: 8px 4px !important;
  }
}

/* === Wizard: 2 Geräte pro Reihe auf Mobile === */
@media (max-width: 768px) {
  .wizard-device-grid,
  #wizardStep1 .device-grid,
  #wizardStep1 [class*="grid"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .wizard-device-card,
  #wizardStep1 .device-card,
  #wizardStep1 button[type="button"] {
    padding: 14px 8px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
    min-height: 0 !important;
  }
  .wizard-device-card svg,
  #wizardStep1 button svg {
    width: 28px !important;
    height: 28px !important;
    margin: 0 auto !important;
  }
  .wizard-device-card span,
  .wizard-device-card .device-name,
  #wizardStep1 button span {
    font-size: 13px !important;
  }
}

/* ============================================
   v11.2 — Preis-Tabelle Mobile Fix (sauber)
   ============================================ */
@media (max-width: 768px) {
  /* Container braucht keinen overflow, Tabelle passt sich an */
  #preise .price-section-card,
  #preise .price-details-inner,
  #preise .price-table-wrap {
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  
  /* Tabelle in Box passend, ohne Überlauf */
  #preise .price-table {
    width: 100% !important;
    table-layout: auto !important;
    border-collapse: collapse !important;
    margin: 0 !important;
  }
  
  /* Erste Spalte: Modellname - mehr Platz, links bündig, klein aber lesbar */
  #preise .price-table th:first-child,
  #preise .price-table td:first-child {
    width: auto !important;
    text-align: left !important;
    padding: 10px 6px 10px 12px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
    line-height: 1.3 !important;
  }
  
  /* Wert-Spalten: schmaler, rechts bündig */
  #preise .price-table th:not(:first-child),
  #preise .price-table td:not(:first-child) {
    width: 22% !important;
    text-align: center !important;
    padding: 10px 4px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
  }
  
  /* Header-Zeile: kleiner */
  #preise .price-table thead th {
    font-size: 10px !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: var(--color-text-secondary) !important;
    padding: 8px 4px !important;
    font-weight: 600 !important;
  }
  #preise .price-table thead th:first-child {
    padding-left: 12px !important;
    font-size: 10px !important;
  }
  
  /* Reihen-Border feiner */
  #preise .price-table tbody tr {
    border-bottom: 1px solid var(--color-border-light) !important;
  }
  #preise .price-table tbody tr:last-child {
    border-bottom: none !important;
  }
  
  /* Tab-Buttons als ein cleaner Reihe (kein Wrapping mehr) */
  #preise .price-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 4px !important;
    padding: 4px !important;
    margin-bottom: 16px !important;
    background: var(--color-surface-2) !important;
    border-radius: 999px !important;
    scrollbar-width: none !important;
  }
  #preise .price-tabs::-webkit-scrollbar { display: none !important; }
  
  #preise .price-tab {
    flex: 0 0 auto !important;
    padding: 8px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    border-radius: 999px !important;
    background: transparent !important;
    border: none !important;
    color: var(--color-text-secondary) !important;
  }
  #preise .price-tab.active {
    background: var(--color-accent) !important;
    color: white !important;
  }
  
  /* Preise-Card Container */
  #preise .price-details {
    margin: 0 !important;
  }
  #preise .price-details-inner {
    padding: 0 !important;
  }
  
  /* Auf-Anfrage-Texte kleiner */
  #preise .price-table td:not(:first-child) {
    font-variant-numeric: tabular-nums !important;
  }
  
  /* Section Padding */
  #preise.price-section {
    padding: 24px 12px 32px !important;
  }
}

/* ============================================
   v11.3 — Process-Steps: kompakt, Zahl links neben Titel
   ============================================ */
@media (max-width: 768px) {
  #prozess { padding: 24px 14px 28px !important; }
  #prozess .section-eyebrow { margin-bottom: 6px !important; font-size: 11px !important; }
  #prozess .section-title { font-size: 22px !important; margin-bottom: 6px !important; }
  #prozess .section-sub { font-size: 13px !important; margin-bottom: 18px !important; line-height: 1.4 !important; }
  
  #prozess .process-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 12px !important;
  }
  
  /* Jeder Schritt: Zahl links, Inhalt rechts */
  #prozess .process-step {
    display: grid !important;
    grid-template-columns: 32px 1fr !important;
    grid-template-areas: 
      "num title"
      "num desc" !important;
    column-gap: 12px !important;
    row-gap: 2px !important;
    padding: 12px 14px !important;
    background: white !important;
    border: 1px solid var(--color-border-light) !important;
    border-radius: 12px !important;
    text-align: left !important;
    align-items: start !important;
  }
  
  #prozess .process-step .process-num {
    grid-area: num !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background: var(--color-accent) !important;
    color: white !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-display) !important;
    align-self: center !important;
    -webkit-text-fill-color: white !important;
    background-clip: padding-box !important;
    background-image: none !important;
  }
  
  #prozess .process-step h3 {
    grid-area: title !important;
    font-size: 15px !important;
    margin: 0 !important;
    color: var(--color-text) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
  }
  
  #prozess .process-step p {
    grid-area: desc !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    color: var(--color-text-secondary) !important;
  }
}

/* ============================================
   v11.4 — Wizard Geräteauswahl 2x kompakt
   ============================================ */
@media (max-width: 768px) {
  #wizard-step-1 h3 {
    font-size: 18px !important;
    margin-bottom: 14px !important;
    line-height: 1.3 !important;
  }
  
  #wizard-step-1 .device-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  
  #wizard-step-1 .device-card {
    padding: 14px 8px !important;
    min-height: 0 !important;
    flex-direction: column !important;
    gap: 6px !important;
    border-radius: 12px !important;
  }
  
  #wizard-step-1 .device-card svg {
    width: 26px !important;
    height: 26px !important;
    margin: 0 auto !important;
  }
  
  #wizard-step-1 .device-card span {
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
  }
}

/* ============================================
   v11.5 — "Dein Gerät wartet" ZWINGEND verstecken auf Mobile
   ============================================ */
@media screen and (max-width: 768px) {
  body section#kontakt,
  body section.cta-section,
  body #kontakt.cta-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* ============================================
   v11.6 — Scroll-Top-Pfeil über Bottom-Bar
   ============================================ */
@media (max-width: 768px) {
  .float-actions {
    bottom: 88px !important;
    right: 14px !important;
    z-index: 4700 !important;
  }
  .float-btn {
    width: 42px !important;
    height: 42px !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
  }
}

/* ============================================
   v11.7 — Service-Cards Mobile (Texte passen sauber)
   ============================================ */
@media (max-width: 768px) {
  #leistungen .services-grid,
  #leistungen .service-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  
  #leistungen .service-card {
    padding: 14px 12px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 0 !important;
  }
  
  #leistungen .service-card .service-icon {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 8px !important;
    border-radius: 8px !important;
  }
  
  #leistungen .service-card .service-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  #leistungen .service-card h3 {
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin: 0 0 4px !important;
    font-weight: 700 !important;
  }
  
  #leistungen .service-card p {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    color: var(--color-text-secondary) !important;
    margin: 0 0 10px !important;
    flex: 1;
    /* Falls Text trotzdem zu lang ist — kein hartes Cut, soll alles sichtbar bleiben */
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    display: block !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
  
  #leistungen .service-card .price {
    font-size: 11.5px !important;
    margin-top: auto !important;
    padding-top: 6px !important;
    border-top: 1px solid var(--color-border-light) !important;
  }
  
  #leistungen .service-card .price strong {
    font-size: 14px !important;
    color: var(--color-accent) !important;
  }
  
  #leistungen .service-card .service-badge {
    font-size: 9.5px !important;
    padding: 2px 6px !important;
    top: 8px !important;
    right: 8px !important;
  }
  
  /* Section padding */
  #leistungen {
    padding: 28px 14px !important;
  }
  #leistungen .section-eyebrow { font-size: 11px !important; margin-bottom: 6px !important; }
  #leistungen .section-title { font-size: 22px !important; margin-bottom: 6px !important; line-height: 1.2 !important; }
  #leistungen .section-sub { font-size: 13px !important; margin-bottom: 18px !important; line-height: 1.4 !important; }
}

/* ============================================
   v11.8 — Mobile Cleanup: Wertgarantie, MacBook, Damage-Cards, Dropdown
   ============================================ */
@media (max-width: 768px) {
  /* Wertgarantie-Sektion komplett ausblenden (Banner oben reicht) */
  #versicherung,
  section.wg-section,
  body section#versicherung { 
    display: none !important; 
  }
  
  /* MacBook-Feature-Sektion ausblenden */
  #macbook,
  section.feature-section,
  section#macbook {
    display: none !important;
  }
  
  /* Damage-Cards kompakter: 3-spaltig, kleinere Padding */
  .damage-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6px !important;
  }
  .damage-card {
    padding: 10px 6px !important;
    border-radius: 10px !important;
    text-align: center !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .damage-card span {
    font-size: 11.5px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
  }
  
  /* Wizard-Step-2 Header kompakter */
  #wizard-step-2 h3 {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  #wizard-step-2 .wizard-hint {
    font-size: 12px !important;
    margin-bottom: 14px !important;
  }
  #wizard-step-2 .wizard-label {
    margin-top: 16px !important;
    font-size: 13px !important;
  }
  #wizard-step-2 textarea {
    font-size: 13px !important;
    rows: 2 !important;
  }
  
  /* Modell-Dropdown stylen */
  .wizard-model-select {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 15px !important;
    border-radius: 12px !important;
    background-color: white !important;
    border: 1.5px solid var(--color-border) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 12px !important;
    padding-right: 44px !important;
  }
}

/* Auch auf Desktop: Dropdown als Alternative zu Chips anzeigen */
.wizard-model-select {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 10px;
  background-color: white;
  border: 1.5px solid var(--color-border);
  margin-bottom: 12px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.wizard-model-select:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Auf Desktop: Modell-Chips anzeigen, Dropdown verstecken */
@media (min-width: 769px) {
  #modelChips {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
  }
  .wizard-model-select {
    display: none !important;
  }
}

/* ============================================
   v11.10 — Ankauf-Cards: Texte vollständig sichtbar
   ============================================ */
@media (max-width: 768px) {
  #ankauf .service-card p {
    /* Kein Line-Clamp, alles anzeigen */
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
    display: block !important;
    overflow: visible !important;
    font-size: 11.5px !important;
    line-height: 1.4 !important;
    margin: 0 0 10px !important;
    flex: 1 !important;
  }
  
  /* Card: kein min-height — Inhalt bestimmt Höhe */
  #ankauf .service-card {
    min-height: 0 !important;
    height: auto !important;
  }
  
  /* Aber alle gleich hoch via Grid */
  #ankauf .services-grid {
    align-items: stretch !important;
  }
  
  /* Headline weniger Mindest-Höhe */
  #ankauf .service-card h3 {
    min-height: 0 !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin: 6px 0 6px !important;
  }
  
  /* Service-Badge nicht überlappend */
  #ankauf .service-card .service-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    font-size: 10px !important;
    padding: 3px 8px !important;
  }
  #ankauf .service-card {
    position: relative !important;
    padding-top: 16px !important;
  }
}

/* ============================================
   v12 — Live-Suche für Geräte/Modelle
   ============================================ */
.device-search-wrap {
  margin-bottom: 24px;
}
.device-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  padding: 12px 16px;
  transition: all 0.2s;
}
.device-search-box:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}
.device-search-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-tertiary);
  margin-right: 10px;
  flex-shrink: 0;
}
.device-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
}
.device-search-input::placeholder {
  color: var(--color-text-tertiary);
}
.device-search-clear {
  border: none;
  background: var(--color-surface-2);
  color: var(--color-text-secondary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 8px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.device-search-clear:hover {
  background: var(--color-border);
}
.device-search-hint {
  font-size: 12.5px;
  color: var(--color-text-tertiary);
  margin-top: 8px;
  padding: 0 4px;
  line-height: 1.4;
}

/* Suchergebnisse */
.search-results-wrap {
  margin-bottom: 20px;
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  overflow: hidden;
  max-height: 480px;
  display: flex;
  flex-direction: column;
}
.search-results-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 18px 8px;
  border-bottom: 1px solid var(--color-border-light);
}
.search-results-list {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
.search-result-item {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 10px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.12s;
  font-family: inherit;
}
.search-result-item:hover,
.search-result-item:focus {
  background: var(--color-surface-2);
  outline: none;
}
.search-result-item:active {
  background: var(--color-border-light);
}
.search-result-type {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: var(--color-surface-2);
  padding: 3px 9px;
  border-radius: 999px;
  flex-shrink: 0;
  min-width: 100px;
  text-align: center;
}
.search-result-model {
  font-size: 14.5px;
  color: var(--color-text);
  font-weight: 500;
  flex: 1;
  line-height: 1.3;
}
.search-result-model mark {
  background: rgba(0, 113, 227, 0.15);
  color: var(--color-accent);
  font-weight: 700;
  padding: 0 2px;
  border-radius: 3px;
}
.search-results-empty {
  padding: 24px 20px;
  text-align: center;
}
.search-results-empty p {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0 0 4px;
}
.btn-link-style {
  margin-top: 12px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btn-link-style:hover {
  background: #005bb5;
}
.search-results-more {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--color-text-tertiary);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--color-border-light);
}

@media (max-width: 768px) {
  .device-search-box {
    padding: 10px 14px;
  }
  .device-search-input {
    font-size: 16px; /* iOS no zoom */
  }
  .search-result-type {
    min-width: 80px;
    font-size: 10.5px;
    padding: 3px 7px;
  }
  .search-result-model {
    font-size: 13.5px;
  }
  .search-result-item {
    padding: 10px 14px;
    gap: 10px;
  }
}

/* ============================================
   v12.1 — Preise in Schaden-Cards
   ============================================ */
.damage-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  text-align: center !important;
  cursor: pointer;
  padding: 14px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  background: white;
  transition: all 0.15s;
}
.damage-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.damage-card:has(input:checked),
.damage-card.selected {
  border-color: var(--color-accent);
  background: rgba(0, 113, 227, 0.06);
}
.damage-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.25;
}
.damage-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0, 113, 227, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 2px;
  white-space: nowrap;
}
.damage-card:has(input:checked) .damage-price {
  background: var(--color-accent);
  color: white;
}

/* Hinweis-Box unter den Karten */
.damage-price-hint {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.06), rgba(0, 113, 227, 0.02));
  border: 1px solid rgba(0, 113, 227, 0.15);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-secondary);
}
.damage-price-hint svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.damage-price-hint strong {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .damage-card {
    padding: 10px 4px !important;
    gap: 3px !important;
  }
  .damage-name {
    font-size: 11.5px !important;
    line-height: 1.2 !important;
  }
  .damage-price {
    font-size: 10.5px !important;
    padding: 2px 6px !important;
  }
  .damage-price-hint {
    font-size: 12px !important;
    padding: 10px 12px !important;
    gap: 8px !important;
  }
}

/* ============================================
   STADTTEILE-SEKTION
   ============================================ */
.stadtteile-section {
  padding: 40px 16px 32px;
  background: transparent;
}
.stadtteile-section .section-title {
  font-size: clamp(22px, 4vw, 30px) !important;
  margin-bottom: 6px !important;
}
.stadtteile-section .section-sub {
  font-size: 14px !important;
  margin-bottom: 0 !important;
}
.stadtteile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.stadtteile-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.2s;
  overflow: hidden;
}
.stadtteile-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.stadtteile-card[open] {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.stadtteile-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
  gap: 12px;
}
.stadtteile-summary::-webkit-details-marker { display: none; }
.stadtteile-summary::marker { display: none; }
.stadtteile-summary-text {
  flex: 1;
  min-width: 0;
}
.stadtteile-summary-name {
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.stadtteile-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.5;
}
.stadtteile-chevron::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #1a1a1a;
  border-bottom: 1.5px solid #1a1a1a;
  transform: rotate(45deg);
}
.stadtteile-card[open] .stadtteile-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}
.stadtteile-content {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 14px;
  animation: stadtteile-fade-in 0.3s ease-out;
}
@keyframes stadtteile-fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.stadtteile-tag {
  display: inline-block;
  background: #f0f4f9;
  color: #0a84ff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  margin-bottom: 5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stadtteile-intro {
  font-size: 12.5px;
  color: #6e6e73;
  line-height: 1.45;
  margin-bottom: 12px;
}
.stadtteile-zone {
  font-size: 11px;
  color: #6e6e73;
  font-weight: 600;
  margin-bottom: 5px;
  margin-top: 10px;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.stadtteile-zone strong { font-weight: 600; color: #6e6e73; }
.stadtteile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 5px;
  margin-bottom: 2px;
}
.stadtteile-list a {
  display: inline-block;
  background: #f5f5f7;
  color: #1a1a1a;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid transparent;
  line-height: 1.4;
}
.stadtteile-list a:hover {
  background: #e9f0ff;
  border-color: #0a84ff;
  color: #0a84ff;
}
.stadtteile-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  color: #0a84ff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.15s;
}
.stadtteile-cta:hover {
  gap: 8px;
  text-decoration: underline;
}
.stadtteile-note {
  text-align: center;
  font-size: 11.5px;
  color: #8e8e93;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.stadtteile-note strong {
  color: #6e6e73;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stadtteile-section { padding: 24px 12px 20px; }
  .stadtteile-grid { grid-template-columns: 1fr; gap: 8px; }
  .stadtteile-summary { padding: 12px 14px; }
  .stadtteile-summary-name { font-size: 13.5px; }
  .stadtteile-tag { font-size: 9.5px; padding: 2px 7px; }
  .stadtteile-content { padding: 12px 14px 14px; }
  .stadtteile-intro { font-size: 12px; margin-bottom: 10px; }
  .stadtteile-zone { font-size: 10px; }
  .stadtteile-list a { font-size: 11px; padding: 3px 8px; }
  .stadtteile-cta { font-size: 11.5px; margin-top: 12px; }
  .stadtteile-note { font-size: 10.5px; margin-top: 14px; }
}

/* ============================================
   FOOTER-STADTTEILE
   ============================================ */
.footer-stadtteile {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 32px 0 8px;
  margin-top: 24px;
}
.footer-stadtteile-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8e8e93;
  margin-bottom: 14px;
}
.footer-stadtteile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 12.5px;
  color: #5b6b7f;
  line-height: 1.7;
}
.footer-stadtteile-list a {
  color: #5b6b7f;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-stadtteile-list a:hover {
  color: #0a84ff;
  text-decoration: underline;
}
.footer-stadtteile-list .sep {
  color: rgba(0, 0, 0, 0.15);
}

/* ============================================
   REFURBISHED + ANKAUF SEKTION
   ============================================ */
.refurbished-section {
  padding: 70px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}
.refurbished-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 32px auto 0;
}
.refurbished-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.refurbished-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0a84ff, #af52de);
}
.refurbished-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.refurbished-card-ankauf::before {
  background: linear-gradient(90deg, #34c759, #25a247);
}
.ref-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}
.refurbished-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.25;
}
.refurbished-card p {
  font-size: 14px;
  color: #5b6b7f;
  line-height: 1.6;
  margin-bottom: 16px;
}
.refurbished-card p strong {
  color: #1a1a1a;
  font-weight: 600;
}
.ref-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 13.5px;
  color: #1a1a1a;
}
.ref-bullets li {
  padding: 4px 0;
  line-height: 1.5;
}
.ref-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 12px 18px;
  background: #1a1a1a;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  justify-content: center;
  transition: all 0.15s;
}
.ref-cta:hover {
  background: #0a84ff;
  transform: translateY(-1px);
}
.refurbished-card-ankauf .ref-cta {
  background: #34c759;
}
.refurbished-card-ankauf .ref-cta:hover {
  background: #25a247;
}
.refurbished-info {
  max-width: 920px;
  margin: 40px auto 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #34c759;
  border-radius: 16px;
}
.refurbished-info h3 {
  color: #064e3b;
  font-size: 17px;
  margin-bottom: 10px;
}
.refurbished-info p {
  color: #1a1a1a;
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}
.refurbished-info strong {
  color: #064e3b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .refurbished-section { padding: 48px 16px; }
  .refurbished-grid { grid-template-columns: 1fr; gap: 14px; }
  .refurbished-card { padding: 24px 20px; }
  .refurbished-card h3 { font-size: 17px; }
  .refurbished-info { padding: 20px 18px; }
}

/* ============================================
   STANDORTE — Unsere Filialen (kompakt, Apple-Style)
   ============================================ */
.standorte-compact-section {
  padding: 64px 0;
  background: #f5f7fa;
}
.standorte-compact-header {
  text-align: center;
  margin-bottom: 32px;
}
.standorte-compact-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1d1d1f;
  margin: 0 0 8px;
}
.standorte-compact-sub {
  font-size: 16px;
  color: #6e6e73;
  margin: 0;
}
.standorte-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}
.standorte-compact-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
}
.standorte-compact-name {
  font-size: 19px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 6px;
}
.standorte-compact-address {
  font-size: 14px;
  line-height: 1.45;
  color: #6e6e73;
  margin-bottom: 8px;
}
.standorte-compact-hours {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.standorte-compact-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.standorte-compact-actions a {
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  text-decoration: none;
}
.standorte-compact-actions a.route {
  color: #0071e3;
}
.standorte-compact-actions a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .standorte-compact-section {
    padding: 36px 14px;
  }
  .standorte-compact-title {
    font-size: 23px;
    margin-bottom: 4px;
  }
  .standorte-compact-sub {
    font-size: 13px;
  }
  .standorte-compact-header {
    margin-bottom: 20px;
  }
  .standorte-compact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .standorte-compact-card {
    padding: 16px 12px;
    border-radius: 16px;
  }
  .standorte-compact-name {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .standorte-compact-address {
    font-size: 12.5px;
    margin-bottom: 12px;
  }
  .standorte-compact-actions {
    gap: 6px;
  }
  .standorte-compact-actions a {
    font-size: 13px;
  }
}

/* ============================================
   TRUST BOXES (4 Boxen unter Vier Schritte)
   ============================================ */
.trust-boxes-section { padding: 0 24px 56px; background: #f5f7fa; }
.trust-boxes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}
.trust-box-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: #f5f5f7;
  display: flex; align-items: center; justify-content: center;
  color: #1d1d1f;
}
.trust-box-icon svg { width: 24px; height: 24px; }
.trust-box-title { font-size: 16px; font-weight: 600; color: #1d1d1f; margin-bottom: 6px; }
.trust-box-text { font-size: 13px; line-height: 1.45; color: #6e6e73; }

/* ============================================
   LEISTUNGEN (Alles, was dein Gerät braucht)
   ============================================ */
.leistungen-section { background: #f5f7fa; padding-top: 56px; }
.leistungen-section .section-eyebrow,
.leistungen-section .section-title,
.leistungen-section .section-sub { text-align: center; }
.leistungen-section .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 36px; }
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.leistung-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.leistung-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.leistung-card .leistung-price { margin-top: auto; }
.leistung-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.leistung-icon svg { width: 22px; height: 22px; }
.leistung-icon-blue   { background: #e8f1fe; color: #0071e3; }
.leistung-icon-green  { background: #e7f6ec; color: #16a34a; }
.leistung-icon-red    { background: #fdeaea; color: #dc2626; }
.leistung-icon-purple { background: #f0eafd; color: #7c3aed; }
.leistung-icon-pink   { background: #fdeaf3; color: #db2777; }
.leistung-icon-cyan   { background: #e6f6f8; color: #0891b2; }
.leistung-icon-orange { background: #fdf0e6; color: #ea580c; }
.leistung-card h3 { font-size: 17px; font-weight: 600; color: #1d1d1f; margin: 0 0 8px; }
.leistung-card p { font-size: 13px; line-height: 1.5; color: #6e6e73; margin: 0 0 18px; }
.leistung-price { font-size: 15px; font-weight: 600; color: #1d1d1f; }
.leistung-badge {
  position: absolute; top: 16px; right: 16px;
  background: #16a34a; color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 980px;
}

/* ============================================
   WERTGARANTIE (Schütze dein Gerät)
   ============================================ */
.wertgarantie-section { background: #f5f7fa; padding-top: 56px; }
.wertgarantie-banner {
  background: linear-gradient(135deg, #e8f1fe 0%, #dbeafe 100%);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}
.wertgarantie-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #0071e3; margin-bottom: 12px;
}
.wertgarantie-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.12;
  color: #1d1d1f; margin: 0 0 14px;
}
.wertgarantie-text { font-size: 15px; line-height: 1.55; color: #515154; margin: 0 0 22px; max-width: 520px; }
.wertgarantie-btn { margin-bottom: 14px; }
.wertgarantie-note { font-size: 12px; color: #86868b; margin: 0; }
.wertgarantie-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.wertgarantie-card-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #e8f1fe;
  display: flex; align-items: center; justify-content: center;
  color: #0071e3;
}
.wertgarantie-card-icon svg { width: 28px; height: 28px; }
.wertgarantie-card-title { font-size: 16px; font-weight: 600; color: #1d1d1f; margin-bottom: 10px; line-height: 1.3; }
.wertgarantie-card-price { font-size: 15px; color: #515154; }
.wertgarantie-card-price strong { color: #0071e3; font-size: 22px; }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
  .trust-boxes-section { padding: 0 14px 32px; }
  .trust-boxes-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-box { padding: 18px 12px; border-radius: 16px; }
  .trust-box-icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .trust-box-icon svg { width: 20px; height: 20px; }
  .trust-box-title { font-size: 14px; }
  .trust-box-text { font-size: 12px; }

  .leistungen-section { padding-top: 32px; }
  .leistungen-section .section-sub { margin-bottom: 22px; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .leistung-card { padding: 16px 14px; border-radius: 16px; }
  .leistung-icon { width: 38px; height: 38px; margin-bottom: 12px; }
  .leistung-icon svg { width: 19px; height: 19px; }
  .leistung-card h3 { font-size: 14.5px; }
  .leistung-card p { font-size: 12px; margin-bottom: 12px; }
  .leistung-price { font-size: 14px; }

  .wertgarantie-section { padding-top: 32px; }
  .wertgarantie-banner { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; border-radius: 22px; }
  .wertgarantie-title { font-size: 22px; }
  .wertgarantie-text { font-size: 14px; }
  .wertgarantie-card { padding: 24px 20px; }
}

/* ============================================
   BUNTE GRADIENT-ICONS (Trust-Boxen + Leistungen)
   ============================================ */
/* Trust-Box bunte Icons */
.trust-box-icon svg { width: 26px; height: 26px; color: #fff; }
.trust-icon-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.trust-icon-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.trust-icon-orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.trust-icon-red    { background: linear-gradient(135deg, #f87171, #ef4444); }

/* Leistung-Cards: Icons jetzt gefüllt + Gradient-Hintergrund, weißes Icon */
.leistung-icon svg { color: #fff; }
.leistung-icon-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.leistung-icon-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.leistung-icon-red    { background: linear-gradient(135deg, #f87171, #ef4444); }
.leistung-icon-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.leistung-icon-pink   { background: linear-gradient(135deg, #f472b6, #db2777); }
.leistung-icon-cyan   { background: linear-gradient(135deg, #22d3ee, #0891b2); }
.leistung-icon-orange { background: linear-gradient(135deg, #fb923c, #f97316); }

/* ============================================
   METRICS KLEINER (15+ / 10.000+ / 5,0★ / 2)
   ============================================ */
.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 760px;
  margin: 0 auto;
  gap: 14px;
}
.metric-card { padding: 18px 14px; border-radius: 14px; }
.metric-num { font-size: 28px !important; margin-bottom: 4px; }
.metric-label { font-size: 12px; }

@media (max-width: 768px) {
  .metric-card { padding: 12px 8px !important; }
  .metric-num { font-size: 21px !important; }
  .metric-label { font-size: 10.5px !important; }
}

/* ============================================
   HERO PREMIUM-UPGRADE (Bewertung / Trust-Bar / Express)
   ============================================ */
/* --- Google-Bewertung: edel, Apple-Style --- */
.hero-rating {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 11px 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  margin: 10px 0 26px !important;
}
.hero-rating-stars {
  color: #f5a623 !important;
  font-size: 15px !important;
  letter-spacing: 1.5px !important;
  text-shadow: none;
}
.hero-rating-text {
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #1d1d1f !important;
  letter-spacing: -0.01em;
}
.hero-rating-text strong {
  font-weight: 700 !important;
  font-size: 15px;
}

/* --- Trust-Bar: größer + bunte Icons --- */
.apple-trust-row {
  gap: 6px !important;
  max-width: 820px !important;
  padding: 20px 28px !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.07) !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
}
.apple-trust-item { gap: 13px !important; padding: 8px 18px !important; }
.apple-trust-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff !important;
  opacity: 1 !important;
}
.apple-trust-icon svg { width: 22px !important; height: 22px !important; }
.apple-trust-num { font-size: 17px !important; }
.apple-trust-label { font-size: 12.5px !important; }
.apple-trust-divider { height: 38px !important; }
.trust-c-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.trust-c-blue   { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.trust-c-orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.trust-c-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

/* --- Express-Note in eigener Box --- */
.hero-express-box {
  display: inline-block;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 14px;
  padding: 12px 22px;
  margin-top: 6px;
}
.hero-express-box .hero-express-note {
  font-size: 15.5px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .hero-rating { padding: 9px 16px !important; margin: 8px 0 18px !important; }
  .hero-rating-stars { font-size: 13px !important; }
  .hero-rating-text { font-size: 13px !important; }
  .hero-rating-text strong { font-size: 13px; }

  .apple-trust-row { padding: 14px 10px !important; border-radius: 18px !important; }
  .apple-trust-icon { width: 34px !important; height: 34px !important; }
  .apple-trust-icon svg { width: 18px !important; height: 18px !important; }
  .apple-trust-num { font-size: 13px !important; }
  .apple-trust-label { font-size: 10.5px !important; }

  .hero-express-box { padding: 10px 16px; margin-top: 4px; }
  .hero-express-box .hero-express-note { font-size: 12.5px !important; }
}

/* Wizard-Sektion: Kopf zentriert (konsistent mit anderen Sektionen) */
.repair-section .section-eyebrow,
.repair-section > .section-inner > .section-title,
.repair-section > .section-inner > .section-sub {
  text-align: center;
}
.repair-section > .section-inner > .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* "Vier Schritte" (#prozess): Kopf zentriert für volle Konsistenz */
#prozess > .section-inner > .section-eyebrow,
#prozess > .section-inner > .section-title,
#prozess > .section-inner > .section-sub {
  text-align: center;
}
#prozess > .section-inner > .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   APPLE-STYLE ABTEILUNGS-RHYTHMUS (finales 3-Ton-System)
   Weiß = Standard · Hellgrau = abgesetzt · Near-Black = Höhepunkte
   ============================================ */
:root {
  --ph-light: #ffffff;
  --ph-grey:  #f5f5f7;
  --ph-dark:  #111114;
}

/* Helle / graue Sektionen im klaren Wechsel */
.repair-section        { background: var(--ph-grey) !important; }
#prozess               { background: var(--ph-light) !important; }
.trust-boxes-section   { background: var(--ph-light) !important; }
.testimonials-section  { background: var(--ph-grey) !important; }
.leistungen-section    { background: var(--ph-light) !important; }
.team-section          { background: var(--ph-grey) !important; }
.price-section         { background: var(--ph-light) !important; }
#ankauf                { background: var(--ph-grey) !important; }
.wertgarantie-section  { background: var(--ph-light) !important; }
.stadtteile-section    { background: var(--ph-light) !important; }
.standorte-compact-section { background: var(--ph-grey) !important; }
.seo-content           { background: var(--ph-light) !important; }
.refurbished-section   { background: var(--ph-light) !important; }

/* Dunkle Höhepunkte — einheitlicher, edler Near-Black */
.feature-section,
.split-section,
.cta-section {
  background: var(--ph-dark) !important;
}

/* Gleichmäßige, großzügige Sektions-Abstände (Apple-Atem) */
.trust-boxes-section, .leistungen-section, .price-section,
.wertgarantie-section, #prozess, #ankauf, .team-section,
.testimonials-section, .stadtteile-section,
.standorte-compact-section, .refurbished-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
/* Trust-Boxen sitzen direkt unter Vier-Schritte (heller Block) -> oben kein Doppel-Abstand */
.trust-boxes-section { padding-top: 0; }
.leistungen-section  { padding-top: 40px; }

@media (max-width: 768px) {
  .trust-boxes-section, .leistungen-section, .price-section,
  .wertgarantie-section, #prozess, #ankauf, .team-section,
  .testimonials-section, .stadtteile-section,
  .standorte-compact-section, .refurbished-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .trust-boxes-section { padding-top: 0; }
  .leistungen-section  { padding-top: 24px; }
}

/* Wizard Geräte-Auswahl: alle 8 in einer Reihe (Desktop) */
@media (min-width: 769px) {
  #wizard-step-1 .device-grid,
  .device-brand-section .device-grid {
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 10px !important;
  }
  #wizard-step-1 .device-card,
  .device-brand-section .device-card {
    padding: 16px 8px !important;
  }
  #wizard-step-1 .device-card svg,
  .device-brand-section .device-card svg {
    width: 26px; height: 26px;
  }
  #wizard-step-1 .device-card span,
  .device-brand-section .device-card span {
    font-size: 12.5px;
  }
}

/* Ankauf-Sektion: bunte Icons erlauben (überschreibt monochrome Sperre) */
#ankauf .service-card .service-icon[style] {
  color: #fff !important;
}
#ankauf .service-card .service-icon svg {
  color: #fff !important;
  opacity: 1 !important;
}
/* die inline-Gradient-Hintergründe wieder durchlassen */
#ankauf .service-card .service-icon[style*="3b82f6"] { background: linear-gradient(135deg, #3b82f6, #2563eb) !important; }
#ankauf .service-card .service-icon[style*="a78bfa"] { background: linear-gradient(135deg, #a78bfa, #7c3aed) !important; }
#ankauf .service-card .service-icon[style*="16a34a"] { background: linear-gradient(135deg, #16a34a, #15803d) !important; }
#ankauf .service-card .service-icon[style*="fb923c"] { background: linear-gradient(135deg, #fb923c, #f97316) !important; }

/* ============================================
   KOMPAKTER: Wertgarantie + Standorte halbieren
   + SEO-Trennung (Was uns ausmacht eigene Farbe)
   ============================================ */
/* Wertgarantie deutlich kompakter */
.wertgarantie-section { padding-top: 44px !important; padding-bottom: 44px !important; }
.wertgarantie-banner {
  padding: 26px 32px !important;
  gap: 28px !important;
  border-radius: 22px !important;
}
.wertgarantie-title { font-size: clamp(20px, 2.4vw, 26px) !important; margin: 0 0 8px !important; }
.wertgarantie-text { font-size: 14px !important; margin: 0 0 14px !important; }
.wertgarantie-btn { margin-bottom: 8px !important; }
.wertgarantie-card { padding: 20px 18px !important; border-radius: 16px !important; }
.wertgarantie-card-icon { width: 44px !important; height: 44px !important; margin-bottom: 10px !important; }
.wertgarantie-card-icon svg { width: 22px !important; height: 22px !important; }

/* Standorte deutlich kompakter */
.standorte-compact-section { padding: 36px 0 !important; }
.standorte-compact-header { margin-bottom: 20px !important; }
.standorte-compact-title { font-size: 24px !important; }
.standorte-compact-sub { font-size: 14px !important; }
.standorte-compact-card { padding: 16px 18px !important; border-radius: 16px !important; }
.standorte-compact-name { font-size: 17px !important; margin-bottom: 4px !important; }
.standorte-compact-address { font-size: 13px !important; margin-bottom: 10px !important; }

/* SEO Bereich 2 "Was uns ausmacht": eigene Farbe (Trennung zur FAQ) */
.seo-content    { background: var(--ph-light) !important; }
.seo-content-2  { background: var(--ph-grey) !important; }

@media (max-width: 768px) {
  .wertgarantie-banner { padding: 22px 18px !important; }
  .standorte-compact-section { padding: 28px 14px !important; }
}

/* Bezirke klein/dezent mit Hover (SEO bleibt, wenig Platz) */
.stadtteile-bezirke {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  max-width: 760px;
  margin: 14px auto 0;
}
.stadtteile-bezirke span {
  font-size: 12px;
  color: #8e8e93;
  background: rgba(0,0,0,0.04);
  padding: 4px 11px;
  border-radius: 999px;
  cursor: default;
}
@media (max-width: 768px) {
  .stadtteile-bezirke { gap: 5px; }
  .stadtteile-bezirke span { font-size: 11px; padding: 3px 9px; }
}

/* ============================================
   SEO-AKKORDION (FAQ + Was uns ausmacht zugeklappt)
   ============================================ */
.seo-accordion {
  max-width: 760px;
  margin: 0 auto;
}
.seo-accordion-head {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 2px 0;
}
.seo-accordion-head::-webkit-details-marker { display: none; }
.seo-accordion-title-wrap { text-align: center; }
.seo-accordion-title-wrap .section-eyebrow { margin-bottom: 4px; }
.seo-accordion-title-wrap .section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(20px, 2.6vw, 28px) !important;
}
.seo-accordion-chevron {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.25s ease;
}
.seo-accordion-chevron::before,
.seo-accordion-chevron::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  background: #1d1d1f;
  transform: translate(-50%,-50%);
  transition: all 0.25s ease;
}
.seo-accordion-chevron::after { transform: translate(-50%,-50%) rotate(90deg); }
.seo-accordion[open] .seo-accordion-chevron { background: rgba(0,113,227,0.12); }
.seo-accordion[open] .seo-accordion-chevron::after { transform: translate(-50%,-50%) rotate(0deg); }
.seo-accordion[open] .seo-accordion-chevron::before,
.seo-accordion[open] .seo-accordion-chevron::after { background: #0071e3; }
.seo-accordion-sub {
  margin: 12px auto 28px !important;
  text-align: center !important;
}
.seo-accordion-head:hover .seo-accordion-chevron { background: rgba(0,113,227,0.1); }

@media (max-width: 768px) {
  .seo-accordion-chevron { width: 26px; height: 26px; }
  .seo-accordion-title-wrap .section-title { font-size: 19px !important; }
  .seo-accordion-sub { margin-bottom: 18px !important; }
}

/* SEO-Akkordion-Sektionen kompakter (weniger Luft bei zugeklappt) */
.seo-content, .seo-content-2 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
@media (max-width: 768px) {
  .seo-content, .seo-content-2 {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}

/* CTA "Dein Gerät wartet" kompakter + Untertitel einzeilig */
.cta-section {
  padding-top: 38px !important;
  padding-bottom: 38px !important;
}
.cta-section .section-title { margin-bottom: 10px !important; font-size: clamp(26px, 3.4vw, 38px) !important; }
.cta-section .section-sub {
  max-width: none !important;
  white-space: nowrap !important;
  margin-bottom: 22px !important;
  font-size: 16px !important;
}
@media (max-width: 768px) {
  .cta-section { padding-top: 28px !important; padding-bottom: 28px !important; }
  .cta-section .section-sub {
    white-space: normal !important;   /* auf Handy darf umbrechen */
    font-size: 13.5px !important;
    max-width: 340px !important;
    margin-left: auto !important; margin-right: auto !important;
  }
}

/* MacBook + Team Sektionen kompakter (weniger Höhe) */
.feature-section, .team-section {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.feature-grid, .team-grid {
  gap: 40px !important;
  margin-top: 20px !important;
}
.feature-image {
  aspect-ratio: 16/10 !important;
  max-height: 320px !important;
}
.team-image {
  aspect-ratio: 1/1 !important;
  max-height: 340px !important;
}
.feature-content p { margin-bottom: 16px !important; }
.feature-list li { padding: 7px 0 !important; }
@media (max-width: 768px) {
  .feature-section, .team-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .feature-image, .team-image { max-height: 240px !important; }
}

/* B2B Sektion wesentlich kompakter */
.split-section { padding-top: 46px !important; padding-bottom: 46px !important; }
.split-section .section-title { font-size: clamp(24px, 3vw, 32px) !important; }
.split-section > .section-inner > .section-sub { margin-bottom: 28px !important; }
.b2b-features { gap: 14px !important; margin-bottom: 26px !important; margin-top: 24px !important; }
.b2b-feature { padding: 16px 18px !important; border-radius: 14px !important; }
.b2b-feature-icon { width: 34px !important; height: 34px !important; }
.b2b-feature-icon svg { width: 18px !important; height: 18px !important; }
.b2b-feature p { font-size: 13px !important; line-height: 1.45 !important; }
.b2b-cta-card { padding: 22px 26px !important; border-radius: 16px !important; }

/* B2B: alle 5 Karten in einer Reihe (Desktop) */
@media (min-width: 901px) {
  .b2b-features {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 12px !important;
  }
  .b2b-feature {
    flex-direction: column !important;
    padding: 16px 14px !important;
    gap: 10px !important;
  }
  .b2b-feature h3 { font-size: 14.5px !important; }
  .b2b-feature p { font-size: 12px !important; }
}
@media (max-width: 900px) {
  .b2b-features { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .b2b-features { grid-template-columns: 1fr !important; }
}

/* B2B Sektion auf Desktop klappbar mit sichtbarem Hinweis */
.b2b-toggle-hint { display: none; }
@media (min-width: 769px) {
  .b2b-collapse summary { cursor: pointer !important; }
  .b2b-toggle-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
  }
  .b2b-collapse summary:hover .b2b-toggle-hint {
    background: rgba(255,255,255,0.14);
  }
  .b2b-toggle-chevron {
    width: 18px; height: 18px;
    position: relative;
    flex-shrink: 0;
  }
  .b2b-toggle-chevron::before,
  .b2b-toggle-chevron::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 11px; height: 2px;
    background: #fff;
    transform: translate(-50%,-50%);
    transition: transform 0.25s ease;
  }
  .b2b-toggle-chevron::after { transform: translate(-50%,-50%) rotate(90deg); }
  .b2b-collapse[open] .b2b-toggle-chevron::after { transform: translate(-50%,-50%) rotate(0deg); }
  /* Label-Text umschalten */
  .b2b-collapse .b2b-toggle-label::after { content: 'Details aufklappen'; }
  .b2b-collapse .b2b-toggle-label { font-size: 0; }
  .b2b-collapse .b2b-toggle-label::after { font-size: 13.5px; }
  .b2b-collapse[open] .b2b-toggle-label::after { content: 'Details schließen'; }
  /* zugeklappt: Untertitel ausblenden, Abstand weg */
  .b2b-collapse:not([open]) .b2b-desktop-sub { display: none; }
  .b2b-collapse:not([open]) summary > div { margin-bottom: 0 !important; }
}

/* FAQ-Akkordion Kopf: "+" sauber zum mehrzeiligen Titel (Mobile) */
@media (max-width: 768px) {
  .seo-accordion-head {
    gap: 12px;
    align-items: center;
  }
  .seo-accordion-title-wrap { flex: 1; min-width: 0; }
  .seo-accordion-chevron { align-self: center; }
}

/* ============================================
   EINHEITLICHE SEKTIONS-ABSTÄNDE (oben → Überschrift)
   Alle Standard-Sektionen: 80px oben, 80px unten (Desktop)
   ============================================ */
#prozess,
.testimonials-section,
.leistungen-section,
#ankauf,
.price-section,
.team-section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
/* innere Zusatz-Abstände der Köpfe neutralisieren, damit Start gleich ist */
.price-section > .section-inner > .section-eyebrow:first-child,
.leistungen-section > .section-inner > .section-eyebrow:first-child,
#prozess > .section-inner > .section-eyebrow:first-child,
#ankauf > .section-inner > .section-eyebrow:first-child {
  margin-top: 0 !important;
}
.price-section .price-table-wrap,
.price-section .price-collapse { margin-top: 0 !important; }
.price-section .price-summary-toggle { padding-top: 0 !important; }

@media (max-width: 768px) {
  #prozess,
  .testimonials-section,
  .leistungen-section,
  #ankauf,
  .price-section,
  .team-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}

/* Hero-Badge ohne Hintergrund-Schattierung (nur Text) */
.hero-eyebrow {
  background: transparent !important;
  padding: 0 !important;
}

/* Preise-Kopf zentriert (Chevron rechts absolut) */
.price-details > summary {
  position: relative;
  justify-content: center !important;
  text-align: center;
}
.price-details > summary > div {
  text-align: center;
}
.price-details > summary .section-eyebrow,
.price-details > summary .section-title,
.price-details > summary .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.price-toggle-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.price-details[open] .price-toggle-icon { transform: translateY(-50%) rotate(180deg); }
@media (max-width: 768px) {
  .price-toggle-icon { right: 12px; }
}

/* MacBook-Sektion auf gleiche Höhe wie Team angleichen */
.feature-section, .team-section {
  min-height: 575px !important;
  display: flex !important;
  align-items: center !important;
}
.feature-section > .section-inner,
.team-section > .section-inner { width: 100%; }
.feature-image {
  max-height: 280px !important;
  aspect-ratio: 16/11 !important;
}
.feature-list li { padding: 6px 0 !important; }
.feature-content p { margin-bottom: 14px !important; }

/* Hero: blaue/lila Glow-Schattierung entfernen — komplett weiß */
.hero::before, .hero::after { display: none !important; }
.hero { background: #ffffff !important; }

/* B2B-Titel auf Desktop in einer Reihe (kompaktere Box) */
@media (min-width: 769px) {
  .split-section .section-title {
    font-size: clamp(22px, 2.6vw, 30px) !important;
    white-space: nowrap !important;
  }
}

/* "Was unsere Kunden sagen" Box kompakter */
.testimonials-section { padding-top: 56px !important; padding-bottom: 56px !important; }
.testimonials-section .section-sub { margin-bottom: 28px !important; }
.review-cta-card { padding: 16px 18px !important; gap: 13px !important; }
.review-cta-icon { width: 38px !important; height: 38px !important; }
.review-cta-icon svg { width: 19px !important; height: 19px !important; }
.review-cta-label { font-size: 13px !important; }
.review-cta-text { font-size: 15px !important; }
.review-trust-note { margin-top: 18px !important; }
@media (max-width: 768px) {
  .testimonials-section { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* Ankauf-Akkordion: Toggle-Hinweis für helle Sektion */
#ankauf .b2b-toggle-label-ankauf { font-size: 0; }
#ankauf .b2b-toggle-label-ankauf::after { content: 'Ankaufspreise aufklappen'; font-size: 13.5px; }
#ankauf .b2b-collapse[open] .b2b-toggle-label-ankauf::after { content: 'Ankaufspreise schließen'; }
@media (min-width: 769px) {
  #ankauf .b2b-collapse summary { cursor: pointer !important; }
  #ankauf .b2b-toggle-hint {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
    padding: 8px 18px; border-radius: 999px;
    background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
    color: var(--color-text); font-weight: 600; transition: all 0.2s ease;
  }
  #ankauf .b2b-collapse summary:hover .b2b-toggle-hint { background: rgba(0,0,0,0.08); }
  #ankauf .b2b-toggle-chevron { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
  #ankauf .b2b-toggle-chevron::before,
  #ankauf .b2b-toggle-chevron::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 11px; height: 2px; background: var(--color-text);
    transform: translate(-50%,-50%); transition: transform 0.25s ease;
  }
  #ankauf .b2b-toggle-chevron::after { transform: translate(-50%,-50%) rotate(90deg); }
  #ankauf .b2b-collapse[open] .b2b-toggle-chevron::after { transform: translate(-50%,-50%) rotate(0deg); }
  #ankauf .b2b-collapse:not([open]) .b2b-desktop-sub { display: none; }
  #ankauf .b2b-collapse:not([open]) summary > div { margin-bottom: 0 !important; }
}
/* Mobile: Ankauf-Hinweis sichtbar */
@media (max-width: 768px) {
  #ankauf .b2b-toggle-hint {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
    padding: 7px 16px; border-radius: 999px;
    background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
    color: var(--color-text); font-weight: 600; font-size: 13px;
  }
  #ankauf .b2b-toggle-chevron { width: 16px; height: 16px; position: relative; flex-shrink: 0; }
  #ankauf .b2b-toggle-chevron::before,
  #ankauf .b2b-toggle-chevron::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 10px; height: 2px; background: var(--color-text);
    transform: translate(-50%,-50%); transition: transform 0.25s ease;
  }
  #ankauf .b2b-toggle-chevron::after { transform: translate(-50%,-50%) rotate(90deg); }
  #ankauf .b2b-collapse[open] .b2b-toggle-chevron::after { transform: translate(-50%,-50%) rotate(0deg); }
  #ankauf .b2b-collapse:not([open]) .b2b-desktop-sub { display: none; }
  #ankauf .b2b-collapse:not([open]) summary > div { margin-bottom: 0 !important; }
}

/* Preise-Kopf Mobile: Chevron nicht über Text legen */
@media (max-width: 768px) {
  .price-details > summary { padding-right: 52px !important; }
  .price-toggle-icon { right: 10px; width: 34px; height: 34px; }
  .price-toggle-icon svg { width: 18px; height: 18px; }
}

/* Performance: untere Sektionen erst beim Scrollen rendern */
#ankauf, #business, .wertgarantie-section, .standorte-compact-section,
#info, #ueber-uns, #refurbished, .cta-section, footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* ============================================
   MOBILE: Bereiche ausblenden für schlanke App-Optik
   (MacBook, Team, Wertgarantie, Über uns)
   Inhalt bleibt im Code -> weiterhin SEO-sichtbar
   ============================================ */
@media (max-width: 768px) {
  #macbook,
  .team-section,
  .wertgarantie-section,
  #ueber-uns {
    display: none !important;
  }
  /* Wertgarantie-Link im Header-Menü ebenfalls ausblenden (Ziel ist versteckt) */
  a[href$="#versicherung"] {
    display: none !important;
  }
}

/* ============================================
   FOOTER: Spalten als <details>
   Desktop = normale offene Spalten (kein Klapp-Verhalten sichtbar)
   Mobile  = antippbares Akkordeon
   ============================================ */
.footer-col[open] > summary,
.footer-col > summary { list-style: none; cursor: default; }
.footer-col > summary::-webkit-details-marker { display: none; }
.footer-col > summary::marker { content: ""; }
.footer-col > summary h4 { margin: 0; }

@media (max-width: 768px) {
  /* Akkordeon-Verhalten nur auf dem Handy */
  .footer-grid { grid-template-columns: 1fr !important; gap: 0 !important; }
  .footer-grid > div:first-child { margin-bottom: 20px; } /* Logo/Tagline-Block */

  .footer-col {
    border-top: 1px solid var(--color-border-light);
    padding: 0 !important;
  }
  .footer-col > summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px !important;
    position: relative;
  }
  .footer-col > summary h4 { font-size: 14px !important; margin: 0 !important; }
  /* +/- Indikator */
  .footer-col > summary::after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text-tertiary);
    line-height: 1;
  }
  .footer-col[open] > summary::after { content: "–"; }
  /* Links eingerückt, Abstand */
  .footer-col > a {
    display: block;
    padding: 7px 2px 7px 4px !important;
    font-size: 13px !important;
  }
  .footer-col:not([open]) > a { display: none; }
  .footer-col[open] { padding-bottom: 10px !important; }

  /* Stadtteil-Liste auf dem Handy ausblenden (bleibt im Code für SEO) */
  .footer-stadtteile { display: none !important; }
}

/* ============================================
   REFURBISHED: auf dem Handy aufklappbar
   Desktop = normal offen (kein Klapp-Verhalten)
   ============================================ */
.ref-cards-details > summary,
.ref-info-details > summary { list-style: none; cursor: default; }
.ref-cards-details > summary::-webkit-details-marker,
.ref-info-details > summary::-webkit-details-marker { display: none; }
.ref-cards-details > summary::marker,
.ref-info-details > summary::marker { content: ""; }

@media (max-width: 768px) {
  /* Karten-Bereich klappbar */
  .ref-cards-details > summary {
    cursor: pointer;
    position: relative;
  }
  .ref-cards-details > summary .section-title { margin-bottom: 8px; }
  .ref-cards-details > summary::after {
    content: "Antippen zum Aufklappen +";
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 4px;
  }
  .ref-cards-details[open] > summary::after { content: "Einklappen –"; }
  .ref-cards-details:not([open]) > summary > div { margin-bottom: 0 !important; }

  /* Info-Kasten klappbar */
  .ref-info-details > summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .ref-info-details > summary h3 { margin: 0 !important; }
  .ref-info-details > summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
  }
  .ref-info-details[open] > summary::after { content: "–"; }
}

/* ============================================
   MOBILE: FAQ-Box "Reparatur in Hamburg — gut zu wissen"
   grauen Hintergrund geben, damit sie sich von der
   weißen Sektion darunter (refurbished) abhebt
   ============================================ */
@media (max-width: 768px) {
  #info.seo-content {
    background: var(--ph-grey) !important;
  }
  #standorte.standorte-compact-section {
    background: var(--ph-light) !important;
  }
}

/* ============================================
   FOOTER STADTTEILE als Akkordeon (Desktop)
   Inhalt bleibt im DOM -> SEO unverändert
   ============================================ */
.footer-stadtteile-details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.footer-stadtteile-details > summary::-webkit-details-marker { display: none; }
.footer-stadtteile-details > summary::after {
  content: "+";
  font-size: 16px;
  font-weight: 400;
  color: #5b6b7f;
  line-height: 1;
}
.footer-stadtteile-details[open] > summary::after { content: "–"; }
.footer-stadtteile-details:not([open]) { padding-bottom: 20px; }
.footer-stadtteile-details[open] .footer-stadtteile-list { margin-top: 14px; }
