/* ============================================================
   Elektro Zentrum — Klimaanlagen-Landingpages
   Shared CSS (Custom-Styles ergänzend zu Tailwind CDN)
   ============================================================ */

:root {
  --primary:        #12715F;
  --primary-dark:   #0B4F44;
  --primary-light:  #EAF7F1;
  --accent:         #FF5A14;
  --accent-dark:    #D94A0B;
  --danger:         #DC2626; /* red-600  — Notdienst */
  --danger-dark:    #B91C1C; /* red-700 */
  --success:        #16A34A; /* green-600 */
  --warning:        #FACC15; /* yellow-400 */
  --star:           #FBBF24; /* amber-400 */
  --text:           #17120F;
  --text-muted:     #63584F;
  --text-light:     #9B8F83;
  --bg:             #FFFCF7;
  --bg-soft:        #FFF6EA;
  --bg-strong:      #F5ECE1;
  --border:         #E8DCCA;
  --surface:        #FFFDF8;
  --surface-warm:   #FFF3E4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600; font-size: 1rem; line-height: 1.2;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 20, 0.24);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 14px 30px rgba(255, 90, 20, 0.34); }
.btn-secondary {
  background: var(--surface); color: var(--primary-dark); border-color: rgba(18, 113, 95, 0.42);
}
.btn-secondary:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.btn-danger {
  background: var(--danger); color: #fff;
  box-shadow: 0 4px 14px rgba(220,38,38,0.3);
  animation: pulse-glow 2s infinite;
}
.btn-danger:hover { background: var(--danger-dark); }
.btn-whatsapp {
  background: #25D366; color: #fff;
}
.btn-whatsapp:hover { background: #1DA851; }
.btn-large { padding: 1.125rem 2rem; font-size: 1.0625rem; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(220,38,38,0.3); }
  50%      { box-shadow: 0 4px 24px rgba(220,38,38,0.55); }
}

/* ===== Header-Logo ===== */
.logo-link {
  display: inline-flex; align-items: center; text-decoration: none;
  flex-shrink: 0;
}
.header-logo {
  width: auto; height: 150px; max-width: 380px;
  object-fit: contain; display: block;
}
@media (max-width: 900px) {
  .header-logo { height: 110px; max-width: 260px; }
}
@media (max-width: 640px) {
  .header-logo { height: 86px; max-width: 190px; }
}

/* ===== Hero ===== */
.hero {
  background-image:
    linear-gradient(100deg, rgba(22, 13, 8, 0.93) 0%, rgba(22, 15, 10, 0.85) 44%, rgba(24, 17, 12, 0.52) 100%),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center 42%;
  color: #fff; padding: 5.5rem 1rem 4.75rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { min-width: 0; }
.partner-disclosure {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  max-width: 760px;
  margin-top: 1.25rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.75rem;
  background: rgba(34, 21, 13, 0.62);
  backdrop-filter: blur(6px);
}
.partner-disclosure span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 90, 20, 0.24);
  color: #FFE0BE;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.partner-disclosure p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.45;
}
.hero-offer-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 253, 248, 0.98);
  color: var(--text);
  border: 1px solid rgba(255, 235, 209, 0.92);
  border-radius: 0.875rem;
  padding: 2rem;
  box-shadow: 0 26px 70px rgba(35, 20, 10, 0.28);
}
.hero-offer-card .offer-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #FFF7ED;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-offer-card .offer-old {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: line-through;
}
.hero-offer-card .offer-price {
  color: var(--accent-dark);
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0.15rem 0 0.5rem;
}
.hero-offer-card .offer-note {
  color: var(--text-muted);
  font-weight: 600;
  margin: 0 0 0.45rem;
}
.offer-partner-note {
  margin: 0 0 1.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: #FFF0DD;
  color: #7C2D12;
  border-left: 3px solid var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}
.hero-offer-card ul {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.hero-offer-card li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-weight: 600;
}
.hero-offer-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}
.hero-offer-card .btn { width: 100%; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-offer-card { max-width: 520px; width: 100%; }
}

