/* =================================================================
   PV-GIGA · style.css
   Dunkles, technisch-hochwertiges Theme. Mobile-first.
   Farb-Tokens exakt aus dem Website-Briefing (Abschnitt 1).
   ================================================================= */

/* ---------- 1 · Design-Tokens (Custom Properties) ---------------- */
:root {
  /* Marken-Farben (Briefing) */
  --accent:      #A8D11E;   /* Marken-Limegrün: Primär-CTA, Highlights   */
  --accent-alt:  #8CC63E;   /* abgestimmter Grünton: Divider/Labels      */
  --bg:          #0B0B0B;   /* dunkler Seitenhintergrund                 */
  --bg-2:        #121212;   /* leichte Abstufung                         */
  --surface:     #1A1A1A;   /* Karten/Sektionen                          */
  --text:        #F5F5F5;   /* Fließtext hell                            */
  --muted:       #A0A0A0;   /* Sekundärtext                              */

  /* abgeleitete Töne */
  --surface-2:   #222222;   /* erhöhte Fläche / Hover                     */
  --border:      #2C2C2C;   /* dezente Linien                            */
  --border-2:    #383838;   /* stärkere Linien                           */
  --accent-soft: rgba(168, 209, 30, 0.12);
  --accent-glow: rgba(168, 209, 30, 0.25);

  /* Maße */
  --container:   1140px;
  --radius:      14px;
  --radius-sm:   9px;
  --gap:         clamp(1rem, 2vw, 1.6rem);
  --section-y:   clamp(3.5rem, 7vw, 6rem);

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

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 800; }

