/* ==========================================================================
   leomore Design System
   Production CSS: self-hosted fonts, no CDN, no inline styles
   ========================================================================== */

/* ---------- @font-face ---------- */
@font-face {
  font-family: 'Clash Display';
  src: url('/assets/fonts/clash-display-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('/assets/fonts/clash-display-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'General Sans';
  src: url('/assets/fonts/general-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'General Sans';
  src: url('/assets/fonts/general-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'General Sans';
  src: url('/assets/fonts/general-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

/* ---------- Custom Properties / Tokens ---------- */
:root {
  /* Brand colors */
  --bg: #FBF8F3;
  --ink: #211A12;
  --ink-soft: #5c544a;
  --ink-faint: #6F6659; /* WCAG-AA-fest (>=4.5:1) auf bg, card und sec-alt */
  --card: #ffffff;

  /* Borders */
  --line: rgba(33, 26, 18, .10);
  --line-strong: rgba(33, 26, 18, .16);

  /* Brand gradient stops */
  --c1: #F9DD00;
  --c2: #F8950A;
  --c3: #F85701;
  --c4: #F70806;

  /* Gradients */
  --grad: linear-gradient(100deg, #F9DD00 0%, #F8950A 38%, #F85701 70%, #F70806 100%);
  --grad-soft: linear-gradient(100deg, rgba(249, 221, 0, .14), rgba(248, 87, 1, .10));

  /* Shadows: hue-tinted, never generic black */
  --shadow-sm: 0 1px 2px rgba(33, 26, 18, .04), 0 2px 8px rgba(33, 26, 18, .04);
  --shadow-md: 0 4px 14px rgba(33, 26, 18, .06), 0 14px 40px rgba(33, 26, 18, .07);
  --shadow-lg: 0 8px 24px rgba(33, 26, 18, .08), 0 28px 70px rgba(33, 26, 18, .10);

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  /* Layout */
  --maxw: 1180px;

  /* Spacing scale (base 4px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-section: clamp(4rem, 9vw, 6.75rem);

  /* Easing */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4,
.display {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.wordmark {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  letter-spacing: -.02em;
  text-transform: lowercase;
}

p, li, dd, dt, blockquote, figcaption {
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul[class], ol[class] {
  list-style: none;
}

::selection {
  background: var(--c2);
  color: #fff;
}

/* ---------- Layout Helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c3);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  flex-shrink: 0;
}

/* Gradient text utility: use sparingly, accent only */
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 999px;
  padding: 15px 26px;
  min-height: 50px;
  transition:
    transform .25s var(--ease),
    box-shadow .25s var(--ease),
    background .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:active {
  transform: scale(0.97) !important;
  transition-duration: 100ms;
}

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(248, 87, 1, .30);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(248, 87, 1, .40);
}
.btn-primary .arr {
  transition: transform .25s var(--ease);
}
.btn-primary:hover .arr {
  transform: translateX(4px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--bg);
}
/* Nav-Links setzen ihre eigene Textfarbe mit hoeherer Spezifitaet --
   Buttons in der Nav muessen ihre Button-Farbe behalten */
.nav-links a.btn-dark,
.nav-links a.btn-dark:hover,
.nav-links a.btn-dark[aria-current="page"] {
  color: var(--bg);
}
.nav-mobile-menu a.btn-primary,
.nav-mobile-menu a.btn-primary:hover,
.nav-mobile-menu a.btn-primary[aria-current="page"] {
  color: #fff;
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Navigation ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
header.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 1px 0 rgba(33, 26, 18, .02);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  line-height: 1;
}
.logo .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  margin-left: 3px;
  margin-bottom: -12px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  margin-left: 8px;
}

/* Hamburger menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
  gap: 4px;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.nav-mobile-menu a:hover,
.nav-mobile-menu a[aria-current="page"] {
  color: var(--ink);
}
.nav-mobile-menu .btn {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ---------- Section Base ---------- */
section {
  position: relative;
}
.sec {
  padding: var(--space-section) 0;
}
.sec-alt {
  /* Dezenter Marken-Schimmer oben rechts -- mehr Waerme, bleibt professionell */
  background:
    radial-gradient(55% 45% at 85% 0%, rgba(248, 149, 10, .07), transparent 70%),
    #f4efe6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec-dark {
  background: var(--ink);
  color: var(--bg);
}

.sec-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.sec-head h2 {
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 600;
  margin: 16px 0 0;
  letter-spacing: -.02em;
}
.sec-head p {
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 18.5px);
  margin-top: 16px;
  max-width: 560px;
}
.sec-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.sec-head-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 8vw, 96px) 0 clamp(60px, 7vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 60vw;
  height: 60vw;
  max-width: 760px;
  max-height: 760px;
  background: var(--grad);
  filter: blur(120px);
  opacity: .30;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
/* Zweiter, warmer Schein unten-links - mehr Tiefe, bleibt im Marken-Verlauf */
.hero::after {
  content: "";
  position: absolute;
  bottom: -34%;
  left: -14%;
  width: 48vw;
  height: 48vw;
  max-width: 560px;
  max-height: 560px;
  background: var(--grad-soft);
  filter: blur(110px);
  opacity: .9;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

/* Split-Hero: Copy links, Konfigurator-Einstieg rechts */
.hero-inner.hero-split {
  max-width: var(--maxw);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
/* Schmalere Spalte -> kleinere Display-Größe; Slogan-Zeile bleibt ganz:
   max 2 Zeilen ("Deine Website." / "Immer einen Schritt weiter.") */
.hero-split .hero-copy h1 {
  font-size: clamp(30px, 2.85vw, 41px);
}
@media (min-width: 901px) {
  .hero-split .hero-copy .line2 {
    white-space: nowrap;
  }
}
.hero-split .hero-copy p.sub {
  margin-top: 20px;
}
.hero-split .hero-cta {
  margin-top: 30px;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 86px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 24px 0 0;
  max-width: 100%;
}
.hero h1 .line2 {
  display: block;
}

.hero p.sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 26px 0 0;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* ---------- Hero-Konfigurator-Karte (echter Funnel-Einstieg) ---------- */
.hero-config {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(22px, 2.6vw, 34px);
  overflow: hidden;
}
.hero-config::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}
.hc-title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -.01em;
}
.hc-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.hc-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.hc-opt:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 149, 10, .55);
  box-shadow: var(--shadow-sm);
}
.hc-opt:focus-visible {
  outline: 3px solid var(--c2);
  outline-offset: 2px;
}
.hc-opt .ic {
  font-size: 19px;
  line-height: 1;
  flex-shrink: 0;
}
.hc-opt .txt b {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
}
.hc-opt .txt small {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
  margin-top: 1px;
}
.hc-arr {
  margin-left: auto;
  color: var(--ink-faint);
  transition: transform .25s var(--ease), color .25s;
}
.hc-opt:hover .hc-arr {
  transform: translateX(3px);
  color: var(--c3);
}
.hc-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-faint);
  text-align: center;
}

/* ---------- Trust-Strip (unterm Hero) ---------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--ink-faint);
  font-size: 14.5px;
  font-weight: 500;
}
.trust-strip span[role="listitem"] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-strip .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(36px, 6vw, 72px);
}
.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 20px 0 0;
  max-width: 860px;
}
.page-hero p.lede {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 20px 0 0;
  line-height: 1.5;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Vertical process timeline (replaces 3-card grid on homepage) */
.process-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 680px;
}
.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child {
  border-bottom: none;
}
.process-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 38px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  padding-top: 4px;
}
.process-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.process-body p {
  font-size: 15.5px;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .process-num {
    font-size: 28px;
  }
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .05em;
  color: var(--c3);
}
.step-card h3 {
  font-size: 23px;
  margin: 18px 0 10px;
}
.step-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
}
.step-card .step-line {
  height: 3px;
  width: 40px;
  border-radius: 3px;
  background: var(--grad);
  margin-top: 22px;
  transition: width .35s var(--ease);
}
.step-card:hover .step-line {
  width: 72px;
}

