@import url('../fonts/fonts.css');

:root {
  --pf-navy: #131A26;
  --pf-white: #FFFFFF;
  --pf-ink: #131A26;
  --pf-muted: rgba(19, 26, 38, .72);
  --pf-soft: #F4F6F8;
  --pf-soft-2: #ECEFF3;
  --pf-line: rgba(19, 26, 38, .13);
  --pf-line-strong: rgba(19, 26, 38, .26);
  --pf-navy-92: rgba(19, 26, 38, .92);
  --pf-navy-75: rgba(19, 26, 38, .75);
  --pf-navy-60: rgba(19, 26, 38, .60);
  --pf-navy-12: rgba(19, 26, 38, .12);
  --pf-navy-06: rgba(19, 26, 38, .06);
  --pf-radius-sm: 14px;
  --pf-radius: 24px;
  --pf-radius-lg: 34px;
  --pf-shadow: 0 24px 80px rgba(19, 26, 38, .14);
  --pf-shadow-soft: 0 14px 45px rgba(19, 26, 38, .09);
  --pf-focus: 0 0 0 3px rgba(255, 255, 255, 0), 0 0 0 5px var(--pf-navy);
  --pf-focus-dark: 0 0 0 3px rgba(19, 26, 38, 0), 0 0 0 5px rgba(255, 255, 255, .92);
  --font-headline: 'Roboto SemiCondensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--pf-ink);
  background: var(--pf-white);
  line-height: 1.55;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--pf-navy); }
button, input, textarea, select { font: inherit; }
img, svg { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 1000; padding: 10px 14px; background: var(--pf-white); color: var(--pf-navy); border-radius: 10px; font-weight: 800; }
.skip-link:focus { left: 10px; }

/* Focus-visible — keyboard A11y */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--pf-navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.section-dark :focus-visible,
.hero :focus-visible,
.cta-panel :focus-visible {
  outline-color: var(--pf-white);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--pf-line);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: inline-flex; align-items: center; min-width: 214px; }
.logo-link img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--pf-muted); font-size: 14px; font-weight: 700; }
.nav-links a { position: relative; padding: 4px 2px; }
.nav-links a:hover { color: var(--pf-navy); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
  color: var(--pf-navy);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}
.mobile-panel { display: none; }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pf-navy); color: var(--pf-white); box-shadow: 0 12px 35px rgba(19, 26, 38, .24); }
.btn-primary:hover { background: #1A2236; box-shadow: 0 18px 42px rgba(19, 26, 38, .30); color: var(--pf-white); }
.btn-secondary { background: var(--pf-white); color: var(--pf-navy); border-color: var(--pf-line-strong); }
.btn-ghost { color: var(--pf-navy); border-color: var(--pf-line); background: rgba(255,255,255,.72); }
.btn-invert { background: var(--pf-white); color: var(--pf-navy); }
.btn-invert:hover { background: #F0F2F6; color: var(--pf-navy); }
.btn-outline-light { color: var(--pf-white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.06); }
.btn-outline-light:hover { color: var(--pf-white); border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); }
.btn-full { width: 100%; }

/* Typography */
.eyebrow {
  font-family: var(--font-headline);
  display: inline-flex;
  gap: 9px;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
  font-size: 12px;
  color: var(--pf-navy-75);
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  opacity: .55;
}
h1, h2, h3 {
  font-family: var(--font-headline);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: clamp(44px, 7vw, 88px); max-width: 1040px; }
h2 { font-size: clamp(34px, 4.6vw, 60px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); letter-spacing: -.035em; }
p { margin: 0; color: var(--pf-muted); }
.lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  max-width: 860px;
}
.section-lede {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  max-width: 810px;
}

/* Hero */
.hero {
  position: relative;
  color: var(--pf-white);
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(207,214,223,.13), transparent 26%),
    linear-gradient(135deg, #101620 0%, var(--pf-navy) 54%, #0C111A 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
  opacity: .8;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding: 92px 0 84px; }