p { margin: 0 0 1rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.center { text-align: center; }
.center-stack {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}

/* sichtbarer Fokus für Tastatur-Navigation (Barrierefreiheit) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- 3 · Buttons ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.4rem;
  font-weight: 700;
  font-size: .98rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #0B0B0B !important;
  box-shadow: 0 4px 18px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-alt); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg { padding: .9rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- 4 · Header / Nav ------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 42px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a:hover { color: var(--accent); text-decoration: none; }
.main-nav a.btn-primary { color: #0B0B0B; }
.main-nav a.btn-primary:hover { color: #0B0B0B; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  margin-inline: auto;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5 · Sektionen-Grundlayout --------------------------- */
.section { padding-block: var(--section-y); }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 .6rem;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0 0 .6rem; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

.grid { display: grid; gap: var(--gap); }
.cards-4 { grid-template-columns: 1fr; }
.cards-2 { grid-template-columns: 1fr; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
}

/* ---------- 6 · Hero -------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 80% -8%, var(--accent-soft), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.1rem, 7vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 38ch;
  margin: 0 0 1.6rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }

.usp-row {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.usp {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
}
.usp-icon {
  flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}
.usp-text { display: flex; flex-direction: column; line-height: 1.2; }
.usp-text strong { font-size: .98rem; }
.usp-text small { color: var(--muted); font-size: .78rem; }

.hero-visual { display: flex; justify-content: center; }
.hero-logo {
  width: min(420px, 78%);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.6));
}

/* ---------- 7 · Warum / Trust ----------------------------------- */
.trust-card { text-align: center; }
.trust-badge {
  display: grid; place-items: center;
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
}
.trust-card h3 { font-size: 1.2rem; }
.trust-card p { color: var(--muted); margin: 0; font-size: .96rem; }

.service-usps {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
  grid-template-columns: 1fr;
}
.service-usps li {
  position: relative;
  padding-left: 2rem;
  color: var(--muted);
}
.service-usps li strong { color: var(--text); }
.service-usps li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- 8 · Pakete ------------------------------------------ */
.packages { grid-template-columns: 1fr; align-items: stretch; }

.package {
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-head { border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 1rem; }
.package-name { font-size: 1.5rem; margin: 0 0 .15rem; }
.package-tagline { color: var(--accent-alt); font-weight: 600; margin: 0 0 .35rem; font-size: .98rem; }
.package-sub { color: var(--muted); font-style: italic; margin: 0 0 .8rem; font-size: .95rem; }
.package-price { font-size: 1.9rem; font-weight: 900; margin: 0; }
.price-prefix { font-size: .9rem; font-weight: 600; color: var(--muted); margin-right: .25rem; }
.price-individual { color: var(--accent); }

.package-bullets {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.package-bullets li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .96rem;
}
.package-bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.package-tech {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
  margin: 0 0 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.package-tech strong { color: var(--text); }
.package .btn { margin-top: auto; }

/* Empfohlene Karte hervorheben */
.package-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 18px 50px rgba(0,0,0,.5);
  background: linear-gradient(180deg, var(--accent-soft), var(--surface) 30%);
}
.package-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0B0B0B;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: .3rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* PV Start – breite Karte */
.package-wide {
  margin-top: var(--gap);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-style: dashed;
}
.package-wide-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.package-tagline-inline { color: var(--accent-alt); font-weight: 600; font-size: 1rem; }
.package-price-wide { font-size: 1.7rem; }
.package-wide .btn { align-self: flex-start; }

.price-footnote {
  color: var(--muted);
  font-size: .85rem;
  max-width: 760px;
  margin: 1.8rem auto .4rem;
  text-align: center;
}
.included-line {
  text-align: center;
  color: var(--text);
  background: var(--accent-soft);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: .9rem 1.2rem;
  max-width: 760px;
  margin: 1rem auto 1.8rem;
  font-size: .95rem;
}
.included-line strong { color: var(--accent); }

/* ---------- 8b · Datenblätter (Downloads je Paket) -------------- */
.doc-block { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.doc-block-head { text-align: center; max-width: 640px; margin: 0 auto 1.6rem; }
.doc-block-head h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: .4rem; }
.doc-block-head p { color: var(--muted); margin: 0; font-size: .98rem; }

.doc-accordions { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }

/* nutzt die bestehende .accordion-Optik, etwas kompakter */
.doc-accordions .accordion { margin-top: 0; }
.doc-accordions .accordion-trigger { font-size: 1rem; }
.doc-accordions .accordion-panel { padding-top: .6rem; }

.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.doc-item a {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .85rem;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.doc-item a:hover {
  border-color: var(--accent);
  background: var(--surface-2);
  transform: translateY(-1px);
  text-decoration: none;
}
.doc-item a:hover .doc-label strong { color: var(--accent); }

.doc-icon {
  flex: none;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--border-2);
  color: var(--accent);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.doc-label { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.doc-label strong { font-size: .96rem; font-weight: 600; }
.doc-label small { color: var(--muted); font-size: .8rem; }
.doc-dl {
  margin-left: auto;
  flex: none;
  color: var(--muted);
  font-size: 1.1rem;
}
.doc-item a:hover .doc-dl { color: var(--accent); }

/* Datenblätter als eigene Seite */
.doc-page .doc-group { margin-bottom: 2.4rem; scroll-margin-top: 90px; }
.doc-page .doc-group h2 {
  font-size: 1.3rem;
  margin: 0 0 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.doc-page .doc-group h2 small { color: var(--muted); font-weight: 500; font-size: .85rem; }
.doc-page .doc-list { max-width: 820px; }
.doc-group-note { color: var(--muted); font-size: .85rem; margin: .8rem 0 0; }

.chip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 2.5rem;
}
.chip-nav a {
  display: inline-flex;
  align-items: center;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.chip-nav a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* ---------- 9 · Matrix ------------------------------------------ */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }

.matrix, .options-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.matrix th, .matrix td,
.options-table th, .options-table td {
  padding: .85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.matrix thead th { background: var(--surface-2); font-weight: 700; }
.matrix td { text-align: center; }
.matrix .matrix-feature { text-align: left; }
.matrix tbody th { font-weight: 500; color: var(--text); }
.matrix .yes { color: var(--accent); font-weight: 700; }
.matrix .no { color: var(--muted); }
.matrix .col-featured { background: var(--accent-soft); }
.matrix thead .col-featured { background: rgba(168,209,30,0.18); color: var(--accent); }
.matrix tr:last-child td, .matrix tr:last-child th { border-bottom: none; }

.matrix-footnote {
  color: var(--muted);
  font-size: .85rem;
  margin: 1.2rem 0 0;
  max-width: 860px;
}

.options-table thead th { background: var(--surface-2); }
.options-table td:last-child { color: var(--muted); }

/* ---------- 10 · Akkordeon -------------------------------------- */
.accordion {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: var(--surface);
  color: var(--text);
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
}
.accordion-trigger:hover { background: var(--surface-2); }
.accordion-icon {
  flex: none;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .2s ease;
  line-height: 1;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-panel { padding: 0 1.3rem 1.3rem; background: var(--surface); }
.accordion-intro { color: var(--muted); margin: .4rem 0 1.2rem; }
.accordion-note { color: var(--muted); font-size: .85rem; margin: 1rem 0 0; }

/* ---------- 11 · Ablauf / Timeline ------------------------------ */
.timeline {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
  max-width: 760px;
  margin-inline: auto;
  position: relative;
}
.timeline-step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}
.step-num {
  flex: none;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #0B0B0B;
  font-weight: 800;
  font-size: 1.15rem;
}
.step-body h3 { font-size: 1.12rem; margin: .2rem 0 .25rem; }
.step-body p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- 12 · Service ---------------------------------------- */
.service-card h3 { color: var(--accent); font-size: 1.2rem; }
.service-card p { color: var(--muted); margin: 0; }
.service-card strong { color: var(--text); }

/* ---------- 13 · Über uns --------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.about-copy p { color: var(--muted); }
.about-points {
  list-style: none;
  margin: 1.2rem 0;
  padding: 0;
  display: grid;
  gap: .6rem;
}
.about-points li {
  position: relative; padding-left: 1.8rem; color: var(--muted);
}
.about-points li::before {
  content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700;
}
.about-region { color: var(--muted); }
.about-region strong { color: var(--text); }
.placeholder-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px dashed var(--border-2);
  background: var(--surface);
}

/* ---------- 14 · Kontakt / Formular ----------------------------- */
.contact-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2rem;
}
.contact-info p { margin: 0 0 .3rem; }
.contact-info a { color: var(--accent); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.aufnahmebogen { display: grid; gap: 1.4rem; }

.form-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.1rem, 2.5vw, 1.6rem);
  margin: 0;
}
.form-section legend {
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0 .5rem 0 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form-section legend small { color: var(--muted); font-weight: 500; font-size: .85rem; }
.legend-num {
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #0B0B0B;
  font-size: .9rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-wide { grid-column: 1 / -1; }

label, .field-label { font-size: .9rem; font-weight: 600; color: var(--text); }
.field-label { margin-bottom: .2rem; display: block; }
label small { color: var(--muted); font-weight: 400; }
.req { color: var(--accent); }

input[type="text"], input[type="tel"], input[type="email"],
select, textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: .7rem .85rem;
  font-family: inherit;
  font-size: .98rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { resize: vertical; }
select { cursor: pointer; }
::placeholder { color: #6a6a6a; }

.radio-row { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; }
.radio, .checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: .5rem;
  font-weight: 400;
  font-size: .95rem;
  color: var(--text);
  cursor: pointer;
}
.radio input, .checkbox input { margin-top: .2rem; accent-color: var(--accent); width: 17px; height: 17px; flex: none; }

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  margin: .8rem 0 1.2rem;
}

.form-hint { color: var(--muted); font-size: .85rem; margin: 1rem 0 0; }

.datenschutz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.datenschutz .checkbox { font-size: .92rem; color: var(--muted); }
.datenschutz .checkbox span { color: var(--muted); }

.form-status {
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-weight: 600;
}
.form-status.success {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
}
.form-status.error {
  background: rgba(220, 70, 70, .12);
  border: 1px solid #d24646;
  color: #ff9a9a;
}

.form-actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- 15 · Footer ----------------------------------------- */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding-block: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.footer-logo { width: 200px; height: auto; }
.footer-col h4 { color: var(--text); font-size: 1rem; margin: 0 0 .8rem; }
.footer-col p { color: var(--muted); margin: 0 0 .4rem; font-size: .92rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-links a { color: var(--muted); font-size: .92rem; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.footer-bottom p { color: var(--muted); font-size: .85rem; margin: 0; }
.footer-todo { color: #6a6a6a; font-style: italic; }

/* ---------- 15b · Rechtsseiten (Impressum / Datenschutz) -------- */
.legal {
  padding-block: clamp(3rem, 6vw, 5rem);
  min-height: 60vh;
}
.legal-inner { max-width: 820px; margin-inline: auto; }
.legal h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .4rem; }
.legal h2 {
  font-size: 1.3rem;
  margin: 2.2rem 0 .6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  color: var(--accent);
}
.legal h3 { font-size: 1.05rem; margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--muted); }
.legal p { margin: 0 0 .9rem; }
.legal strong { color: var(--text); }
.legal a { color: var(--accent); }
.legal ul { margin: 0 0 1rem; padding-left: 1.3rem; display: grid; gap: .35rem; }
.legal address { font-style: normal; color: var(--text); line-height: 1.7; margin-bottom: 1rem; }

.legal .back-link { display: inline-block; margin-bottom: 1.5rem; font-weight: 600; }

/* TODO-/Platzhalter-Markierung */
.legal .todo {
  background: rgba(168, 209, 30, .08);
  border-left: 3px solid var(--accent);
  padding: .15rem .5rem;
  border-radius: 4px;
  color: var(--accent);
  font-weight: 600;
  font-size: .92em;
}

/* Rechtlicher Disclaimer-Hinweis oben auf der Seite */
.legal-disclaimer {
  background: rgba(220, 160, 40, .1);
  border: 1px solid #b88a2e;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
}
.legal-disclaimer p { color: #e8c98a; margin: 0; font-size: .9rem; }
.legal-disclaimer strong { color: #f2dca8; }

.legal .updated { color: #6a6a6a; font-size: .85rem; font-style: italic; margin-top: 2.5rem; }

/* =================================================================
   16 · RESPONSIVE BREAKPOINTS (mobile-first → größer)
   ================================================================= */

/* ≥ 600px: 2-spaltige Formulargrids, USP-Reihe */
@media (min-width: 600px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .cards-2 { grid-template-columns: 1fr 1fr; }
  .contact-bar { flex-direction: row; align-items: center; justify-content: space-between; }
  .package-wide-main { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ≥ 760px: Hero 2-spaltig, Trust 2x2 */
@media (min-width: 760px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; }
  .hero-sub { font-size: 1.25rem; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .service-usps { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; max-width: 70ch; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

/* ≥ 960px: Pakete 3-spaltig, Trust 4-spaltig */
@media (min-width: 960px) {
  .packages { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Mobile-Menü (< 880px) ------------------------------- */
@media (max-width: 879px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: .5rem 1rem 1.2rem;
    transform: translateY(-150%);
    transition: transform .25s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a {
    padding: .85rem .5rem;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .main-nav .nav-cta {
    margin-top: .8rem;
    border-radius: var(--radius-sm);
    text-align: center;
    border-bottom: none;
  }
}

/* ---------- Reduced motion -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
