/* reifenplan.de — site styles.
   Tokens live in css/tokens/ (verbatim from the design handoff — never edit them there).
   Every visual value here is copied from design/handoff/README.md or the 1a artboards. */

/* ── Site-level tokens (values the design system lacks) ───────────── */
:root {
  --rp-signal: #f94f50;          /* closing band (spec §6.10); from the handoff's mint block — Lime has no red */
  --site-content-max: 1280px;    /* the artboard width; the token --rp-content-max is the app's */
  --site-gutter: clamp(18px, 3.125vw, 40px); /* 40px at 1280; shrinks fluidly below, so the header never wraps above the breakpoint */
  --site-shadow-hero: 0 18px 44px rgba(16,41,76,.13);        /* 1a hero product frame */
  --site-shadow-hero-mobile: 0 10px 26px rgba(16,41,76,.1);  /* 1a·mobil product card */
}

/* ── Layout ───────────────────────────────────────────────────────── */
[hidden] { display: none !important; }  /* author display rules must never resurrect a hidden element */
.wrap {
  max-width: var(--site-content-max);
  margin-inline: auto;
  padding-inline: var(--site-gutter);
}

/* ── Icons: inline <use> of the sprite; colour comes from CSS ─────── */
.ph {
  display: block;
  flex: none;
  fill: currentColor;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ── Controls ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--rp-radius-8);
  font: var(--rp-role-button);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--rp-transition-control), color var(--rp-duration-base) var(--rp-ease);
}
.btn:active { transform: var(--rp-press-shift); }

.btn-primary { background: var(--rp-action-primary-bg); color: var(--rp-action-primary-fg); }
.btn-primary:hover { background: var(--rp-action-primary-bg-hover); color: var(--rp-action-primary-fg); }

/* Full-width mobile CTA (1a·mobil hero / CTA band): 46px, 700 14px */
.btn-block {
  display: flex;
  width: 100%;
  height: 46px;
  font-size: 14px;
}
.btn-secondary {
  background: var(--rp-action-secondary-bg);
  border: 1px solid var(--rp-action-secondary-border);
  color: var(--rp-action-secondary-fg);
}
.btn-secondary:hover { background: var(--rp-surface-subtle); border-color: var(--rp-border-hover); color: var(--rp-action-secondary-fg); }
.btn-lg { height: 46px; padding: 0 22px; font-size: 14px; }
.btn-secondary.btn-lg { padding: 0 20px; }
.btn-inverse,
.btn-inverse.btn-lg { background: var(--rp-white); color: var(--rp-navy-dark); padding: 0 24px; }
.btn-inverse:hover { background: var(--rp-surface-subtle); color: var(--rp-navy-dark); }

/* ── Header (1a: 64px white, #E2E8F0 rule; 1a·mobil: 56px) ───────── */
.site-header {
  height: 64px;                  /* border-box: includes the 1px rule, like the mockup */
  background: var(--rp-white);
  border-bottom: 1px solid var(--rp-border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1875vw, 28px);
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 8px;
  text-decoration: none;
}
.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--rp-radius-10);
  background: var(--rp-lime);
  color: var(--rp-navy-dark);
}
.brand-name {
  font: var(--rp-weight-bold) 17px/1 var(--rp-font-ui);
  letter-spacing: -.5px;
  color: var(--rp-navy-dark);
}

.site-nav {
  display: flex;
  gap: clamp(12px, 1.71875vw, 22px);
}
.site-nav a,
.site-login {
  font: var(--rp-weight-semibold) var(--rp-text-13)/1 var(--rp-font-ui);
  color: var(--rp-navy);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--rp-duration-base) var(--rp-ease);
}
.site-nav a:hover,
.site-login:hover { color: var(--rp-navy-dark); }

.site-header-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1875vw, 28px);
  margin-left: auto;
}

