/* Copyright (c) 2026 Dennis Andres */
:root {
  --bg: #0a0d0b;
  --flaeche: #121815;
  --flaeche-hell: #18211c;
  --linie: #26302a;
  --linie-hell: #33403a;
  --text: #eaf1ea;
  --text-dim: #9aa79d;
  --akzent: #4faf63;
  --akzent-hell: #86e39a;
  --radius: 14px;
  --schatten: 0 24px 60px rgba(0,0,0,0.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
a { color: var(--akzent-hell); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.015em; }
h1 { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.3rem); font-weight: 800; margin: 0 0 1rem; }
h2 { font-size: clamp(1.5rem, 1rem + 1.8vw, 2.2rem); font-weight: 760; margin: 0 0 0.75rem; }
h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.4rem; }
p { margin: 0 0 1rem; }
.dim { color: var(--text-dim); }
.mono { font-family: ui-monospace, "Segoe UI Mono", Menlo, Consolas, monospace; }

.kopf { border-bottom: 1px solid var(--linie); background: rgba(10,13,11,0.72); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); }
.kopf-inhalt { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }
.marke { font-weight: 800; font-size: 1.15rem; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.marke span { color: var(--akzent-hell); }

.btn { position: relative; display: inline-block; background: var(--akzent); color: #07130b; text-decoration: none; font-weight: 700; padding: 0.85rem 1.5rem; border-radius: var(--radius); border: 0; cursor: pointer; font-size: 1rem; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; }
.btn:hover { background: var(--akzent-hell); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(79,175,99,0.32); }
.btn:active { transform: translateY(0); }
.btn-sek { background: transparent; color: var(--text); border: 1px solid var(--linie-hell); }
.btn-sek:hover { border-color: var(--akzent); background: rgba(79,175,99,0.08); box-shadow: none; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

.badge { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; font-weight: 600; color: var(--akzent-hell); border: 1px solid var(--linie-hell); border-radius: 999px; padding: 0.35rem 0.9rem; margin-bottom: 1.5rem; background: rgba(79,175,99,0.06); }
.badge .punkt { width: 8px; height: 8px; border-radius: 50%; background: var(--akzent); display: inline-block; box-shadow: 0 0 0 0 rgba(79,175,99,0.6); animation: puls 2.4s infinite; }
@keyframes puls { 0% { box-shadow: 0 0 0 0 rgba(79,175,99,0.5); } 70% { box-shadow: 0 0 0 9px rgba(79,175,99,0); } 100% { box-shadow: 0 0 0 0 rgba(79,175,99,0); } }

.held { position: relative; padding: 4.5rem 0 4rem; border-bottom: 1px solid var(--linie); overflow: hidden; }
.held::before { content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 900px; height: 700px; background: radial-gradient(circle at center, rgba(79,175,99,0.16), rgba(79,175,99,0) 62%); pointer-events: none; animation: schweben 14s ease-in-out infinite; }
@keyframes schweben { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-46%, 22px); } }
.held-inhalt { position: relative; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.held-inhalt > * { min-width: 0; }
.mockup { max-width: 100%; }
@media (min-width: 900px) { .held-inhalt { grid-template-columns: 1.05fr 0.95fr; } }
.held p.lead { font-size: 1.2rem; max-width: 46ch; color: var(--text-dim); }
.held-aktionen { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.75rem; }

.mockup { border: 1px solid var(--linie-hell); border-radius: var(--radius); overflow: hidden; background: var(--flaeche); box-shadow: var(--schatten); transform: perspective(1400px) rotateY(-6deg) rotateX(2deg); transition: transform 0.4s ease; }
.mockup:hover { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.mockup-leiste { display: flex; align-items: center; gap: 0.4rem; flex-wrap: nowrap; padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--linie); background: var(--flaeche-hell); }
.mockup-leiste > span { width: 10px; height: 10px; border-radius: 50%; background: var(--linie-hell); flex: 0 0 auto; }
.mockup-adresse { margin-left: 0.7rem; font-family: ui-monospace, monospace; font-size: 0.72rem; color: var(--text-dim); white-space: nowrap; }
.mockup-koerper { padding: 1.4rem 1.4rem 1.6rem; }
.mockup-nav { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 1.4rem; }
.mockup-logo { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--akzent), var(--akzent-hell)); }
.mockup-logo-text { font-weight: 800; font-size: 0.85rem; }
.mockup-menu { margin-left: auto; display: flex; gap: 0.7rem; }
.mockup-menu i { width: 34px; height: 7px; border-radius: 4px; background: var(--linie-hell); display: block; }
.mockup-hero-titel { height: 15px; width: 78%; border-radius: 5px; background: linear-gradient(90deg, var(--akzent-hell), var(--akzent)); margin-bottom: 0.6rem; }
.mockup-hero-titel.kurz { width: 52%; }
.mockup-zeile { height: 8px; border-radius: 4px; background: var(--linie-hell); margin-bottom: 0.5rem; }
.mockup-zeile.w70 { width: 70%; } .mockup-zeile.w60 { width: 60%; }
.mockup-knopf { margin-top: 1rem; height: 30px; width: 130px; border-radius: 8px; background: var(--akzent); }
.mockup-karten { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.6rem; margin-top: 1.4rem; }
.mockup-karte { height: 58px; border-radius: 8px; border: 1px solid var(--linie); background: var(--flaeche-hell); }

