/* ==========================================================
   EnCo Service · Design System (dark, architectural)
   Shape rule: architectural, small radii (controls 3px, containers 6px)
   One accent: amber. One display family: IBM Plex Sans (mono for data). Bodoni only in the logo.
   ========================================================== */
:root {
  --bg: #101418;
  --bg-2: #141a20;
  --surface: #1a2129;
  --surface-2: #202932;
  --text: #eef1f4;
  --text-2: #c3cad1;
  --text-dim: #98a2ac;
  --muted: #8b95a0;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.16);
  --accent: #d9a441;
  --accent-hover: #e4b45c;
  --accent-ink: #1a1408;
  --accent-soft: rgba(217,164,65,.12);
  --shadow: 0 20px 50px rgba(6,9,12,.55), 0 4px 12px rgba(6,9,12,.4);
  --r-card: 6px;
  --r-input: 3px;
  --gutter: clamp(20px, 5vw, 72px);
  --font: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --font-logo: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: var(--accent-ink); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.02em; line-height: 1.1; font-weight: 700; }
p { margin: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 12px 18px; border-radius: 3px; background: var(--accent); color: var(--accent-ink); font-weight: 700; transform: translateY(-200%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.container { width: min(1320px, 100% - 2 * var(--gutter)); margin-inline: auto; }
.eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.lead { color: var(--text-2); font-size: clamp(15px, 1.15vw, 18px); max-width: 60ch; margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 12px 24px; border-radius: 3px; font-weight: 600; font-size: 15px; white-space: nowrap; transition: background .25s, color .25s, border-color .25s, transform .2s var(--ease); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.35); color: var(--text); background: rgba(16,20,24,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--text); background: rgba(16,20,24,.65); }
.btn-sm { min-height: 42px; padding: 9px 18px; font-size: 14px; }
.btn-quiet { border: 1px solid rgba(255,255,255,.3); color: var(--text); background: rgba(10,13,16,.32); }
.btn-quiet:hover { border-color: rgba(255,255,255,.7); background: rgba(10,13,16,.55); }
.btn-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-weight: 700; font-size: 14px; color: var(--accent); }
.btn-link:hover { color: var(--accent-hover); }

