@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --white:   #f5f5f7;
  --off:     #fbfbfd;
  --black:   #1d1d1f;
  --mid:     #6e6e73;
  --light:   #d2d2d7;
  --accent:  oklch(52% 0.18 170);
  --accent2: oklch(46% 0.20 150);
  --radius:  18px;
}

/* ─── THEME: DARK ──────────────────────────────── */
[data-theme="dark"] {
  --off:         #0c0c0e;
  --white:       #f5f5f7;
  --black:       #f0f0f2;
  --mid:         #8e8e94;
  --light:       #2e2e32;
  --card:        #17171a;
  --card-border: rgba(255,255,255,0.07);
}
[data-theme="dark"] body       { background: var(--off); }
[data-theme="dark"] nav        { background: rgba(12,12,14,0.80); border-bottom-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .why       { background: var(--off); }
[data-theme="dark"] .why-card,
[data-theme="dark"] .testi-card { background: var(--card); border-color: var(--card-border); }
[data-theme="dark"] .faq       { background: #111114; }
[data-theme="dark"] .testimonials { background: var(--off); }
[data-theme="dark"] .step      { background: #111114; }

/* ─── THEME: WARM ──────────────────────────────── */
[data-theme="warm"] {
  --off:   #faf6f0;
  --white: #fdf9f4;
  --black: #1c1510;
  --mid:   #7a6e65;
  --light: #ddd5c8;
  --card:  #fdf9f4;
}
[data-theme="warm"] body { background: var(--off); }
[data-theme="warm"] nav  { background: rgba(250,246,240,0.80); }
[data-theme="warm"] .why { background: var(--off); }
[data-theme="warm"] .why-card,
[data-theme="warm"] .testi-card { background: var(--card); }
[data-theme="warm"] .faq { background: #fdf9f4; }

/* ─── ACCENT COLORS ─────────────────────────────── */
[data-accent="blue"]   { --accent: oklch(52% 0.18 240); --accent2: oklch(46% 0.20 220); }
[data-accent="teal"]   { --accent: oklch(52% 0.18 190); --accent2: oklch(46% 0.20 175); }
[data-accent="violet"] { --accent: oklch(52% 0.18 290); --accent2: oklch(52% 0.18 330); }
[data-accent="coral"]  { --accent: oklch(58% 0.18 30);  --accent2: oklch(58% 0.18 60);  }

/* ─── TYPOGRAPHY MODES ──────────────────────────── */
[data-type="editorial"] .hero h1,
[data-type="editorial"] .section-title,
[data-type="editorial"] .cta-strip h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400; letter-spacing: -0.01em; line-height: 1.08;
}
[data-type="editorial"] .hero h1 { font-size: clamp(44px, 7.5vw, 104px); }
[data-type="editorial"] body { font-weight: 300; }
[data-type="editorial"] .hero-sub { font-size: clamp(18px, 2.4vw, 24px); font-weight: 300; letter-spacing: 0.01em; }

[data-type="heavy"] .hero h1,
[data-type="heavy"] .section-title,
[data-type="heavy"] .cta-strip h2 {
  font-weight: 900; letter-spacing: -0.055em; text-transform: uppercase; line-height: 0.97;
}
[data-type="heavy"] body { font-weight: 500; }
[data-type="heavy"] .hero-sub { font-weight: 400; letter-spacing: 0.03em; text-transform: uppercase; font-size: 13px; }
[data-type="heavy"] .why-icon { border-radius: 4px; }
[data-type="heavy"] .why-card,
[data-type="heavy"] .testi-card { border-radius: 6px; }
[data-type="heavy"] .btn-primary,
[data-type="heavy"] .nav-cta { border-radius: 4px; }

/* ─── BASE ────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(245,245,247,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none; line-height: 1;
}
.logo-headline {
  font-size: 22px; line-height: 1; white-space: nowrap;
}
.logo-raus {
  font-weight: 800; color: var(--accent);
}
.logo-pkv {
  font-weight: 300; color: var(--black); letter-spacing: -0.02em;
}
.logo-tagline {
  display: flex; align-items: center; gap: 7px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
}
.logo-tagline::before {
  content: ''; display: block; width: 22px; height: 1.5px;
  background: var(--mid); flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--black);
  text-decoration: none; opacity: 0.8; transition: opacity .2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; font-weight: 500; }
.nav-cta {
  font-size: 13px; font-weight: 500; color: white;
  background: var(--accent);
  padding: 7px 16px; border-radius: 980px;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ─── HAMBURGER ───────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer;
  border-radius: 8px; transition: background .2s;
}
.nav-burger:hover { background: rgba(0,0,0,0.06); }
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ──────────────────────── */
.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.nav-mobile.open {
  opacity: 1; pointer-events: auto;
}
.nav-mobile-inner {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--off);
  padding: 24px 28px 36px;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 0;
}
.nav-mobile.open .nav-mobile-inner { transform: translateY(0); }

.nav-mobile-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.nav-mobile-header .nav-logo { gap: 2px; }
.nav-mobile-header .logo-headline { font-size: 20px; }

.nav-mobile-close {
  background: none; border: none;
  color: var(--black); cursor: pointer; padding: 4px;
  border-radius: 8px;
  transition: background .2s;
}
.nav-mobile-close:hover { background: rgba(0,0,0,0.06); }

.nav-mobile-links {
  list-style: none; display: flex; flex-direction: column;
  border-top: 1px solid var(--light);
}
.nav-mobile-links li { border-bottom: 1px solid var(--light); }
.nav-mobile-links a {
  display: block; padding: 16px 4px;
  font-size: 18px; font-weight: 500; color: var(--black);
  text-decoration: none; transition: color .2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--accent); }

.nav-mobile-cta {
  display: block; margin-top: 24px; text-align: center;
  background: var(--accent); color: white;
  font-size: 16px; font-weight: 600;
  padding: 15px 24px; border-radius: 980px;
  text-decoration: none; transition: opacity .2s;
}
.nav-mobile-cta:hover { opacity: 0.88; }

.nav-mobile-contact {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; margin-top: 20px;
}
.nav-mobile-contact a {
  font-size: 13px; color: var(--mid);
  text-decoration: none; transition: color .2s;
}
.nav-mobile-contact a:hover { color: var(--accent); }

/* ─── PAGE HERO (Unterseiten) ─────────────────── */
.page-hero {
  padding: 120px 40px 80px;
  background: var(--off);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(85% 0.06 170 / 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container,
.page-hero .container-sm { position: relative; }
.page-hero-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  opacity: 0; animation: fadeUp .6s .1s ease forwards;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.07; max-width: 700px;
  opacity: 0; animation: fadeUp .7s .2s ease forwards;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p {
  margin-top: 20px; font-size: 18px; color: var(--mid);
  max-width: 560px; line-height: 1.6; font-weight: 300;
  opacity: 0; animation: fadeUp .7s .35s ease forwards;
}

/* ─── HERO (Startseite) ───────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: var(--off);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(85% 0.06 170 / 0.35) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 100% 100%, oklch(85% 0.06 150 / 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .6s .1s ease forwards;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05;
  color: var(--black); max-width: 800px;
  opacity: 0; animation: fadeUp .7s .2s ease forwards;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  margin-top: 24px;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 300; color: var(--mid);
  max-width: 560px; line-height: 1.55;
  opacity: 0; animation: fadeUp .7s .35s ease forwards;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .7s .45s ease forwards;
}
.hero-stats {
  margin-top: 72px; display: flex; gap: 64px; flex-wrap: wrap; justify-content: center;
  opacity: 0; animation: fadeUp .7s .6s ease forwards;
}
.stat { text-align: center; }
.stat-n {
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--black); line-height: 1;
}
.stat-n span { color: var(--accent); }
.stat-l { font-size: 13px; color: var(--mid); margin-top: 6px; font-weight: 400; }

/* ─── SECTION ─────────────────────────────────── */
section { padding: 100px 40px; }
.container    { max-width: 1080px; margin: 0 auto; }
.container-sm { max-width: 760px;  margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 52px); font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--black); max-width: 600px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-body {
  font-size: 17px; color: var(--mid); line-height: 1.65;
  max-width: 560px; margin-top: 16px;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--black); color: white;
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: 980px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.16);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.22); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
  font-size: 15px; font-weight: 500;
  padding: 14px 20px; border-radius: 980px;
  text-decoration: none; transition: background .2s;
}
.btn-secondary:hover { background: oklch(52% 0.18 170 / 0.08); }
.chevron {
  display: inline-block; width: 16px; height: 16px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(-3px, 3px);
}

