/* ============================================================
   Container-Preise — Landingpage
   Tokens, Layout, Komponenten
   ============================================================ */

:root {
  /* Blau — Hauptfarbe / Vertrauen */
  --blue-900: #0c2f63;
  --blue-800: #0f3f86;
  --blue-700: #1556c4;
  --blue-600: #1d6ae5;
  --blue-500: #3d83f2;
  --blue-100: #dbe9fd;
  --blue-50:  #eef4fe;

  /* Orange — Action / Buttons */
  --orange-600: #d8560f;
  --orange-500: #f26b1d;
  --orange-100: #fde4d3;
  --orange-50:  #fef3eb;

  /* Grün — Umwelt / Häkchen */
  --green-700: #0f7a45;
  --green-600: #169a55;
  --green-100: #d6f0e0;
  --green-50:  #eaf8f0;

  /* Neutrale */
  --ink:      #14181f;
  --ink-2:    #424b59;
  --ink-3:    #6b7686;
  --line:     #e4e8ee;
  --line-2:   #eef1f5;
  --white:    #ffffff;
  --bg-alt:   #f5f7fa;   /* fast weiß, dezent unterscheidbar */

  --amber: #f5a623; /* Sterne */

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(18,24,32,.05), 0 1px 3px rgba(18,24,32,.06);
  --shadow:    0 4px 14px rgba(18,32,55,.07), 0 2px 4px rgba(18,32,55,.05);
  --shadow-lg: 0 18px 50px rgba(15,40,86,.14), 0 6px 18px rgba(15,40,86,.08);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 56px);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: var(--blue-700); text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--alt { background: var(--bg-alt); }
.section--blue { background: var(--blue-900); color: #cfe0fb; }
.section--blue h2, .section--blue h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-700);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange-500); border-radius: 2px; }
.section--blue .eyebrow { color: #8fb6f5; }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); margin: 14px 0 14px; }
.section-head p { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 58px; padding: 0 28px;
  font-family: var(--font); font-size: 1.12rem; font-weight: 700; line-height: 1;
  border-radius: 12px; border: 2px solid transparent; cursor: pointer;
  transition: transform .16s cubic-bezier(.22,.61,.36,1), box-shadow .16s ease, filter .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap; text-align: center;
}
.btn svg { width: 22px; height: 22px; flex: none; }
.btn--lg { min-height: 66px; font-size: 1.2rem; padding: 0 36px; }
.btn--block { width: 100%; }

/* Cooler Glanz-Effekt (Shine) – Text bleibt weiss & kräftig */
.btn--primary::before, .btn--phone::before, .btn--blue::before {
  content: ""; position: absolute; top: 0; left: 0; width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.38) 50%, transparent 100%);
  transform: translateX(-180%) skewX(-18deg); pointer-events: none; z-index: 0;
  transition: transform .65s cubic-bezier(.22,.61,.36,1);
}
.btn--primary:hover::before, .btn--phone:hover::before, .btn--blue:hover::before { transform: translateX(320%) skewX(-18deg); }
.btn--primary > *, .btn--phone > *, .btn--blue > * { position: relative; z-index: 1; }