/* ===== Trust-Logos-Strip (Bekannt aus) ===== */
.trust-logos-strip {
  background: var(--surface); padding: 2.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.trust-logos-label {
  text-align: center; font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; margin: 0 0 1.5rem;
}
.trust-logos-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-logo {
  max-height: 50px; width: auto; max-width: 280px;
  object-fit: contain;
  filter: grayscale(20%) opacity(0.85);
  transition: filter 0.2s;
}
.trust-logo:hover { filter: none; }
.trust-logo.media { max-height: 36px; }
.trust-logo.partner { max-height: 56px; }
.trust-logo.google { max-height: 44px; }
.trust-logos-note {
  max-width: 860px;
  margin: 1.5rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #FFF9F1;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 640px) {
  .trust-logos-grid { gap: 1.5rem; }
  .trust-logo { max-height: 32px; }
  .trust-logo.partner { max-height: 40px; }
  .trust-logos-note {
    text-align: left;
    font-size: 0.85rem;
  }
}

/* ===== Persönliches Vertrauen ===== */
.responsibility-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  padding: 3.25rem 1rem;
}
.responsibility-card {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(48, 29, 15, 0.11);
}
.responsibility-media {
  position: relative;
  overflow: hidden;
  border-radius: 0.875rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(48, 29, 15, 0.17);
}
.responsibility-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 7;
  object-fit: cover;
  object-position: center top;
}
.responsibility-kicker {
  margin: 0 0 0.65rem;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.responsibility-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.responsibility-copy p {
  max-width: 650px;
  margin: 1rem 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.responsibility-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
}
.responsibility-points span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255, 244, 225, 0.08) 0%, rgba(255, 244, 225, 0) 42%);
  pointer-events: none;
}
.hero-reparatur {
  background-image:
    linear-gradient(100deg, rgba(79, 15, 11, 0.94) 0%, rgba(132, 28, 20, 0.84) 46%, rgba(24, 17, 12, 0.58) 100%),
    var(--hero-bg-image);
}
.hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.hero .subline { font-size: clamp(1rem, 1.4vw, 1.25rem); opacity: 0.95; max-width: 700px; }
.hero .trust-mini { font-size: 0.875rem; opacity: 0.85; }

/* ===== Google Trust-Badge ===== */
.google-trust-badge {
  display: inline-flex; align-items: center; gap: 0.875rem;
  background: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  box-shadow: 0 12px 28px rgba(35, 20, 10, 0.18);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.4);
}
.google-trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(35, 20, 10, 0.24);
}
.google-trust-badge .g-logo {
  width: 36px; height: 36px; flex-shrink: 0;
}
.google-trust-badge .rating-stack {
  display: flex; flex-direction: column; gap: 2px; line-height: 1;
}
.google-trust-badge .stars-row {
  color: var(--star);
  font-size: 1.0625rem;
  letter-spacing: 0.12em;
}
.google-trust-badge .rating-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.google-trust-badge .rating-text small {
  display: block; font-weight: 500; font-size: 0.75rem;
  color: var(--text-muted); margin-top: 2px;
}

/* ===== Trust-Strip ===== */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.trust-strip-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  text-align: center;
}
.trust-pillar { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }
.trust-pillar .icon { font-size: 1.75rem; }
.trust-pillar .value { font-weight: 700; font-size: 1.0625rem; color: var(--text); }
.trust-pillar .label { font-size: 0.825rem; color: var(--text-muted); }

/* ===== Cards ===== */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 0.875rem; padding: 1.75rem;
  transition: all 0.2s ease;
}
.card:hover { border-color: rgba(255, 90, 20, 0.45); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(48, 29, 15, 0.1); }

.card-emergency {
  border-left: 4px solid var(--danger);
  background: #FFF1EA;
}

.price-card {
  border: 2px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.75rem;
  background: var(--surface);
  position: relative;
  display: flex; flex-direction: column;
  transition: all 0.2s ease;
}
.price-card:hover { border-color: rgba(255, 90, 20, 0.48); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(249,115,22,0.15);
}
.price-card .badge {
  position: absolute; top: -12px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 999px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.price-card .price { font-size: 2rem; font-weight: 800; color: var(--text); }
.price-card .price-old {
  font-size: 1rem; color: var(--text-light); text-decoration: line-through;
}

/* ===== Marken-Wall ===== */
.brand-wall { background: var(--bg-soft); padding: 4rem 1rem; }
.brand-wall .container { max-width: 1100px; margin: 0 auto; text-align: center; }
.brand-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem 3rem; align-items: center; justify-items: center;
  margin: 2.5rem 0;
}
.brand-grid img {
  max-width: 130px; max-height: 50px;
  width: auto; height: auto; object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s ease;
}
.brand-grid img:hover { filter: grayscale(0%) opacity(1); }
.brand-disclaimer { font-size: 0.8125rem; color: var(--text-light); margin-top: 1.5rem; }