/* ─── WHY ─────────────────────────────────────── */
.why { background: var(--off); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px;
}
.why-card {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 36px 32px;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: oklch(96% 0.06 170);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--mid); line-height: 1.6; }
.badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  background: oklch(96% 0.06 170); color: var(--accent);
  padding: 4px 10px; border-radius: 6px; margin-top: 14px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ─── DARK STRIP / PROZESS ────────────────────── */
.dark-strip {
  background: var(--black); color: var(--white); padding: 80px 40px;
}
.dark-strip .section-title { color: var(--white); }
.dark-strip .section-body  { color: oklch(70% 0 0); }
.dark-strip .section-label { color: var(--accent2); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
  border-radius: var(--radius); overflow: hidden; margin-top: 56px;
}
.step { background: oklch(14% 0 0); padding: 32px 28px; position: relative; }
.step-num {
  font-size: 48px; font-weight: 800; letter-spacing: -0.04em;
  color: oklch(30% 0 0); line-height: 1; margin-bottom: 16px; user-select: none;
}
.step h4 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.step p  { font-size: 14px; color: oklch(60% 0 0); line-height: 1.55; }

/* ─── FAQ ─────────────────────────────────────── */
.faq { background: white; }
.faq-list { margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--light); }
.faq-q {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 22px 0; cursor: pointer; gap: 24px;
  font-size: 17px; font-weight: 500; color: var(--black);
  line-height: 1.4; list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border: 1.5px solid var(--light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.faq-icon svg { width: 11px; height: 11px; stroke: var(--mid); stroke-width: 2.2; fill: none; transition: transform .3s; }
details[open] .faq-icon { background: var(--accent); border-color: var(--accent); }
details[open] .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; font-size: 15px; color: var(--mid); line-height: 1.7; max-width: 720px; }

/* ─── TESTIMONIALS ────────────────────────────── */
.testimonials { background: var(--off); }
.testi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px;
}
.testi-grid.large { grid-template-columns: repeat(3, 1fr); }
.testi-masonry { columns: 2; column-gap: 20px; margin-top: 56px; }
.testi-card {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 28px;
  break-inside: avoid; margin-bottom: 20px;
  transition: box-shadow .25s;
}
.testi-grid .testi-card { padding: 32px 28px; }
.testi-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 14px; height: 14px; fill: oklch(70% 0.16 70); }
.testi-masonry .stars { margin-bottom: 14px; }
.testi-masonry .star  { width: 13px; height: 13px; }
.testi-q { font-size: 15px; color: var(--black); line-height: 1.65; font-style: italic; }
.testi-author {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  padding-top: 20px; border-top: 1px solid var(--light);
}
.testi-masonry .testi-author { margin-top: 18px; padding-top: 18px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: oklch(92% 0.04 170); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--accent);
}
.testi-masonry .testi-avatar { width: 34px; height: 34px; font-size: 12px; font-weight: 700; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-masonry .testi-name { font-size: 13px; }
.testi-city { font-size: 12px; color: var(--mid); margin-top: 1px; }
.savings-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: oklch(96% 0.06 150); color: var(--accent2);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; letter-spacing: 0.04em;
}