/* ---------- Header ---------- */
.header-sentinel { position: absolute; top: 0; height: 40px; width: 1px; }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 80; height: 72px; display: flex; align-items: center; background: linear-gradient(to bottom, rgba(16,20,24,.55), rgba(16,20,24,0)); transition: background .35s, backdrop-filter .35s; }
.header.is-scrolled { background: rgba(16,20,24,.82); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand-mark { width: 36px; height: 40px; flex: none; }
.brand-word { display: block; line-height: 1; white-space: nowrap; }
.brand-word b { display: block; font-family: var(--font-logo); font-weight: 400; font-size: 20px; letter-spacing: .08em; text-transform: uppercase; }
.brand-word small { display: block; font-family: var(--font-logo); font-weight: 400; font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--text-dim); margin-top: 3px; padding-left: .12em; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 14px; font-weight: 600; color: var(--text-2); white-space: nowrap; padding: 6px 0; border-bottom: 1.5px solid transparent; transition: color .25s, border-color .25s; }
.nav a:hover, .nav a.is-active { color: var(--text); border-bottom-color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone { font-size: 14px; font-weight: 700; color: var(--text-2); white-space: nowrap; }
.header-phone:hover { color: var(--text); }
.burger { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line-strong); border-radius: 3px; place-items: center; }
.burger span { display: block; width: 18px; height: 1.5px; background: var(--text); margin: 2.5px 0; transition: transform .3s, opacity .3s; }
.mobile-nav { position: fixed; inset: 0; z-index: 79; background: var(--bg); display: grid; align-content: center; padding: 0 var(--gutter); gap: 6px; transform: translateY(-100%); transition: transform .5s var(--ease); }
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a { font-size: clamp(28px, 7vw, 44px); font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.mobile-nav .btn { margin-top: 18px; font-size: 16px; justify-self: start; }
body.menu-open .burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero (Aufbau und Details in home.css) ---------- */
.hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero-sub { text-shadow: 0 1px 12px rgba(0,0,0,.4); }

/* ---------- Sections ---------- */
/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.form { display: grid; gap: 16px; padding: clamp(22px, 3vw, 32px); border-radius: var(--r-card); background: var(--surface); }
.field label, .field legend { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-2); margin-bottom: 8px; padding: 0; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; background: var(--bg); border: 1.5px solid var(--line-strong); border-radius: var(--r-input); padding: 13px 14px; color: var(--text); font: inherit; outline: none; transition: border-color .25s, box-shadow .25s; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(217,164,65,.18); }
.field.is-invalid input { border-color: #e0776a; }
.field .help { display: block; margin-top: 6px; font-size: 12.5px; color: var(--text-dim); }
.field .err { display: none; margin-top: 6px; font-size: 12.5px; color: #f0a297; }
.field.is-invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 3px; border: 1.5px solid var(--line-strong); font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; margin: 0; }
.radio-row label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.radio-row input { accent-color: var(--accent); margin: 0; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.form-note { font-size: 13px; color: var(--text-dim); }


/* Formularversand */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }
.form-status { padding: 16px 18px; border-radius: var(--r-input); border: 1px solid rgba(224,119,106,.5); background: rgba(224,119,106,.08); }
.form-status-text { font-size: 14.5px; line-height: 1.55; color: var(--text); }
.form-status-wege { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.form-status-link { display: inline-flex; align-items: center; min-height: 40px; padding: 0 14px; border-radius: 3px; border: 1px solid var(--line-strong); background: none; font: inherit; font-size: 14px; font-weight: 500; color: var(--text); cursor: pointer; }
.form-status-link:hover { border-color: var(--accent); color: var(--accent); }
.form-erfolg { padding: 8px 0; outline: none; }
.form-erfolg-titel { font-size: 20px; font-weight: 600; letter-spacing: -.01em; color: var(--text); }
.form-erfolg-text { margin: 10px 0 18px; font-size: 15px; line-height: 1.6; color: var(--text-2); }
.form-erfolg-titel::before { content: ""; display: block; width: 36px; height: 36px; margin-bottom: 14px; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d9a441' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/20px no-repeat; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.footer ul { display: grid; gap: 8px; }
.footer a { font-size: 14px; color: var(--text-2); }
.footer a:hover { color: var(--text); }
.footer p { color: var(--text-dim); font-size: 14px; max-width: 40ch; margin-top: 16px; }
.lockup { display: flex; align-items: center; gap: 16px; color: var(--text); }
.lockup-mark { width: 60px; height: 66px; flex: none; color: #9a9a9a; }
.lockup-text .l1 { display: block; font-family: var(--font-logo); font-size: 28px; letter-spacing: .08em; text-transform: uppercase; line-height: 1; color: var(--text-2); }
.lockup-text .l2 { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-top: 4px; font-family: var(--font-logo); font-size: 13px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-2); }
.lockup-text .l2 i { font-style: normal; font-size: 9.5px; letter-spacing: .08em; text-transform: none; color: var(--muted); }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.footer-cc { font-size: 12.5px; color: var(--muted); background: none; border: 0; padding: 0; cursor: pointer; }
.footer-cc:hover { color: var(--text); }

/* Legal pages (Impressum) */
.footer-hwk { margin-top: 10px; }
.legal { padding: 136px 0 clamp(64px, 8vw, 120px); }
.legal-inner { max-width: 720px; }
.legal h1 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.03em; }
.legal-intro { margin-top: 10px; color: var(--text-dim); }
.legal-block { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); }
.legal-block h2 { font-size: 18px; margin-bottom: 10px; }
.legal-block p { color: var(--text-2); font-size: 15.5px; line-height: 1.65; }
.legal-block p + p { margin-top: 10px; }
.legal-block a { color: var(--accent); }
.legal-block a:hover { color: var(--accent-hover); }
.legal-block .todo { color: var(--accent); background: var(--accent-soft); padding: 1px 6px; border-radius: 6px; }
.page-legal .header { background: rgba(16,20,24,.82); }

.karte { margin-top: 16px; padding: 20px; border: 1px solid var(--line-strong); border-radius: var(--r-card); background: var(--surface); }
.karte.is-geladen { padding: 0; border: 0; background: none; }
.karte-text { margin-bottom: 14px; font-size: 14px; line-height: 1.6; color: var(--text-2); }
.karte iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--r-card); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(14px); }
.field label .opt { font-weight: 500; color: var(--text-dim); }
[data-reveal].in { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }


/* ---------- Einwilligung (Cookie-Hinweis) ---------- */
.cc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; padding: 0 var(--gutter) clamp(12px, 2vw, 24px); pointer-events: none; }
.cc-karte { pointer-events: auto; width: min(1320px, 100%); margin-inline: auto; padding: clamp(18px, 2.2vw, 26px); border: 1px solid var(--line-strong); border-radius: var(--r-card); background: rgba(20,26,32,.97); box-shadow: var(--shadow); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.cc-titel { font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.cc-text { margin-top: 10px; max-width: 86ch; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.cc-liste { display: grid; gap: 14px; margin-top: 14px; }
.cc-zeile { padding-top: 12px; border-top: 1px solid var(--line); }
.cc-zeile:first-child { border-top: 0; padding-top: 0; }
.cc-schalter { display: inline-flex; align-items: center; gap: 10px; min-height: 32px; cursor: pointer; }
.cc-schalter input { width: 18px; height: 18px; accent-color: var(--accent); margin: 0; }
.cc-schalter input:disabled { opacity: .6; cursor: default; }
.cc-name { font-size: 14.5px; font-weight: 600; }
.cc-klein { margin-top: 4px; max-width: 80ch; font-size: 13.5px; line-height: 1.55; color: var(--text-dim); }
.cc-aktionen { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; }
.cc-link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 6px; font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; cursor: pointer; }
.cc-link:hover { color: var(--text); }
.cc-rechts { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; }
@media (max-width: 600px) {
  .cc-aktionen .btn { flex: 1 1 auto; }
  .cc-rechts { margin-left: 0; width: 100%; }
}


/* ---------- Assistent ---------- */
.chat-knopf { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 290; display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 20px 0 16px; border-radius: 999px; background: var(--accent); color: var(--accent-ink); font-size: 15px; font-weight: 600; box-shadow: var(--shadow); transition: transform .25s var(--ease), background .25s, opacity .25s; }
.chat-knopf svg { width: 22px; height: 22px; }
.chat-knopf:hover { background: var(--accent-hover); transform: translateY(-2px); }
body.cc-offen .chat-knopf { opacity: 0; pointer-events: none; }
body.chat-offen .chat-knopf { opacity: 0; pointer-events: none; }

.chat-wa { position: fixed; right: clamp(16px, 3vw, 28px); bottom: calc(clamp(16px, 3vw, 28px) + 64px); z-index: 290; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: #1da851; color: #fff; border: 1px solid rgba(0,0,0,.18); box-shadow: var(--shadow); transition: transform .25s var(--ease), opacity .25s; }
.chat-wa svg { width: 27px; height: 27px; }
.chat-wa:hover { transform: translateY(-2px); }
body.cc-offen .chat-wa, body.chat-offen .chat-wa { opacity: 0; pointer-events: none; }

.chat-fenster { position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 295; display: none; flex-direction: column; width: min(400px, calc(100vw - 32px)); max-height: min(620px, calc(100vh - 32px)); border: 1px solid var(--line-strong); border-radius: var(--r-card); background: var(--bg-2); box-shadow: var(--shadow); overflow: hidden; }
.chat-fenster.is-offen { display: flex; }
.chat-kopf { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 16px 16px 14px; border-bottom: 1px solid var(--line); background: var(--surface); }
.chat-titel { font-size: 16px; font-weight: 600; }
.chat-unter { margin-top: 3px; font-size: 12px; color: var(--text-dim); }
.chat-zu { width: 36px; height: 36px; margin: -6px -6px 0 0; flex: none; display: grid; place-items: center; border-radius: 3px; color: var(--text-dim); }
.chat-zu svg { width: 13px; height: 13px; }
.chat-zu:hover { color: var(--text); }

.chat-verlauf { flex: 1; overflow-y: auto; padding: 16px; display: grid; gap: 10px; align-content: start; }
.chat-nachricht { max-width: 88%; padding: 11px 14px; border-radius: 10px; font-size: 14.5px; line-height: 1.55; }
.chat-bot { justify-self: start; background: var(--surface); color: var(--text-2); border-bottom-left-radius: 3px; }
.chat-du { justify-self: end; background: var(--accent); color: var(--accent-ink); font-weight: 500; border-bottom-right-radius: 3px; }
.chat-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.chat-link { display: inline-flex; align-items: center; min-height: 36px; padding: 0 12px; border-radius: 3px; border: 1px solid var(--line-strong); font-size: 13.5px; font-weight: 500; color: var(--text); }
.chat-link:hover { border-color: var(--accent); color: var(--accent); }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-chip { min-height: 36px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 13.5px; color: var(--text-2); background: none; cursor: pointer; }
.chat-chip:hover { border-color: var(--accent); color: var(--text); }
.chat-tippt { padding: 14px; }
.chat-punkte { display: inline-block; width: 30px; height: 6px; background: radial-gradient(circle 3px at 3px 3px, var(--muted) 98%, transparent), radial-gradient(circle 3px at 15px 3px, var(--muted) 98%, transparent), radial-gradient(circle 3px at 27px 3px, var(--muted) 98%, transparent); animation: chatPuls 1.1s infinite ease-in-out; }
@keyframes chatPuls { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.chat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); }
.chat-eingabe { flex: 1; min-height: 44px; padding: 10px 12px; border: 1.5px solid var(--line-strong); border-radius: var(--r-input); background: var(--bg); color: var(--text); font: inherit; font-size: 14.5px; outline: none; }
.chat-eingabe:focus { border-color: var(--accent); }
.chat-senden { min-height: 44px; padding: 0 16px; border-radius: var(--r-input); background: var(--accent); color: var(--accent-ink); font-size: 14px; font-weight: 600; }
.chat-senden:hover { background: var(--accent-hover); }
.chat-fuss { padding: 0 14px 12px; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.chat-fuss a { color: var(--text-dim); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 600px) {
  .chat-fenster { right: 8px; left: 8px; bottom: 8px; width: auto; max-height: calc(100vh - 16px); max-height: calc(100dvh - 16px); }
  .chat-knopf { right: 12px; bottom: 12px; min-height: 48px; padding: 0 16px 0 14px; }
  .chat-wa { right: 152px; bottom: 12px; width: 48px; height: 48px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) { .nav { gap: 20px; } .header-phone { display: none; } }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) { .nav { display: none; } .burger { display: grid; } }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
}
@media (max-width: 600px) {
  .footer-grid, .field-row { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ==========================================================
   LANDINGPAGES (Arealpflege, Winterdienst)
   Fokussierte Leistungsseiten. Gleiche Tokens wie die Hauptseite.
   ========================================================== */
.page-lp { background: var(--bg); }
.lp-header { position: sticky; top: 0; z-index: 80; background: rgba(16,20,24,.9); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); }
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.lp-nav { display: flex; align-items: center; gap: 8px; }
.lp-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; font-size: 14px; font-weight: 700; color: var(--text-2); border-radius: 3px; transition: color .25s, background .25s; }
.lp-nav a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.lp-nav .btn { margin-left: 4px; }

.lp-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.lp-hero-media { position: absolute; inset: 0; }
.lp-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) brightness(.55); }
.lp-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(16,20,24,.94) 0%, rgba(16,20,24,.78) 45%, rgba(16,20,24,.35) 100%); }
/* Köpfe ohne Foto: ruhiger Farbverlauf in der Stimmung der jeweiligen Leistung */
.lp-hero-media.is-winter { background: radial-gradient(120% 90% at 85% 10%, #2b3b52 0%, #1a2532 45%, var(--bg) 100%); }
.lp-hero-media.is-areal { background: radial-gradient(120% 90% at 85% 10%, #2c3a2c 0%, #1b2620 45%, var(--bg) 100%); }
.lp-hero-media.is-winter::after, .lp-hero-media.is-areal::after { background: linear-gradient(100deg, rgba(16,20,24,.9) 0%, rgba(16,20,24,.55) 55%, rgba(16,20,24,.15) 100%); }
.lp-hero-inner { position: relative; z-index: 2; padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 7vw, 88px); max-width: 660px; }
.lp-hero h1 { font-size: clamp(30px, 4vw, 52px); line-height: 1.08; letter-spacing: -.03em; }
.lp-hero .sub { margin-top: 16px; color: var(--text-2); font-size: clamp(15px, 1.2vw, 18px); max-width: 52ch; }
.lp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.lp-usp { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-strong); }
.lp-usp li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text-2); }
.lp-usp li::before { content: ""; width: 16px; height: 16px; flex: none; border-radius: 50%; background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3.2 7.2l2.4 2.4 5.2-5.4' fill='none' stroke='%23d9a441' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }

.lp-section { padding: clamp(56px, 7vw, 100px) 0; }
.lp-section + .lp-section { border-top: 1px solid var(--line); }
.lp-section.alt { background: var(--bg-2); }
.lp-head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 52px); }
.lp-head h2 { font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -.03em; line-height: 1.1; }
.lp-head p { margin-top: 14px; color: var(--text-2); font-size: clamp(15px, 1.1vw, 17px); }