/* ---------- Reference / Split Layout ---------- */
.split-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.split-layout.flip {
  grid-template-columns: .95fr 1.05fr;
}
.split-layout.flip .split-visual {
  order: 2;
}
.split-layout.flip .split-body {
  order: 1;
}

.split-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #15110b;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--line);
}
a.split-visual {
  display: block;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
a.split-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(33, 26, 18, .12), 0 34px 80px rgba(33, 26, 18, .14);
}
a.split-visual:focus-visible {
  outline: 3px solid var(--c2);
  outline-offset: 3px;
}
.ref-shot {
  display: block;
  width: 100%;
  height: calc(100% - 42px);
  object-fit: cover;
  object-position: top center;
}

.ref-browser {
  height: 42px;
  background: #241d15;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.ref-browser .d {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}
.ref-browser .bar {
  margin-left: 14px;
  height: 22px;
  flex: 1;
  border-radius: 6px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
}
.ref-tag {
  position: absolute;
  top: 54px;
  right: 14px;
  z-index: 2;
  background: rgba(33, 26, 18, .7);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: .02em;
}

.split-body .eyebrow {
  margin-bottom: 18px;
}
.split-body h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.split-body p {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 18px 0 26px;
  max-width: 440px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 30px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
}
.check-list .ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.ref-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.ref-link:hover {
  border-color: var(--c3);
}

/* ---------- Pricing Cards ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}
.price-card.featured:hover {
  transform: translateY(-15px);
}

.badge-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(248, 87, 1, .35);
  white-space: nowrap;
}

.pc-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -.01em;
}
.pc-tag {
  color: var(--ink-faint);
  font-size: 14.5px;
  margin-top: 4px;
  min-height: 21px;
}
.pc-price {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.pc-price .ab {
  font-size: 14px;
  color: var(--ink-faint);
  font-weight: 500;
}
.pc-price .amt {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -.02em;
}
.pc-care {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 7px;
  font-weight: 500;
}
.pc-note {
  font-size: 12.5px;
  color: var(--ink-faint);
  margin-top: 13px;
  line-height: 1.4;
}
.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
  flex: 1;
}
.pc-feats li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  max-width: none;
}
.pc-feats .ck {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.price-card .btn {
  width: 100%;
}

/* ---------- CTA Band ---------- */
.cta-band {
  text-align: center;
  padding: clamp(64px, 9vw, 110px) 0;
}
/* Dunkler Farbblock mit Marken-Glow -- der eine bewusste Kontrast-Moment der Seite */
.cta-band-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 64px);
}
.cta-band-card::before {
  content: "";
  position: absolute;
  bottom: -45%;
  left: -12%;
  width: 55vw;
  height: 55vw;
  max-width: 640px;
  max-height: 640px;
  background: var(--grad);
  filter: blur(130px);
  opacity: .28;
  border-radius: 50%;
  pointer-events: none;
}
.cta-band-card > * {
  position: relative;
  z-index: 1;
}
.cta-band .cta-band-card .eyebrow {
  color: var(--c1);
  justify-content: center;
}
.cta-band .cta-band-card .eyebrow::before {
  background: var(--grad);
}
.cta-band .cta-band-card h2 {
  color: #fff;
}
.cta-band .cta-band-card p {
  color: rgba(251, 248, 243, .74);
}
.cta-band h2 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  letter-spacing: -.025em;
  max-width: 780px;
  margin: 0 auto;
}
.cta-band p {
  color: var(--ink-soft);
  font-size: clamp(17px, 2.2vw, 20px);
  margin: 22px auto 0;
  max-width: 480px;
}
.cta-band .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}
.cta-band .btn {
  margin-top: 36px;
}