.hero-logo { width: min(465px, 78vw); height: auto; margin-bottom: 58px; opacity: .98; }
.hero-copy { display: grid; gap: 26px; }
.hero .eyebrow { color: rgba(255,255,255,.78); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.hero-actions .btn { max-width: 100%; white-space: normal; text-align: center; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}
.hero-proof li {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  border-radius: 16px;
  padding: 13px 14px;
  min-height: 62px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}
.hero-visual {
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--pf-radius-lg);
  background: rgba(255,255,255,.075);
  box-shadow: 0 36px 100px rgba(0,0,0,.28);
  overflow: hidden;
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-step {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 10px;
}
.flow-step:last-child { border-right: none; }
.flow-kicker {
  color: rgba(255,255,255,.68);
  font-family: var(--font-headline);
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
  text-transform: uppercase;
}
.flow-title { color: var(--pf-white); font-weight: 800; font-size: 18px; font-family: var(--font-headline); letter-spacing: -.01em; }
.flow-note { color: rgba(255,255,255,.72); font-size: 13.5px; }

/* Visual Frames — Wrapper fuer eingebundene SVG-Grafiken */
/* Die SVGs haben jeweils eigene Hintergrundfarben und abgerundete Kanten. */
/* Der Wrapper liefert nur Layout + Schatten, kein doppelter Rahmen. */
.visual-frame {
  margin: 0;
  display: block;
  line-height: 0;
}
.visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--pf-radius-lg);
}

/* Hero-Graphic — ersetzt die fruehere Process-Flow Bar im Hero */
/* Overrides die White-Tint-Optik von .hero-visual, weil die SVG ihre eigene Navy-Flaeche mitbringt. */
.hero-visual.hero-graphic {
  background: transparent;
  border: 0;
  overflow: hidden;
  box-shadow: 0 36px 100px rgba(0,0,0,.32);
  border-radius: var(--pf-radius-lg);
}

/* Architektur-Section: 2-Spalten Layout (Text links, Stack-Grafik rechts) */
.architecture-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 42px;
  align-items: center;
}
.visual-copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
}
.visual-copy .section-lede { max-width: none; }
.stack-graphic {
  box-shadow: var(--pf-shadow);
}

/* Compare-Section Grafik unter dem Vergleichsblock */
.compare-graphic {
  margin-top: 28px;
  box-shadow: var(--pf-shadow-soft);
}

/* Sections */
.section { padding: 96px 0; }
.section-tight { padding: 74px 0; }
.section-soft { background: var(--pf-soft); }
.section-dark { background: var(--pf-navy); color: var(--pf-white); }
.section-dark-soft {
  background: linear-gradient(180deg, var(--pf-white) 0%, var(--pf-soft-2) 100%);
}
.section-head { display: grid; gap: 20px; max-width: 900px; margin-bottom: 46px; }
.section-dark p,
.section-dark .section-lede { color: rgba(255,255,255,.78); }
.section-dark .eyebrow { color: rgba(255,255,255,.78); }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.card {
  background: var(--pf-white);
  border: 1px solid var(--pf-line);
  border-radius: var(--pf-radius);
  padding: 26px;
  box-shadow: var(--pf-shadow-soft);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; line-height: 1.55; }
.card-number {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--pf-navy-60);
  text-transform: uppercase;
  margin-top: 24px;
  display: inline-block;
}
.card-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.card-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--pf-muted);
  line-height: 1.45;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pf-navy);
  opacity: .55;
}
.section-dark .card-list li { color: rgba(255,255,255,.72); }
.section-dark .card-list li::before { background: var(--pf-white); opacity: .8; }

/* Icons */
.pf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.pf-icon svg { width: 26px; height: 26px; }
.pf-icon-pain {
  background: var(--pf-navy);
  color: var(--pf-white);
}
.pf-icon-sol {
  background: rgba(255,255,255,.10);
  color: var(--pf-white);
  border: 1px solid rgba(255,255,255,.18);
}

.pain-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.solution-card {
  background: transparent;
  box-shadow: none;
  border-color: rgba(255,255,255,.18);
}
.solution-card h3 { color: var(--pf-white); margin-bottom: 8px; }
.solution-card p { color: rgba(255,255,255,.72); font-size: 14.5px; }

