/* ==========================================================================
   RegioCraft – Landingpage
   Apple-Niveau, aus einem Guss. Fixer Glas-Header, dunkler Hero mit dezenter
   Animation, wechselnde helle/dunkle Sektionen, Marken-Orange als Akzent.
   Schriften lokal: Newsreader (Display-Serif), Inter (UI/Text).
   ========================================================================== */

@font-face { font-family:"Inter"; src:url("../fonts/inter-400.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Inter"; src:url("../fonts/inter-500.woff2") format("woff2"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Inter"; src:url("../fonts/inter-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Inter"; src:url("../fonts/inter-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Newsreader"; src:url("../fonts/newsreader-500.woff2") format("woff2"); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:"Newsreader"; src:url("../fonts/newsreader-600.woff2") format("woff2"); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:"Newsreader"; src:url("../fonts/newsreader-700.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Newsreader"; src:url("../fonts/newsreader-500-italic.woff2") format("woff2"); font-weight:500; font-style:italic; font-display:swap; }

:root {
  --bg:        #F4EDE2;
  --bg-2:      #EDE4D6;
  --ink:       #14110D;
  --ink-2:     #36302A;
  --muted:     #6C6253;
  --faint:     #9A8D7B;
  --hair:      rgba(20,17,13,.12);
  --hair-soft: rgba(20,17,13,.07);
  --accent:    #E5571C;
  --accent-2:  #FF7A38;
  --accent-deep:#B14606;   /* Marken-Orange, dunkel, für Kursiv-Akzente */
  --cream:     #FCFAF5;
  --surface:   #FFFFFF;

  --dk:        #14100B;
  --dk-2:      #1C160F;
  --dk-line:   rgba(255,255,255,.12);
  --dk-text:   #F4EDE1;
  --dk-muted:  #C7BBA8;

  --maxw: 1140px;
  --r:    12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-btn: 8px;
  --sh-sm: 0 2px 10px -3px rgba(20,17,13,.12);
  --sh:    0 22px 50px -24px rgba(20,17,13,.32);
  --sh-lg: 0 44px 90px -36px rgba(20,17,13,.45);
  --ease:  cubic-bezier(.22,.61,.18,1);
  --head-h: 90px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family:"Inter", system-ui, sans-serif; color: var(--ink);
  background: var(--bg); line-height: 1.6; font-size: 17px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { font-family:"Newsreader", Georgia, serif; font-weight: 600; line-height: 1.05; letter-spacing: -.02em; margin: 0; }
h1, h2 { text-wrap: balance; }
h2 em, h3 em { font-style: italic; font-weight: 500; color: var(--accent-deep); }
p { margin: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: 24px; }
.section { padding: clamp(78px, 10vw, 144px) 0; position: relative; scroll-margin-top: var(--head-h); }
.label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-deep); }
.lead { font-size: clamp(17px, 1.9vw, 20px); color: var(--muted); line-height: 1.55; }
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(33px, 5vw, 56px); margin-top: 18px; }
.sec-head p { margin-top: 20px; }

/* ---------- Header (fix, kein weißer Klotz) ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60; }
.site-header .bar {
  margin: 14px auto 0; max-width: var(--maxw); width: calc(100% - 28px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 12px 11px 24px; border-radius: var(--r-btn);
  border: 1px solid transparent; transition: background .35s, border-color .35s, box-shadow .35s;
}
.site-header.on-dark .bar { background: rgba(20,15,9,.42); border-color: rgba(255,255,255,.14); backdrop-filter: blur(16px) saturate(150%); }
.site-header.on-dark .brand { color: #fff; }
.site-header.scrolled:not(.on-dark) .bar { background: rgba(252,250,245,.82); border-color: var(--hair); backdrop-filter: blur(18px) saturate(160%); box-shadow: var(--sh-sm); }
.brand { display: inline-flex; align-items: baseline; font-family:"Newsreader", serif; font-weight: 600; font-size: 26px; letter-spacing: -.02em; text-decoration: none; color: var(--ink); transition: color .35s; }
.brand .dot { color: var(--accent-2); }
.nav-cta .btn { --pad: 11px 20px; font-size: 14.5px; }

/* ---------- Buttons (kantig) ---------- */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad); border-radius: var(--r-btn); border: 1px solid transparent;
  font-weight: 600; font-size: 15.5px; letter-spacing: -.01em; text-decoration: none; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .3s, background .25s, border-color .25s, color .2s;
}
.btn-accent { color: #fff; background: linear-gradient(180deg, var(--accent-2), var(--accent)); box-shadow: 0 12px 26px -10px rgba(229,87,28,.55), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(229,87,28,.7); }
.btn-dark { color: var(--cream); background: var(--ink); }
.btn-dark:hover { background:#000; transform: translateY(-2px); box-shadow: var(--sh); }
.btn-light { color: var(--ink); background: #fff; }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--sh); }
.btn-outline { color: #fff; background: transparent; border-color: rgba(255,255,255,.34); }
.btn-outline:hover { border-color:#fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); background: transparent; border-color: var(--hair); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-wa { color:#fff; background: linear-gradient(180deg,#28c265,#1FA855); box-shadow: 0 12px 26px -10px rgba(31,168,85,.55); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(31,168,85,.7); }
.btn-lg { --pad: 17px 32px; font-size: 16px; }
.btn svg { flex: none; }
.btn-arrow svg { transition: transform .25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ---------- HERO (dunkel, zentriert, animiert) ---------- */
.hero { position: relative; background: var(--dk); color: var(--dk-text); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(229,87,28,.30), transparent 62%),
    radial-gradient(42% 42% at 84% 22%, rgba(255,150,80,.12), transparent 60%),
    radial-gradient(42% 42% at 12% 30%, rgba(255,150,80,.08), transparent 60%),
    linear-gradient(180deg, #1b1610, #100c08);
}
.hero::after { /* sanft driftender Glow für Bewegung */
  content: ""; position: absolute; left: 50%; top: 4%; width: 70%; height: 60%; transform: translateX(-50%);
  z-index: 1; pointer-events: none; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,122,56,.20), transparent 70%);
  filter: blur(20px); animation: heroGlow 9s ease-in-out infinite;
}
@keyframes heroGlow { 0%,100%{ opacity:.55; transform: translate(-50%, 0); } 50%{ opacity:1; transform: translate(-50%, 16px); } }
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; text-align: center; padding: calc(var(--head-h) + clamp(40px,7vw,86px)) 0 clamp(82px,11vw,150px); }
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #FFD9C2; background: rgba(229,87,28,.14); border: 1px solid rgba(229,87,28,.34); padding: 8px 16px; border-radius: 999px;
}
.hero-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(255,122,56,.22); }
.hero h1 { color: #fff; font-size: clamp(40px, 6.4vw, 76px); margin: 26px auto 0; max-width: 18ch; font-weight: 600; letter-spacing: -.03em; line-height: 1.04; text-wrap: balance; }
.hero h1 em { font-style: italic; font-weight: 500; background: linear-gradient(180deg, #FFB07A, var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.lead { color: #D7CCBB; margin: 28px auto 0; max-width: 58ch; font-size: clamp(17px,2.1vw,21px); text-wrap: balance; }
.hero p.lead b { color: #fff; font-weight: 600; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.hero .btn-accent { animation: ctaGlow 3.2s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100%{ box-shadow: 0 12px 26px -10px rgba(229,87,28,.5), inset 0 1px 0 rgba(255,255,255,.25); } 50%{ box-shadow: 0 14px 44px -8px rgba(229,87,28,.9), inset 0 1px 0 rgba(255,255,255,.3); } }
.hero-scarcity { margin-top: 26px; display: inline-flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--dk-muted); text-align: left; }
.hero-scarcity .pulse { flex: none; width: 8px; height: 8px; margin-top: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.5);} 70%{box-shadow:0 0 0 8px rgba(74,222,128,0);} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0);} }
.hero-scarcity b { color: #fff; font-weight: 600; }

/* ---------- Pain ---------- */
.problem { background: var(--bg); }
.problem .sec-head { max-width: 820px; }
.pains { margin-top: clamp(44px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pain {
  display: flex; gap: 18px; padding: 30px 30px; background: var(--surface);
  border: 1px solid var(--hair); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.pain:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: rgba(229,87,28,.3); }
.pain .x { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(160deg, var(--accent-2), var(--accent)); box-shadow: 0 8px 18px -6px rgba(229,87,28,.5); }
.pain h3 { font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
.pain p { margin-top: 9px; color: var(--muted); font-size: 15.5px; }
@media (max-width: 720px){ .pains { grid-template-columns: 1fr; } }

.problem-foot { margin-top: clamp(40px,6vw,72px); }
.problem-foot .box {
  text-align: center; padding: clamp(48px,7vw,84px) clamp(28px,5vw,72px);
  background: var(--bg-2); border: 1px solid var(--hair);
  border-radius: var(--r-xl); position: relative;
}
.problem-foot p { font-family:"Newsreader", serif; font-size: clamp(22px, 3.1vw, 33px); line-height: 1.3; color: var(--ink); font-weight: 500; max-width: 26ch; margin: 0 auto; text-wrap: balance; }
.problem-foot p b { color: var(--accent-deep); font-weight: 500; font-style: normal; }

/* ---------- Mechanismus / Pitch (DUNKEL) ---------- */
.mechanism { background: var(--dk); color: var(--dk-text); position: relative; overflow: hidden; }
.mechanism::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 50% at 15% 0%, rgba(229,87,28,.20), transparent 60%); pointer-events:none; }
.mechanism .wrap { position: relative; }
.mechanism .label { color: var(--accent-2); }
.mechanism .sec-head h2 { color: #fff; }
.mechanism .sec-head h2 em { color: var(--accent-2); }
.mechanism .lead { color: var(--dk-muted); }
.mech-pillars { margin-top: clamp(44px, 5vw, 64px); display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pillar {
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid var(--dk-line);
  border-radius: var(--r-lg); padding: 34px 30px 32px; transition: transform .3s var(--ease), border-color .3s;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(255,122,56,.4); }
.pillar .n { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; font-family:"Newsreader", serif; font-weight: 600; font-size: 20px; color: var(--accent-2); background: rgba(229,87,28,.16); border: 1px solid rgba(229,87,28,.32); }
.pillar h3 { font-size: clamp(22px,2.5vw,26px); margin-top: 22px; font-weight: 600; color: #fff; text-wrap: balance; }
@media (min-width: 821px){ .pillar h3 { min-height: 2.1em; } }
.pillar p { margin-top: 13px; color: var(--dk-muted); font-size: 15.5px; }
@media (max-width: 820px){ .mech-pillars { grid-template-columns: 1fr; } }
.mech-cta { margin-top: clamp(48px,5vw,68px); text-align: center; max-width: 640px; margin-inline: auto; }
.mech-cta p { font-family:"Newsreader", serif; font-size: clamp(23px,3vw,30px); color: #fff; line-height: 1.28; }
.mech-cta .btn { margin-top: 26px; }

/* ---------- Transformation / Ergebnis ---------- */
.result { background: var(--surface); }
.result-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,76px); align-items: center; }
.result-copy h2 { font-size: clamp(31px,5vw,54px); margin-top: 18px; }
.result-copy p { margin-top: 20px; }
.result-copy .checks { margin-top: 30px; display: grid; gap: 16px; }
.result-copy .checks div { display: flex; gap: 14px; align-items: flex-start; font-size: 17.5px; font-weight: 500; color: var(--ink); line-height: 1.35; }
.result-copy .checks .ic { width: 28px; height: 28px; border-radius: 8px; flex: none; display: grid; place-items: center; color: #fff; background: linear-gradient(180deg,var(--accent-2),var(--accent)); margin-top: 1px; }
.result-panel { position: relative; border-radius: var(--r-xl); padding: clamp(40px,4.5vw,56px); background: linear-gradient(165deg, #1d1710, #14100b); color: #fff; box-shadow: var(--sh-lg); overflow: hidden; text-align: center; }
.result-panel::after { content:""; position:absolute; inset:-40% -20% auto -20%; height:70%; border-radius:50%; background: radial-gradient(closest-side, rgba(229,87,28,.30), transparent 70%); }
.rp-stat { position: relative; }
.rp-stat .v { display: block; font-family:"Newsreader", serif; font-weight: 600; font-size: clamp(52px,8vw,80px); line-height: 1; letter-spacing: -.03em; color: #fff; }
.rp-stat .v .u { color: var(--accent-2); }
.rp-stat .l { display: block; margin: 12px auto 0; font-size: 16.5px; color: var(--dk-muted); max-width: 28ch; line-height: 1.45; }
.result-panel .rule { position: relative; height: 1px; width: 60px; margin: clamp(26px,3vw,34px) auto; background: rgba(255,255,255,.2); }
@media (max-width: 820px){ .result-grid { grid-template-columns: 1fr; } }

/* ---------- Über Raoul ---------- */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(36px,5vw,76px); align-items: center; }
.about-figure { position: relative; }
.about-figure::before { content:""; position:absolute; inset:-8% -6% -6% -10%; z-index:0; border-radius:50%; background: radial-gradient(closest-side, rgba(229,87,28,.42), transparent 72%); filter: blur(14px); }
.about-figure .ph { position: relative; z-index: 1; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-lg); }
.about-figure .ph img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.about-figure .ph::before { content:""; position:absolute; inset:0; z-index:1; border-radius:inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); pointer-events:none; }
/* Marken-orange Eck-Kante */
.about-figure .corner { position: absolute; z-index: 2; width: clamp(54px,9vw,86px); height: clamp(54px,9vw,86px); pointer-events: none; }
.about-figure .corner.tl { top: clamp(-8px,-1vw,-12px); left: clamp(-8px,-1vw,-12px); border-top: 5px solid var(--accent); border-left: 5px solid var(--accent); border-top-left-radius: var(--r-xl); }
.about-figure .corner.br { bottom: clamp(-8px,-1vw,-12px); right: clamp(-8px,-1vw,-12px); border-bottom: 5px solid var(--accent); border-right: 5px solid var(--accent); border-bottom-right-radius: var(--r-xl); }
.about-copy h2 { font-size: clamp(31px,5vw,54px); margin-top: 18px; }
.about-copy p { margin-top: 20px; color: var(--ink-2); }
.about-facts { margin-top: 32px; display: grid; grid-template-columns: 1fr; gap: 10px; }
.about-facts div { background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r); padding: 16px 20px; box-shadow: var(--sh-sm); }
.about-facts b { font-family:"Newsreader", serif; font-weight: 600; font-size: 19px; line-height: 1.2; display: block; }
.about-facts span { font-size: 13.5px; color: var(--muted); line-height: 1.4; display: block; margin-top: 5px; }
.about-copy .sign { margin-top: 32px; font-family:"Newsreader", serif; font-style: italic; font-size: 28px; color: var(--ink); line-height: 1.1; }
.about-copy .sign span { display: block; font-style: normal; font-family:"Inter", sans-serif; font-size: 13px; color: var(--faint); letter-spacing: .08em; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 980px){ .about-grid { grid-template-columns: 1fr; } .about-figure { max-width: 360px; } }
@media (max-width: 620px){ .about-facts { grid-template-columns: 1fr; } }

/* ---------- Garantie (dunkel) ---------- */
.guarantee { background: var(--dk); color: var(--dk-text); position: relative; overflow: hidden; }
.guarantee::before { content:""; position:absolute; inset:0; background: radial-gradient(55% 60% at 82% 12%, rgba(229,87,28,.24), transparent 60%); }
.guar-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.guar-copy .label { color: var(--accent-2); }
.guar-copy h2 { color:#fff; font-size: clamp(30px,4.6vw,50px); margin-top: 18px; }
.guar-copy h2 em { color: var(--accent-2); }
.guar-copy p { margin-top: 20px; color: var(--dk-muted); max-width: 50ch; }
.guar-copy .mini { margin-top: 30px; display: grid; gap: 15px; }
.guar-copy .mini span { display:inline-flex; align-items:flex-start; gap:12px; font-size:16.5px; color:#fff; font-weight:500; }
.guar-copy .mini svg { color: var(--accent-2); flex: none; margin-top: 3px; }
.guar-seal {
  position: relative; border-radius: var(--r-xl); padding: clamp(44px,5vw,60px) clamp(34px,4vw,48px);
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
  border: 1px solid var(--dk-line); text-align: center; overflow: hidden;
}
.guar-seal::before { content:""; position:absolute; inset:0; background: radial-gradient(65% 65% at 50% 0%, rgba(229,87,28,.26), transparent 65%); }
.guar-seal .badge { position: relative; display:inline-flex; align-items:center; gap:10px; font-size:13px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--accent-2); }
.guar-seal .badge svg { width: 22px; height: 22px; }
.guar-seal .num { position: relative; font-family:"Newsreader", serif; font-weight: 600; font-size: clamp(110px,16vw,168px); line-height: .9; color:#fff; letter-spacing: -.04em; margin-top: 22px; }
.guar-seal .lbl { position: relative; font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--dk-muted); margin-top: 8px; }
@media (max-width: 820px){ .guar-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg); }
.faq-grid { margin-top: clamp(40px,5vw,60px); max-width: 820px; margin-inline: auto; }
.faq { border-top: 1px solid var(--hair); }
.faq:last-child { border-bottom: 1px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family:"Newsreader", serif; font-weight: 600; font-size: clamp(19px,2.3vw,23px); color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--hair); display: grid; place-items: center; transition: transform .3s var(--ease), background .25s, border-color .25s, color .25s; }
.faq[open] summary .ic { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color:#fff; }
.faq .a { padding: 0 4px 26px; color: var(--muted); font-size: 16px; max-width: 64ch; }

/* ---------- Final CTA / Formular ---------- */
.apply { background: var(--bg-2); }
.form-shell { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(40px,6vw,96px); align-items: start; }
@media (max-width: 900px){ .form-shell{ grid-template-columns: 1fr; } }
.form-intro { position: sticky; top: calc(var(--head-h) + 16px); }
.form-intro h2 { font-size: clamp(31px,5vw,52px); margin-top: 18px; }
.form-intro p { margin-top: 20px; color: var(--muted); }
.form-intro ol { margin: 34px 0 0; padding: 0; display: grid; gap: 14px; }
.form-intro .points li { display: flex; gap: 16px; align-items: center; list-style: none; background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r); padding: 16px 18px; box-shadow: var(--sh-sm); }
.form-intro .points .n { flex: none; width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-size: 15px; font-weight: 700; color: #fff; background: linear-gradient(180deg,var(--accent-2),var(--accent)); }
.form-intro .points b { font-weight: 600; display: block; font-size: 15.5px; } .form-intro .points small { display:block; color: var(--faint); font-size: 13.5px; margin-top: 2px; }

.form-card { background: var(--surface); border: 1px solid var(--hair); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: clamp(28px,3vw,42px); position: relative; }
.progress { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.progress .bar { flex: 1; height: 4px; border-radius: 999px; background: var(--hair); overflow: hidden; }
.progress .bar i { display: block; height: 100%; width: 25%; background: linear-gradient(90deg, var(--accent-2), var(--accent)); border-radius: 999px; transition: width .45s var(--ease); }
.progress .lbl { font-size: 12.5px; font-weight: 600; color: var(--faint); white-space: nowrap; letter-spacing: .04em; }

.fstep { display: none; animation: fade .4s var(--ease); }
.fstep.active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.qtitle { font-family:"Newsreader", serif; font-weight: 600; font-size: clamp(23px,3vw,29px); color: var(--ink); padding: 0; border: 0; letter-spacing: -.01em; }
.qhint { color: var(--faint); font-size: 14.5px; margin-top: 10px; margin-bottom: 22px; }

fieldset { border: 0; margin: 0; padding: 0; }
.opts { display: grid; gap: 10px; }
.opt {
  position: relative; display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--r);
  border: 1px solid var(--hair); background: var(--cream); cursor: pointer; font-weight: 500; font-size: 15.5px;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.opt .tick { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--hair); flex: none; display: grid; place-items: center; transition: .18s; }
.opt .tick svg { opacity: 0; color: #fff; transition: .18s; }
.opt:hover { border-color: var(--accent); }
.opt:has(input:checked) { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(229,87,28,.12); }
.opt:has(input:checked) .tick { border-color: var(--accent); background: var(--accent); }
.opt:has(input:checked) .tick svg { opacity: 1; }
.opt:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

.fields { display: grid; gap: 16px; }
.field label.lab { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-2); }
.field input {
  width: 100%; padding: 14px 16px; border-radius: var(--r); border: 1px solid var(--hair);
  background: var(--cream); font: inherit; color: var(--ink); transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(229,87,28,.14); background: #fff; }
.field input::placeholder { color: #b7a994; }

.privacy-note { font-size: 13.5px; color: var(--muted); background: var(--cream); border: 1px solid var(--hair); border-radius: var(--r); padding: 13px 15px; display: flex; gap: 10px; }
.privacy-note svg { color: var(--accent); flex: none; margin-top: 2px; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; font-size: 14px; color: var(--ink-2); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); flex: none; }
.consent a { color: var(--accent-deep); }

.fnav { display: flex; gap: 12px; margin-top: 28px; align-items: center; }
.fnav .btn { flex: 1; }
.fnav .btn-back { flex: 0 0 auto; background: transparent; border: 1px solid var(--hair); color: var(--muted); padding: 15px 20px; }
.fnav .btn-back:hover { border-color: var(--ink); color: var(--ink); transform: none; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.success { display: none; text-align: center; padding: 12px 4px; animation: fade .4s var(--ease); }
.success.active { display: block; }
.success .ok { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px; background: rgba(31,168,85,.14); display: grid; place-items: center; color: #1FA855; }
.success h3 { font-size: clamp(24px,3.5vw,31px); }
.success p { margin-top: 14px; color: var(--muted); max-width: 40ch; margin-inline: auto; }
.success .btn-wa { margin-top: 26px; }
.success-note { margin-top: 22px; font-size: 14px; color: var(--muted); max-width: 42ch; margin-inline: auto; line-height: 1.5; padding-top: 20px; border-top: 1px solid var(--hair); }
.formerror { margin-top: 16px; color: var(--accent-deep); font-size: 14px; font-weight: 500; display: none; }
.formerror.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg,#14100B,#0b0805); color: #A89B8A; padding: clamp(56px,7vw,80px) 0 32px; }
.foot-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 32px; padding-bottom: clamp(36px,5vw,52px); border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-cta h3 { color: #fff; font-size: clamp(24px,3vw,34px); font-weight: 600; flex: 1 1 auto; max-width: 18ch; }
.foot-cta .btn { flex: none; }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; padding-top: clamp(36px,5vw,52px); }
.foot-brand { font-family:"Newsreader", serif; font-weight: 600; font-size: 24px; color: #fff; }
.foot-brand .dot { color: var(--accent-2); }
.foot-brand p { font-family:"Inter", sans-serif; font-weight: 400; font-size: 14.5px; color: #8a7e6d; margin-top: 12px; max-width: 34ch; line-height: 1.55; }
.foot-col h4 { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.foot-col a, .foot-col button { display: block; color: #B9AC9A; text-decoration: none; font-size: 14.5px; background: none; border: 0; padding: 6px 0; text-align: left; transition: color .2s; cursor: pointer; }
.foot-col a:hover, .foot-col button:hover { color: #fff; }
.foot-bottom { margin-top: clamp(36px,5vw,52px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: #7a6f60; }
.foot-bottom a { color: #B9AC9A; text-decoration: none; }
.foot-bottom a:hover { color: #fff; }

/* ---------- Cookie ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; max-width: 430px;
  background: rgba(252,250,245,.92); border: 1px solid var(--hair); backdrop-filter: blur(20px) saturate(150%);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 24px;
  transform: translateY(160%); transition: transform .55s var(--ease), opacity .4s; opacity: 0;
}
.cookie.show { transform: none; opacity: 1; }
.cookie h4 { font-family:"Newsreader", serif; font-size: 21px; margin: 0 0 8px; }
.cookie p { font-size: 14px; color: var(--muted); }
.cookie p a { color: var(--accent-deep); }
.cookie-actions { margin-top: 18px; display: grid; gap: 9px; }
.cookie-actions .btn { width: 100%; }
.cookie .btn-sm { padding: 12px 18px; font-size: 14.5px; }
.cookie .two { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.cookie-prefs { display: none; margin-top: 18px; border-top: 1px solid var(--hair); padding-top: 16px; }
.cookie-prefs.show { display: block; }
.ckrow { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; padding: 11px 0; }
.ckrow:not(:last-child) { border-bottom: 1px solid var(--hair-soft); }
.ckrow b { font-size: 15px; } .ckrow small { display: block; color: var(--faint); font-size: 13px; margin-top: 2px; }
.switch { position: relative; width: 42px; height: 24px; flex: none; margin-top: 3px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; background: var(--hair); border-radius: 999px; transition: background .2s; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: var(--sh-sm); transition: transform .2s; }
.switch input:checked + .track { background: var(--accent); }
.switch input:checked + .track::after { transform: translateX(18px); }
.switch input:disabled + .track { background: var(--ink); opacity: .5; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Legal ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: calc(var(--head-h) + 30px) 24px clamp(60px,8vw,90px); }
.legal a.back { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-deep); text-decoration: none; font-weight: 600; font-size: 15px; margin-bottom: 32px; }
.legal h1 { font-size: clamp(32px,5vw,48px); }
.legal h2 { font-size: 24px; margin-top: 40px; }
.legal p, .legal li { color: var(--ink-2); margin-top: 14px; }
.legal ul { padding-left: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 620px) {
  body { font-size: 16px; }
  :root { --head-h: 76px; }
  .section { padding-block: clamp(56px,14vw,82px); }
  .site-header .bar { padding: 9px 10px 9px 18px; }
  .nav-cta .btn { --pad: 9px 15px; font-size: 13px; }
  .brand { font-size: 21px; }
  /* Hero ruhiger und kleiner */
  .hero-inner { padding-top: calc(var(--head-h) + 26px); padding-bottom: 64px; }
  .hero-chip { font-size: 10.5px; letter-spacing: .1em; padding: 6px 12px; }
  .hero h1 { font-size: clamp(34px, 9.2vw, 46px); max-width: 100%; margin-top: 20px; }
  .hero p.lead { font-size: 16.5px; }
  .hero-scarcity { font-size: 12.5px; margin-top: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; --pad: 15px 22px; font-size: 15.5px; }
  /* Überschriften nicht zu fett */
  .sec-head h2 { font-size: clamp(27px, 7.4vw, 36px); }
  .btn-lg { --pad: 15px 24px; font-size: 15px; }
  /* alles untereinander, hochwertig */
  .pain { padding: 22px 22px; }
  .about-facts { grid-template-columns: 1fr; }
  .guar-seal .num { font-size: clamp(84px,26vw,108px); }
  .guar-copy .mini span { font-size: 15.5px; }
  .result-copy .checks div { font-size: 16px; }
  .rp-stat .l { font-size: 13.5px; max-width: 24ch; margin-inline: auto; }
  .rp-stat .v { font-size: clamp(46px,13vw,60px); }
  /* Footer */
  .foot-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .foot-cta h3 { max-width: 100%; }
  .foot-cta .btn { width: 100%; --pad: 14px 22px; }
  .foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .foot-brand { grid-column: 1 / -1; }
  .form-intro { position: static; }
  .cookie .two { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