/* ---------- Konfigurator ---------- */
.config-sec {
  background: #f4efe6;
  padding: clamp(60px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}
.config-shell {
  max-width: 780px;
  margin: 0 auto;
}
.config-head {
  text-align: center;
  margin-bottom: 34px;
}
.config-head .eyebrow {
  justify-content: center;
}
.config-head h2 {
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: -.02em;
}
.config-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 16.5px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress */
.progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.progress-meta .count {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.progress-meta .pct {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c3);
}
.progress-track {
  height: 9px;
  border-radius: 999px;
  background: rgba(33, 26, 18, .08);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--grad);
  transition: width .5s var(--ease);
}

/* Config card */
.config-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-top: 24px;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

/* Step transitions */
.config-step {
  display: none;
}
.config-step.active {
  display: block;
  animation: stepIn .42s var(--ease);
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step-q {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 30px);
  letter-spacing: -.015em;
}
.step-sub {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-top: 8px;
  max-width: none;
}

/* Option grid */
.opt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 26px;
}
.opt-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.group-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 26px 0 12px;
  grid-column: 1 / -1;
}
.group-label:first-child {
  margin-top: 26px;
}

/* Option button */
.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  min-height: 64px;
  transition:
    border-color .2s,
    background .2s,
    transform .15s,
    box-shadow .2s;
  width: 100%;
  cursor: pointer;
}
.opt:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.opt:active {
  transform: scale(0.97);
}
.opt.selected {
  border-color: transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 6px 18px rgba(248, 87, 1, .14);
}

