/* Helle, freundliche Markenwelt (Pastell) */
:root{
  --bg:#fff7fb;              /* Seitenhintergrund, sehr helles Rosé */
  --surface:#ffffff;          /* Karten/Flächen */
  --ink:#1f2937;              /* Primärtext (dunkelgrau) */
  --muted:#4b5563;            /* Sekundärtext */
  --brand:#8b5cf6;            /* Primär (weiches Flieder) */
  --brand-600:#7c3aed;        /* Hoverton */
  --accent:#fb7185;           /* Sekundär (zartes Korall-/Pink) */
  --accent-600:#f43f5e;       /* Hover */
  --line:#ece7f6;             /* zarte Linie */
  --soft:#fdf2f8;             /* Soft tint */
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  color:var(--ink); background:linear-gradient(180deg,var(--bg),#fff 40%, #fff);
}
.topbar{
  position:sticky; top:0; z-index:30; display:flex; align-items:center; justify-content:space-between;
  padding:.85rem 1rem; background:rgba(255,255,255,.9); backdrop-filter:saturate(1.1) blur(6px);
  border-bottom:1px solid var(--line);
}
.brand{display:flex; align-items:center; gap:.6rem; font-weight:800; color:#312e81; font-family:Nunito,Inter,sans-serif}
.logo{font-size:1.3rem}
.brand-text{letter-spacing:.2px}
.nav{display:flex; gap:1rem}
.nav-link{color:var(--muted); text-decoration:none; padding:.25rem .5rem; border-radius:8px}
.nav-link:hover{color:var(--brand); background:#f3e8ff}

/* HERO */
.hero{background:linear-gradient(180deg,#fdf4ff,#ffffff 65%); border-bottom:1px solid var(--line)}
.hero-inner{max-width:1200px; margin:0 auto; padding:32px 16px; display:grid; grid-template-columns:1.1fr .9fr; align-items:center; gap:16px}
.hero-copy h1{margin:.2rem 0 .4rem 0; font-family:Nunito,Inter,sans-serif; font-weight:800; letter-spacing:.2px}
.hero-copy .hl{background:linear-gradient(90deg,var(--brand),#f59e0b); -webkit-background-clip:text; background-clip:text; color:transparent}
.hero-copy p{color:var(--muted); max-width:56ch}
.btn-hero{background:var(--brand); color:#fff}
.btn-hero:hover{background:var(--brand-600)}
.hero-art{position:relative; min-height:200px}
.flower{width:220px; height:220px; border-radius:50%; background:radial-gradient(circle at 60% 40%, #fde68a 0 35%, #f3e8ff 35% 100%);
  box-shadow:0 10px 30px rgba(124,58,237,.25); position:absolute; right:24px; top:8px; animation:float 6s ease-in-out infinite}
.bubble{position:absolute; border-radius:50%; background:radial-gradient(circle at 30% 30%,#fff,#f3e8ff); opacity:.9; animation:float 7s ease-in-out infinite}
.b1{width:90px; height:90px; right:180px; top:140px; animation-delay:.2s}
.b2{width:60px; height:60px; right:60px; top:190px; animation-delay:.6s}
.b3{width:40px; height:40px; right:20px; top:120px; animation-delay:1s}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}

/* Anzeigen-Slots */
.ad-slot{display:flex; align-items:center; justify-content:center; background:#faf8ff; border:1px dashed #e9e5ef; color:#6b7280; min-height:70px; border-radius:12px}
.ad-placeholder{padding:.5rem; font-size:.92rem}
.ad-top,.ad-bottom{margin:10px auto; max-width:970px}

/* Layout */
.layout{display:grid; grid-template-columns: 240px 1fr 240px; gap:18px; width:100%; max-width:1200px; margin:0 auto; padding:18px}
.ad-left,.ad-right{min-height:600px; position:sticky; top:80px}
.content{display:flex; flex-direction:column; gap:16px}

/* Cards & Form */
.card{background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:18px; box-shadow:0 2px 10px rgba(17,24,39,.04)}
.h{font-family:Nunito,Inter,sans-serif; font-weight:800; margin:.1rem 0 .75rem 0}
.calc-form .grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px}
.field{display:grid; gap:6px; margin-bottom:0}
label{color:#374151; font-weight:600}
input{background:#fff; color:var(--ink); border:1px solid #e5e7eb; border-radius:10px; padding:.65rem .75rem; box-shadow:0 1px 0 rgba(0,0,0,.02)}
input:focus{outline:2px solid #e9d5ff; border-color:#d8b4fe}

.btn{background:var(--brand); color:white; border:none; border-radius:10px; padding:.7rem 1.05rem; font-weight:700; cursor:pointer; box-shadow:0 1px 2px rgba(0,0,0,.06); transition:transform .06s ease}
.btn:hover{background:var(--brand-600)}
.btn:active{transform:translateY(1px)}
.btn-secondary{background:var(--accent)}
.btn-secondary:hover{background:var(--accent-600)}
.btn-ghost{background:#fff; color:var(--muted); border:1px solid #e5e7eb}
.btn-ghost:hover{background:#f9fafb}

.disclaimer{background:#fff7ed; color:#7c2d12; padding:.6rem .75rem; border-left:4px solid #fb923c; border-radius:8px}
.help-text{color:var(--muted); font-size:.95rem}

/* Results with fade-in */
.results{display:block}
.results .panel{background:var(--surface); border:1px solid var(--line); border-radius:16px; padding:16px; margin-bottom:12px; animation:fadeIn .2s ease both}
.results h3{margin-top:0; color:#1f2937}
@keyframes fadeIn{from{opacity:0; transform:translateY(4px)} to{opacity:1; transform:none}}

/* Footer */
.footer{display:flex; flex-wrap:wrap; gap:.75rem; align-items:center; justify-content:space-between; padding:16px; color:var(--muted); border-top:1px solid var(--line); background:#fff}
.footer a{color:#6b7280}
.affiliate-note{color:#6d28d9; background:#f3e8ff; padding:.35rem .5rem; border-radius:8px; display:inline-block}

/* Consent Banner */
.consent-banner{position:fixed; inset:auto 16px 16px 16px; z-index:50}
.consent-content{background:#ffffff; border:1px solid var(--line); border-radius:16px; padding:14px; display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between; box-shadow:0 8px 24px rgba(17,24,39,.08)}
.consent-buttons{display:flex; gap:8px}

/* Sticky CTA (nur mobil sichtbar) */
.sticky-cta{position:fixed; left:0; right:0; bottom:0; display:none; justify-content:center; padding:10px; background:linear-gradient(180deg,transparent,rgba(255,255,255,.95)); backdrop-filter:blur(6px); z-index:40}
.sticky-cta .btn{box-shadow:0 6px 16px rgba(251,113,133,.35)}

/* Responsive */
@media (max-width: 1024px){
  .layout{grid-template-columns: 1fr;}
  .ad-left,.ad-right{display:none}
}
@media (max-width: 860px){
  .hero-inner{grid-template-columns:1fr; gap:10px}
  .hero-art{min-height:140px}
}
@media (max-width: 640px){
  .calc-form .grid{grid-template-columns:1fr}
  .sticky-cta{display:flex}
  .ad-top,.ad-bottom{margin:8px auto}
}