/* ─── CTA STRIP ───────────────────────────────── */
.cta-strip {
  background: var(--black); text-align: center; padding: 100px 40px;
  position: relative; overflow: hidden;
}
.cta-strip-bg,
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, oklch(35% 0.15 170 / 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip .section-label { color: var(--accent2); }
.cta-strip h2 {
  font-size: clamp(32px, 5vw, 64px); font-weight: 800; letter-spacing: -0.04em;
  color: white; line-height: 1.05; margin-top: 16px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.cta-strip h2 em { font-style: normal; color: var(--accent2); }
.cta-strip p { margin-top: 20px; font-size: 17px; color: oklch(65% 0 0); }
.cta-contacts {
  margin-top: 48px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.contact-tile {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px 36px; text-align: center;
  text-decoration: none; color: white; transition: background .2s, transform .2s;
}
.contact-tile:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.contact-tile-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: oklch(55% 0 0); margin-bottom: 8px; }
.contact-tile-value { font-size: 17px; font-weight: 600; }
.contact-tile-sub   { font-size: 12px; color: oklch(50% 0 0); margin-top: 4px; }

/* ─── KONTAKTSEITE ────────────────────────────── */
.contact-section { padding: 72px 40px 100px; background: var(--off); }
.contact-layout {
  display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 16px; }

.contact-block {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  text-decoration: none; color: var(--black); transition: box-shadow .2s, transform .2s;
}
.contact-block:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-2px); }
.contact-block-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: oklch(96% 0.06 170);
  display: flex; align-items: center; justify-content: center;
}
.contact-block-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-block-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); margin-bottom: 5px; }
.contact-block-value { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--black); }
.contact-block-sub   { font-size: 12px; color: var(--mid); margin-top: 3px; }