.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.lp-card { padding: 26px; border-radius: var(--r-card); background: var(--surface); }
.lp-card h3 { font-size: 18px; }
.lp-card p { margin-top: 8px; color: var(--text-2); font-size: 14.5px; }
.lp-card ul { margin-top: 12px; display: grid; gap: 6px; }
.lp-card li { position: relative; padding-left: 16px; font-size: 14px; color: var(--text-2); }
.lp-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 1.5px; background: var(--accent); }

.lp-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.lp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.lp-tags span { font-size: 13.5px; font-weight: 600; padding: 9px 15px; border-radius: 3px; background: var(--surface); color: var(--text-2); }
.lp-note { margin-top: 24px; padding: 16px 18px; border-left: 2px solid var(--accent); background: var(--accent-soft); border-radius: 0 3px 3px 0; color: var(--text); font-size: 15px; }
.lp-note b { display: block; color: var(--accent); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: 11px; margin-bottom: 4px; }

.lp-steps { display: grid; gap: 0; position: relative; padding-left: 28px; }
.lp-steps::before { content: ""; position: absolute; left: 6px; top: 12px; bottom: 12px; width: 1.5px; background: var(--line-strong); }
.lp-steps li { position: relative; padding-bottom: 30px; }
.lp-steps li:last-child { padding-bottom: 0; }
.lp-steps li::before { content: ""; position: absolute; left: -28px; top: 7px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); }
.lp-steps h3 { font-size: 19px; }
.lp-steps p { margin-top: 6px; color: var(--text-2); font-size: 15px; max-width: 48ch; }