/* Burger — only rendered ≤ 760px; 36px square, #CBD5E1 border (1a·mobil) */
.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--rp-border-strong);
  border-radius: var(--rp-radius-8);
  background: var(--rp-white);
  color: var(--rp-navy);
  transition: var(--rp-transition-control);
}
.burger:hover { background: var(--rp-surface-subtle); border-color: var(--rp-border-hover); }
.burger:active { transform: var(--rp-press-shift); }
.burger[aria-expanded="true"] .burger-open,
.burger[aria-expanded="false"] .burger-close { display: none; }

/* Mobile nav panel — sits directly under the header; no animation */
.mobile-nav {
  display: none;
  padding: 6px var(--site-gutter) 14px;
  background: var(--rp-white);
  border-bottom: 1px solid var(--rp-border);
}
.mobile-nav a:not(.btn) {
  display: flex;
  align-items: center;
  height: 44px;
  font: var(--rp-weight-semibold) var(--rp-text-15)/1 var(--rp-font-ui);
  color: var(--rp-navy);
  text-decoration: none;
  transition: color var(--rp-duration-base) var(--rp-ease);
}
.mobile-nav a:not(.btn):hover { color: var(--rp-navy-dark); }
.mobile-nav .btn { margin-top: 8px; }

/* ── Footer (1a: Navy-dark, 44/36px; 1a·mobil: 24px, one text line) ── */
.site-footer {
  background: var(--rp-navy-dark);
  color: var(--rp-text-on-navy-muted);
}
.site-footer .wrap { padding-block: 44px 36px; }

.site-footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.site-footer .brand { gap: 9px; margin-right: 0; }
.site-footer .brand-tile {
  width: 26px;
  height: 26px;
  border-radius: var(--rp-radius-9);
  background: rgba(219,238,0,.15);
  color: var(--rp-lime);
}
.site-footer .brand-name {
  font-size: 14px;
  letter-spacing: -.4px;
  color: var(--rp-white);
}
.footer-brand p {
  margin: 14px 0 0;
  max-width: 26em;
  font: var(--rp-weight-regular) var(--rp-text-12)/1.6 var(--rp-font-ui);
}
.footer-line { display: none; margin: 0; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font: var(--rp-weight-regular) var(--rp-text-12)/1.3 var(--rp-font-ui);
}
.footer-nav a {
  color: var(--rp-text-on-navy-muted);
  text-decoration: none;
  transition: color var(--rp-duration-base) var(--rp-ease);
}
.footer-nav a:hover { color: var(--rp-white); }

.site-footer-legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  font: var(--rp-weight-regular) var(--rp-text-11)/1.4 var(--rp-font-ui);
  color: #8fa8c7;
}

/* ── Page sections: shared ──────────────────────────────────────── */
.section { border-top: 1px solid var(--rp-border); }
.section-white { background: var(--rp-white); }
.section-ground { background: var(--rp-background); }
.section .wrap { padding-block: 56px 60px; }

.eyebrow {
  margin: 0;
  font: var(--rp-weight-bold) var(--rp-text-11)/1.3 var(--rp-font-ui);
  letter-spacing: var(--rp-tracking-eyebrow);
  text-transform: uppercase;
  color: var(--rp-eyebrow);
}
.section-head h2 {
  margin: 12px 0 4px;
  font: var(--rp-weight-bold) 34px/1.12 var(--rp-font-ui);
  letter-spacing: -1px;
  color: var(--rp-heading);
}
.section-head h2.h2-sm { margin: 12px 0 10px; font-size: 28px; line-height: 1.15; letter-spacing: -.8px; }
.section-p {
  margin: 0;
  font: var(--rp-weight-regular) var(--rp-text-15)/1.5 var(--rp-font-ui);
  color: var(--rp-text-secondary);
  max-width: 52em;
}
.section-p.p-sm { font-size: 14px; line-height: 1.6; max-width: 34em; }
.section-p.p-36 { max-width: 36em; }
/* The `font:` shorthand on td and dd (higher specificity) and on .roi-card-value (later in source)
   resets font-variant-numeric; the second selector, at (0,2,0), wins over all of them. */
.num,
.section .num { font-variant-numeric: tabular-nums; }