.address-block {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
}
.address-block-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: oklch(96% 0.06 150);
  display: flex; align-items: center; justify-content: center;
}
.address-block-icon svg { width: 20px; height: 20px; stroke: var(--accent2); fill: none; stroke-width: 1.8; }
.address-block-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); margin-bottom: 8px; }
.address-block p     { font-size: 14px; color: var(--black); line-height: 1.7; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.trust-chip {
  display: flex; align-items: center; gap: 7px;
  background: white; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 980px; padding: 8px 14px;
  font-size: 12px; font-weight: 500; color: var(--black);
}
.trust-chip svg { width: 12px; height: 12px; stroke: var(--accent2); fill: none; stroke-width: 2.4; flex-shrink: 0; }

.form-card {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: calc(var(--radius) * 1.3); padding: 44px 40px;
}
.form-card-title { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 4px; }
.form-card-sub   { font-size: 14px; color: var(--mid); margin-bottom: 32px; line-height: 1.5; }

.form-row        { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.triple { grid-template-columns: 160px 1fr 1fr; }
.form-group      { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 14px; }
label            { font-size: 13px; font-weight: 500; color: var(--black); }
label .req       { color: var(--accent); margin-left: 2px; }

input, textarea, select {
  font-family: inherit; font-size: 15px; color: var(--black);
  background: var(--off); border: 1.5px solid var(--light);
  border-radius: 10px; padding: 12px 14px;
  outline: none; transition: border-color .2s, box-shadow .2s;
  resize: none; -webkit-appearance: none; appearance: none;
}
input::placeholder, textarea::placeholder { color: oklch(75% 0 0); }
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px oklch(52% 0.18 170 / 0.12);
  background: white;
}
textarea { min-height: 100px; }

.intent-group { margin-bottom: 14px; }
.intent-label-row { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 10px; }
.intent-options { display: flex; flex-direction: column; gap: 8px; }
.intent-option {
  display: flex; align-items: center; gap: 12px;
  background: var(--off); border: 1.5px solid var(--light);
  border-radius: 10px; padding: 12px 16px; cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 14px; color: var(--black);
}
.intent-option input[type="radio"] { display: none; }
.intent-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s;
}
.intent-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); opacity: 0; transform: scale(0.5);
  transition: opacity .2s, transform .2s;
}
.intent-option:has(input:checked)               { border-color: var(--accent); background: oklch(97% 0.03 170); }
.intent-option:has(input:checked) .intent-radio { border-color: var(--accent); }
.intent-option:has(input:checked) .intent-radio::after { opacity: 1; transform: scale(1); }