/* ===== Testimonials ===== */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 1.75rem;
  position: relative;
}
.testimonial .stars { color: var(--star); font-size: 1.125rem; letter-spacing: 0.1em; }
.testimonial .quote {
  margin: 0.75rem 0 1rem;
  font-size: 1rem; line-height: 1.6;
  color: var(--text);
}
.testimonial .author {
  font-size: 0.875rem; color: var(--text-muted);
  display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center;
}
.testimonial .author strong { color: var(--text); }
.testimonial-placeholder {
  border: 2px dashed #FACC15;
  background: #FEFCE8;
}
.testimonial-placeholder::before {
  content: '⚠ TODO: Echtes Google-Review hier einsetzen';
  display: block;
  font-size: 0.75rem; font-weight: 700;
  color: #A16207; margin-bottom: 0.75rem;
}

/* ===== Form ===== */
.form-block {
  background: linear-gradient(180deg, #FFF4E6 0%, #FFF9F1 100%);
  padding: 4rem 1rem;
}
.form-card {
  max-width: 600px; margin: 0 auto;
  background: var(--surface); border-radius: 0.875rem;
  border: 1px solid rgba(232, 220, 202, 0.8);
  padding: 2.5rem; box-shadow: 0 22px 58px rgba(48, 29, 15, 0.13);
}
.form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-card .lead { color: var(--text-muted); margin-bottom: 1.75rem; }

.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block; font-size: 0.875rem; font-weight: 600;
  margin-bottom: 0.375rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: #FFFEFB;
  border-radius: 0.5rem; font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 20, 0.14);
}
.form-microcopy {
  font-size: 0.8125rem; color: var(--text-muted);
  margin-top: 1rem; text-align: center;
}
.partner-form-note {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.85rem;
  border-radius: 0.65rem;
  background: #FFF0DD;
  color: #7C2D12;
  border-left: 3px solid var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.form-alt-channels {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center; font-size: 0.9375rem; color: var(--text-muted);
}
.form-alt-channels a {
  color: var(--primary); font-weight: 600; text-decoration: none;
  margin: 0 0.25rem;
}
.form-alt-channels a:hover { text-decoration: underline; }

/* ===== Symptom-Checker (Reparatur) ===== */
.symptom-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.symptom-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: 0.875rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: all 0.2s ease; cursor: pointer; text-decoration: none; color: inherit;
}
.symptom-card:hover {
  border-color: var(--danger); transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220,38,38,0.1);
}
.symptom-card .icon { font-size: 2rem; }
.symptom-card h3 { font-size: 1.125rem; font-weight: 700; margin: 0; }
.symptom-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }
.symptom-card .cta {
  margin-top: auto; color: var(--danger); font-weight: 600; font-size: 0.9375rem;
}