.opt .ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.opt.selected .ic {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(248, 87, 1, .3);
}

.opt .txt {
  flex: 1;
  min-width: 0;
}
.opt .txt b {
  display: block;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.005em;
}
.opt .txt small {
  display: block;
  color: var(--ink-faint);
  font-size: 12.5px;
  margin-top: 2px;
  line-height: 1.3;
}

.opt .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: opacity .2s, transform .2s, background .2s, border-color .2s;
  opacity: 0;
  transform: scale(0.85);
}
.opt.selected .check {
  opacity: 1;
  transform: scale(1);
  background: var(--grad);
  border-color: transparent;
}
.multi .opt .check {
  border-radius: 7px;
}

/* Step nav */
.step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 14px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 10px 6px;
  transition: color .2s;
  min-height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-back:hover {
  color: var(--ink);
}

.hint-soft {
  font-size: 13.5px;
  color: var(--ink-faint);
  text-align: center;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.hint-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c2);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* Contact form in konfigurator */
.reassure {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--grad-soft);
  border-radius: var(--r-sm);
  padding: 13px 18px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.reassure b {
  color: var(--ink);
  font-weight: 600;
}
.reassure .dotg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.reassure .dotg::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c3);
  flex-shrink: 0;
}

.unsure-note {
  background: #fff;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-sm);
  padding: 14px 17px;
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
  display: none;
  align-items: center;
  gap: 11px;
}
.unsure-note.show {
  display: flex;
}
.unsure-note .ec {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
  font-size: 15px;
}

/* Summary */
.sum-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 24px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
}
.sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 16px 18px;
  background: var(--bg);
}
.sum-row .k {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
  width: 140px;
  max-width: none;
}
.sum-row .v {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
  flex: 1;
  max-width: none;
}
.sum-row .v .chip {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 13px;
  margin: 3px 0 3px 6px;
}

/* Success screen */
.success-shell {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.success-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(248, 87, 1, .35);
  animation: pop .5s var(--ease);
}
@keyframes pop {
  0% { transform: scale(0.85); opacity: 0; }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}
.success-shell h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 600;
  letter-spacing: -.02em;
}
.success-shell .lede {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 14px auto 0;
  max-width: 480px;
}

/* Resume banner */
.resume-banner {
  display: none;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-md);
  padding: 16px 22px;
  margin-bottom: 22px;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: stepIn .4s var(--ease);
}
.resume-banner.show {
  display: flex;
}
.resume-banner p {
  font-size: 15px;
  flex: 1;
  min-width: 180px;
  max-width: none;
}
.resume-banner p b {
  font-weight: 600;
}
.resume-banner .ra {
  display: flex;
  gap: 10px;
}
.resume-banner .r-yes {
  background: var(--grad);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  min-height: 40px;
  border: none;
  cursor: pointer;
}
.resume-banner .r-no {
  background: rgba(255, 255, 255, .12);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  min-height: 40px;
  border: none;
  cursor: pointer;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full {
  grid-column: 1 / -1;
}
.field.half-left {
  grid-column: 1;
}
.field.half-right {
  grid-column: 2;
}

.field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.field label .req {
  color: var(--c3);
}

.field input,
.field textarea,
.field select {
  font-family: inherit;
  font-size: 15.5px;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--c2);
  box-shadow: 0 0 0 3px rgba(248, 149, 10, .14);
}
.field .err {
  font-size: 12.5px;
  color: var(--c4);
  font-weight: 500;
  display: none;
}
.field.invalid input,
.field.invalid textarea {
  border-color: var(--c4);
}
.field.invalid .err {
  display: block;
}

