/* ============================================================
   ROLLVO Design System
   Palette: Petrol #12463F · Amber #E8A13D · Paper #FAF7F2
   Type: geometric grotesque display · system body · mono für Maße/Preise
   ============================================================ */

:root {
  --petrol: #12463F;
  --petrol-deep: #0C332E;
  --petrol-soft: #1E5C52;
  --amber: #E8A13D;
  --amber-deep: #C97F1B;
  --paper: #FAF7F2;
  --sage: #DCE8E2;
  --ink: #1C2624;
  --muted: #5A6663;
  --line: #DCD5C9;
  --white: #FFFFFF;
  --danger: #B3453A;
  --ok: #2E7D5B;

  --font-display: "Avenir Next", Avenir, Futura, "Century Gothic", "Segoe UI", system-ui, sans-serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(18, 70, 63, 0.08);
  --shadow-lg: 0 8px 32px rgba(18, 70, 63, 0.14);
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--petrol); }

/* ---------- Lamellen-Motiv (Signatur) ---------- */

.lamellen-divider {
  border: none;
  height: 14px;
  margin: 0;
  background: repeating-linear-gradient(
    to bottom,
    var(--line) 0 2px,
    transparent 2px 6px
  );
  opacity: 0.7;
  max-width: 120px;
}

/* ---------- Typografie ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--petrol-soft);
  display: block;
  margin-bottom: 0.75rem;
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 58ch; }

.mass, .preis {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.preis-gross {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--petrol);
}

/* ---------- Layout ---------- */

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

section { padding: 4.5rem 0; }

.section-alt { background: var(--sage); }
.section-dark { background: var(--petrol); color: var(--paper); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(250, 247, 242, 0.85); }

.section-head { max-width: 640px; margin-bottom: 2.5rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  section { padding: 3rem 0; }
}

/* ---------- Header ---------- */

.topbar {
  background: var(--petrol-deep);
  color: rgba(250, 247, 242, 0.9);
  font-size: 0.82rem;
  padding: 0.4rem 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: var(--paper); text-decoration: none; }
.topbar span { white-space: nowrap; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--petrol);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.logo .logo-o {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  width: 1.05rem;
  height: 1.05rem;
  border: 2.5px solid var(--petrol);
  border-radius: 50%;
  padding: 2px;
}
.logo .logo-o i {
  display: block;
  height: 2px;
  background: var(--amber);
  border-radius: 1px;
}

.main-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  border-bottom-color: var(--amber);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--petrol);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header .header-cta { display: none; }
}

/* ---------- Fotos ---------- */

.foto {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.card-visual img { width: 100%; height: 170px; object-fit: cover; display: block; }
.artikel .foto { margin: 1rem 0 1.5rem; }
.muster-banner .muster-foto {
  width: 280px;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.option .option-bild {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  background: var(--sage);
}
.insekt-vorschau {
  width: 120px;
  border-radius: var(--radius);
  margin-top: 0.5rem;
}

/* ---------- Warenkorb ---------- */

.warenkorb-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--petrol);
  margin-left: 0.5rem;
}
.warenkorb-badge {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--amber);
  color: var(--petrol-deep);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
@media (max-width: 900px) {
  .warenkorb-link { margin-left: 0.25rem; }
}

.warenkorb-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}
.warenkorb-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.warenkorb-item ul {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.warenkorb-item li { margin-bottom: 0.15rem; }
.warenkorb-item .item-seite {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
}
.warenkorb-item .item-preis { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; color: var(--petrol); white-space: nowrap; }
.menge-regler { display: flex; align-items: center; gap: 0.4rem; }
.menge-regler button {
  width: 30px; height: 30px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 1rem;
  cursor: pointer;
  color: var(--petrol);
}
.menge-regler button:hover { border-color: var(--petrol); }
.menge-regler .menge {
  font-family: var(--font-mono);
  min-width: 2ch;
  text-align: center;
}
.item-entfernen {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .warenkorb-item { grid-template-columns: 1fr; }
  .warenkorb-item .item-seite { flex-direction: row; align-items: center; }
}

/* Kasse */
.zahlart {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.zahlart:hover { border-color: var(--petrol-soft); }
.zahlart.gewaehlt { border-color: var(--petrol); background: var(--sage); }
.zahlart input { margin-top: 0.3rem; }
.zahlart strong { display: block; font-family: var(--font-display); }
.zahlart p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.zahlart .bald {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber-deep);
  margin-left: 0.4rem;
}

.bestell-bestaetigung {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 0;
}
.bestell-bestaetigung .haken {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--ok);
  color: var(--ok);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.bestell-nummer {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--petrol);
  background: var(--white);
  border: 1px dashed var(--petrol);
  border-radius: var(--radius);
  display: inline-block;
  padding: 0.5rem 1.2rem;
  margin: 1rem 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius);
  padding: 0.8rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