/* ===== Sticky Mobile Bar (Reparatur prioritär) ===== */
.sticky-mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.625rem;
  z-index: 90;
  grid-template-columns: 1fr 1fr; gap: 0.5rem;
  box-shadow: 0 -8px 24px rgba(48, 29, 15, 0.14);
}
.sticky-mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.625rem 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  gap: 0.25rem;
}
.sticky-mobile-bar .icon { font-size: 1.25rem; }
.sticky-mobile-bar .call    { background: var(--danger); color: #fff; }
.sticky-mobile-bar .whatsapp { background: #25D366; color: #fff; }
.sticky-mobile-bar .form    { background: var(--bg-strong); color: var(--text); }

/* ===== Notfall-Banner (Reparatur) ===== */
.emergency-banner {
  background: var(--danger);
  color: #fff;
  padding: 0.625rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
}
.emergency-banner a { color: #fff; text-decoration: underline; }

/* ===== Header ===== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.site-header.with-banner { top: 0; } /* Banner scrollt mit; Header bleibt immer am Top */
.header-contact-bar {
  background: #060403;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}
.header-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.45rem 1rem;
}
.header-contact-inner a,
.header-contact-inner span {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.site-header-inner {
  max-width: 1200px; margin: 0 auto;
  min-height: 132px;
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  padding: 0.75rem 1rem; gap: 1.5rem;
}
.site-header .logo { font-weight: 800; font-size: 1.25rem; color: var(--text); text-decoration: none; }
.site-header .logo span { color: var(--primary); }
.header-trust-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 0;
}
.header-trust-chip {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #FFFCF7;
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(48, 29, 15, 0.07);
}
.header-trust-chip span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}
.header-trust-chip strong {
  color: var(--text);
  font-size: 0.98rem;
}
.header-google-chip img {
  width: 26px;
  height: 26px;
}
.header-partner-chip {
  flex-direction: column;
  gap: 0.15rem;
  min-width: 154px;
}
.header-partner-chip img {
  width: 126px;
  height: auto;
  object-fit: contain;
}
.header-wko-chip {
  flex-direction: column;
  gap: 0;
  min-width: 112px;
  border-color: rgba(249, 115, 22, 0.28);
  background: #FFF1E1;
}
.header-wko-chip strong {
  color: var(--accent-dark);
  letter-spacing: 0.08em;
}
.site-header .header-actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header .phone-link {
  font-weight: 700; color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.375rem;
}
.site-header .phone-link:hover { color: var(--accent-dark); }

@media (max-width: 1120px) {
  .site-header-inner {
    gap: 1rem;
  }
  .header-trust-panel {
    gap: 0.5rem;
  }
  .header-wko-chip {
    display: none;
  }
  .header-partner-chip {
    min-width: 142px;
  }
}

/* ===== Sections ===== */
section { padding: 4rem 1rem; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 900px; margin: 0 auto; }

h2.section-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800; line-height: 1.2;
  text-align: center; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
p.section-lead {
  text-align: center; color: var(--text-muted);
  max-width: 700px; margin: 0 auto 3rem;
  font-size: 1.0625rem;
}

/* ===== Checklist ===== */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding-left: 2rem; position: relative; margin-bottom: 0.625rem;
  font-size: 1rem;
}
.checklist li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--success); font-weight: 800; font-size: 1.125rem;
}

/* ===== Process Steps ===== */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.process-steps.steps-5 { grid-template-columns: repeat(5, 1fr); }
.process-step {
  text-align: center; padding: 1.5rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 0.875rem;
}
.process-step .number {
  width: 40px; height: 40px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.process-step p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ===== Risk Block (Wartung) ===== */
.risk-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  max-width: 1000px; margin: 0 auto;
}
.risk-card {
  padding: 1.75rem; border-radius: 0.875rem;
  background: #FFF7D6;
  border-left: 4px solid var(--warning);
}
.risk-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.risk-card .icon { font-size: 1.75rem; margin-bottom: 0.5rem; display: block; }