/* Pilot cards */
.pilots { counter-reset: pilots; }
.pilot-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pilot-card::before {
  counter-increment: pilots;
  content: '0' counter(pilots);
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-headline);
  font-size: 52px;
  line-height: 1;
  color: var(--pf-navy-06);
  font-weight: 800;
}
.pilot-tag {
  width: fit-content;
  border: 1px solid var(--pf-line);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--pf-navy-75);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.pilot-meta {
  margin-top: auto;
  border-top: 1px solid var(--pf-line);
  padding-top: 16px;
  display: grid;
  gap: 6px;
  font-size: 13.5px;
  color: var(--pf-muted);
}
.pilot-meta strong { color: var(--pf-navy); font-weight: 800; }

/* Proof / Referenz */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.proof-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.proof-card em { color: var(--pf-navy); font-style: normal; font-weight: 800; }

/* Comparison / pricing */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.compare-col {
  border-radius: var(--pf-radius);
  padding: 30px;
  border: 1px solid var(--pf-line);
  background: var(--pf-white);
}
.compare-col.bad { background: #F7F4F1; }
.compare-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--pf-muted);
}
.compare-list li { padding-left: 28px; position: relative; }
.compare-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--pf-navy);
}
.compare-col.bad li::before { content: '–'; }
.compare-col.good li::before { content: '✓'; }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--pf-radius);
  background: var(--pf-white);
  box-shadow: var(--pf-shadow-soft);
}
.pricing-table th,
.pricing-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--pf-line);
  vertical-align: top;
}
.pricing-table th {
  color: var(--pf-white);
  background: var(--pf-navy);
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:first-child { font-weight: 800; color: var(--pf-navy); }
.pricing-table td:last-child { font-weight: 700; color: var(--pf-navy-75); white-space: nowrap; }
.table-foot {
  margin-top: 18px;
  font-size: 14px;
  color: var(--pf-navy-60);
  font-style: italic;
}

/* Forms */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--pf-radius-lg);
  background: var(--pf-navy);
  color: var(--pf-white);
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  box-shadow: var(--pf-shadow);
}
.cta-panel::before {
  content: '';
  position: absolute;
  inset: auto -12% -50% 38%;
  height: 360px;
  background: rgba(255,255,255,.09);
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel p { color: rgba(255,255,255,.78); }
.cta-panel h2 { color: var(--pf-white); }
.cta-panel .eyebrow { color: rgba(255,255,255,.82); }
.lead-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; color: rgba(255,255,255,.86); font-size: 13px; font-weight: 800; margin-bottom: 7px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 13px 14px;
  background: rgba(255,255,255,.08);
  color: var(--pf-white);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.46); }
.field select option { color: var(--pf-navy); background: var(--pf-white); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.12);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
}
.checkbox input { margin-top: 4px; flex-shrink: 0; }
.form-note { color: rgba(255,255,255,.70); font-size: 12.5px; }
.form-success,
.form-error {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: var(--pf-white);
  font-weight: 700;
}
.form-error {
  border-color: rgba(255,255,255,.44);
  background: rgba(255,255,255,.08);
}
.form-success.visible,
.form-error.visible { display: block; }
.honeypot,
.honeypot-input {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Social lead pages */
.lead-page .hero-inner { padding-bottom: 96px; }
.lead-magnet {
  background: var(--pf-white);
  color: var(--pf-navy);
  border-radius: var(--pf-radius-lg);
  padding: 30px 34px;
  box-shadow: var(--pf-shadow);
  max-width: 540px;
  margin-top: 36px;
}
.lead-magnet h3 { margin-bottom: 8px; }
.lead-magnet p { color: var(--pf-muted); font-size: 15px; }
.bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.bullet-list li {
  position: relative;
  padding-left: 26px;
  color: var(--pf-muted);
}
.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pf-navy);
  font-weight: 800;
}
.section-dark .bullet-list li { color: rgba(255,255,255,.78); }
.section-dark .bullet-list li::before { color: rgba(255,255,255,.92); }

/* FAQ */
.faq { display: grid; gap: 12px; }
details {
  border: 1px solid var(--pf-line);
  border-radius: 18px;
  padding: 18px 22px;
  background: var(--pf-white);
  box-shadow: var(--pf-shadow-soft);
}
summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--pf-navy);
  font-family: var(--font-headline);
  font-size: 17px;
  letter-spacing: -.01em;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 22px;
  color: var(--pf-navy-60);
  transition: transform .2s ease;
}
details[open] summary::after { content: '−'; }
details p { margin-top: 12px; color: var(--pf-muted); }