.block { padding: 4rem 0; border-bottom: 1px solid var(--linie); }
.block-flaeche { background: var(--flaeche); }
.block-kopf { max-width: 62ch; margin-bottom: 2.25rem; }

.raster { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .raster-2 { grid-template-columns: 1fr 1fr; } .raster-3 { grid-template-columns: repeat(3, 1fr); } }
.karte { background: var(--flaeche); border: 1px solid var(--linie); border-radius: var(--radius); padding: 1.6rem; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.karte:hover { transform: translateY(-4px); border-color: var(--linie-hell); box-shadow: var(--schatten); }
.block-flaeche .karte { background: var(--flaeche-hell); }

.liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.liste li { display: flex; align-items: flex-start; gap: 0.65rem; }
.liste svg { color: var(--akzent-hell); flex: 0 0 auto; margin-top: 0.2rem; }

.schritte { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .schritte { grid-template-columns: repeat(3, 1fr); } }
.schritt { position: relative; padding: 1.6rem 1.5rem 1.5rem; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--flaeche); }
.schritt-nr { width: 2.3rem; height: 2.3rem; border-radius: 50%; background: rgba(79,175,99,0.14); color: var(--akzent-hell); font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; border: 1px solid var(--linie-hell); }

.kosten { display: grid; gap: 0.9rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .kosten { grid-template-columns: 1fr 1fr; } }
.kosten-zeile { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; border: 1px solid var(--linie); border-radius: var(--radius); background: var(--flaeche); }
.kosten-frei { color: var(--akzent-hell); font-weight: 700; white-space: nowrap; }

.faq-eintrag { border-bottom: 1px solid var(--linie); padding: 1.15rem 0; }
.faq-eintrag h3 { margin-bottom: 0.35rem; }
.faq-eintrag p { margin: 0; color: var(--text-dim); }

.antrag-huelle { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 860px) { .antrag-huelle { grid-template-columns: 0.9fr 1.1fr; } }
.antrag-karte { background: var(--flaeche); border: 1px solid var(--linie-hell); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--schatten); }
.formular { max-width: 640px; }
.feld { margin-bottom: 1.1rem; }
.feld label { display: block; font-weight: 600; margin-bottom: 0.35rem; }
.feld input, .feld textarea { width: 100%; background: var(--bg); border: 1px solid var(--linie); border-radius: 10px; color: var(--text); padding: 0.8rem 0.95rem; font: inherit; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.feld input:focus, .feld textarea:focus { outline: none; border-color: var(--akzent); box-shadow: 0 0 0 3px rgba(79,175,99,0.18); }
.feld textarea { min-height: 110px; resize: vertical; }
.feld-check { display: flex; gap: 0.6rem; align-items: flex-start; }
.feld-check input { width: auto; margin-top: 0.3rem; }
.honigtopf { position: absolute; left: -9999px; }
.hinweis { padding: 0.85rem 1rem; border-radius: 10px; border: 1px solid var(--linie); background: var(--flaeche); font-size: 0.95rem; }
.hinweis-fehler { border-color: #7a3b3b; color: #f0b8b8; background: rgba(122,59,59,0.12); }

.fuss { padding: 2.5rem 0; color: var(--text-dim); font-size: 0.9rem; }
.fuss-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-bottom: 1rem; }
.fuss a { color: var(--text-dim); text-decoration: none; }
.fuss a:hover { color: var(--akzent-hell); }
.gehostet { margin-top: 0.5rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.sichtbar { opacity: 1; transform: none; }
.held .anim { opacity: 0; transform: translateY(18px); animation: auf 0.7s ease forwards; }
.held .anim.d1 { animation-delay: 0.05s; } .held .anim.d2 { animation-delay: 0.18s; } .held .anim.d3 { animation-delay: 0.32s; } .held .anim.d4 { animation-delay: 0.46s; }
@keyframes auf { to { opacity: 1; transform: none; } }

@media (max-width: 899px) {
  .held-bild { max-width: 440px; margin: 0 auto; width: 100%; }
  .mockup { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .held .anim { opacity: 1 !important; transform: none !important; }
  .mockup { transform: none !important; }
}