/* Product panel — the card every "picture of the app" uses */
.panel {
  background: var(--rp-surface);
  border: var(--rp-border-card);
  border-radius: var(--rp-radius-12);
  box-shadow: var(--rp-shadow-card);
  overflow: hidden;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 52px;
  padding: 0 17px;
  border-bottom: 1px solid var(--rp-divider);
}
.panel-title { font: var(--rp-weight-bold) var(--rp-text-15)/1.2 var(--rp-font-ui); letter-spacing: -.15px; color: var(--rp-heading); }
.panel-sub { margin-top: 2px; font: var(--rp-weight-regular) var(--rp-text-11)/1.35 var(--rp-font-ui); color: var(--rp-text-secondary); }
.panel-action {
  display: inline-flex;
  align-items: center;
  flex: none;
  height: 28px;
  padding: 0 10px;
  border-radius: var(--rp-radius-6);
  border: var(--rp-border-control);
  font: var(--rp-weight-bold) var(--rp-text-11)/1 var(--rp-font-ui);
  color: var(--rp-navy);
  white-space: nowrap;
}

/* Data table (handoff DataTable): 34px head, 55px rows, #EDF1F5 dividers */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th {
  height: 34px;
  padding: 0 15px;
  text-align: left;
  font: var(--rp-weight-bold) var(--rp-text-10)/1 var(--rp-font-ui);
  letter-spacing: var(--rp-tracking-tablehead);
  text-transform: uppercase;
  color: var(--rp-text-secondary);
  background: var(--rp-surface-table-head);
  white-space: nowrap;
}
.table td {
  height: 55px;
  padding: 0 15px;
  font: var(--rp-weight-regular) var(--rp-text-11)/1.35 var(--rp-font-ui);
  color: var(--rp-text);
  border-top: 1px solid var(--rp-divider);
  transition: background var(--rp-duration-fast) var(--rp-ease);
}
.table tbody tr:hover td { background: var(--rp-surface-row-hover); }
.cell-main { font-weight: var(--rp-weight-semibold); font-size: var(--rp-text-11-5); color: var(--rp-heading); }
.col-96 { width: 96px; }
.col-104 { width: 104px; }