.lp-faq { display: grid; gap: 10px; max-width: 800px; }
.lp-faq details { background: var(--surface); border-radius: var(--r-card); overflow: hidden; }
.lp-faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 44px; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: ""; width: 11px; height: 11px; flex: none; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform .25s var(--ease); }
.lp-faq details[open] summary::after { transform: rotate(-135deg); }
.lp-faq .answer { padding: 0 22px 20px; color: var(--text-2); font-size: 15px; max-width: 68ch; }

.lp-form-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.lp-contact { display: grid; gap: 18px; margin-top: 30px; }
.lp-contact .lbl { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.lp-contact .val { font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; }
.lp-contact a.val:hover { color: var(--accent); }

@media (max-width: 1024px) { .lp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .lp-split, .lp-form-grid { grid-template-columns: 1fr; }
  .lp-hero-media::after { background: linear-gradient(180deg, rgba(16,20,24,.7) 0%, rgba(16,20,24,.88) 60%, var(--bg) 100%); }
  .lp-nav a:not(.btn) { padding: 0 10px; font-size: 13.5px; }
}
@media (max-width: 600px) {
  .lp-grid { grid-template-columns: 1fr; }
  .lp-cta .btn { flex: 1 1 auto; }
  .lp-nav .btn { display: none; }
}


/* Radio-Pills: feste Größe, kein Umbruch im Label */
.radio-row label { white-space: nowrap; }
.radio-row input[type="radio"] { width: 17px; height: 17px; flex: none; }