.btn-primary { background: var(--amber); color: var(--petrol-deep); }
.btn-primary:hover { background: var(--amber-deep); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--petrol);
  border: 2px solid var(--petrol);
}
.btn-secondary:hover { background: var(--petrol); color: var(--paper); }
.section-dark .btn-secondary { color: var(--paper); border-color: var(--paper); }
.section-dark .btn-secondary:hover { background: var(--paper); color: var(--petrol); }
.btn-gross { font-size: 1.1rem; padding: 1rem 2.2rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(18, 70, 63, 0.035) 0 18px,
      transparent 18px 46px
    ),
    var(--paper);
}
.hero .grid-2 { align-items: center; }
.hero h1 { margin: 0.5rem 0 1rem; }
.hero .lead { margin-bottom: 1.75rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.trust-chips { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.trust-chips span {
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 0.35rem 0.9rem;
  color: var(--muted);
}

.hero-visual { position: relative; }

/* ---------- Cards ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; flex-grow: 1; }
.card .preis-ab {
  font-family: var(--font-mono);
  color: var(--petrol);
  font-weight: 700;
  margin: 0.9rem 0;
  font-size: 1.05rem;
  flex-grow: 0;
}
.card .btn { align-self: flex-start; }
.card-visual {
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: var(--sage);
}

.usp-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.usp-item svg { flex-shrink: 0; width: 26px; height: 26px; stroke: var(--amber); }
.usp-item strong { display: block; font-family: var(--font-display); }
.usp-item p { font-size: 0.9rem; color: var(--muted); }
.section-dark .usp-item p { color: rgba(250, 247, 242, 0.75); }

/* ---------- Schritte (So funktioniert's) ---------- */

.steps { counter-reset: schritt; }
.step {
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2rem;
  counter-increment: schritt;
}
.step::before {
  content: counter(schritt, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--amber-deep);
  font-size: 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.32rem;
  top: 2.9rem;
  bottom: 0.2rem;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 4px, transparent 4px 8px);
}
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--muted); max-width: 52ch; }

/* ---------- Tabellen ---------- */

.table-wrap { overflow-x: auto; }
table.vergleich {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
table.vergleich th, table.vergleich td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.vergleich th {
  background: var(--petrol);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 600;
}
table.vergleich tr:last-child td { border-bottom: none; }

/* ---------- Akkordeon (FAQ) ---------- */

details.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
}
details.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--amber-deep);
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: "–"; }
details.faq-item .faq-body { padding: 0 1.25rem 1.25rem; color: var(--muted); }

/* ---------- Formulare ---------- */

.form-feld { margin-bottom: 1.25rem; }
.form-feld label {
  display: block;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}
.form-feld .hinweis { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
.form-feld input[type="text"],
.form-feld input[type="email"],
.form-feld input[type="tel"],
.form-feld input[type="number"],
.form-feld select,
.form-feld textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
}
.form-feld input[type="number"] { font-family: var(--font-mono); }
.form-feld input:focus, .form-feld select:focus, .form-feld textarea:focus {
  border-color: var(--petrol);
  outline: none;
}
.form-feld input.fehler { border-color: var(--danger); }
.feld-fehler { color: var(--danger); font-size: 0.85rem; margin-top: 0.3rem; }

/* ---------- Konfigurator ---------- */

.konfig-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 980px) {
  .konfig-layout { grid-template-columns: 1fr; }
}

.konfig-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.konfig-progress button {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 99px;
  padding: 0.45rem 1rem;
  cursor: pointer;
}
.konfig-progress button.aktiv {
  background: var(--petrol);
  color: var(--paper);
  border-color: var(--petrol);
}
.konfig-progress button.erledigt { color: var(--ok); border-color: var(--ok); }
.konfig-progress button:disabled { cursor: not-allowed; opacity: 0.55; }

.konfig-schritt { display: none; }
.konfig-schritt.aktiv { display: block; }

.konfig-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.konfig-card h2 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.konfig-card > p.hilfe { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }

.optionen { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.75rem; margin-bottom: 1.5rem; }
.option {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  cursor: pointer;
  background: var(--white);
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.12s ease;
}
.option:hover { border-color: var(--petrol-soft); }
.option.gewaehlt { border-color: var(--petrol); background: var(--sage); }
.option:disabled { opacity: 0.45; cursor: not-allowed; }
.option strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.option .option-preis { font-family: var(--font-mono); font-size: 0.82rem; color: var(--petrol-soft); }
.option .option-hinweis { font-size: 0.78rem; color: var(--muted); display: block; }