/* Status pills: 19px, 700 9.5px, ink/tint per state */
.pill {
  display: inline-flex;
  align-items: center;
  height: 19px;
  padding: 0 8px;
  border-radius: var(--rp-radius-pill);
  font: var(--rp-weight-bold) var(--rp-text-9-5)/1 var(--rp-font-ui);
  letter-spacing: var(--rp-tracking-tablehead);
  text-transform: uppercase;
  white-space: nowrap;
}
.pill-success { background: var(--rp-success-soft); color: var(--rp-success-text); }
.pill-warning { background: var(--rp-warning-soft); color: var(--rp-warning-text); }
.pill-error { background: var(--rp-error-soft); color: #a81f20; }
.pill-neutral { background: var(--rp-navy-soft); color: var(--rp-navy); }

/* Two-up bands (§6.4, §6.5, §6.7): text left, #F8FAFC aside right, bleeding to the viewport edge */
.two-up .wrap { display: grid; grid-template-columns: 1fr 1fr; padding-block: 0; }
.two-up-main { min-width: 0; padding-block: 52px; padding-right: 40px; }
.aside-panel {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 36px 40px;
  background: var(--rp-surface-subtle);
  border-left: 1px solid var(--rp-border);
  box-shadow: 0 0 0 100vw var(--rp-surface-subtle);  /* spread paints grey all around …            */
  clip-path: inset(0 -100vw 0 0);                      /* … and the clip keeps only the right-hand run */
}
.aside-panel > * { width: 100%; }

/* ── §6.2 Hero (1a: 1.02fr/1.28fr, 54px H1, product frame) ─────── */
.hero { border-top: 0; }
.hero .wrap {
  display: grid;
  grid-template-columns: 1.02fr 1.28fr;
  gap: 48px;
  align-items: center;
  padding-block: 64px 56px;
}
.hero-copy { min-width: 0; }
.hero h1 {
  margin: 16px 0 0;
  /* 54px/-1.6px at 1280 (artboard), 32px/-1px at the breakpoint; fluid between so the
     two-column hero doesn't wrap the headline into eight lines on a 768px tablet */
  font: var(--rp-weight-bold) clamp(32px, 4.21875vw, 54px)/1.04 var(--rp-font-ui);
  letter-spacing: clamp(-1.6px, -0.03em, -1px);
  color: var(--rp-heading);
  text-wrap: balance;
}
.hero .lead {
  margin: 20px 0 0;
  font: var(--rp-weight-regular) 16px/1.55 var(--rp-font-ui);
  color: var(--rp-text-secondary);
  max-width: 38em;
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.hero-ctas .btn-primary { gap: 8px; box-shadow: var(--rp-shadow-button); }
.frame {
  min-width: 0;
  padding: 18px;
  background: var(--rp-background);
  border: var(--rp-border-card);
  border-radius: var(--rp-radius-12);
  box-shadow: var(--site-shadow-hero);
}

/* ── §6.3 Saisonwechsel (1a Umstieg step list) ──────────────────── */
.saison .wrap { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 34px; align-items: start; }
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  border-top: 1px solid var(--rp-divider);
}
.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--rp-divider);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: var(--rp-radius-circle);
  background: var(--rp-navy-soft);
  font: var(--rp-weight-bold) var(--rp-text-11)/1 var(--rp-font-ui);
  font-variant-numeric: tabular-nums;
  color: var(--rp-navy);
}
.step-title { display: block; font: var(--rp-weight-semibold) var(--rp-text-13)/1.4 var(--rp-font-ui); color: var(--rp-heading); }
.step-text { display: block; margin-top: 2px; font: var(--rp-weight-regular) var(--rp-text-13)/1.4 var(--rp-font-ui); color: var(--rp-text-secondary); }

/* ── §6.4 ROI (1a two-up band): sliders left, result cards right ─── */
.section-head h2.roi-h2 { margin-bottom: 6px; }
.section-p.roi-p { margin-bottom: 22px; }
.roi { display: flex; flex-direction: column; gap: 18px; max-width: 420px; }
.roi-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font: var(--rp-weight-bold) var(--rp-text-11)/1.3 var(--rp-font-ui);
  color: var(--rp-text);
}
.roi-row output { color: var(--rp-navy); }
.roi input[type="range"] { display: block; width: 100%; margin: 8px 0 0; accent-color: var(--rp-lime); }
.aside-panel.roi-aside { flex-direction: column; justify-content: center; gap: 18px; padding: 52px 0 52px 40px; }
.roi-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roi-card {
  padding: 19px 20px;
  background: var(--rp-surface);
  border: var(--rp-border-card);
  border-radius: var(--rp-radius-12);
  box-shadow: var(--rp-shadow-card);
}
.roi-card-lime { background: var(--rp-lime); border-color: var(--rp-lime-border); box-shadow: none; }
.roi-card-label { font: var(--rp-weight-regular) var(--rp-text-11)/1.3 var(--rp-font-ui); color: var(--rp-text-secondary); }
.roi-card-lime .roi-card-label { color: var(--rp-navy-dark); }
.roi-card-value {
  display: block;
  margin-top: 8px;
  font: var(--rp-weight-bold) var(--rp-text-27)/1 var(--rp-font-ui);
  letter-spacing: var(--rp-tracking-metric);
  color: var(--rp-heading);
}
.roi-note { margin: 0; font: var(--rp-weight-regular) var(--rp-text-12)/1.55 var(--rp-font-ui); color: var(--rp-text-secondary); }