.callback-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.form-submit {
  width: 100%; margin-top: 4px;
  background: var(--black); color: white;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 15px; border-radius: 980px; border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s; letter-spacing: -0.01em;
}
.form-submit:hover  { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.form-submit:active { transform: none; }
.form-note { font-size: 12px; color: var(--mid); margin-top: 12px; text-align: center; line-height: 1.55; }

.form-success {
  display: none; flex-direction: column; align-items: center;
  text-align: center; padding: 32px 0;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: oklch(94% 0.07 150);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.success-icon svg { width: 32px; height: 32px; stroke: var(--accent2); fill: none; stroke-width: 2; }
.form-success h3   { font-size: 24px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 10px; }
.form-success p    { font-size: 15px; color: var(--mid); line-height: 1.65; max-width: 380px; }

/* ─── RECHTLICHE SEITEN ───────────────────────── */
.toc {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 28px 32px; margin: 48px 0 0;
}
.toc-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); margin-bottom: 14px; }
.toc ol  { margin-left: 18px; }
.toc li  { margin-bottom: 6px; }
.toc a   { font-size: 14px; color: var(--accent); text-decoration: none; line-height: 1.6; }
.toc a:hover { text-decoration: underline; }

.content-section { padding: 48px 40px 100px; }
.content-wrap    { max-width: 760px; margin: 0 auto; }

.legal-block            { border-top: 1px solid var(--light); padding: 36px 0; }
.legal-block:last-child { border-bottom: 1px solid var(--light); }
.legal-block h2 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 16px; color: var(--black); scroll-margin-top: 80px;
}
.legal-block h3 { font-size: 15px; font-weight: 600; margin: 20px 0 8px; color: var(--black); }
.legal-block p  { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a  { color: var(--accent); text-decoration: none; }
.legal-block a:hover { text-decoration: underline; }
.legal-block ul { margin: 8px 0 12px 20px; }
.legal-block li { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 6px; }

.rights-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px;
}
.rights-chip {
  background: var(--off); border: 1px solid var(--light);
  border-radius: 12px; padding: 16px 18px;
  font-size: 14px; color: var(--black); line-height: 1.5;
}
.rights-chip strong { display: block; font-weight: 600; margin-bottom: 4px; }

.address-box {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 28px 32px; margin-bottom: 24px;
}
.address-box p      { font-size: 15px; color: var(--black); line-height: 1.8; }
.address-box strong { font-weight: 600; }

/* ─── KUNDENMEINUNGEN ─────────────────────────── */
.savings-banner {
  background: oklch(14% 0 0); border-radius: var(--radius);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; overflow: hidden; margin-top: 56px;
}
.savings-item {
  padding: 32px 28px; background: oklch(14% 0 0);
  border-right: 1px solid rgba(255,255,255,0.08); text-align: center;
}
.savings-item:last-child { border-right: none; }
.savings-n { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: white; line-height: 1; }
.savings-n span { color: var(--accent2); }
.savings-l { font-size: 13px; color: oklch(55% 0 0); margin-top: 8px; }

/* ─── ÜBER UNS ────────────────────────────────── */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; margin-top: 72px;
}
.story-text p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.story-text p:last-child { margin-bottom: 0; }
.story-visual {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 48px 40px;
  display: flex; flex-direction: column; gap: 28px;
}
.story-stat             { border-bottom: 1px solid var(--light); padding-bottom: 24px; }
.story-stat:last-child  { border-bottom: none; padding-bottom: 0; }
.story-stat-n { font-size: 48px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--black); }
.story-stat-n span { color: var(--accent); }
.story-stat-l { font-size: 14px; color: var(--mid); margin-top: 6px; }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
.value-card {
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius); padding: 36px 28px;
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: oklch(96% 0.06 170);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.value-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.value-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 10px; }
.value-card p  { font-size: 14px; color: var(--mid); line-height: 1.65; }