/* ===== FAQ ===== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item summary {
  font-weight: 600; font-size: 1.0625rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
  padding-right: 0.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; line-height: 1;
  color: var(--accent); font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0.875rem 0 0; color: var(--text-muted); line-height: 1.65; }

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, #17120F 0%, #7C2D12 100%);
  color: #fff; text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.95); margin: 0 auto 2rem; }

/* ===== Footer ===== */
.site-footer {
  background: #17120F; color: #E9D9C6; padding: 3rem 1rem 2rem;
}
.site-footer .container {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.site-footer a { color: #E9D9C6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .copy {
  border-top: 1px solid rgba(233, 217, 198, 0.22); padding-top: 1.5rem;
  text-align: center; font-size: 0.8125rem;
  max-width: 1200px; margin: 0 auto;
}

/* ===== Tabelle ===== */
.price-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border-radius: 0.875rem; overflow: hidden;
  box-shadow: 0 8px 26px rgba(48, 29, 15, 0.08);
}
.price-table th, .price-table td {
  padding: 1rem 1.25rem; text-align: left;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  background: var(--bg-soft); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.price-table tbody tr:hover { background: var(--bg-soft); }
.price-table .price-cell { font-weight: 700; color: var(--accent-dark); font-size: 1.0625rem; }
.price-table .featured-row { background: #FFF7ED; }

/* ===== Aktion-Box ===== */
.action-box {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, #FFF1D1 0%, #FFD6AE 100%);
  border: 2px solid var(--accent);
  border-radius: 0.875rem; padding: 2rem; text-align: center;
}
.action-box .label {
  display: inline-block; background: var(--danger); color: #fff;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 0.375rem 0.875rem; border-radius: 999px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.action-box .compare {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  margin: 1rem 0; flex-wrap: wrap;
}
.action-box .old-price { font-size: 1.25rem; text-decoration: line-through; color: var(--text-muted); }
.action-box .new-price { font-size: 2.25rem; font-weight: 800; color: var(--danger); }
.action-box .save { font-size: 1rem; font-weight: 600; color: var(--success); }

/* ===== Includes / Excludes Box ===== */
.included-box {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.included-box .col {
  background: var(--surface); border-radius: 0.875rem;
  border: 1px solid var(--border); padding: 1.75rem;
}
.included-box .col.included { border-left: 4px solid var(--success); }
.included-box .col.optional  { border-left: 4px solid var(--warning); }
.included-box h3 { margin-top: 0; margin-bottom: 1rem; }
.includes-layout,
.includes-layout > * {
  min-width: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header-contact-inner {
    justify-content: flex-start;
    gap: 1.1rem;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 0.78rem;
  }
  .header-contact-inner::-webkit-scrollbar {
    display: none;
  }
  .site-header-inner {
    min-height: 104px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.75rem;
  }
  .header-partner-chip {
    display: none;
  }
  .header-trust-panel {
    justify-content: flex-end;
  }
  .header-trust-chip {
    min-height: 48px;
    padding: 0.45rem 0.65rem;
  }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .responsibility-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .responsibility-media {
    max-width: 320px;
    margin: 0 auto;
  }
  .responsibility-copy {
    text-align: center;
  }
  .responsibility-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .responsibility-points {
    grid-template-columns: 1fr;
  }
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-steps, .process-steps.steps-5 { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .symptom-grid { grid-template-columns: 1fr; }
  .included-box { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1rem 3rem; }
  section { padding: 3rem 1rem; }
}
@media (max-width: 640px) {
  .header-contact-bar {
    display: none;
  }
  .site-header-inner {
    min-height: 92px;
    display: flex;
    justify-content: space-between;
  }
  .header-trust-panel {
    display: none;
  }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .site-header .header-actions .btn { display: none !important; }
  .site-header .phone-link {
    font-size: 1.25rem; padding: 0.5rem 0.75rem;
    background: var(--primary-light); border-radius: 0.625rem;
  }
  .site-header .phone-link span.label-text { display: none; }
  .site-header-inner { padding: 0.5rem 0.875rem; gap: 0.5rem; }
  .sticky-mobile-bar { display: grid; }
  body.with-sticky-bar { padding-bottom: 70px; }
  .form-card { padding: 1.75rem 1.25rem; }
  .responsibility-section {
    padding: 2rem 1rem;
  }
  .responsibility-card {
    padding: 1.25rem;
    border-radius: 0.875rem;
  }
  .responsibility-media {
    max-width: 245px;
  }
  .responsibility-copy h2 {
    font-size: 1.55rem;
  }
  .responsibility-copy p {
    font-size: 0.9875rem;
  }
  .includes-layout .checklist {
    grid-template-columns: 1fr !important;
  }
  .price-table th,
  .price-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }
  .price-table .price-cell {
    font-size: 0.9375rem;
  }
  .hero {
    background-position: 56% center;
    padding: 2.75rem 1rem 2.5rem;
  }
  .partner-disclosure {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.75rem;
  }
  .partner-disclosure span {
    width: fit-content;
  }
  .partner-disclosure p {
    font-size: 0.83rem;
  }
  .hero-text > div[style*="display:flex"] {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .hero-offer-card {
    padding: 1.35rem;
    border-radius: 0.875rem;
  }
  .emergency-banner { font-size: 0.8125rem; padding: 0.5rem 0.75rem; }
  body { margin: 0; }
  html { margin: 0; }
}