/* Honeypot field: must stay visually hidden */
.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Status messages: visibility hidden (not display none) so aria-live stays in the AT */
.form-status {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-sm);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 0;
  border: 0;
  transition: padding .15s, margin-top .15s;
}
.form-status.success {
  visibility: visible;
  height: auto;
  overflow: visible;
  padding: 14px 18px;
  margin-top: 16px;
  background: rgba(249, 221, 0, .12);
  border: 1px solid rgba(248, 87, 1, .25);
  color: var(--ink);
}
.form-status.error {
  visibility: visible;
  height: auto;
  overflow: visible;
  padding: 14px 18px;
  margin-top: 16px;
  background: rgba(247, 8, 6, .06);
  border: 1px solid rgba(247, 8, 6, .25);
  color: var(--c4);
}

/* ---------- FAQ (details/summary) ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: clamp(36px, 5vw, 52px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
details:hover {
  box-shadow: var(--shadow-sm);
}
details[open] {
  box-shadow: var(--shadow-md);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  min-height: 64px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--c3);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  line-height: 1;
}
details[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity .6s var(--ease-out-strong),
    transform .6s var(--ease-out-strong);
}
/* Ohne JS darf nichts unsichtbar bleiben */
@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: rgba(251, 248, 243, .6);
  padding: 54px 0 40px;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

.foot-brand .logo {
  color: #fff;
  margin-bottom: 10px;
}
.foot-brand p {
  font-size: 14px;
  max-width: 260px;
}

.foot-links {
  display: flex;
  gap: 46px;
  flex-wrap: wrap;
}

.foot-col .foot-label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  /* .62 statt .4: WCAG-AA-Kontrast auf --ink (Lighthouse-Fund) */
  color: rgba(251, 248, 243, .62);
  margin-bottom: 14px;
  font-weight: 600;
}
.foot-col a {
  display: block;
  font-size: 14.5px;
  color: rgba(251, 248, 243, .75);
  margin-bottom: 9px;
  transition: color .2s;
  min-height: 24px;
}
.foot-col a:hover {
  color: #fff;
}

.foot-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .nav-cta {
    display: inline-flex;
    padding: 11px 18px;
    min-height: 42px;
    font-size: 14px;
  }
  .nav-toggle {
    display: flex;
  }
}
/* Schmale Screens: Logo + CTA + Hamburger passen nicht nebeneinander --
   CTA steckt im Mobile-Menue, der Hero-Einstieg folgt direkt darunter */
@media (max-width: 520px) {
  .nav-links .nav-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner.hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .split-layout,
  .split-layout.flip {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split-layout.flip .split-visual,
  .split-layout.flip .split-body {
    order: unset;
  }
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .opt-grid,
  .opt-grid.three {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.half-left,
  .field.half-right {
    grid-column: 1;
  }
  .sum-row {
    flex-direction: column;
    gap: 8px;
  }
  .sum-row .k {
    width: auto;
  }
  .sum-row .v {
    text-align: left;
  }
  .sum-row .v .chip {
    margin: 3px 6px 3px 0;
  }
  .trust-strip-inner {
    gap: 10px 24px;
  }
  .foot-links {
    gap: 30px;
  }
}

/* ---------- Hover guard: no sticky hover on touch ---------- */
@media (hover: none) {
  .step-card:hover,
  .price-card:hover,
  .hc-opt:hover,
  a.split-visual:hover,
  .opt:hover,
  .btn:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .btn-dark:hover {
    transform: none;
    box-shadow: none;
  }
  .step-card .step-line {
    width: 40px;
  }
  .btn-primary:hover .arr {
    transform: none;
  }
}

/* ---------- Form hint ---------- */
.form-hint {
  font-size: 13px;
  color: var(--ink-faint);
  line-height: 1.5;
  margin-top: 14px;
}
.form-hint a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-hint a:hover {
  color: var(--ink);
}

/* ---------- Kontakt-Seite ---------- */
.kontakt-sec {
  padding-top: 0;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.kontakt-info {
  padding-top: 8px;
}

.kontakt-intro {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 65ch;
}

.kontakt-alt {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-top: 14px;
}

.kontakt-config-cta {
  margin-top: 26px;
  display: inline-flex;
}

.kontakt-mail-block {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.kontakt-mail-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.kontakt-mail-link {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
  display: inline-block;
}
.kontakt-mail-link:hover {
  border-color: var(--c3);
}

.kontakt-form-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}

.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}
.form-submit:active {
  transform: scale(.97);
}

@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-fields {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: 1;
  }
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--c2);
  outline-offset: 2px;
}

/* ---------- Legal Layout ---------- */
.legal-layout {
  max-width: 740px;
  padding: clamp(48px, 8vw, 80px) 0 clamp(64px, 10vw, 100px);
}