/* ── §6.5 Fahrzeugschein: filled vehicle-form panel (REI-15 swaps in the clip) ── */
.aufnahme .wrap { grid-template-columns: 1.1fr 1fr; }
.clip-slot { margin: 0; }
.clip-slot video { display: block; width: 100%; height: auto; border-radius: var(--rp-radius-12); }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; margin: 0; padding: 17px; }
.field-wide { grid-column: 1 / -1; }
.field dt { font: var(--rp-weight-bold) var(--rp-text-11)/1.3 var(--rp-font-ui); color: var(--rp-heading); }
.field dd {
  display: flex;
  align-items: center;
  height: var(--rp-control-h);
  margin: 5px 0 0;
  padding: 0 12px;
  background: var(--rp-surface-input);
  border: var(--rp-border-control);
  border-radius: var(--rp-radius-8);
  font: var(--rp-weight-regular) var(--rp-text-13)/1 var(--rp-font-ui);
  color: var(--rp-heading);
}

/* ── §6.6 Module list (1b: icon · title · one line) ─────────────── */
.module-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  background: var(--rp-surface);
  border: var(--rp-border-card);
  border-radius: var(--rp-radius-12);
  box-shadow: var(--rp-shadow-card);
  overflow: hidden;
}
.module-list li {
  display: grid;
  grid-template-columns: 44px 240px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rp-divider);
}
.module-list li:last-child { border-bottom: 0; }
.module-list .ph { color: var(--rp-navy); }
.module-title { font: var(--rp-weight-bold) 14px/1.25 var(--rp-font-ui); letter-spacing: -.15px; color: var(--rp-heading); }
.module-text { font: var(--rp-weight-regular) 12.5px/1.5 var(--rp-font-ui); color: var(--rp-text-secondary); }

/* ── §6.7 Für Ihre Kunden: 1g portal table ──────────────────────── */
.kunden .wrap { grid-template-columns: 1fr 1.05fr; }

/* ── §6.8 Aus der Werkstatt — hidden until REI-6 supplies a real quote ── */
.quote-section .wrap { padding-block: 56px; }
.quote { margin: 0; max-width: 46em; }
.quote blockquote {
  margin: 18px 0 0;
  font: var(--rp-weight-regular) 26px/1.35 var(--rp-font-ui);
  letter-spacing: -.6px;
  color: var(--rp-heading);
  text-wrap: pretty;
}
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: var(--rp-radius-circle);
  background: var(--rp-avatar-default);
  font: var(--rp-weight-bold) var(--rp-text-13)/1 var(--rp-font-ui);
  color: var(--rp-navy);
}
.quote-name { display: block; font: var(--rp-weight-bold) 12.5px/1.2 var(--rp-font-ui); color: var(--rp-heading); }
.quote-from { display: block; font: var(--rp-weight-regular) var(--rp-text-11)/1.3 var(--rp-font-ui); color: var(--rp-text-muted); }

/* ── §6.9 Ihre Daten ────────────────────────────────────────────── */
.trust {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 46em;
}
.trust li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font: var(--rp-weight-regular) var(--rp-text-15)/1.5 var(--rp-font-ui);
  color: var(--rp-text);
}
.trust .ph { margin-top: 2px; color: var(--rp-success); }

/* ── §6.10 Closing band (1b signal red) — the system's only white-on-fill ── */
.band { border-top: 0; background: var(--rp-signal); color: var(--rp-white); }
.band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-block: 44px;
}
.band-copy { min-width: 0; }
.band h2 { margin: 0 0 6px; font: var(--rp-weight-bold) 30px/1.12 var(--rp-font-ui); letter-spacing: -.9px; color: var(--rp-white); }
/* White at 14px regular is 3.35:1 on this background — fails WCAG AA normal-text (4.5:1), and no
   palette red text clears 4.5:1 here either (REI-18). Matching the H2 above: bold + >=18.66px
   qualifies as "large text" (AA needs only 3:1), which pure white already clears. */
.band p { margin: 0; font: var(--rp-weight-bold) var(--rp-text-19)/1.4 var(--rp-font-ui); color: var(--rp-white); }
.band .btn { flex: none; }