.btn--primary { background: var(--orange-500); color: #fff; box-shadow: 0 6px 16px rgba(216,86,15,.28); }
.btn--primary:hover, .btn--primary:focus-visible { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(216,86,15,.42), 0 0 0 4px rgba(216,86,15,.14); filter: brightness(1.06) saturate(1.06); }
.btn--primary:active { transform: translateY(-1px); }

.btn--phone { background: var(--green-600); color: #fff; box-shadow: 0 6px 16px rgba(15,122,69,.26); }
.btn--phone:hover, .btn--phone:focus-visible { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(15,122,69,.42), 0 0 0 4px rgba(15,122,69,.14); filter: brightness(1.07) saturate(1.06); }
.btn--phone:active { transform: translateY(-1px); }

.btn--blue { background: var(--blue-600); color: #fff; }
.btn--blue:hover, .btn--blue:focus-visible { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(21,86,196,.40), 0 0 0 4px rgba(21,86,196,.14); filter: brightness(1.06) saturate(1.06); }
.btn--blue:active { transform: translateY(-1px); }

.btn--ghost { background: #fff; color: var(--blue-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-700); }

.btn--white { background: #fff; color: var(--blue-800); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============================================================
   Top utility bar
   ============================================================ */
.topbar {
  background: var(--blue-900); color: #cfe0fb;
  font-size: .92rem; font-weight: 500;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; padding-block: 6px; }
.topbar .dot { width: 9px; height: 9px; border-radius: 50%; background: #34d27b; display: inline-block; box-shadow: 0 0 0 4px rgba(52,210,123,.2); margin-right: 8px; }
.topbar a { color: #fff; font-weight: 700; white-space: nowrap; }
.topbar .topbar-right span:last-child { white-space: nowrap; }
.topbar .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar .topbar-right span { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 760px) { .topbar .topbar-right { display: none; } }

/* ============================================================
   Header / Nav
   ============================================================ */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header .wrap { display: flex; align-items: center; gap: 24px; min-height: 76px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-mark { width: 42px; height: 42px; border-radius: 11px; background: linear-gradient(150deg, var(--blue-600), var(--blue-800)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm); flex: none; }
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; }
.logo-text b { font-size: 1.2rem; font-weight: 800; color: var(--ink); letter-spacing: -.025em; white-space: nowrap; }
.logo-text b .tld { color: var(--blue-600); }
.logo-text .logo-sub { font-size: .76rem; color: var(--ink-3); font-weight: 600; white-space: nowrap; letter-spacing: .004em; }

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a { color: var(--ink-2); font-weight: 600; font-size: 1.02rem; }
.nav a:hover { color: var(--blue-700); }
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.header-phone { display: inline-flex; align-items: center; gap: 9px; height: 50px; padding: 0 18px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; font-weight: 800; font-size: 1.06rem; color: var(--ink); white-space: nowrap; letter-spacing: -.01em; transition: border-color .14s, color .14s, box-shadow .14s, transform .14s; }
.header-phone:hover { border-color: var(--green-600); color: var(--green-700); box-shadow: 0 5px 14px rgba(15,122,69,.13); transform: translateY(-1px); }
.header-phone svg { width: 20px; height: 20px; color: var(--green-600); flex: none; }

.nav-toggle { display: none; }
@media (max-width: 1000px) {
  .nav { display: none; }
}
@media (max-width: 560px) {
  .header-phone { display: none; }
  .header .wrap { gap: 14px; }
  .header-cta .btn { padding: 0 18px; font-size: 1rem; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background:
    radial-gradient(900px 500px at 88% -8%, var(--blue-50), transparent 60%),
    radial-gradient(700px 460px at -6% 12%, var(--orange-50), transparent 55%),
    var(--white);
  overflow: hidden;
}
.hero .wrap { display: grid; grid-template-columns: 1.08fr minmax(360px, .92fr); gap: clamp(32px, 5vw, 60px); align-items: stretch; padding-block: clamp(40px, 5vw, 70px); }
.hero-copy { display: flex; flex-direction: column; }

.rating-inline { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .92rem; font-weight: 600; color: var(--ink-2); margin-bottom: 22px; }
.rating-inline .ri-ic { display: inline-flex; color: var(--green-600); }
.rating-inline .ri-ic svg { width: 18px; height: 18px; }
.stars { display: inline-flex; gap: 1px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.rating-inline b { color: var(--ink); }
.rating-inline__copy { display: inline; line-height: 1.35; white-space: normal; }
.rating-inline__sep { padding-inline: .22em; color: var(--ink-3); font-weight: 600; }

.hero h1 { font-size: clamp(1.95rem, 3.3vw, 2.75rem); color: var(--ink); margin-bottom: 18px; max-width: 14ch; text-wrap: balance; }
.hero h1 .hl { color: var(--blue-700); }
.hero .lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-2); max-width: 520px; margin-bottom: 26px; }

.hero-usps { display: flex; flex-wrap: wrap; gap: 11px 24px; }

.hero-call { margin-top: 0; padding-top: 22px; }
.hero-call .btn--phone { width: 100%; max-width: 420px; }
.hero-call-note { display: block; margin-top: 12px; font-size: .95rem; font-weight: 600; color: var(--ink-3); }
.hero-usps li { list-style: none; display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-2); font-size: 1rem; }
.check { width: 24px; height: 24px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.check svg { width: 14px; height: 14px; }

/* Hero quick form */
.hero-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 2.6vw, 30px); align-self: stretch; display: flex; flex-direction: column; }
.hf-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .84rem; font-weight: 700; color: var(--green-700); background: var(--green-50); padding: 6px 13px; border-radius: 999px; }
.hf-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d27b; box-shadow: 0 0 0 4px rgba(52,210,123,.2); }
.hf-title { font-size: clamp(1.4rem, 2.2vw, 1.65rem); margin: 14px 0 6px; }
.hf-sub { font-size: 1rem; color: var(--ink-2); margin-bottom: 20px; }
.hf-field { margin-bottom: 14px; }
.hf-field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 7px; font-size: 1rem; }
.hf-field select { width: 100%; min-height: 58px; padding: 0 44px 0 16px; font-family: var(--font); font-size: 1.06rem; font-weight: 500; border: 2px solid var(--line); border-radius: 12px; background-color: #fff; color: var(--ink); cursor: pointer; transition: border-color .12s, box-shadow .12s; }
.hf-field select:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); }
.hero-form .btn--block { margin-top: 4px; }
.hf-or { display: flex; align-items: center; gap: 14px; margin: 14px 0; color: var(--ink-3); font-weight: 600; font-size: .92rem; }
.hf-or::before, .hf-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.hf-usps { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 16px; margin-top: auto; padding-top: 18px; }
.hf-usps li { list-style: none; display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.hf-tick { width: 18px; height: 18px; border-radius: 50%; background: var(--green-100); color: var(--green-700); display: grid; place-items: center; flex: none; }
.hf-tick svg { width: 11px; height: 11px; }

/* Custom chevron für alle Selects – fixe Größe, eigene Klickfläche, Text wird nie überdeckt */
select { appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7686' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-size: 18px 18px;
  text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
select::-ms-expand { display: none; }

@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; align-items: stretch; }
  .hero h1 { max-width: 18ch; }
  .hero-form { max-width: 520px; }
  .hero-call { padding-top: 24px; }
  .hero-call .btn--phone { max-width: 520px; }
}

/* Trust strip under hero — schwebende Karte als eleganter Trenner */
.trustbar { background: transparent; border: none; position: relative; z-index: 5; }
.trustbar .wrap { padding-block: 0; }
.trustbar .trust-card { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px clamp(22px, 3.5vw, 46px); background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 22px clamp(22px, 3vw, 40px); margin-top: clamp(-52px, -4vw, -36px); }
.trust-item { display: flex; align-items: center; gap: 15px; flex: 0 1 auto; justify-content: center; }
.trust-ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.trust-ic svg { width: 25px; height: 25px; }
.trust-ic.blue { background: var(--blue-50); color: var(--blue-700); }
.trust-ic.green { background: var(--green-50); color: var(--green-700); }
.trust-ic.orange { background: var(--orange-50); color: var(--orange-600); }
.trust-txt { line-height: 1.15; }
.trust-txt b { display: block; font-size: clamp(1.35rem, 2.2vw, 1.7rem); color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.trust-txt span { font-size: .92rem; color: var(--ink-3); font-weight: 600; }
.trust-div { width: 1px; align-self: stretch; min-height: 44px; margin-block: 2px; background: var(--line); flex: none; }
@media (max-width: 860px) {
  .trustbar .trust-card { gap: 22px 30px; padding: 24px 20px; margin-top: -40px; }
  .trust-item { flex: 0 1 40%; justify-content: flex-start; gap: 13px; }
  .trust-div { display: none; }
}
@media (max-width: 460px) {
  .trust-item { flex: 1 1 100%; justify-content: center; }
}

/* ============================================================
   Ablauf — 3 Schritte
   ============================================================ */
/* Ablauf-Band: elegant vom Hero abgesetzt */
.ablauf { position: relative; background: linear-gradient(180deg, var(--blue-50) 0%, #eaf1fd 100%); overflow: hidden; }
.ablauf::before { content: ""; position: absolute; top: -1px; left: -5%; width: 110%; height: 60px; background: var(--white); border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.ablauf::after { content: ""; position: absolute; right: -120px; top: 40px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(242,107,29,.07), transparent 70%); pointer-events: none; }
.ablauf .wrap { position: relative; z-index: 1; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.steps::before { content: ""; position: absolute; top: 72px; left: 18%; right: 18%; border-top: 2px dashed var(--blue-100); z-index: 0; }
.step { background: #fff; border: 1px solid var(--blue-100); border-radius: var(--radius-lg); padding: 36px 30px 30px; position: relative; z-index: 1; text-align: center; box-shadow: 0 8px 26px rgba(21,86,196,.07); transition: transform .16s, box-shadow .16s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(21,86,196,.12); }
.step-ic-wrap { position: relative; width: 72px; margin: 0 auto 22px; }
.step-ic { width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(150deg, var(--blue-600), var(--blue-800)); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 18px rgba(21,86,196,.25); }
.step-ic svg { width: 34px; height: 34px; }
.step-badge { position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; border-radius: 50%; background: var(--orange-500); color: #fff; font-weight: 800; font-size: .98rem; display: grid; place-items: center; border: 3px solid #fff; box-shadow: 0 3px 8px rgba(216,86,15,.3); }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { font-size: 1.02rem; color: var(--ink-2); }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps::before { display: none; }
  .ablauf::before { height: 40px; }
}

/* ============================================================
   Containergrößen
   ============================================================ */
.size-list { display: grid; gap: 14px; }
.size-row { display: grid; grid-template-columns: 80px minmax(0, 1fr) auto auto; align-items: center; gap: 26px; background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 18px 22px; position: relative; cursor: pointer; transition: border-color .16s, box-shadow .16s, transform .16s; }
.size-row:hover { border-color: var(--blue-500); box-shadow: var(--shadow); transform: translateY(-2px); }
.size-row.popular { border-color: var(--orange-500); box-shadow: 0 6px 22px rgba(242,107,29,.10); }

.sr-vol { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 80px; height: 80px; border-radius: 14px; background: var(--blue-50); color: var(--blue-800); flex: none; }
.sr-vol b { font-size: 1.85rem; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.sr-vol small { font-size: .82rem; font-weight: 700; margin-top: 2px; }
.size-row.popular .sr-vol { background: var(--orange-50); color: var(--orange-600); }

.sr-main { min-width: 0; }
.sr-name { display: block; color: var(--ink); font-size: 1.22rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 3px; }
.sr-desc { display: block; font-size: .98rem; color: var(--ink-3); }
.sr-main .sr-detail { display: block; font-size: .8rem; color: var(--ink-3); font-weight: 500; margin-top: 5px; text-align: left; }

.sr-price { display: flex; flex-direction: column; align-items: flex-end; text-align: right; line-height: 1.2; max-width: 260px; }
.sr-tp-line { display: flex; align-items: baseline; gap: 3px; white-space: nowrap; }
.sr-tp-line .sr-tp { font-size: 1.6rem; color: var(--orange-600); font-weight: 800; letter-spacing: -.02em; }
.sr-tp-line small { font-size: .8rem; color: var(--ink-3); font-weight: 700; }
.sr-detail .sr-w, .sr-detail .sr-add { color: var(--ink-2); font-weight: 700; }
.sr-total { font-size: .85rem; color: var(--ink-2); font-weight: 600; margin-top: 3px; white-space: nowrap; }
.sr-total .sr-tot { color: var(--ink); font-weight: 800; }

.sr-btn { min-height: 52px; padding: 0 26px; box-shadow: 0 4px 12px rgba(216,86,15,.22); }
.size-row:hover .sr-btn { box-shadow: 0 8px 20px rgba(216,86,15,.30); }

.sr-tag { position: absolute; top: -11px; left: 22px; background: var(--orange-500); color: #fff; font-size: .74rem; font-weight: 700; padding: 4px 13px; border-radius: 999px; letter-spacing: .02em; box-shadow: 0 3px 8px rgba(216,86,15,.25); }

@media (max-width: 820px) {
  .size-row { grid-template-columns: 64px minmax(0, 1fr) auto; gap: 10px 16px; padding: 18px; }
  .sr-vol { width: 64px; height: 64px; }
  .sr-vol b { font-size: 1.5rem; }
  .sr-price { grid-column: 2 / -1; align-items: flex-start; text-align: left; margin-top: 4px; max-width: none; }
  .sr-btn { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
}

.size-help { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: space-between; margin-top: 30px; background: var(--blue-50); border: 1px solid var(--blue-100); border-radius: var(--radius); padding: 22px 28px; }
.size-help p { color: var(--blue-900); font-size: 1.05rem; }
.size-help b { color: var(--blue-800); }

/* ============================================================
   Abfallarten
   ============================================================ */
.waste-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.waste-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; transition: border-color .15s, transform .15s, box-shadow .15s; cursor: pointer; }
.waste-card:hover { border-color: var(--blue-500); transform: translateY(-3px); box-shadow: var(--shadow); }
.waste-ic { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; flex: none; color: #fff; }
.waste-ic svg { width: 26px; height: 26px; }
.waste-ic.c-brick { background: #c2613a; }
.waste-ic.c-mix   { background: var(--blue-600); }
.waste-ic.c-green { background: var(--green-600); }
.waste-ic.c-wood  { background: #a06a32; }
.waste-ic.c-bulk  { background: #7a59c9; }
.waste-ic.c-soil  { background: #6d7b54; }
.waste-ic.c-house { background: var(--ink-2); }
.waste-ic.c-gips  { background: #2aa6b8; }
.waste-info b { display: block; color: var(--ink); font-size: 1.06rem; font-weight: 700; }
.waste-info span { font-size: .9rem; color: var(--ink-3); }
@media (max-width: 1000px) { .waste-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .waste-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Preise — Tabelle
   ============================================================ */
.price-note { display: inline-flex; align-items: center; gap: 12px; background: var(--green-50); border: 1px solid var(--green-100); border-radius: 12px; padding: 14px 20px; margin-bottom: 30px; color: var(--green-700); font-weight: 600; }
.price-note svg { width: 24px; height: 24px; flex: none; }
.price-note b { color: var(--green-700); }

.tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.tab { padding: 11px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: .98rem; color: var(--ink-2); cursor: pointer; font-family: var(--font); transition: all .12s; }
.tab:hover { border-color: var(--blue-500); }
.tab.active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }

.price-table-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
table.price { width: 100%; border-collapse: collapse; }
table.price thead th { background: var(--bg-alt); text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 700; padding: 16px 22px; }
table.price tbody td { padding: 18px 22px; border-top: 1px solid var(--line-2); font-size: 1.04rem; vertical-align: middle; }
table.price tbody tr:hover { background: var(--blue-50); }
table.price .c-size { font-weight: 800; color: var(--ink); font-size: 1.12rem; }
table.price .c-size small { display: block; font-weight: 500; color: var(--ink-3); font-size: .85rem; }
table.price .c-weight { color: var(--ink-2); font-weight: 600; white-space: nowrap; }
table.price .c-tp { white-space: nowrap; }
table.price .c-tp b { font-size: 1.45rem; color: var(--orange-600); font-weight: 800; letter-spacing: -.02em; }
table.price .c-tp small { font-size: .82rem; color: var(--ink-3); font-weight: 700; }
table.price .c-add { color: var(--ink-2); font-weight: 600; white-space: nowrap; }
table.price .c-price b { font-size: 1.2rem; color: var(--ink); font-weight: 800; }
table.price .tag-incl { display: inline-flex; align-items: center; gap: 6px; color: var(--green-700); font-weight: 600; font-size: .95rem; }
table.price .c-action .btn { min-height: 46px; padding: 0 20px; font-size: .98rem; }
.price-fine { font-size: .92rem; color: var(--ink-3); margin-top: 18px; }
@media (max-width: 760px) {
  table.price thead { display: none; }
  table.price tbody td { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-top: none; padding: 5px 20px; }
  table.price tbody td::before { content: attr(data-th); color: var(--ink-3); font-weight: 700; font-size: .85rem; }
  table.price tbody tr { display: block; border-top: 1px solid var(--line); padding: 14px 0; }
  table.price tbody tr:first-child { border-top: none; }
  table.price .c-size { padding-top: 14px; }
  table.price .c-size::before { display: none; }
  table.price .c-action { padding-bottom: 14px; padding-top: 12px; }
  table.price .c-action::before { display: none; }
  table.price .c-action .btn { width: 100%; }
}

/* ============================================================
   Warum wir / Features
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.feature-ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; }
.feature-ic svg { width: 28px; height: 28px; }
.feature-ic.f-orange { background: var(--orange-50); color: var(--orange-600); }
.feature-ic.f-blue { background: var(--blue-50); color: var(--blue-700); }
.feature-ic.f-green { background: var(--green-50); color: var(--green-700); }
.feature h3 { font-size: 1.2rem; margin-bottom: 9px; }
.feature p { font-size: 1rem; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* Eco band */
.eco { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); align-items: center; margin-top: 36px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-sm); }
.eco-list { display: grid; gap: 14px; }
.eco-list li { list-style: none; display: flex; align-items: center; gap: 13px; font-weight: 600; color: var(--ink); font-size: 1.06rem; }
.eco-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt, #f3f6fb);
}
.eco-img-wrap .eco-img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
}
.eco-img-wrap.eco-img-wrap--empty {
  border: 1.5px dashed var(--line);
  min-height: 220px;
}
.eco-img { width: 100%; aspect-ratio: 1/1; border-radius: var(--radius); object-fit: cover; }
@media (max-width: 820px) { .eco { grid-template-columns: 1fr; } .eco-img-wrap { order: -1; } .eco-img { order: -1; } }

/* ============================================================
   Einsatzgebiete
   ============================================================ */
.area-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px,5vw,56px); align-items: center; }
.area-features { display: grid; gap: 14px; margin: 24px 0 0; }
.area-features li { list-style: none; display: flex; align-items: center; gap: 12px; font-weight: 600; color: #dce8fb; font-size: 1.05rem; }
.area-features .dot-g { width: 11px; height: 11px; border-radius: 50%; background: #34d27b; flex: none; }
.area-map { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 30px; }
.area-map h3 { font-size: 1.15rem; margin-bottom: 18px; color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { display: inline-flex; align-items: center; padding: 9px 16px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #e8f0fc; font-weight: 600; font-size: .96rem; transition: background .12s; }
.chip:hover { background: rgba(255,255,255,.16); color: #fff; }
.chip.more { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
@media (max-width: 820px) { .area-wrap { grid-template-columns: 1fr; } }

/* ============================================================
   Sicherheit / Garantie (statt Testimonials)
   ============================================================ */
.assurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.assure-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.assure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-200, var(--blue-100)); }
.assure-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 16px; }
.assure-ic svg { width: 28px; height: 28px; }
.assure-ic.a-orange { background: var(--orange-50); color: var(--orange-600); }
.assure-ic.a-blue { background: var(--blue-50); color: var(--blue-600); }
.assure-ic.a-green { background: var(--green-50); color: var(--green-700); }
.assure-card h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--ink); }
.assure-card p { color: var(--ink-2); font-size: 1rem; line-height: 1.55; }

.guarantee-banner { display: flex; align-items: center; gap: 20px; margin-top: 26px;
  background: linear-gradient(120deg, var(--green-50), var(--blue-50)); border: 1.5px solid var(--green-100);
  border-radius: var(--radius-lg); padding: 22px 26px; }
.gb-ic { width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--green-700); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.gb-ic svg { width: 30px; height: 30px; }
.gb-text { flex: 1; min-width: 0; }
.gb-text b { display: block; font-size: 1.2rem; color: var(--ink); }
.gb-text span { color: var(--ink-2); font-size: 1.02rem; }
.guarantee-banner .btn { flex: none; }
@media (max-width: 900px) { .assurance { grid-template-columns: 1fr; } }
@media (max-width: 680px) {
  .guarantee-banner { flex-wrap: wrap; text-align: center; justify-content: center; }
  .gb-text { flex: 1 1 100%; text-align: center; }
  .guarantee-banner .btn { width: 100%; }
}

/* ============================================================
   Anfrageformular
   ============================================================ */
.form-section { background:
    radial-gradient(700px 420px at 85% 0%, var(--blue-50), transparent 60%),
    var(--bg-alt);
}
.form-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px,5vw,60px); align-items: start; }
.form-aside h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); margin: 14px 0 16px; }
.form-aside p { font-size: 1.12rem; margin-bottom: 26px; }
.form-aside .guarantee { display: grid; gap: 14px; margin-top: 6px; }
.form-aside .guarantee li { list-style: none; display: flex; align-items: flex-start; gap: 13px; font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.aside-phone { margin-top: 30px; padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; }
.aside-phone .ap-ic { width: 52px; height: 52px; border-radius: 13px; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; flex: none; }
.aside-phone .ap-ic svg { width: 26px; height: 26px; }
.aside-phone small { color: var(--ink-3); font-weight: 600; display: block; font-size: .9rem; }
.aside-phone b { font-size: 1.5rem; color: var(--ink); letter-spacing: -.01em; }
.aside-phone a { color: var(--ink); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(26px,3.5vw,40px); }
.form-progress { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fp-step { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .92rem; color: var(--ink-3); }
.fp-step .num { width: 30px; height: 30px; border-radius: 50%; background: var(--line); color: var(--ink-3); display: grid; place-items: center; font-size: .9rem; transition: all .2s; }
.fp-step.on .num { background: var(--blue-600); color: #fff; }
.fp-step.done .num { background: var(--green-600); color: #fff; }
.fp-step.on { color: var(--ink); }
.fp-line { flex: 1; height: 2px; background: var(--line); border-radius: 2px; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeUp .3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step-title { font-size: 1.32rem; color: var(--ink); margin: 22px 0 18px; font-weight: 800; }
.step-title .q { color: var(--blue-700); }

.waste-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.wp { display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; padding: 16px 8px; border: 2px solid var(--line); border-radius: 13px; cursor: pointer; background: #fff; transition: all .14s; }
.wp:hover { border-color: var(--blue-400, var(--blue-500)); background: var(--blue-50); }
.wp.sel { border-color: var(--blue-600); background: var(--blue-50); box-shadow: 0 0 0 3px var(--blue-100); }
.wp .wp-ic { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.wp .wp-ic svg { width: 21px; height: 21px; }
.wp b { font-size: .95rem; color: var(--ink); font-weight: 700; line-height: 1.2; }
@media (max-width: 560px) { .waste-pick { grid-template-columns: repeat(2, 1fr); } }

.size-pick { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 10px; }
.sp { padding: 14px 6px; border: 2px solid var(--line); border-radius: 11px; cursor: pointer; text-align: center; transition: all .14s; background:#fff; }
.sp:hover { border-color: var(--blue-500); }
.sp.sel { border-color: var(--blue-600); background: var(--blue-50); box-shadow: 0 0 0 3px var(--blue-100); }
.sp b { display: block; font-size: 1.1rem; color: var(--ink); font-weight: 800; }
.sp small { font-size: .8rem; color: var(--ink-3); }
@media (max-width: 560px) { .size-pick { grid-template-columns: repeat(3, 1fr); } }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 7px; font-size: 1rem; }
.field label .opt { color: var(--ink-3); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 56px; padding: 0 18px; font-family: var(--font); font-size: 1.08rem;
  border: 2px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); transition: border-color .12s, box-shadow .12s;
}
.field textarea { min-height: 96px; padding: 14px 18px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); }
.field input.err, .field select.err { border-color: #e0524c; box-shadow: 0 0 0 3px #f8dad8; }
.field-row { display: grid; grid-template-columns: 1fr 2fr; gap: 14px; }
.field-row.half { grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.consent { display: flex; align-items: flex-start; gap: 11px; margin: 6px 0 20px; font-size: .95rem; color: var(--ink-2); }
.consent input { width: 22px; height: 22px; margin-top: 2px; flex: none; accent-color: var(--blue-600); }

.form-actions { display: flex; gap: 12px; align-items: center; }
.form-actions .btn--back { background: none; border: none; color: var(--ink-3); font-weight: 700; cursor: pointer; font-family: var(--font); font-size: 1.02rem; min-height: 58px; padding: 0 6px; }
.form-actions .btn--back:hover { color: var(--ink); }
.form-actions .grow { margin-left: auto; }

.form-success { display: none; text-align: center; padding: 24px 10px; }
.form-success.show { display: block; animation: fadeUp .4s ease; }
.success-ic { width: 86px; height: 86px; border-radius: 50%; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; margin: 0 auto 22px; }
.success-ic svg { width: 46px; height: 46px; }
.form-success h3 { font-size: 1.7rem; margin-bottom: 12px; }
.form-success p { font-size: 1.08rem; max-width: 380px; margin: 0 auto; }

@media (max-width: 880px) { .form-shell { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { width: 100%; max-width: none; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow .15s, border-color .15s; }
.faq-item.open { border-color: var(--blue-200, var(--blue-100)); box-shadow: var(--shadow); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 16px; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font); font-size: 1.14rem; font-weight: 700; color: var(--ink); }
.faq-q .fq-plus { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); display: grid; place-items: center; flex: none; transition: transform .2s, background .2s; }
.faq-q .fq-plus svg { width: 18px; height: 18px; }
.faq-item.open .fq-plus { background: var(--blue-700); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-item.open > .faq-a { max-height: 2400px; }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-2); font-size: 1.04rem; }
.faq-cta { text-align: center; margin-top: 30px; font-size: 1.08rem; color: var(--ink-2); }

/* ============================================================
   Final CTA / Beratung
   ============================================================ */
.beratung { text-align: center; }
.beratung .wrap { max-width: 760px; }
.beratung h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; margin-bottom: 16px; }
.beratung p { font-size: 1.18rem; margin-bottom: 30px; }
.beratung-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.beratung-meta { margin-top: 26px; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; color: #aecaf6; font-weight: 600; }
.beratung-meta a { color: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #0a213f; color: #9fb6d6; padding-block: 56px 30px; }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .logo-text b { color: #fff; }
.footer .logo-text span { color: #8aa3c4; }
.footer .logo-mark { background: linear-gradient(150deg, var(--blue-500), var(--blue-700)); }
.footer-about { font-size: 1rem; margin-top: 16px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 16px; letter-spacing: .01em; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: #9fb6d6; font-weight: 500; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .92rem; color: #7e97ba; }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom a { color: #9fb6d6; }
@media (max-width: 820px) { .footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer .wrap { grid-template-columns: 1fr; } }

/* ============================================================
   Sticky mobile action bar
   ============================================================ */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 70; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.mobile-bar .btn { flex: 1; min-height: 56px; font-size: 1.05rem; }
@media (max-width: 760px) { .mobile-bar { display: none; } }

/* Section divider arrow accents kept minimal */
.lead-sub { color: var(--ink-3); font-size: .96rem; }

/* ============================================================
   Hero-Live-Preis
   ============================================================ */
.hf-price {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
  gap: 8px 14px;
  align-items: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  animation: fadeUp .25s ease;
}
.hf-price-copy { min-width: 0; }
.hf-price-label {
  display: block;
  font-weight: 700;
  color: var(--green-700);
  font-size: clamp(.84rem, 2.4vw, .95rem);
  line-height: 1.35;
}
.hf-price-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 3px;
  min-width: 0;
}
.hf-price-val {
  font-size: clamp(1.35rem, 4vw, 1.55rem);
  color: var(--orange-600);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  white-space: nowrap;
}
.hf-price-val .hf-per {
  font-size: .82rem;
  font-weight: 600;
  color: var(--orange-600);
  margin-left: 2px;
}
.hf-price-note {
  font-size: .74rem;
  color: var(--ink-3);
  font-weight: 400;
  line-height: 1.25;
}

select.err { border-color: #e0524c !important; box-shadow: 0 0 0 3px #f8dad8; }

/* ============================================================
   Anfrage-Teaser (Sektion)
   ============================================================ */
.form-teaser { display: flex; flex-direction: column; }
.teaser-title { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 14px 0 8px; }
.teaser-sub { color: var(--ink-2); margin-bottom: 24px; font-size: 1.05rem; }
.teaser-steps { list-style: none; display: grid; gap: 14px; margin-bottom: 26px; }
.teaser-steps li { display: flex; align-items: center; gap: 15px; }
.ts-num { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-50); color: var(--blue-700); font-weight: 800; font-size: 1.1rem; display: grid; place-items: center; flex: none; }
.teaser-steps b { display: block; color: var(--ink); font-size: 1.08rem; }
.teaser-steps span { font-size: .96rem; color: var(--ink-3); }
.teaser-fine { text-align: center; font-size: .9rem; color: var(--ink-3); margin-top: 16px; font-weight: 600; }

/* ============================================================
   Anfrage-Modal (Popup)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 200; overflow-y: auto; }
.modal[hidden] { display: none; }
.modal-overlay { position: fixed; inset: 0; background: rgba(8,24,48,.58); backdrop-filter: blur(3px); opacity: 0; transition: opacity .22s ease; }
.modal.open .modal-overlay { opacity: 1; }
.modal-card { position: relative; z-index: 1; background: #fff; border-radius: var(--radius-lg); width: min(560px, calc(100% - 24px)); margin: 5vh auto 5vh; box-shadow: var(--shadow-lg); overflow: hidden; opacity: 0; transform: translateY(20px) scale(.985); transition: opacity .24s ease, transform .24s ease; }
.modal.open .modal-card { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .modal-card, .modal-overlay { transition: none; } }

/* Fenstertitel-Leiste (wie ein Dialogfenster) */
.modal-titlebar { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--blue-900); color: #fff; padding: 12px 18px; }
.mt-title { display: inline-flex; align-items: center; gap: 9px; font-size: 1.05rem; font-weight: 800; color: #fff; letter-spacing: -.01em; min-width: 0; }
/* Kurzvariante des Titels nur im Mobile-View aktiv */
.mt-title .t-short { display: none; }
.mt-title .mt-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d27b; box-shadow: 0 0 0 4px rgba(52,210,123,.25); flex: none; }
.mt-price { display: inline-flex; align-items: baseline; gap: 8px; flex: none;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: 10px; padding: 6px 12px;
  transition: background .2s, border-color .2s; }
.mt-price .mp-chip-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #bcd3f5; }
.mt-price .mp-val { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -.02em; white-space: nowrap; line-height: 1.1; }
.mt-price .mp-val .mp-per { font-size: .72rem; font-weight: 700; color: #cfe0f7; margin-left: 1px; }
.mt-price.ready { background: rgba(52,210,123,.20); border-color: rgba(52,210,123,.45); }
.mt-price.ready .mp-chip-label { color: #bdf3d3; }

.modal-body { padding: 18px 22px 4px; }
.modal-foot { padding: 8px 22px 22px; }
.modal-intro { color: var(--ink-3); font-size: .92rem; margin-bottom: 14px; }
.modal-intro kbd { font-family: var(--font); font-size: .8rem; font-weight: 700; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; color: var(--ink-2); }

/* Abschnitts-Label (schlank statt nummerierter Badges) */
.mrow-sec { display: block; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .045em; color: var(--blue-700); margin: 16px 0 9px; }
.mrow-sec:first-of-type { margin-top: 2px; }
.mrow-sec .opt { font-weight: 600; text-transform: none; letter-spacing: 0; color: var(--ink-3); }

/* Inline-Zeilen: Label links, Eingabe rechts (aufgeräumt, gut lesbar) */
.mrow { display: grid; grid-template-columns: 128px 1fr; align-items: center; gap: 14px; margin-bottom: 10px; }
.mrow label { font-weight: 700; color: var(--ink); font-size: .98rem; }
.mrow label .opt { font-weight: 600; color: var(--ink-3); }
/* Pflichtfeld-Kennzeichnung: dezentes Sternchen */
.req { color: #e8915c; font-weight: 700; }
.req-legend { font-weight: 600; color: var(--ink-3); font-size: .85em; white-space: nowrap; }
.mrow select, .mrow input { width: 100%; min-height: 52px; padding: 0 14px; font-family: var(--font); font-size: 1.02rem; font-weight: 500; border: 2px solid var(--line); border-radius: 11px; background-color: #fff; color: var(--ink); transition: border-color .12s, box-shadow .12s; }
.mrow select { padding-right: 42px; cursor: pointer; }
.mrow input::placeholder { color: var(--ink-3); font-weight: 500; }
.mrow select:focus, .mrow input:focus { outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 3px var(--blue-100); }
.mrow input.err, .mrow select.err { border-color: #e0524c; box-shadow: 0 0 0 3px #f8dad8; }

.ms-hint { font-size: .88rem; color: var(--ink-3); font-weight: 600; margin: -2px 0 4px; padding-left: 142px; }
.ms-hint.ready { color: var(--blue-700); }

.modal-phone { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 14px; font-weight: 700; color: var(--ink-2); font-size: 1rem; }
.modal-phone svg { width: 19px; height: 19px; color: var(--green-600); }
.modal-phone:hover { color: var(--green-700); }

.consent.err { color: #d8453f; }
.consent.err input { outline: 2px solid #d8453f; outline-offset: 1px; }

.modal-success { display: none; text-align: center; padding: 44px 30px 38px; }
.modal-success.show { display: block; animation: fadeUp .35s ease; }
.modal-success h3 { font-size: 1.7rem; margin-bottom: 12px; }
.modal-success p { font-size: 1.06rem; max-width: 400px; margin: 0 auto 24px; color: var(--ink-2); }

@media (max-width: 560px) {
  .modal-titlebar { padding: 11px 14px; gap: 10px; }
  .mt-title { font-size: .94rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  /* Einzeilig: Kurztitel zeigen, Volltitel ausblenden */
  .mt-title .t-full { display: none; }
  .mt-title .t-short { display: inline; }
  .modal-intro { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mt-price { padding: 5px 10px; }
  .mt-price .mp-chip-label { font-size: .62rem; }
  .mt-price .mp-val { font-size: 1.15rem; }
  .modal-body { padding: 14px 16px 4px; }
  .modal-foot { padding: 6px 16px 20px; }
  /* Kompakt: Label linksbündig ÜBER dem Feld statt daneben */
  .mrow { grid-template-columns: 1fr; align-items: stretch; gap: 5px; margin-bottom: 12px; }
  .mrow label { font-size: .9rem; text-align: left; }
  .mrow select, .mrow input { min-height: 48px; font-size: 1rem; }
  .mrow-sec { margin: 13px 0 6px; }
  .ms-hint { padding-left: 0; margin-top: 3px; }
  .modal-intro { font-size: .88rem; margin-bottom: 10px; }
  .modal-card { width: calc(100% - 16px); margin: 2vh auto 3vh; }
}

/* =========================================================
   PARTNER VOR ORT — Containerpartner-Hero
========================================================= */
.partner { padding-top: clamp(28px, 4vw, 52px); }
.partner-card {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.partner-main { padding: clamp(22px, 3vw, 40px); }
.partner-id { display: flex; align-items: center; gap: 16px; margin: 14px 0 20px; }
.partner-logo {
  width: 64px; height: 64px; border-radius: 16px; flex: none;
  background: linear-gradient(150deg, var(--blue-600), var(--blue-800));
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(21,86,196,.25);
}
.partner-logo svg { width: 32px; height: 32px; }
.partner-firma { font-size: clamp(1.35rem, 2.4vw, 1.95rem); margin: 0 0 4px; }
.partner-person { color: var(--ink-2); font-size: 1.02rem; margin: 0; }
.partner-trust { list-style: none; display: grid; gap: 11px; margin: 0 0 22px; padding: 0; }
.partner-trust li { display: flex; align-items: center; gap: 11px; font-weight: 600; color: var(--ink-2); }
.partner-trust .check {
  width: 24px; height: 24px; border-radius: 50%; flex: none;
  background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center;
}
.partner-trust .check svg { width: 14px; height: 14px; }
.partner-region-head { display: block; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.partner-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-chips .ph-chip {
  display: inline-flex; align-items: center; padding: 7px 14px; border-radius: 999px;
  background: var(--blue-50); border: 1px solid var(--blue-100); color: var(--blue-800);
  font-weight: 600; font-size: .9rem;
}
.partner-chips .ph-chip.more { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }

.partner-contact {
  background: var(--bg-alt); border-left: 1px solid var(--line);
  padding: clamp(22px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px;
}
.pc-badge {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 14px; border-radius: 999px; background: var(--green-50); color: var(--green-700);
  font-weight: 700; font-size: .85rem;
}
.pc-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 4px rgba(22,154,85,.18); }
.pc-list { list-style: none; display: grid; gap: 13px; margin: 2px 0 4px; padding: 0; }
.pc-list li { display: flex; align-items: center; gap: 13px; }
.pc-ic {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: #fff; border: 1px solid var(--line); color: var(--blue-600);
  display: grid; place-items: center;
}
.pc-ic svg { width: 21px; height: 21px; }
.pc-meta { display: flex; flex-direction: column; min-width: 0; }
.pc-meta small { color: var(--ink-3); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.pc-meta b, .pc-meta a { color: var(--ink); font-size: 1.06rem; font-weight: 800; word-break: break-word; line-height: 1.25; }
.pc-meta a:hover { color: var(--blue-600); }

@media (max-width: 860px) {
  .partner-card { grid-template-columns: 1fr; }
  .partner-contact { border-left: none; border-top: 1px solid var(--line); }
}