.dark-banner {
  background: var(--black); border-radius: var(--radius);
  padding: 56px 48px; margin-top: 24px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.dark-banner h3    { font-size: 28px; font-weight: 700; color: white; letter-spacing: -0.03em; line-height: 1.2; }
.dark-banner h3 em { font-style: normal; color: var(--accent2); }
.dark-banner p     { font-size: 15px; color: oklch(65% 0 0); margin-top: 10px; line-height: 1.6; }

/* ─── FOOTER ──────────────────────────────────── */
footer {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
footer p { font-size: 12px; color: oklch(40% 0 0); }
footer a { font-size: 12px; color: oklch(40% 0 0); text-decoration: none; }
footer a:hover { color: oklch(60% 0 0); }
.footer-links { display: flex; gap: 20px; }

/* ─── ANIMATIONEN ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal         { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .story-grid     { grid-template-columns: 1fr; gap: 40px; }
  .dark-banner    { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .why-grid           { grid-template-columns: 1fr 1fr; }
  .process-steps      { grid-template-columns: 1fr 1fr; }
  .testi-grid         { grid-template-columns: 1fr; }
  .testi-grid.large   { grid-template-columns: 1fr 1fr; }
  .values-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .testi-masonry      { columns: 1; }
  .testi-grid.large   { grid-template-columns: 1fr; }
  .savings-banner     { grid-template-columns: 1fr; }
  .savings-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .savings-item:last-child { border-bottom: none; }
}

/* ─── MOBILE (≤ 600px) ────────────────────────── */
@media (max-width: 600px) {
  /* Nav */
  nav              { padding: 0 16px; height: 64px; }
  .nav-links       { display: none; }
  .nav-cta         { display: none; }
  .nav-burger      { display: flex; }
  .logo-headline   { font-size: 18px; }
  .logo-tagline    { font-size: 8.5px; }

  /* Sections & hero */
  section          { padding: 64px 20px 52px; }
  .page-hero       { padding: 100px 20px 60px; }
  .hero            { padding: 100px 20px 64px; }
  .dark-strip      { padding: 64px 20px 52px; }
  .cta-strip       { padding: 64px 20px 52px; }
  .content-section { padding: 36px 20px 64px; }
  .contact-section { padding: 48px 20px 64px; }

  /* Hero */
  .hero-stats      { gap: 28px; }
  .stat-n          { font-size: 32px; }
  .hero-actions    { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary,
  .btn-secondary   { width: 100%; justify-content: center; }

  /* Grids */
  .why-grid        { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .rights-grid     { grid-template-columns: 1fr; }

  /* Prozess-Schritte */
  .step            { padding: 24px 20px; }
  .step-num        { font-size: 36px; }

  /* Karten */
  .why-card,
  .value-card      { padding: 28px 22px; }
  .testi-grid .testi-card { padding: 24px 20px; }

  /* Kontakt */
  .form-row,
  .form-row.triple,
  .callback-row    { grid-template-columns: 1fr; }
  .form-card       { padding: 24px 18px; border-radius: 16px; }
  .contact-layout  { gap: 32px; }

  /* CTA-Kontaktfelder */
  .cta-contacts    { flex-direction: column; align-items: stretch; }
  .contact-tile    { padding: 18px 20px; }

  /* Footer */
  footer           { flex-direction: column; text-align: center; gap: 10px; padding: 20px; }
  .footer-links    { justify-content: center; }

  /* Sonstiges */
  .dark-banner     { padding: 36px 24px; gap: 24px; }
  .toc             { padding: 20px; }
}