/* Footer */
.site-footer {
  background: #0E141D;
  color: var(--pf-white);
  padding: 50px 0 38px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 30px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.72); }
.site-footer a { color: rgba(255,255,255,.86); }
.site-footer a:hover { color: var(--pf-white); }
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-weight: 700;
}
.footer-small {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,.54);
}

/* Tablet */
@media (max-width: 1080px) {
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-panel {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pf-white);
    padding: 24px 20px;
    z-index: 49;
    overflow-y: auto;
  }
  body.menu-open .mobile-panel { display: block; }
  .mobile-panel a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--pf-line);
    font-weight: 800;
    font-family: var(--font-headline);
    font-size: 18px;
  }
  .grid-3,
  .grid-5,
  .process-flow { grid-template-columns: 1fr 1fr; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .cta-panel,
  .compare,
  .proof-grid,
  .architecture-grid { grid-template-columns: 1fr; }
  .architecture-grid { gap: 28px; }
  .visual-copy { max-width: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* Mobile */
@media (max-width: 680px) {
  .container {
    width: min(350px, calc(100% - 40px));
    margin-left: 20px;
    margin-right: auto;
  }
  .nav { gap: 12px; }
  .logo-link { min-width: 0; flex: 1 1 auto; max-width: calc(100% - 86px); }
  .logo-link img { height: 26px; max-width: 100%; }
  .nav-toggle { flex: 0 0 auto; padding: 9px 12px; }
  .hero-inner { padding: 56px 0 56px; }
  .hero-logo { width: min(270px, 100%); margin-bottom: 42px; }
  h1 {
    font-size: clamp(31px, 8.4vw, 34px);
    line-height: 1.06;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
  }
  h2 {
    font-size: clamp(29px, 7.6vw, 34px);
    line-height: 1.06;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
  }
  .lede,
  .section-lede {
    font-size: 16.5px;
    line-height: 1.5;
  }
  .card { padding: 22px; }
  h3,
  .lede,
  .section-lede,
  .card p,
  .hero-proof li {
    overflow-wrap: anywhere;
  }
  .section { padding: 68px 0; }
  .grid-2,
  .grid-3,
  .grid-5,
  .hero-proof,
  .process-flow,
  .form-grid { grid-template-columns: 1fr; }
  .flow-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .flow-step:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-visual.hero-graphic { margin-top: 34px; box-shadow: 0 20px 60px rgba(0,0,0,.24); }
  .compare-graphic { margin-top: 18px; }

  /* Pricing-Tabelle als stacked Cards */
  .pricing-table {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    display: block;
  }
  .pricing-table thead { display: none; }
  .pricing-table tbody,
  .pricing-table tr { display: block; }
  .pricing-table tr {
    background: var(--pf-white);
    border: 1px solid var(--pf-line);
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 12px;
    box-shadow: var(--pf-shadow-soft);
  }
  .pricing-table td {
    display: block;
    padding: 6px 0;
    border-bottom: none;
    white-space: normal !important;
  }
  .pricing-table td::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-headline);
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--pf-navy-60);
    margin-bottom: 4px;
  }
  .pricing-table td:first-child {
    font-size: 18px;
    border-bottom: 1px solid var(--pf-line);
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
  .pricing-table td:first-child::before { display: none; }
}

/* Reduced motion — respektiert OS-Setting */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .btn:hover,
  details summary::after {
    transition: none;
    transform: none;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Print — pragmatic */
@media print {
  .site-header,
  .nav-cta,
  .nav-toggle,
  .mobile-panel,
  .hero-actions,
  .form-grid,
  .lead-form,
  .footer-links,
  .skip-link { display: none !important; }
  .hero,
  .section-dark,
  .cta-panel,
  .site-footer {
    background: var(--pf-white) !important;
    color: var(--pf-navy) !important;
  }
  .hero *,
  .section-dark *,
  .cta-panel *,
  .site-footer * { color: var(--pf-navy) !important; }
  body { line-height: 1.4; }
  .section { padding: 24px 0; page-break-inside: avoid; }
}