.legal-layout h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: var(--space-8) 0 var(--space-10);
}

.legal-layout h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -.015em;
  margin: var(--space-10) 0 var(--space-4);
}

.legal-layout h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: var(--space-8) 0 var(--space-3);
}

.legal-layout p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
  max-width: 65ch;
}

.legal-layout ul,
.legal-layout ol {
  padding-left: 1.4rem;
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-layout ul li,
.legal-layout ol li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 65ch;
}

.legal-layout a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color .2s, color .2s;
}
.legal-layout a:hover {
  color: var(--c3);
  text-decoration-color: var(--c3);
}
.legal-layout a:focus-visible {
  outline: 2px solid var(--c2);
  outline-offset: 2px;
  border-radius: 2px;
}

.legal-layout section {
  border-top: 1px solid var(--line);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
}
.legal-layout section:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/* Table of contents */
.legal-toc {
  background: #f4efe6;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-10);
}
.legal-toc ol {
  padding-left: 1.2rem;
  margin-bottom: 0;
  gap: var(--space-2);
}
.legal-toc li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  list-style: decimal;
}
.legal-toc a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color .2s;
}
.legal-toc a:hover {
  color: var(--ink);
}

/* Intro paragraph */
.legal-intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 60ch;
}

/* Draft / placeholder notice */
.legal-draft-notice {
  background: #fff8e6;
  border: 1.5px solid #f8d458;
  border-radius: var(--r-sm);
  padding: var(--space-4) var(--space-6);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}
.legal-draft-notice strong {
  color: var(--ink);
  font-weight: 600;
}

/* Placeholder blocks for missing legal content */
.legal-placeholder {
  background: #fff8e6;
  border: 1.5px dashed #f8d458;
  border-radius: var(--r-sm);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-4);
}
.legal-placeholder p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}
.legal-placeholder p:last-child {
  margin-bottom: 0;
}
.legal-placeholder em {
  color: var(--c3);
  font-style: normal;
  font-weight: 500;
}

/* ---------- Pakete Page: Page Hero ---------- */
.page-hero-inner {
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -.025em;
  margin: 0;
}

.page-hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 18px 0 0;
  line-height: 1.5;
}

/* ---------- Pakete Page: Pricing ab-note ---------- */
.price-ab-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-faint);
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}

/* ---------- Pakete Page: Betreuung ---------- */
.care-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.care-text h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -.02em;
}

.care-text > p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-top: 14px;
  max-width: 480px;
}

.care-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: none;
}

.care-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.care-list li strong {
  font-weight: 600;
  font-size: 15.5px;
}

.care-list li span {
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 65ch;
}

.care-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid var(--line);
  margin-top: 1px;
}

.care-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.care-aside-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.care-aside-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
  max-width: none;
}

.care-aside-value {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 6px 0 0;
  max-width: none;
}

.care-aside-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.5;
  max-width: none;
}

@media (max-width: 900px) {
  .care-inner {
    grid-template-columns: 1fr;
  }
  .care-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .care-aside-card {
    flex: 1;
    min-width: 200px;
  }
}

/* ---------- Pakete Page: FAQ ---------- */
.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: clamp(28px, 4vw, 40px);
}

/* ---------- Pakete-Hero: Preisanker ---------- */
.hero-price-anchor {
  margin-top: 14px;
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--ink-faint);
  font-weight: 500;
  letter-spacing: .01em;
}

/* ---------- Business-Karte: Referenz-Link ---------- */
.ref-inline {
  color: var(--c3);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ref-inline:hover {
  color: var(--ink);
}

/* ---------- Noscript fallback helpers ---------- */
.noscript-wrap {
  max-width: 600px;
}
.noscript-hint {
  color: var(--ink-soft);
  margin-top: 16px;
  margin-bottom: 32px;
}

/* ---------- Konfigurator summary: chip variants ---------- */
.chip-warn {
  border-color: var(--c3);
  color: var(--c3);
}
.v--empty {
  color: var(--ink-faint);
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .progress-fill {
    transition: none;
  }
}

/* ---------- WhatsApp-Einwilligung (Konfigurator + Kontakt) ---------- */
.wa-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.wa-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--c3);
  flex-shrink: 0;
  cursor: pointer;
}
