/* ============================================================
   CardCoaching – Landingpage Styles
   Marke: Pergament + Violett + Gold, Samt-Twilight-Hero.
   Alle Fonts sind System-Fonts (DSGVO: keine externen Requests).
   ============================================================ */

:root {
  --ink: #241f36;
  --ink-soft: #4b4560;
  --ink-dim: #6b6480;

  --parchment: #faf7f1;
  --parchment-soft: #f3eee4;
  --panel: #ffffff;
  --border: #e6ddca;
  --border-strong: #d8ccae;

  --violet: #6d28d9;
  --violet-strong: #5b21b6;
  --violet-soft: #ede7fb;

  --gold: #c99a2e;
  --gold-bright: #e3bd57;
  --gold-soft: #f6ecd3;

  --velvet: #14532d;
  --velvet-deep: #0c3d20;

  --plum-950: #160c2b;
  --plum-900: #1e1140;
  --plum-800: #2a1a4a;
  --plum-700: #3a2160;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(36, 20, 70, 0.07);
  --shadow-md: 0 12px 34px rgba(36, 20, 70, 0.10);
  --shadow-lg: 0 24px 60px rgba(22, 12, 43, 0.30);

  --font-display: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--violet); color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.brand-logo { width: auto; }

/* ---------- Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.cta-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #3a2a06; font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: none; cursor: pointer;
  font-family: inherit; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(201, 154, 46, .35);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s, filter .25s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 154, 46, .5); filter: brightness(1.04); }
.cta-primary--sm { padding: 9px 18px; font-size: 13.5px; }
.cta-primary--lg { padding: 15px 30px; font-size: 16px; }
.cta-primary svg { stroke: #3a2a06; }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--violet);
  font-weight: 650; font-size: 15px;
  padding: 13px 22px; border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  cursor: pointer; font-family: inherit; transition: all .25s;
}
.cta-ghost:hover { border-color: var(--violet); background: var(--violet-soft); }

/* Auf dunklen Sektionen: Ghost-Button hell */
.hero .cta-ghost, .final-cta .cta-ghost {
  color: #f4eeff; border-color: rgba(255,255,255,.35);
}
.hero .cta-ghost:hover, .final-cta .cta-ghost:hover { border-color: #fff; background: rgba(255,255,255,.10); }

/* ---------- Sektions-Basics ---------- */
section { position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-label {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--violet); margin-bottom: 14px;
}
.section-label--ondark { color: var(--gold-bright); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px); font-weight: 700;
  line-height: 1.15; color: var(--ink); letter-spacing: -.01em;
}
.section-title--ondark { color: #fff; }
.section-lead { margin-top: 18px; font-size: 18px; color: var(--ink-soft); line-height: 1.65; }
.section-lead--ondark { color: rgba(255,255,255,.78); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 900;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(250, 247, 241, .82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav-link { font-size: 14.5px; font-weight: 550; color: var(--ink-soft); transition: color .2s; }
.nav-link:hover { color: var(--violet); }
.nav__burger { background: none; border: none; color: var(--ink); cursor: pointer; padding: 6px; display: grid; place-items: center; }

.hide-mobile { display: flex; }
.show-mobile { display: none; }

/* ---------- Mobile-Menü ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000;
  background: linear-gradient(160deg, var(--plum-900), var(--plum-800));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { color: #f2ecff; font-size: 22px; font-weight: 600; font-family: var(--font-display); }
.mobile-menu a.cta-primary { font-family: var(--font-sans); font-size: 16px; color: #3a2a06; }
.mobile-menu__close { position: absolute; top: 22px; right: 22px; background: none; border: none; color: #d9ccff; cursor: pointer; }

/* ---------- Sprachumschalter ---------- */
.lang-switch {
  display: inline-flex; align-items: center; font-size: 12.5px; font-weight: 700;
  border: 1px solid var(--border-strong); border-radius: 999px; overflow: hidden;
}
.lang-switch__cur, .lang-switch__alt { padding: 5px 11px; line-height: 1; }
.lang-switch__cur { background: var(--violet); color: #fff; }
.lang-switch__alt { color: var(--ink-soft); transition: background .2s, color .2s; }
.lang-switch__alt:hover { background: var(--violet-soft); color: var(--violet); }
/* Auf dunklen Flächen (Mobile-Menü, Rechts-Header) hell */
.mobile-menu .lang-switch, .legal-header .lang-switch { border-color: rgba(255,255,255,.32); }
.mobile-menu .lang-switch__alt, .legal-header .lang-switch__alt { color: rgba(255,255,255,.82); }
.mobile-menu .lang-switch__alt:hover, .legal-header .lang-switch__alt:hover { background: rgba(255,255,255,.14); color: #fff; }
.legal-header__right { display: flex; align-items: center; gap: 16px; }

/* ---------- Scroll-Nav (Punkte rechts) ---------- */
.scroll-nav {
  position: fixed; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 850; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.scroll-nav[style*="opacity: 1"] { pointer-events: auto; }
.scroll-dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid var(--border-strong); background: transparent;
  position: relative; transition: all .25s; cursor: pointer;
}
.scroll-dot:hover { border-color: var(--violet); }
.scroll-dot.active { background: var(--violet); border-color: var(--violet); transform: scale(1.25); }
.scroll-dot::after {
  content: attr(data-label);
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap;
  background: var(--panel); padding: 3px 10px; border-radius: 8px; box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.scroll-dot:hover::after { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% -10%, #4a2a70 0%, transparent 55%),
    radial-gradient(900px 500px at 8% 110%, #123a24 0%, transparent 55%),
    linear-gradient(158deg, var(--plum-950) 0%, var(--plum-900) 45%, var(--plum-800) 100%);
  color: #fff;
  padding: clamp(60px, 9vw, 110px) 0 clamp(72px, 10vw, 120px);
}
.hero__stars {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,.9), transparent),
    radial-gradient(1.2px 1.2px at 65% 18%, rgba(227,189,87,.9), transparent),
    radial-gradient(1.3px 1.3px at 82% 62%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 42% 78%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.5px 1.5px at 12% 68%, rgba(227,189,87,.7), transparent),
    radial-gradient(1px 1px at 90% 32%, rgba(255,255,255,.6), transparent);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.hero__glow--1 { width: 420px; height: 420px; background: rgba(124, 58, 237, .38); top: -80px; right: -60px; }
.hero__glow--2 { width: 360px; height: 360px; background: rgba(20, 83, 45, .5); bottom: -120px; left: -80px; }
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero__badge {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(227,189,87,.35); border-radius: 999px;
  padding: 7px 16px; background: rgba(227,189,87,.08);
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 6vw, 66px); line-height: 1.04;
  margin: 22px 0 0; letter-spacing: -.02em;
}
.hero__title-accent {
  background: linear-gradient(100deg, var(--gold-bright), #f5e4b3 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { margin-top: 22px; font-size: 19px; line-height: 1.65; color: rgba(255,255,255,.86); max-width: 520px; }
.hero__lead strong { color: #fff; font-weight: 700; }
.hero__buttons { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__highlights { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; }
.hero__highlights li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.8); }
.hero__highlights svg { stroke: var(--gold-bright); flex: none; }
.hero__art { display: flex; justify-content: center; }
.hero__art img { filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
@media (prefers-reduced-motion: reduce) { .hero__art img { animation: none; } }

/* ============================================================
   ABLAUF (Schritte)
   ============================================================ */
.steps { padding: clamp(64px, 9vw, 104px) 0; background: var(--parchment); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step-card {
  position: relative; background: var(--panel);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.step-card__art {
  height: 150px; display: grid; place-items: center; margin-bottom: 10px;
  background: linear-gradient(160deg, var(--violet-soft), var(--gold-soft));
  border-radius: var(--radius); border: 1px solid var(--border);
}
.step-card__art img { width: 200px; height: 150px; object-fit: contain; }
.step-card__num {
  position: absolute; top: 18px; left: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 15px;
  color: #fff; background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  box-shadow: 0 4px 12px rgba(109,40,217,.4);
}
.step-card h3 { font-family: var(--font-display); font-size: 22px; margin: 14px 0 8px; color: var(--ink); }
.step-card p { color: var(--ink-soft); font-size: 15.5px; }

/* ============================================================
   FUNKTIONEN
   ============================================================ */
.features { padding: clamp(64px, 9vw, 104px) 0; background: var(--parchment-soft); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.feature-card__icon {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px;
  display: grid; place-items: center; color: var(--violet);
  background: var(--violet-soft); border: 1px solid #e0d6f7;
}
.feature-card:nth-child(4n+2) .feature-card__icon { color: var(--gold); background: var(--gold-soft); border-color: #eaddb9; }
.feature-card:nth-child(4n+3) .feature-card__icon { color: var(--velvet); background: #e3f0e6; border-color: #cbe3d1; }
.feature-card h3 { font-size: 17px; margin-bottom: 7px; color: var(--ink); }
.feature-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   FÜR WEN
   ============================================================ */
.audience { padding: clamp(64px, 9vw, 104px) 0; background: var(--parchment); }
.audience__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto 52px; }
.audience__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--panel); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: 999px; font-size: 15px; font-weight: 550;
  color: var(--ink); box-shadow: var(--shadow-sm);
}
.audience__badge svg { stroke: var(--violet); flex: none; }
.decks-panel {
  max-width: 900px; margin: 0 auto;
  background: linear-gradient(160deg, #1c1140, #2a1a4a);
  border-radius: var(--radius-lg); padding: 40px; color: #fff;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
  border: 1px solid rgba(227,189,87,.2);
}
.decks-panel__head h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; }
.decks-panel__head p { color: rgba(255,255,255,.75); max-width: 560px; }
.decks-panel__chips { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.deck-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(227,189,87,.3);
  padding: 10px 18px; border-radius: 12px; font-size: 15px; font-weight: 550;
}
.deck-chip svg { stroke: var(--gold-bright); }

/* ============================================================
   DATENSCHUTZ (Trust) – dunkle Samt-Sektion
   ============================================================ */
.trust {
  padding: clamp(64px, 9vw, 104px) 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(124,58,237,.25), transparent 60%),
    linear-gradient(160deg, var(--velvet-deep), #0a3a20 60%, #123a24);
  color: #fff;
}
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.trust-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px;
}
.trust-card__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; color: #0c3d20;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}
.trust-card h3 { font-size: 17px; margin-bottom: 6px; color: #fff; }
.trust-card p { font-size: 14.5px; color: rgba(255,255,255,.78); }
.trust__note { text-align: center; margin: 40px auto 0; max-width: 640px; font-size: 14px; color: rgba(255,255,255,.65); }
.trust__note a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(72px, 11vw, 130px) 24px;
  background: linear-gradient(158deg, var(--plum-900), var(--plum-800) 55%, #3a2160);
  color: #fff;
}
.final-cta__glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; filter: blur(90px); background: rgba(201,154,46,.22); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.final-cta__inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta__title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 50px); line-height: 1.1; letter-spacing: -.01em; }
.final-cta__lead { margin-top: 18px; font-size: 19px; color: rgba(255,255,255,.82); }
.final-cta__buttons { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.final-cta__footnote { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--plum-950); color: rgba(255,255,255,.7); padding: 48px 24px 28px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer__brand { max-width: 340px; }
.footer__brand p { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.6); }
.footer__brand img { filter: brightness(0) invert(1); opacity: .92; }
.footer__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.footer__meta > a { color: var(--gold-bright); font-size: 14.5px; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__legal a:hover { color: #fff; }
.footer__copy { max-width: var(--maxw); margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.45); }

/* Autoren-/Vertrauenszeile im Hero */
.hero__author { margin-top: 22px; font-size: 14px; font-style: italic; color: rgba(255,255,255,.62); }

/* ============================================================
   PREISE
   ============================================================ */
.pricing { padding: clamp(64px, 9vw, 104px) 0; background: var(--parchment); }
.price-card {
  max-width: 480px; margin: 0 auto; text-align: center;
  background: var(--panel); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 40px 34px 34px;
  box-shadow: var(--shadow-md); position: relative;
}
.price-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  padding: 2px; background: linear-gradient(135deg, var(--gold-bright), var(--gold), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price-card__badge {
  display: inline-block; margin-bottom: 22px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  color: #6b5312; background: var(--gold-soft);
  border: 1px solid #e6d3a3; padding: 7px 16px; border-radius: 999px;
}
.price-card__price-row { display: flex; align-items: baseline; justify-content: center; gap: 8px; flex-wrap: wrap; }
.price-card__price { font-family: var(--font-display); font-size: 58px; font-weight: 700; line-height: 1; color: var(--ink); }
.price-card__suffix { font-size: 18px; font-weight: 600; color: var(--ink-soft); }
.price-card__regular { font-size: 20px; color: var(--ink-dim); text-decoration: line-through; text-decoration-color: var(--gold); margin-left: 4px; }
.price-card__note { margin-top: 8px; font-size: 14px; color: var(--ink-dim); }
.price-card__features { list-style: none; text-align: left; margin: 26px auto 28px; max-width: 340px; display: grid; gap: 12px; }
.price-card__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.price-card__features svg { stroke: var(--violet); flex: none; margin-top: 3px; }
.price-card__cta { width: 100%; justify-content: center; }
.price-card__author { margin-top: 18px; font-size: 13px; font-style: italic; color: var(--ink-dim); }

.setup-note {
  max-width: 720px; margin: 28px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  background: var(--violet-soft); border: 1px solid #e0d6f7;
  border-radius: var(--radius); padding: 22px 26px;
}
.setup-note__title { font-weight: 700; color: var(--ink); font-size: 16px; }
.setup-note__text { font-size: 14.5px; color: var(--ink-soft); margin-top: 2px; max-width: 440px; }
.setup-note__cta { flex: none; white-space: nowrap; }

/* ============================================================
   ANFRAGE-DIALOG (persönliche Einrichtung)
   ============================================================ */
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lead-modal { position: fixed; inset: 0; z-index: 1100; display: grid; place-items: center; padding: 20px; }
.lead-modal[hidden] { display: none; }
.lead-modal__backdrop { position: absolute; inset: 0; background: rgba(22, 12, 43, .55); backdrop-filter: blur(3px); }
.lead-modal__card {
  position: relative; z-index: 1; width: 100%; max-width: 470px;
  background: var(--panel); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 34px 32px 30px;
  box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto;
}
.lead-modal__close {
  position: absolute; top: 14px; right: 14px; background: none; border: none;
  color: var(--ink-dim); cursor: pointer; padding: 6px; border-radius: 8px; line-height: 0;
}
.lead-modal__close:hover { background: var(--parchment-soft); color: var(--ink); }
.lead-modal__title { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-bottom: 6px; padding-right: 26px; }
.lead-modal__intro { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; }

.field { display: block; margin-bottom: 15px; }
.field > span { display: block; font-size: 13.5px; font-weight: 650; color: var(--ink); margin-bottom: 5px; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--border-strong);
  border-radius: 10px; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 70px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px var(--violet-soft);
}
.field--check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); }
.field--check span { font-weight: 400; }
.field--check input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--violet); }
.field--check a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.lead-submit { width: 100%; justify-content: center; margin-top: 8px; }
.lead-submit:disabled { opacity: .7; cursor: default; }
.lead-status { margin-top: 12px; font-size: 14px; text-align: center; min-height: 1.2em; }
.lead-status--ok { color: var(--velvet); font-weight: 650; }
.lead-status--err { color: #b3261e; font-weight: 600; }

/* ============================================================
   RECHTSSEITEN (Impressum / Datenschutz)
   ============================================================ */
.legal-body { background: var(--parchment); }
.legal-header { background: linear-gradient(160deg, var(--plum-900), var(--plum-800)); }
.legal-header__inner { max-width: 820px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.legal-header__inner img { filter: brightness(0) invert(1); }
.legal-header__back { color: #e6dcff; font-size: 14px; font-weight: 550; }
.legal-header__back:hover { color: #fff; }
.legal-main { max-width: 820px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-content h1 { font-family: var(--font-display); font-size: clamp(30px, 5vw, 42px); margin-bottom: 24px; color: var(--ink); }
.legal-content h2 { font-family: var(--font-display); font-size: 23px; margin: 34px 0 12px; color: var(--ink); }
.legal-content h3 { font-size: 17px; margin: 22px 0 8px; color: var(--ink); }
.legal-content p, .legal-content li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.legal-content a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.legal-content strong { color: var(--ink); }
.legal-content blockquote {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 0 0 26px;
}
.legal-content blockquote p { color: #6b5312; margin: 0; }
.legal-content em { color: var(--ink-dim); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__buttons, .hero__highlights { justify-content: center; }
  .hero__art { order: -1; }
  .hero__art img { max-width: 380px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .hide-mobile { display: none; }
  .show-mobile { display: grid; }
  .scroll-nav { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer__meta { align-items: flex-start; }
  .decks-panel { padding: 28px 22px; }
}