.farb-optionen { display: flex; gap: 0.6rem; row-gap: 1.7rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.farbe {
  width: 86px;
  height: 56px;
  border-radius: 10px;
  border: 2px solid var(--line);
  cursor: pointer;
  position: relative;
  background-size: cover;
  background-position: center;
}
.farbe.gewaehlt { border-color: var(--petrol); box-shadow: 0 0 0 3px var(--sage); }
.farbe span {
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  white-space: nowrap;
  color: var(--muted);
  opacity: 0;
}
.farbe.gewaehlt span, .farbe:hover span { opacity: 1; }
.farb-gruppe { margin-bottom: 2.2rem; }
.farb-gruppe h4 { font-size: 0.92rem; margin-bottom: 0.75rem; }

.konfig-nav-buttons { display: flex; justify-content: space-between; margin-top: 1.5rem; gap: 1rem; }

/* Preis-Panel */
.preis-panel {
  position: sticky;
  top: 90px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.preis-panel .vorschau {
  background: var(--sage);
  padding: 1.25rem;
  display: flex;
  justify-content: center;
}
.preis-panel .aufstellung { padding: 1.25rem; }
.preis-panel .aufstellung h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.preis-zeile {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.88rem;
  padding: 0.3rem 0;
  color: var(--muted);
}
.preis-zeile .preis { color: var(--ink); white-space: nowrap; }
.preis-zeile.gesamt {
  border-top: 2px solid var(--petrol);
  margin-top: 0.6rem;
  padding-top: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.preis-zeile.gesamt .preis { font-size: 1.35rem; color: var(--petrol); }
.preis-panel .mwst-hinweis { font-size: 0.78rem; color: var(--muted); padding: 0 1.25rem 1rem; }
.preis-panel .panel-cta { padding: 0 1.25rem 1.25rem; display: grid; gap: 0.6rem; }

@media (max-width: 980px) {
  .preis-panel { position: static; }
}

/* Warnhinweis */
.hinweis-box {
  background: #FBF3E4;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  margin: 1rem 0;
}
.hinweis-box.fehler { background: #F9ECEA; border-color: var(--danger); color: var(--danger); }

/* ---------- Banner (Farbmuster) ---------- */

.muster-banner {
  background: var(--amber);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.muster-banner h2 { color: var(--petrol-deep); }
.muster-banner p { color: rgba(12, 51, 46, 0.85); max-width: 48ch; }
.muster-banner .btn { background: var(--petrol); color: var(--paper); }
.muster-banner .btn:hover { background: var(--petrol-deep); }

/* ---------- Bewertungen ---------- */

.bewertung { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--line); }
.bewertung .sterne { color: var(--amber-deep); letter-spacing: 2px; margin-bottom: 0.5rem; }
.bewertung p { font-size: 0.95rem; color: var(--ink); font-style: italic; }
.bewertung footer { margin-top: 0.75rem; font-size: 0.85rem; color: var(--muted); }

/* ---------- Artikel / Ratgeber ---------- */

.artikel { max-width: 720px; }
.artikel h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.artikel h3 { margin-top: 1.75rem; margin-bottom: 0.5rem; }
.artikel p, .artikel li { color: var(--ink); margin-bottom: 0.9rem; }
.artikel ul, .artikel ol { padding-left: 1.4rem; margin-bottom: 1rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--petrol-deep);
  color: rgba(250, 247, 242, 0.8);
  padding: 3.5rem 0 2rem;
  font-size: 0.92rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(250, 247, 242, 0.8); text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--white); letter-spacing: 0.04em; }
.footer-logo em { color: var(--amber); font-style: normal; }

/* ---------- Animation (Hero-Rollladen) ---------- */

@media (prefers-reduced-motion: no-preference) {
  .rollladen-panzer-anim {
    animation: rollladen-oeffnen 1.1s ease-out both;
    transform-origin: top;
  }
  @keyframes rollladen-oeffnen {
    from { transform: scaleY(1.45); }
    to { transform: scaleY(1); }
  }
}

/* ---------- Utility ---------- */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.versteckt { display: none !important; }

/* ============================================================
   ROLLVO 2026 — verfeinertes Markenerlebnis
   Ruhige Flächen, warme Tiefe und eine klare Kaufhierarchie.
   ============================================================ */

:root {
  --petrol: #12463F;
  --petrol-deep: #0A302B;
  --petrol-soft: #24675D;
  --petrol-mist: #EEF4F1;
  --amber: #E8A13D;
  --amber-deep: #C97C19;
  --amber-soft: #F7E5C8;
  --paper: #FAF7F2;
  --paper-deep: #F1ECE3;
  --sage: #DCE8E2;
  --sage-soft: #EDF3EF;
  --ink: #182522;
  --muted: #65716E;
  --line: #DED8CE;
  --line-soft: rgba(18, 70, 63, 0.12);
  --white: #FFFFFF;
  --danger: #A84238;
  --ok: #2E7D5B;

  --font-display: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --font-body: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;

  --radius: 14px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --shadow: 0 8px 28px rgba(12, 51, 46, 0.07);
  --shadow-lg: 0 24px 70px rgba(12, 51, 46, 0.14);
  --shadow-amber: 0 12px 28px rgba(201, 124, 25, 0.22);
  --maxw: 1240px;
}

html {
  scroll-padding-top: 100px;
}

body {
  font-size: 17px;
  line-height: 1.65;
  background: var(--paper);
}

::selection {
  color: var(--petrol-deep);
  background: var(--amber-soft);
}

a {
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5.35vw, 4.75rem);
  line-height: 1.03;
  font-weight: 650;
}

h2 {
  font-size: clamp(2.05rem, 3.7vw, 3.35rem);
  line-height: 1.08;
  font-weight: 620;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.22;
  font-weight: 620;
}

p {
  text-wrap: pretty;
}

.container {
  padding-left: clamp(1.25rem, 3.2vw, 2rem);
  padding-right: clamp(1.25rem, 3.2vw, 2rem);
}

section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-alt {
  background: var(--sage-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
}

.section-head .lead {
  margin-top: 1rem;
}

.lead {
  max-width: 61ch;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--petrol-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.eyebrow::before {
  content: "";
  width: 1.65rem;
  height: 2px;
  border-radius: 99px;
  background: var(--amber);
}

.grid-2 {
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.grid-3 {
  gap: clamp(1rem, 2.2vw, 1.75rem);
}

.grid-4 {
  gap: clamp(1rem, 2vw, 1.5rem);
}

/* ---------- Kopfbereich ---------- */

.topbar {
  padding: 0.55rem 0;
  background: var(--petrol-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.topbar-service,
.topbar-benefits {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}

.topbar-service i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7FD0A8;
  box-shadow: 0 0 0 4px rgba(127, 208, 168, 0.12);
}

.topbar-service a {
  font-weight: 700;
  color: var(--white);
}

.topbar-hours {
  color: rgba(255, 255, 255, 0.62);
}

.topbar-benefits {
  gap: 1.25rem;
}

.topbar-benefits span {
  position: relative;
}

.topbar-benefits span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.68rem;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.site-header {
  top: 0;
  border-bottom: 1px solid rgba(18, 70, 63, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(12, 51, 46, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header .header-inner {
  min-height: 78px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  gap: 1.15rem;
}

.logo {
  flex-shrink: 0;
  gap: 0.08rem;
  color: var(--petrol);
  font-size: 1.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.logo-word {
  line-height: 1;
}

.logo .logo-o {
  width: 1.08rem;
  height: 1.08rem;
  gap: 2px;
  border: 2px solid currentColor;
  padding: 2px;
}

.logo .logo-o i {
  height: 1.5px;
}

.main-nav {
  gap: 0.08rem;
  align-items: center;
}

.main-nav a {
  padding: 0.58rem 0.68rem;
  border: 0;
  border-radius: 999px;
  color: #2B3533;
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
  color: var(--petrol);
  border: 0;
  background: var(--petrol-mist);
}

.main-nav a[aria-current="page"] {
  color: var(--white);
  border: 0;
  background: var(--petrol);
}

.warenkorb-link {
  min-width: 42px;
  height: 42px;
  justify-content: center;
  margin-left: 0.1rem;
  padding: 0 0.6rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.warenkorb-link:hover {
  border-color: rgba(18, 70, 63, 0.3);
  background: var(--petrol-mist);
}

.cart-label {
  display: none;
}

.warenkorb-badge {
  top: -5px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  border: 2px solid var(--white);
  font-size: 0.67rem;
}

.header-cta {
  flex-shrink: 0;
  padding: 0.78rem 1.25rem;
  font-size: 0.9rem;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* ---------- Bedienelemente ---------- */

.btn {
  position: relative;
  border-radius: 999px;
  padding: 0.86rem 1.55rem;
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.25;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--petrol-deep);
  background: var(--amber);
  box-shadow: 0 8px 22px rgba(201, 124, 25, 0.16);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--amber-deep);
  box-shadow: var(--shadow-amber);
}

.btn-secondary {
  border: 1.5px solid rgba(18, 70, 63, 0.7);
  color: var(--petrol);
  background: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  color: var(--white);
  border-color: var(--petrol);
  background: var(--petrol);
  box-shadow: 0 10px 24px rgba(12, 51, 46, 0.12);
}

.btn-gross {
  min-height: 54px;
  padding: 0.98rem 1.9rem;
  font-size: 1rem;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

/* ---------- Hero ---------- */

.hero {
  isolation: isolate;
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid rgba(18, 70, 63, 0.08);
  background:
    radial-gradient(circle at 84% 20%, rgba(232, 161, 61, 0.14), transparent 28rem),
    radial-gradient(circle at 12% 85%, rgba(220, 232, 226, 0.85), transparent 32rem),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: min(38vw, 520px);
  height: 100%;
  opacity: 0.35;
  background: repeating-linear-gradient(
    to bottom,
    rgba(18, 70, 63, 0.1) 0 2px,
    transparent 2px 15px
  );
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
  mask-image: linear-gradient(to left, #000, transparent);
}

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

.hero .grid-2 {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.hero h1 {
  margin: 0.35rem 0 1.35rem;
  max-width: 13ch;
}

.hero .lead {
  margin-bottom: 2rem;
}

.hero-ctas {
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-highlight {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: 0.08em;
  left: -0.03em;
  height: 0.17em;
  border-radius: 99px;
  background: var(--amber);
  opacity: 0.58;
  transform: rotate(-0.7deg);
}

.trust-chips {
  gap: 0.55rem 1.1rem;
  max-width: 640px;
}

.trust-chips span {
  padding: 0;
  border: 0;
  color: #53605D;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
}

.home-hero {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.home-hero .grid-2 {
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.93fr);
  gap: clamp(3rem, 6vw, 6.5rem);
}

.home-hero .hero-copy {
  padding-bottom: 0.5rem;
}

.home-hero .hero-visual {
  width: min(100%, 500px);
  margin-left: auto;
  padding: 0 1.35rem 1.5rem 0;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 230px 230px 28px 28px;
  background: var(--sage);
  box-shadow: var(--shadow-lg);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 8px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
}

.hero-image-frame .foto {
  width: 100%;
  height: 100%;
  max-height: none !important;
  border-radius: inherit;
  box-shadow: none;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-hero .hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 76%;
  height: 74%;
  border-radius: 28px;
  background: var(--amber);
  opacity: 0.9;
  transform: translate(0, 0);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 42px rgba(12, 51, 46, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge small,
.hero-badge span {
  display: block;
}

.hero-badge small {
  margin-bottom: 0.1rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.hero-badge strong {
  font-family: var(--font-display);
  font-size: 0.88rem;
  line-height: 1.2;
}

.hero-badge-icon {
  display: grid !important;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--petrol);
  font-weight: 800;
}

.hero-badge-quality {
  left: -2.5rem;
  bottom: 3.5rem;
  padding: 0.8rem 1rem 0.8rem 0.8rem;
}

.hero-badge-delivery {
  top: 22%;
  right: -0.35rem;
  padding: 0.8rem 1rem;
  color: var(--petrol-deep);
  background: rgba(247, 229, 200, 0.96);
}

.hero-badge-delivery > strong {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.hero-badge-delivery > span {
  font-size: 0.69rem;
  font-weight: 650;
  line-height: 1.25;
}

.hero:not(.home-hero) h1 {
  max-width: 15ch;
  font-size: clamp(2.65rem, 4.8vw, 4.35rem);
}

main > section:first-child:not(.hero) h1 {
  font-size: clamp(2.35rem, 4.5vw, 3.65rem);
}

.hero:not(.home-hero) .hero-visual {
  padding: 0.8rem 0.8rem 0 0;
}

.hero:not(.home-hero) .hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  border-radius: 28px 110px 28px 28px;
  background: var(--sage);
}

.hero:not(.home-hero) .hero-visual .foto {
  width: 100%;
  height: clamp(340px, 38vw, 470px);
  border-radius: 28px 110px 28px 28px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(12, 51, 46, 0.13);
}

/* ---------- Vertrauensleiste ---------- */

.usp-strip {
  padding: 2.15rem 0;
  border-bottom: 1px solid rgba(18, 70, 63, 0.08);
  background: var(--white);
}

.usp-strip .grid-4 {
  gap: 0;
  align-items: stretch;
}

.usp-strip .usp-item {
  padding: 0.65rem clamp(1rem, 2vw, 1.65rem);
}

.usp-strip .usp-item:first-child {
  padding-left: 0;
}

.usp-strip .usp-item + .usp-item {
  border-left: 1px solid var(--line-soft);
}

.usp-strip .usp-item svg {
  width: 42px;
  height: 42px;
  padding: 0.62rem;
  border-radius: 14px;
  background: var(--amber-soft);
}

.usp-strip .usp-item strong {
  margin-bottom: 0.25rem;
  font-size: 0.93rem;
}

.usp-strip .usp-item p {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ---------- Karten und Sortiment ---------- */

.card {
  border-color: rgba(18, 70, 63, 0.11);
  box-shadow: 0 10px 34px rgba(12, 51, 46, 0.055);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.card-visual {
  border-radius: 16px;
}

.card-visual img {
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.card:hover {
  border-color: rgba(18, 70, 63, 0.2);
  box-shadow: 0 20px 48px rgba(12, 51, 46, 0.1);
  transform: translateY(-4px);
}

.card:hover .card-visual img {
  transform: scale(1.035);
}

.products-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(232, 161, 61, 0.13), transparent 28rem),
    var(--sage-soft);
}

.products-section .section-head {
  max-width: 820px;
}

.product-card {
  overflow: hidden;
  padding: 0 0 1.7rem;
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 44px rgba(12, 51, 46, 0.08);
}

.product-card .card-visual {
  position: relative;
  height: 255px;
  margin: 0 0 1.5rem;
  border-radius: 0;
}

.product-card .card-visual img {
  height: 100%;
}

.product-card > :not(.card-visual) {
  margin-right: 1.7rem;
  margin-left: 1.7rem;
}

.product-card .card-kicker {
  margin-bottom: 0.4rem;
  color: var(--petrol-soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.55rem;
}

.product-card > p:not(.preis-ab) {
  font-size: 0.88rem;
  line-height: 1.65;
}

.product-card .preis-ab {
  margin-top: 1.3rem;
  margin-bottom: 1rem;
  color: var(--petrol);
  font-size: 0.96rem;
}

.product-card .btn {
  align-self: flex-start;
  font-size: 0.88rem;
}

.product-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  color: var(--petrol-deep);
  background: var(--amber);
  box-shadow: 0 8px 22px rgba(12, 51, 46, 0.14);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Ablauf ---------- */

.process-section {
  background:
    linear-gradient(90deg, rgba(220, 232, 226, 0.36) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 80px 100%;
}

.process-section .grid-2 {
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 140px;
}

.process-section .steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.process-section .step {
  min-height: 220px;
  padding: 2rem 1.65rem 1.6rem;
  border: 1px solid rgba(18, 70, 63, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 38px rgba(12, 51, 46, 0.05);
}

.process-section .step::before {
  position: static;
  width: auto;
  height: auto;
  justify-content: flex-start;
  margin-bottom: 2.2rem;
  border: 0;
  border-radius: 0;
  color: var(--amber-deep);
  background: transparent;
  font-size: 0.84rem;
  letter-spacing: 0.11em;
}

.process-section .step::after {
  display: none;
}

.process-section .step h3 {
  margin-bottom: 0.55rem;
}

.process-section .step p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---------- Nutzen ---------- */

.benefits-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(232, 161, 61, 0.19), transparent 26rem),
    linear-gradient(135deg, #0A302B 0%, #12463F 65%, #174F47 100%);
}

.benefits-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2rem;
  width: 33%;
  height: 100%;
  opacity: 0.14;
  background: repeating-linear-gradient(
    to bottom,
    var(--amber) 0 2px,
    transparent 2px 18px
  );
  transform: skewX(-10deg);
}

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

.benefits-section .section-head {
  max-width: 760px;
}

.benefits-section .grid-3 {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefits-section .usp-item {
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.35rem clamp(1.3rem, 3vw, 2.5rem);
}

.benefits-section .usp-item + .usp-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.benefits-section .usp-item:first-child {
  padding-left: 0;
}

.benefits-section .usp-item svg {
  width: 48px;
  height: 48px;
  padding: 0.72rem;
  border: 1px solid rgba(232, 161, 61, 0.45);
  border-radius: 50%;
  background: rgba(232, 161, 61, 0.1);
}

.benefits-section .usp-item strong {
  color: var(--white);
  font-size: 1.16rem;
}

.benefits-section .usp-item p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ---------- Kundenstimmen ---------- */

.reviews-section {
  background:
    radial-gradient(circle at 10% 100%, rgba(220, 232, 226, 0.65), transparent 32rem),
    var(--paper);
}

.reviews-section .bewertung {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 2.2rem;
  border: 1px solid rgba(18, 70, 63, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 16px 44px rgba(12, 51, 46, 0.07);
}

.reviews-section .bewertung::after {
  content: "“";
  position: absolute;
  right: 1.25rem;
  bottom: -2rem;
  color: var(--sage);
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
}

.reviews-section .bewertung:nth-child(2) {
  transform: translateY(1.4rem);
}

.reviews-section .bewertung .sterne {
  margin-bottom: 1.2rem;
  color: var(--amber-deep);
  font-size: 0.92rem;
}

.reviews-section .bewertung p {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.7;
}

.reviews-section .bewertung footer {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  font-size: 0.78rem;
  line-height: 1.5;
}

.reviews-section > .container > .hinweis-box {
  max-width: 760px;
  margin-top: 3.5rem;
  border-color: rgba(18, 70, 63, 0.12);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
}

/* ---------- Farbmuster ---------- */

.sample-section {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.muster-banner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(300px, 1fr) auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 15%, rgba(232, 161, 61, 0.17), transparent 20rem),
    var(--petrol);
  box-shadow: 0 24px 62px rgba(12, 51, 46, 0.15);
}

.muster-banner .muster-foto {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
}

.muster-banner > div {
  padding: 2.5rem 0;
}

.muster-banner h2 {
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.muster-banner p {
  color: rgba(250, 247, 242, 0.76);
}

.muster-banner .btn {
  margin-right: 2.4rem;
  color: var(--petrol-deep);
  background: var(--amber);
}

.muster-banner .btn:hover {
  color: var(--white);
  background: var(--amber-deep);
}

/* ---------- Ratgeber ---------- */

.guide-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    var(--sage);
}

.guide-section .card {
  position: relative;
  min-height: 265px;
  padding: 2rem;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.guide-section .card::before {
  color: var(--amber-deep);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.guide-section .card:nth-child(1)::before { content: "01 · MESSEN"; }
.guide-section .card:nth-child(2)::before { content: "02 · FÖRDERN"; }
.guide-section .card:nth-child(3)::before { content: "03 · MATERIAL"; }

.guide-section .card h3 {
  margin-top: 2.4rem;
}

.guide-section .card .btn {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.guide-section .card .btn:hover {
  color: var(--amber-deep);
  background: transparent;
  box-shadow: none;
  transform: none;
}

/* ---------- Inhalte, Tabellen und Formulare ---------- */

.foto {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(12, 51, 46, 0.12);
}

table.vergleich {
  border: 1px solid rgba(18, 70, 63, 0.1);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(12, 51, 46, 0.06);
}

table.vergleich th,
table.vergleich td {
  padding: 1rem 1.15rem;
}

table.vergleich th {
  background: var(--petrol);
}

table.vergleich tbody tr:nth-child(even) {
  background: rgba(220, 232, 226, 0.28);
}

table.vergleich tbody tr:last-child td:first-child {
  border-bottom-left-radius: 18px;
}

table.vergleich tbody tr:last-child td:last-child {
  border-bottom-right-radius: 18px;
}

details.faq-item {
  overflow: hidden;
  border-color: rgba(18, 70, 63, 0.11);
  border-radius: 16px;
  box-shadow: 0 8px 26px rgba(12, 51, 46, 0.035);
}

details.faq-item summary {
  padding: 1.3rem 1.4rem;
}

details.faq-item[open] {
  border-color: rgba(18, 70, 63, 0.25);
  box-shadow: 0 14px 36px rgba(12, 51, 46, 0.07);
}

.form-feld {
  margin-bottom: 1.4rem;
}

.form-feld label {
  margin-bottom: 0.45rem;
  color: #2B3633;
  font-size: 0.86rem;
}

.form-feld input[type="text"],
.form-feld input[type="email"],
.form-feld input[type="tel"],
.form-feld input[type="number"],
.form-feld select,
.form-feld textarea {
  min-height: 52px;
  padding: 0.82rem 0.95rem;
  border: 1.5px solid #D8D5CD;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-feld textarea {
  min-height: 140px;
}

.form-feld input:focus,
.form-feld select:focus,
.form-feld textarea:focus {
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(18, 70, 63, 0.09);
}

.hinweis-box {
  border-color: rgba(201, 124, 25, 0.36);
  border-radius: 14px;
  background: #FCF4E8;
}

.artikel {
  max-width: 780px;
}

.artikel h1 {
  margin-bottom: 2rem;
}

.artikel h2 {
  margin-top: 3.25rem;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

.artikel h3 {
  font-size: 1.28rem;
}

/* ---------- Konfigurator ---------- */

body[data-page="konfigurator"] main > section,
body[data-page="warenkorb"] main > section,
body[data-page="kasse"] main > section {
  background:
    radial-gradient(circle at 92% 4%, rgba(232, 161, 61, 0.12), transparent 25rem),
    var(--paper);
}

body[data-page="konfigurator"] main > section > .container > .lead {
  max-width: 62ch;
}

.konfig-layout {
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.konfig-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.3rem;
  margin: 2rem 0;
  padding: 0.35rem;
  border: 1px solid rgba(18, 70, 63, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.konfig-progress button {
  width: 100%;
  min-height: 42px;
  overflow: hidden;
  padding: 0.55rem 0.45rem;
  border: 0;
  border-radius: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.konfig-progress button.aktiv {
  box-shadow: 0 8px 22px rgba(12, 51, 46, 0.16);
}

.konfig-progress button.erledigt {
  border: 0;
  color: var(--petrol);
  background: var(--sage);
}

.konfig-card {
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border-color: rgba(18, 70, 63, 0.11);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(12, 51, 46, 0.075);
}

.konfig-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.konfig-card > p.hilfe {
  margin-bottom: 2rem;
  line-height: 1.65;
}

.optionen {
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 0.8rem;
}

.option {
  position: relative;
  min-height: 112px;
  padding: 1rem;
  border: 1.5px solid #DDD8CE;
  border-radius: 14px;
  line-height: 1.5;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.option:hover {
  border-color: rgba(18, 70, 63, 0.55);
  box-shadow: 0 9px 24px rgba(12, 51, 46, 0.07);
  transform: translateY(-2px);
}

.option.gewaehlt {
  border-color: var(--petrol);
  background: var(--petrol-mist);
  box-shadow: 0 0 0 1px var(--petrol), 0 12px 28px rgba(12, 51, 46, 0.09);
}

.option.gewaehlt::after {
  content: "✓";
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--petrol);
  font-size: 0.68rem;
  font-weight: 800;
}

.option .option-bild {
  height: 110px;
  border-radius: 10px;
}

.farbe {
  width: 88px;
  height: 58px;
  border-color: #D8D3CA;
  box-shadow: inset 0 0 0 2px var(--white);
  background-size: cover;
  background-position: center;
}

.farbe.gewaehlt {
  border-color: var(--petrol);
  box-shadow: 0 0 0 4px rgba(18, 70, 63, 0.1), inset 0 0 0 2px var(--white);
}

.preis-panel {
  top: 100px;
  border-color: rgba(18, 70, 63, 0.11);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(12, 51, 46, 0.13);
}

.preis-panel .vorschau {
  min-height: 290px;
  align-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.78), transparent 13rem),
    var(--sage);
}

.preis-panel .aufstellung {
  padding: 1.5rem 1.5rem 1.1rem;
}

.preis-panel .mwst-hinweis {
  padding: 0 1.5rem 1.1rem;
}

.preis-panel .panel-cta {
  padding: 0 1.5rem 1.5rem;
}

.preis-zeile {
  padding: 0.42rem 0;
}

.preis-zeile.gesamt {
  margin-top: 0.9rem;
  padding-top: 0.95rem;
}

.zahlart,
.warenkorb-item {
  border-color: rgba(18, 70, 63, 0.11);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(12, 51, 46, 0.05);
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 2rem;
  background:
    radial-gradient(circle at 12% 110%, rgba(232, 161, 61, 0.14), transparent 28rem),
    var(--petrol-deep);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  width: min(26vw, 330px);
  height: 100%;
  opacity: 0.08;
  background: repeating-linear-gradient(
    to bottom,
    var(--white) 0 2px,
    transparent 2px 16px
  );
  transform: skewX(-8deg);
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  margin-bottom: 4rem;
}

.site-footer h4 {
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer li {
  margin-bottom: 0.65rem;
}

.site-footer a {
  transition: color 150ms ease;
}

.footer-logo {
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}

.footer-brand > p:not(.footer-logo) {
  max-width: 34ch;
}

.footer-phone {
  display: block;
  margin-top: 1.5rem;
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
}

.footer-hours {
  display: block;
  margin-top: 0.12rem;
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.75rem;
}

.footer-bottom {
  padding-top: 1.75rem;
}

/* ---------- Bewegung ---------- */

@media (prefers-reduced-motion: no-preference) {
  .home-hero .hero-copy {
    animation: rollvo-in 650ms 80ms both;
  }

  .home-hero .hero-visual {
    animation: rollvo-in 700ms 180ms both;
  }

  @keyframes rollvo-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .main-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.82rem;
  }

  .header-cta {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .muster-banner {
    grid-template-columns: 230px 1fr;
  }

  .muster-banner .btn {
    grid-column: 2;
    justify-self: start;
    margin: -1.5rem 0 2.5rem;
  }
}

@media (max-width: 980px) {
  .site-header .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.8rem clamp(1.25rem, 4vw, 2rem) 1.25rem;
    border-bottom: 1px solid var(--line-soft);
    background: rgba(250, 247, 242, 0.98);
    box-shadow: 0 24px 50px rgba(12, 51, 46, 0.14);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 1rem;
    border: 0;
    border-radius: 12px;
    font-size: 0.96rem;
  }

  .main-nav a[aria-current="page"] {
    background: var(--petrol);
  }

  .header-cta {
    display: none;
  }

  .hero .grid-2,
  .home-hero .grid-2 {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 2.5rem;
  }

  .home-hero .hero-visual {
    padding-right: 0.8rem;
  }

  .hero-badge-quality {
    left: -1.25rem;
  }

  .process-section .grid-2 {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
    max-width: 700px;
  }

  .muster-banner > div {
    padding-right: 2rem;
  }
}

@media (max-width: 900px) {
  section {
    padding: 5rem 0;
  }

  .hero .grid-2,
  .home-hero .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .home-hero .hero-copy {
    max-width: 720px;
  }

  .home-hero .hero-visual {
    width: min(88%, 500px);
    margin: 1rem auto 0;
  }

  .hero:not(.home-hero) .hero-visual {
    width: min(100%, 700px);
    padding-right: 0;
  }

  .usp-strip .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .usp-strip .usp-item {
    padding: 1.25rem;
  }

  .usp-strip .usp-item:first-child {
    padding-left: 1.25rem;
  }

  .usp-strip .usp-item:nth-child(3) {
    border-left: 0;
  }

  .usp-strip .usp-item:nth-child(n+3) {
    border-top: 1px solid var(--line-soft);
  }

  .benefits-section .grid-3 {
    grid-template-columns: 1fr;
  }

  .benefits-section .usp-item {
    padding: 2rem 0;
  }

  .benefits-section .usp-item + .usp-item {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .reviews-section .bewertung:nth-child(2) {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 740px) {
  body {
    font-size: 16px;
  }

  .topbar {
    padding: 0.5rem 0;
  }

  .topbar .topbar-inner {
    justify-content: center;
  }

  .topbar-benefits {
    display: none;
  }

  .site-header .header-inner {
    min-height: 68px;
  }

  .logo {
    font-size: 1.38rem;
  }

  .logo .logo-o {
    width: 0.98rem;
    height: 0.98rem;
  }

  .warenkorb-link {
    min-width: 42px;
    margin-left: 0;
  }

  .hero {
    padding: 4rem 0 4.5rem;
  }

  .home-hero {
    padding-top: 3.75rem;
  }

  .hero::before {
    width: 75vw;
    opacity: 0.2;
  }

  .hero h1,
  .hero:not(.home-hero) h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.55rem);
  }

  .hero-highlight {
    white-space: normal;
  }

  .hero-ctas {
    align-items: stretch;
  }

  .hero-ctas .btn {
    flex: 1 1 210px;
  }

  .trust-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1rem;
  }

  .home-hero .hero-visual {
    width: min(92%, 440px);
    padding: 0 0.8rem 1rem 0;
  }

  .hero-image-frame {
    border-radius: 190px 190px 24px 24px;
  }

  .hero-badge-quality {
    left: -1rem;
    bottom: 2.2rem;
  }

  .hero-badge-delivery {
    top: 18%;
    right: -0.25rem;
  }

  .process-section .steps {
    grid-template-columns: 1fr;
  }

  .process-section .step {
    min-height: 0;
  }

  .muster-banner {
    grid-template-columns: 1fr;
  }

  .muster-banner .muster-foto {
    height: 230px;
    min-height: 0;
  }

  .muster-banner > div {
    padding: 2rem 1.5rem 0;
  }

  .muster-banner .btn {
    grid-column: 1;
    justify-self: stretch;
    margin: 0 1.5rem 1.5rem;
  }

  .konfig-progress {
    display: flex;
    overflow-x: auto;
    margin-right: calc(clamp(1.25rem, 3.2vw, 2rem) * -1);
    margin-left: calc(clamp(1.25rem, 3.2vw, 2rem) * -1);
    padding: 0.3rem clamp(1.25rem, 3.2vw, 2rem) 0.7rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .konfig-progress::-webkit-scrollbar {
    display: none;
  }

  .konfig-progress button {
    width: auto;
    min-width: max-content;
    padding-right: 1rem;
    padding-left: 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
  }

  .konfig-progress button.aktiv {
    border-color: var(--petrol);
  }

  .konfig-card {
    padding: 1.35rem;
    border-radius: 20px;
  }

  .konfig-nav-buttons {
    flex-wrap: wrap;
  }

  .konfig-nav-buttons .btn {
    flex: 1 1 150px;
  }

  .preis-panel .vorschau {
    min-height: 245px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .topbar-hours {
    display: none;
  }

  .topbar-service {
    font-size: 0.74rem;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .home-hero .hero-visual {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-badge {
    border-radius: 13px;
  }

  .hero-badge-quality {
    left: -0.35rem;
    padding: 0.65rem 0.75rem 0.65rem 0.65rem;
  }

  .hero-badge-quality strong {
    font-size: 0.76rem;
  }

  .hero-badge-icon {
    width: 30px;
    height: 30px;
  }

  .hero-badge-delivery {
    right: -0.2rem;
    padding: 0.65rem 0.75rem;
  }

  .hero-badge-delivery > strong {
    font-size: 1.15rem;
  }

  .trust-chips {
    grid-template-columns: 1fr;
  }

  .usp-strip .grid-4 {
    grid-template-columns: 1fr;
  }

  .usp-strip .usp-item,
  .usp-strip .usp-item:first-child {
    padding: 1.25rem 0;
    border-left: 0;
  }

  .usp-strip .usp-item + .usp-item {
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .product-card .card-visual {
    height: 225px;
  }

  .reviews-section .bewertung {
    min-height: 0;
    padding: 1.65rem;
  }

  .optionen {
    grid-template-columns: 1fr;
  }

  .option {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ---------- Mobile-Fixes: Konfigurator & Kasse ---------- */

.mobile-preisleiste { display: none; }

@media (max-width: 980px) {
  .konfig-layout {
    grid-template-columns: 1fr;
  }

  .preis-panel {
    position: static;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .mobile-preisleiste {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem clamp(1.25rem, 4vw, 2rem);
    padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
    background: var(--petrol-deep);
    color: var(--paper);
    box-shadow: 0 -8px 24px rgba(12, 51, 46, 0.25);
  }

  .mobile-preisleiste .mp-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    display: block;
  }

  .mobile-preisleiste .mp-preis {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .mobile-preisleiste .btn {
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    flex-shrink: 0;
  }

  body[data-page="konfigurator"],
  body[data-page="panzer"] {
    padding-bottom: 76px;
  }
}

/* ---------- Consent-Banner ---------- */

.consent-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(12, 51, 46, 0.25);
  padding: 1.1rem 1.25rem;
}
.consent-banner p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.consent-banner .consent-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.consent-banner .btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  flex: 1 1 140px;
}
body[data-page="konfigurator"] .consent-banner,
body[data-page="panzer"] .consent-banner {
  bottom: 84px;
}

/* ---------- Warenkorb zweispaltig ---------- */

.warenkorb-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.warenkorb-summary {
  position: sticky;
  top: 100px;
}
@media (max-width: 980px) {
  .warenkorb-layout {
    grid-template-columns: 1fr;
  }
  .warenkorb-summary {
    position: static;
    max-width: 480px;
  }
}