/* ── Mobile ───────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  :root { --site-gutter: 18px; }

  .site-header { height: 56px; }
  .site-header .wrap {
    justify-content: space-between;
    gap: 0;
  }
  .brand { gap: 9px; margin-right: 0; }
  .brand-tile { width: 27px; height: 27px; border-radius: var(--rp-radius-9); } /* header only; the footer's tile is scoped by .site-footer .brand-tile and hidden at this width */
  .brand-tile .ph { width: 17px; height: 17px; }
  .brand-name { font-size: 15px; letter-spacing: -.4px; }
  .site-nav,
  .site-cta { display: none; }
  .site-header-actions { gap: 10px; }
  .site-login { font-size: var(--rp-text-12); }
  .burger { display: flex; }
  .mobile-nav:not([hidden]) { display: block; }

  .site-footer .wrap { padding-block: 24px; }
  .site-footer-row { flex-direction: column; gap: 12px; }
  .footer-brand { display: none; }
  .footer-line {
    display: block;
    font: var(--rp-weight-regular) var(--rp-text-11-5)/1.6 var(--rp-font-ui);
  }
  .footer-nav {
    gap: 14px;
    font: var(--rp-weight-regular) var(--rp-text-11-5)/1.6 var(--rp-font-ui);
  }
  .site-footer-legal { margin-top: 18px; padding-top: 14px; }

  .section .wrap { padding-block: 28px; }
  .two-up .wrap { padding-block: 0; }
  .eyebrow { font-size: var(--rp-text-10); }
  .section-head h2,
  .section-head h2.h2-sm { font-size: 24px; line-height: 1.14; letter-spacing: -.7px; }
  .section-p,
  .section-p.p-sm { font-size: var(--rp-text-13); line-height: 1.5; }
  .table th,
  .table td { padding: 0 12px; }
  .table td { height: auto; padding-block: 12px; }
  .col-96,
  .col-104 { width: auto; }
  .two-up .wrap { grid-template-columns: 1fr; }
  .two-up-main { padding: 28px 0; }
  .aside-panel {
    margin-inline: calc(-1 * var(--site-gutter));
    padding: 22px var(--site-gutter);
    border-left: 0;
    border-top: 1px solid var(--rp-border);
    box-shadow: none;
    clip-path: none;
  }

  .hero .wrap { grid-template-columns: 1fr; gap: 0; padding-block: 30px 28px; }
  .hero h1 { margin-top: 12px; font-size: 32px; line-height: 1.08; letter-spacing: -1px; }
  .hero .lead { margin-top: 14px; font-size: 14px; }
  .hero-ctas { flex-direction: column; gap: 9px; margin-top: 20px; }
  .hero-ctas .btn { display: flex; width: 100%; }
  .hero-ctas .btn-primary { height: 48px; box-shadow: none; }
  .frame {
    margin: 28px calc(-1 * var(--site-gutter)) -28px;
    padding: 20px var(--site-gutter);
    border: 0;
    border-top: 1px solid var(--rp-border);
    border-radius: 0;
    box-shadow: none;
  }
  .frame .panel { box-shadow: var(--site-shadow-hero-mobile); }

  .saison .wrap { grid-template-columns: 1fr; gap: 16px; }
  .roi { max-width: none; }
  .aside-panel.roi-aside { padding: 22px var(--site-gutter) 28px; }
  .roi-results { grid-template-columns: 1fr; }

  .aufnahme .wrap { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr; }
  .module-list li { grid-template-columns: 32px 1fr; gap: 2px 12px; padding: 13px 15px; }
  .module-list .ph { width: 20px; height: 20px; grid-row: 1 / span 2; }
  .module-title { font-size: var(--rp-text-13); }
  .module-text { grid-column: 2; font-size: var(--rp-text-11-5); line-height: 1.4; }

  .kunden .wrap { grid-template-columns: 1fr; }
  .quote blockquote { font-size: 20px; letter-spacing: -.4px; }

  .trust li { font-size: 14px; }
  .band .wrap { display: block; padding-block: 26px; }
  .band h2 { font-size: 24px; letter-spacing: -.7px; }
  .band .btn { display: flex; width: 100%; margin-top: 14px; }
}
