/* ==========================================================================
   pinlio – Stylesheet
   Mobile-first. Alle Werte als Design-Tokens in :root.
   Breakpoints: 768px (Tablet), 1024px (Desktop)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Schriften (lokal gehostet – Dateien in /fonts ablegen, siehe DESIGN.md)
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Farben */
  --color-petrol: #10363D;
  --color-petrol-dark: #0B2328;
  --color-petrol-light: #17404A;
  --color-petrol-line: #2E5259;
  --color-honey: #FBAC19;
  --color-honey-dark: #F29F05;
  --color-linen: #FAF6EE;
  --color-sand: #F1E6D0;
  --color-sand-line: #E3DAC8;
  --color-line: #EDE5D6;
  --color-slate: #5E7478;
  --color-slate-light: #9FB0B3;
  --color-white: #FFFFFF;
  --color-text: #10363D;
  --color-text-muted: #3A5459;
  --color-text-on-dark: #FAF6EE;
  --color-text-on-dark-muted: #C9D6D8;
  --color-text-on-dark-subtle: #9FB5B8;
  --color-success: #2F8F6B;
  --color-error: #C0453A;
  --color-alert: #E0584A;

  /* Schriften */
  --font-heading: "Gabarito", system-ui, sans-serif;
  --font-body: "Schibsted Grotesk", system-ui, sans-serif;
  --font-mono: ui-monospace, Menlo, monospace;
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Typo-Skala */
  --fs-xs: 13px;
  --fs-s: 15px;
  --fs-base: 17px;
  --fs-m: 18px;
  --fs-l: 20px;
  --fs-xl: 24px;
  --fs-2xl: clamp(26px, 2.6vw, 34px);
  --fs-lead: clamp(18px, 1.5vw, 21px);
  --fs-h2: clamp(34px, 4.4vw, 56px);
  --fs-h1: clamp(38px, 5.2vw, 66px);
  --fs-display: clamp(64px, 9vw, 120px);
  --lh-tight: 1.02;
  --lh-heading: 1.15;
  --lh-body: 1.55;
  --ls-heading: -0.03em;
  --ls-logo: -0.045em;
  --ls-label: 0.08em;

  /* Abstände */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-s: 12px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: clamp(64px, 8vw, 112px);
  --container: 1240px;
  --container-narrow: 920px;
  --container-text: 800px;
  --header-height: 77px;

  /* Radien – Sprechblasen-Ecke unten links */
  --radius-xs: 10px 10px 10px 3px;
  --radius-s: 16px 16px 16px 4px;
  --radius-btn: 20px 20px 20px 4px;
  --radius-m: 24px 24px 24px 6px;
  --radius-l: 32px 32px 32px 8px;
  --radius-xl: 40px 40px 40px 8px;
  --radius-reply: 22px 22px 5px 22px;
  --radius-pill: 999px;
  --radius-round: 50%;
  --radius-mark: 50% 50% 50% 0;

  /* Schatten */
  --shadow-s: 0 8px 24px rgba(16, 54, 61, 0.10);
  --shadow-m: 0 20px 50px rgba(16, 54, 61, 0.14);
  --shadow-l: 0 30px 80px rgba(16, 54, 61, 0.24);
  --shadow-top: 0 -8px 24px rgba(16, 54, 61, 0.08);

  /* Bewegung */
  --transition: 180ms ease;
  --mark-rotation: -20deg;
}

/* --------------------------------------------------------------------------
   Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-linen);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-tight);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: underline; text-decoration-color: var(--color-honey); text-underline-offset: 3px; }
a:hover { color: var(--color-slate); }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }
blockquote { margin: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--color-honey); outline-offset: 3px; }

/* Sektions-Klassen (section-hero, section-pakete …) sind reine Hooks für das Block-Theme
   und tragen bewusst keine eigenen Styles. */

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-l); }
.container--narrow { max-width: var(--container-narrow); }
.container--text { max-width: var(--container-text); }

.section { padding-block: var(--space-section); }
.section--tight { padding-block: var(--space-3xl); }
.section--flush-top { padding-top: 0; }

.bg-white { background: var(--color-white); }
.bg-linen { background: var(--color-linen); }
.bg-sand { background: var(--color-sand); }
.bg-honey { background: var(--color-honey); }
.bg-petrol { background: var(--color-petrol); color: var(--color-text-on-dark); }
.bg-petrol-dark { background: var(--color-petrol-dark); color: var(--color-text-on-dark); }

.stack { display: flex; flex-direction: column; gap: var(--space-l); }
.stack--xs { gap: var(--space-xs); }
.stack--s { gap: var(--space-m); }
.stack--l { gap: var(--space-xl); }
.stack--xl { gap: var(--space-2xl); }

.row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-m); }
.row--between { justify-content: space-between; }
.row--end { align-items: flex-end; }

.split { display: grid; gap: var(--space-2xl); align-items: center; }
.split--top { align-items: start; }

.grid { display: grid; gap: var(--space-l); grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--grid-min, 280px)), 1fr)); }
.grid--s { --grid-min: 220px; }
.grid--m { --grid-min: 260px; }
.grid--l { --grid-min: 300px; }
.grid--xl { --grid-min: 360px; }

@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); }
  .split--wide-left { grid-template-columns: 1.2fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.2fr; }
  .split--reverse > :first-child { order: 2; }
}

/* --------------------------------------------------------------------------
   Typografie-Bausteine
   -------------------------------------------------------------------------- */
.eyebrow { font-size: var(--fs-s); font-weight: var(--fw-semibold); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--color-slate); }
.bg-petrol .eyebrow, .bg-petrol-dark .eyebrow { color: var(--color-honey); }
.bg-honey .eyebrow, .bg-sand .eyebrow { color: var(--color-text-muted); }

.h1 { font-size: var(--fs-h1); line-height: 1; }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-2xl); letter-spacing: -0.02em; line-height: 1.1; }
.h4 { font-size: var(--fs-xl); letter-spacing: -0.01em; line-height: 1.2; font-weight: var(--fw-bold); }
.display { font-size: var(--fs-display); letter-spacing: -0.05em; line-height: 0.9; }
.lead { font-size: var(--fs-lead); line-height: var(--lh-body); color: var(--color-text-muted); max-width: 560px; }
.bg-petrol .lead, .bg-petrol-dark .lead { color: var(--color-text-on-dark-muted); }
.bg-honey .lead { color: var(--color-petrol); }
.text-muted { color: var(--color-text-muted); }
.text-small { font-size: var(--fs-s); color: var(--color-slate); }
.text-honey { color: var(--color-honey); }
.text-dim { color: var(--color-text-on-dark-subtle); }
.strike { color: var(--color-slate); text-decoration: line-through; text-decoration-color: var(--color-alert); text-decoration-thickness: 4px; }

.section-head { display: flex; flex-direction: column; gap: var(--space-m); max-width: 760px; }
.section-head--center { align-items: center; text-align: center; margin-inline: auto; }
.section-head--split { max-width: none; flex-direction: row; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: var(--space-l); }
.section-head--split > p { max-width: 440px; }

.link-arrow { font-weight: var(--fw-bold); font-size: var(--fs-base); }
.bg-petrol .link-arrow, .bg-petrol-dark .link-arrow { color: var(--color-text-on-dark); }

/* --------------------------------------------------------------------------
   Icons (SVG-Dateien als Maske, Farbe = currentColor)
   -------------------------------------------------------------------------- */
.icon {
  display: inline-block; flex: none;
  width: var(--icon-size, 1.25em); height: var(--icon-size, 1.25em);
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.icon--s { --icon-size: 16px; }
.icon--m { --icon-size: 22px; }
.icon--l { --icon-size: 28px; }
.icon--xl { --icon-size: 52px; }
.i-star { --icon: url("icons/star.svg"); }
.i-message-circle { --icon: url("icons/message-circle.svg"); }
.i-camera { --icon: url("icons/camera.svg"); }
.i-clock { --icon: url("icons/clock.svg"); }
.i-megaphone { --icon: url("icons/megaphone.svg"); }
.i-file-text { --icon: url("icons/file-text.svg"); }
.i-bell { --icon: url("icons/bell.svg"); }
.i-trending-up { --icon: url("icons/trending-up.svg"); }
.i-map-pin { --icon: url("icons/map-pin.svg"); }
.i-phone { --icon: url("icons/phone.svg"); }
.i-calendar { --icon: url("icons/calendar.svg"); }
.i-check { --icon: url("icons/check.svg"); }
.i-x { --icon: url("icons/x.svg"); }
.i-menu { --icon: url("icons/menu.svg"); }
.i-arrow-right { --icon: url("icons/arrow-right.svg"); }
.i-search { --icon: url("icons/search.svg"); }
.i-navigation { --icon: url("icons/navigation.svg"); }
.i-image-off { --icon: url("icons/image-off.svg"); }
.i-message-circle-off { --icon: url("icons/message-circle-off.svg"); }
.i-mouse-pointer-click { --icon: url("icons/mouse-pointer-click.svg"); }
.i-key-round { --icon: url("icons/key-round.svg"); }
.i-coffee { --icon: url("icons/coffee.svg"); }
.i-lightbulb { --icon: url("icons/lightbulb.svg"); }
.i-trophy { --icon: url("icons/trophy.svg"); }
.i-phone-off { --icon: url("icons/phone-off.svg"); }
.i-mail { --icon: url("icons/mail.svg"); }
.i-send { --icon: url("icons/send.svg"); }
.i-user { --icon: url("icons/user.svg"); }
.i-repeat { --icon: url("icons/repeat.svg"); }
.i-shield-check { --icon: url("icons/shield-check.svg"); }
.i-building-2 { --icon: url("icons/building-2.svg"); }
.i-refresh-cw { --icon: url("icons/refresh-cw.svg"); }
.i-plus { --icon: url("icons/plus.svg"); }
.i-hard-hat { --icon: url("icons/hard-hat.svg"); }
.i-calendar-x { --icon: url("icons/calendar-x.svg"); }
.i-phone-missed { --icon: url("icons/phone-missed.svg"); }
.i-shield-alert { --icon: url("icons/shield-alert.svg"); }
.i-image { --icon: url("icons/image.svg"); }
.i-utensils { --icon: url("icons/utensils.svg"); }
.i-info { --icon: url("icons/info.svg"); }
.i-book-open { --icon: url("icons/book-open.svg"); }
.i-zap { --icon: url("icons/zap.svg"); }
.i-search-check { --icon: url("icons/search-check.svg"); }
.i-phone-incoming { --icon: url("icons/phone-incoming.svg"); }
.i-lock { --icon: url("icons/lock.svg"); }
.i-badge-check { --icon: url("icons/badge-check.svg"); }
.i-circle-slash { --icon: url("icons/circle-slash.svg"); }
.i-receipt { --icon: url("icons/receipt.svg"); }
.i-copy { --icon: url("icons/copy.svg"); }
.i-chevron-down { --icon: url("icons/chevron-down.svg"); }

.icon-box {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 56px; height: 56px; border-radius: var(--radius-s);
  background: var(--color-sand); color: var(--color-petrol);
  --icon-size: 26px;
}
.icon-box--s { width: 44px; height: 44px; --icon-size: 20px; }
.icon-box--l { width: 72px; height: 72px; --icon-size: 32px; }
.icon-box--dark { background: var(--color-petrol); color: var(--color-honey); }
.icon-box--honey { background: var(--color-honey); color: var(--color-petrol); }
.icon-box--white { background: var(--color-white); color: var(--color-petrol); }
.icon-box--num { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-l); }

/* --------------------------------------------------------------------------
   Bildmarke (Sprechblasen-Pin) und Logo
   -------------------------------------------------------------------------- */
.mark {
  position: relative; display: inline-block; flex: none;
  width: var(--mark-size, 1em); height: var(--mark-size, 1em);
  border-radius: var(--radius-mark);
  background: var(--mark-color, var(--color-honey));
  transform: rotate(var(--mark-rotation));
}
.mark::after {
  content: ""; position: absolute; inset: 32.5%;
  border-radius: var(--radius-round);
  background: var(--mark-hole, var(--color-petrol));
}
.mark--s { --mark-size: 24px; }
.mark--m { --mark-size: 40px; }
.mark--l { --mark-size: 64px; }
.mark--xl { --mark-size: 120px; }
.mark--inverse { --mark-color: var(--color-petrol); --mark-hole: var(--color-honey); }
.mark--sand { --mark-color: var(--color-sand); --mark-hole: var(--color-linen); }
.mark--deep { --mark-color: var(--color-petrol-light); --mark-hole: var(--color-petrol); }
.mark--pin { transform: rotate(-45deg); --mark-color: var(--color-sand-line); }
.mark--pin::after, .mark--bubble::after { display: none; }
.mark--bubble { transform: none; --mark-color: var(--color-sand-line); }

.logo {
  display: inline-flex; align-items: center; gap: 0.16em;
  font-family: var(--font-heading); font-weight: var(--fw-extrabold);
  font-size: 30px; letter-spacing: var(--ls-logo); line-height: 1;
  color: var(--color-petrol); text-decoration: none;
}
.logo .mark { --mark-size: 0.74em; }
.logo__text { padding-bottom: 0.1em; }
.logo--light { color: var(--color-text-on-dark); }
.logo--l { font-size: 36px; }

.deco-mark { position: absolute; pointer-events: none; }

/* --------------------------------------------------------------------------
   Buttons, Chips, Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  padding: 18px 28px; border: 0; border-radius: var(--radius-btn);
  font-family: var(--font-body); font-size: var(--fs-m); font-weight: var(--fw-bold); line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  --icon-size: 20px;
}
.btn--primary { background: var(--color-honey); color: var(--color-petrol); }
.btn--primary:hover { background: var(--color-honey-dark); color: var(--color-petrol); }
.btn--dark { background: var(--color-petrol); color: var(--color-text-on-dark); }
.btn--dark:hover { background: var(--color-petrol-dark); color: var(--color-text-on-dark); }
.btn--outline { background: transparent; color: var(--color-petrol); box-shadow: inset 0 0 0 3px var(--color-petrol); }
.btn--outline:hover { background: var(--color-petrol); color: var(--color-text-on-dark); }
.btn--outline-light { background: transparent; color: var(--color-text-on-dark); box-shadow: inset 0 0 0 3px var(--color-text-on-dark); }
.btn--outline-light:hover { background: var(--color-text-on-dark); color: var(--color-petrol); }
.btn--s { padding: 13px 18px; font-size: var(--fs-s); border-radius: var(--radius-s); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-m); }

.chip {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  padding: 8px 14px; border-radius: var(--radius-pill);
  background: var(--color-sand); color: var(--color-petrol);
  font-size: var(--fs-s); font-weight: var(--fw-semibold); text-decoration: none;
  --icon-size: 16px;
}
.chip--white { background: var(--color-white); box-shadow: inset 0 0 0 1px var(--color-sand-line); }
.chip--honey { background: var(--color-honey); font-weight: var(--fw-bold); }
.chip--dark { background: var(--color-petrol); color: var(--color-text-on-dark); font-weight: var(--fw-bold); }
.chip--outline { background: transparent; box-shadow: inset 0 0 0 2px var(--color-slate-light); color: var(--color-slate); font-weight: var(--fw-bold); }
.chip-row { display: flex; flex-wrap: wrap; gap: var(--space-s); }

.trust-row { display: flex; flex-wrap: wrap; gap: var(--space-s) var(--space-l); font-size: var(--fs-base); font-weight: var(--fw-semibold); color: var(--color-text-muted); }
.trust-row li { display: flex; align-items: center; gap: var(--space-xs); }
.trust-row .icon { color: var(--color-petrol); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 238, 0.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-l); min-height: var(--header-height); }
.site-nav { display: none; }
.site-nav a { font-weight: var(--fw-semibold); text-decoration: none; padding-block: var(--space-2xs); }
.site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--color-honey); }
.site-header__actions { display: flex; align-items: center; gap: var(--space-s); }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0; border: 0; cursor: pointer;
  border-radius: var(--radius-s); background: transparent; color: var(--color-petrol);
  box-shadow: inset 0 0 0 2px var(--color-petrol); --icon-size: 24px;
}
.menu-toggle .i-x { display: none; }
.menu-open .menu-toggle { background: var(--color-petrol); color: var(--color-honey); }
.menu-open .menu-toggle .i-menu { display: none; }
.menu-open .menu-toggle .i-x { display: inline-block; }

.mobile-menu {
  display: none; position: fixed; inset: var(--header-height) 0 0 0; z-index: 39;
  overflow-y: auto; background: var(--color-linen); border-top: 1px solid var(--color-line);
}
.menu-open .mobile-menu { display: block; }
.menu-open { overflow: hidden; }
.mobile-menu__inner { display: flex; flex-direction: column; gap: var(--space-xl); max-width: 640px; margin-inline: auto; padding: var(--space-s) var(--space-l) var(--space-2xl); }
.mobile-menu__links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 4px; border-bottom: 1px solid var(--color-sand-line);
  font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 28px; letter-spacing: -0.02em;
  text-decoration: none; --icon-size: 22px;
}
.mobile-menu__links .icon { color: var(--color-slate-light); }
.mobile-menu__links a[aria-current="page"]::before { content: ""; width: 10px; height: 10px; margin-right: auto; margin-left: -18px; transform: translateX(-4px); border-radius: var(--radius-round); background: var(--color-honey); }
.mobile-menu__mail { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-s); padding: 18px; border-radius: var(--radius-s); background: var(--color-petrol); color: var(--color-text-on-dark); font-size: var(--fs-s); }
.mobile-menu__mail a { color: var(--color-text-on-dark); font-weight: var(--fw-bold); font-size: var(--fs-base); }
.mobile-menu__mail .icon { color: var(--color-honey); }

@media (min-width: 1024px) {
  .site-nav { display: flex; align-items: center; gap: 28px; }
  .menu-toggle, .mobile-menu { display: none !important; }
  .menu-open { overflow: auto; }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--color-petrol); color: var(--color-text-on-dark); }
.site-footer__inner { display: flex; flex-direction: column; gap: var(--space-2xl); padding-block: var(--space-3xl) var(--space-2xl); }
.site-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2xl); }
.site-footer__brand { display: flex; flex-direction: column; gap: 18px; max-width: 360px; }
.site-footer__claim { color: var(--color-text-on-dark-muted); }
.site-footer__mail { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-xl); color: var(--color-text-on-dark); text-decoration: none; }
.site-footer__cols { display: flex; flex-wrap: wrap; gap: var(--space-2xl) 56px; }
.footer-col { display: flex; flex-direction: column; gap: var(--space-s); max-width: 220px; }
.footer-col__title { font-size: var(--fs-s); font-weight: var(--fw-semibold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-honey); }
.footer-col a { color: var(--color-text-on-dark); text-decoration: none; }
.footer-col a:hover { color: var(--color-honey); }
.footer-col p { color: var(--color-text-on-dark-muted); line-height: 1.45; }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-m); padding-top: 28px; border-top: 1px solid var(--color-petrol-line); font-size: 14px; color: var(--color-text-on-dark-subtle); }
.site-footer__legal nav { display: flex; gap: 20px; }
.site-footer__legal a { color: var(--color-text-on-dark-subtle); text-decoration: none; }

/* Mobile CTA-Leiste */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; gap: 10px; padding: var(--space-s) var(--space-m) calc(var(--space-s) + env(safe-area-inset-bottom));
  background: var(--color-linen); border-top: 1px solid var(--color-sand-line); box-shadow: var(--shadow-top);
}
.sticky-cta .btn { flex: 1; padding: var(--space-m); font-size: var(--fs-base); border-radius: var(--radius-s); }
body.has-sticky-cta { padding-bottom: 84px; }
@media (min-width: 768px) {
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   Karten
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column; gap: var(--space-m);
  padding: var(--space-xl); border-radius: var(--radius-l);
  background: var(--color-white); color: var(--color-petrol);
}
.card--linen { background: var(--color-linen); }
.card--sand { background: var(--color-sand); }
.card--honey { background: var(--color-honey); }
.card--petrol { background: var(--color-petrol); color: var(--color-text-on-dark); }
.card--line { box-shadow: inset 0 0 0 1px var(--color-line); }
.card--ring { box-shadow: inset 0 0 0 2px var(--color-petrol); }
.card--dashed { background: transparent; border: 2px dashed var(--color-sand-line); }
.card--shadow { box-shadow: var(--shadow-m); }
.card--flush { padding: 0; overflow: hidden; }
.card--xl { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-xl); }
.card__body { display: flex; flex-direction: column; gap: var(--space-m); padding: var(--space-xl); flex: 1; }
.card__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 28px; letter-spacing: -0.02em; line-height: 1.1; }
.card__title--s { font-size: 22px; font-weight: var(--fw-bold); line-height: 1.2; letter-spacing: -0.01em; }
.card__text { color: var(--color-text-muted); line-height: 1.5; }
.card--petrol .card__text { color: var(--color-text-on-dark-muted); }
.card--honey .card__text { color: var(--color-petrol); }
.card--petrol .card__title--accent { color: var(--color-honey); }
.card__foot { margin-top: auto; }
.card__media { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.card__badge { position: absolute; top: -16px; right: var(--space-xl); }
.card--has-badge { position: relative; }

/* Punktkarte (Zahl + Titel + Text) */
.num-card__num { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 64px; line-height: 0.8; color: var(--color-line); }
.card--petrol .num-card__num { color: var(--color-petrol-line); }
.num-card__head { display: flex; justify-content: space-between; align-items: flex-start; }

/* --------------------------------------------------------------------------
   Listen
   -------------------------------------------------------------------------- */
.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: var(--space-s); line-height: 1.4; }
.check { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 26px; height: 26px; border-radius: var(--radius-round); background: var(--color-sand); color: var(--color-petrol); --icon-size: 14px; }
.check--honey { background: var(--color-honey); }
.check--dark { background: var(--color-petrol); color: var(--color-honey); }

.icon-list { display: flex; flex-direction: column; gap: var(--space-m); }
.icon-list li { display: flex; align-items: center; gap: var(--space-m); font-size: var(--fs-m); line-height: 1.4; }

.num-list { display: flex; flex-direction: column; gap: 22px; }
.num-list li { display: flex; gap: 18px; align-items: flex-start; }
.num-list__title { font-weight: var(--fw-bold); font-size: var(--fs-m); }

/* --------------------------------------------------------------------------
   Pakete
   -------------------------------------------------------------------------- */
.pkg-grid { display: grid; gap: 28px; max-width: 980px; margin-inline: auto; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.pkg-card { position: relative; display: flex; flex-direction: column; gap: var(--space-l); padding: 40px; border-radius: 36px 36px 36px 8px; background: var(--color-white); }
.pkg-card--featured { background: var(--color-petrol); color: var(--color-text-on-dark); }
.pkg-card__badge { position: absolute; top: -16px; right: var(--space-xl); }
.pkg-card__name { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 44px; letter-spacing: var(--ls-heading); line-height: 1; }
.pkg-card--featured .pkg-card__name { color: var(--color-honey); }
.pkg-card__claim { font-size: var(--fs-m); color: var(--color-text-muted); }
.pkg-card--featured .pkg-card__claim { color: var(--color-text-on-dark-muted); }
.pkg-card .btn { margin-top: auto; }
.price { display: flex; align-items: baseline; gap: var(--space-xs); flex-wrap: wrap; }
.price__amount { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 60px; letter-spacing: var(--ls-heading); line-height: 1; }
.price__unit { font-size: 16px; color: var(--color-slate); }
.pkg-card--featured .price__unit { color: var(--color-text-on-dark-subtle); }

/* Wer-macht-was */
.task-list li { display: flex; justify-content: space-between; align-items: center; gap: var(--space-s); padding: var(--space-s) 0; border-bottom: 1px solid var(--color-line); }
.who { flex: none; padding: 5px 10px; border-radius: var(--radius-pill); font-size: var(--fs-xs); font-weight: var(--fw-bold); }
.who--wir { background: var(--color-petrol); color: var(--color-text-on-dark); }
.who--du { background: var(--color-honey); color: var(--color-petrol); }

/* Vergleichstabelle */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 8px; border-bottom: 1px solid var(--color-line); text-align: center; vertical-align: middle; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: var(--fw-regular); }
.compare-table thead th { border-bottom: 3px solid var(--color-petrol); font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-xl); }
.compare-table thead th small { display: block; font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-s); color: var(--color-slate); }
.compare-table .compare-table__group th { padding-top: 26px; border-bottom: 0; text-align: left; font-size: 14px; font-weight: var(--fw-bold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-slate); }
.compare-table .is-featured { background: var(--color-linen); }
.compare-table .dash { display: inline-block; width: 16px; height: 2px; background: var(--color-sand-line); vertical-align: middle; }
.compare-table .check { width: 32px; height: 32px; --icon-size: 18px; }

/* Vergleich Eintrag / pinlio */
.versus { display: flex; flex-direction: column; }
.versus__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--color-petrol-line); font-size: var(--fs-m); line-height: 1.35; }
.versus__row:last-child { border-bottom: 0; }
.versus__row--head { padding-bottom: var(--space-m); border-bottom: 2px solid var(--color-honey); font-size: 14px; font-weight: var(--fw-semibold); letter-spacing: 0.06em; text-transform: uppercase; }
.versus__old { color: var(--color-text-on-dark-subtle); }
.versus__new { font-weight: var(--fw-bold); }
.versus__row--head .versus__new { color: var(--color-honey); }

.versus-table { width: 100%; min-width: 620px; border-collapse: collapse; }
.versus-table th, .versus-table td { padding: 20px 8px; border-bottom: 1px solid var(--color-line); text-align: left; vertical-align: top; }
.versus-table thead th { border-bottom: 3px solid var(--color-petrol); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-slate); }
.versus-table td:first-child { font-weight: var(--fw-bold); color: var(--color-slate); }
.versus-table .old { color: var(--color-slate); }
.versus-table .new { font-weight: var(--fw-semibold); }
.versus-table .icon { vertical-align: -3px; margin-right: var(--space-xs); }
.table-scroll { overflow-x: auto; }

/* --------------------------------------------------------------------------
   Zeitleiste
   -------------------------------------------------------------------------- */
.timeline { display: flex; flex-direction: column; }
.timeline__item { display: grid; grid-template-columns: 76px 22px 1fr; gap: 0 var(--space-m); }
.timeline__date { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-l); padding-top: 2px; }
.timeline__track { display: flex; flex-direction: column; align-items: center; }
.timeline__dot { width: 18px; height: 18px; margin-top: 4px; border-radius: var(--radius-round); background: var(--color-petrol); }
.timeline__track::after { content: ""; flex: 1; width: 2px; background: var(--color-petrol); opacity: 0.25; }
.timeline__item:last-child .timeline__track::after { display: none; }
.timeline__body { display: flex; flex-direction: column; gap: 6px; padding-bottom: var(--space-xl); }
.timeline__title { font-weight: var(--fw-bold); font-size: 19px; }
.timeline__item--final .timeline__dot { width: 22px; height: 22px; border-radius: var(--radius-mark); transform: rotate(var(--mark-rotation)); background: var(--color-honey); box-shadow: 0 0 0 3px var(--color-petrol); }

/* Kapitel-Zeitleiste (Über uns, Warum kein Eintrag) */
.chapters { display: flex; flex-direction: column; }
.chapter { display: grid; grid-template-columns: 64px 1fr; gap: 0 var(--space-l); }
.chapter__marker { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.chapter__marker::after { content: ""; flex: 1; width: 2px; background: currentColor; opacity: 0.2; }
.chapter:last-child .chapter__marker::after { display: none; }
.chapter__body { display: flex; flex-direction: column; gap: 10px; padding-bottom: var(--space-2xl); }
.chapter:last-child .chapter__body { padding-bottom: 0; }
.chapter__label { font-size: 14px; font-weight: var(--fw-bold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-slate); }
.bg-petrol-dark .chapter__label { color: var(--color-text-on-dark-subtle); }
.chapter__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-2xl); letter-spacing: -0.02em; line-height: 1.1; }
.chapter__text { font-size: var(--fs-m); line-height: 1.6; color: var(--color-text-muted); max-width: 620px; }
.bg-petrol-dark .chapter__text { color: var(--color-text-on-dark-muted); }
.chapter-badge { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: var(--radius-m); background: var(--color-sand); font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-l); letter-spacing: -0.02em; }
.chapter-badge--dark { background: var(--color-petrol-light); color: var(--color-text-on-dark-subtle); --icon-size: 24px; }
.chapter-badge--alert { background: var(--color-alert); color: var(--color-white); --icon-size: 24px; }

/* --------------------------------------------------------------------------
   Mockups
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.hero__mark { position: absolute; left: 50%; top: 50%; --mark-size: min(520px, 90vw); translate: -50% -50%; animation: pin-turn 1.6s cubic-bezier(.6, 0, .2, 1) both; }
.hero__mark--static { animation: none; --mark-size: min(420px, 85vw); }
@keyframes pin-turn {
  0% { transform: rotate(-45deg) scale(.6); opacity: 0; }
  45% { transform: rotate(-45deg) scale(1); opacity: 1; }
  100% { transform: rotate(-20deg) scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero__mark { animation: none; } }

.phone { position: relative; z-index: 1; width: 320px; max-width: 100%; padding: var(--space-s); border-radius: 46px; background: var(--color-petrol); box-shadow: var(--shadow-l); }
.phone__screen { display: flex; flex-direction: column; overflow: hidden; border-radius: 36px; background: var(--color-white); }
.phone__photo { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.profile-card { display: flex; flex-direction: column; gap: var(--space-xs); padding: 18px 20px; border-bottom: 1px solid var(--color-line); }
.profile-card__name { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 22px; }
.profile-card__meta { font-size: 14px; color: var(--color-slate); }
.profile-card__open { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: var(--fw-semibold); }
.profile-card__open::before { content: ""; width: 8px; height: 8px; border-radius: var(--radius-round); background: var(--color-success); }
.profile-card__actions { display: flex; gap: var(--space-xs); margin-top: var(--space-2xs); }
.profile-card__actions span { flex: 1; padding: 8px 0; border-radius: var(--radius-pill); box-shadow: inset 0 0 0 1.5px var(--color-sand-line); text-align: center; font-size: 13px; font-weight: var(--fw-semibold); }
.rating { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.stars { color: var(--color-honey); letter-spacing: 0.06em; }
.stars__off { color: var(--color-sand-line); }
.rating__count { color: var(--color-slate); }

.float-chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: var(--space-s) var(--space-m); border-radius: 18px 18px 18px 4px;
  background: var(--color-white); box-shadow: var(--shadow-s);
  font-size: 14px; font-weight: var(--fw-bold);
}
.float-chip__icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: var(--radius-round); background: var(--color-honey); color: var(--color-petrol); --icon-size: 16px; }
.float-chip__icon--dark { background: var(--color-petrol); color: var(--color-honey); }
.float-chip--top { top: 6px; left: 0; }
.float-chip--bottom { bottom: -24px; right: 0; }
@media (min-width: 560px) {
  .float-chip--top { left: calc(50% - 250px); }
  .float-chip--bottom { right: calc(50% - 260px); }
}

/* Bewertung + Antwort */
.review { display: flex; flex-direction: column; gap: var(--space-m); }
.review__head { display: flex; align-items: center; gap: var(--space-s); }
.review__author { display: flex; flex-direction: column; font-weight: var(--fw-bold); font-size: var(--fs-base); }
.review__time { margin-left: auto; font-size: 13px; color: var(--color-slate); }
.review__text { font-size: var(--fs-base); line-height: 1.5; }
.avatar { display: inline-flex; align-items: center; justify-content: center; flex: none; width: 40px; height: 40px; border-radius: var(--radius-round); background: var(--color-sand); font-weight: var(--fw-bold); }
.avatar--photo { width: 56px; height: 56px; object-fit: cover; }
.reply { align-self: flex-end; width: 88%; display: flex; flex-direction: column; gap: 6px; padding: 18px 20px; border-radius: var(--radius-reply); background: var(--color-petrol); color: var(--color-text-on-dark); font-size: var(--fs-s); line-height: 1.5; }
.reply__label { font-size: 12px; font-weight: var(--fw-bold); color: var(--color-honey); }
.no-reply { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 2px dashed var(--color-sand-line); border-radius: 14px; font-size: var(--fs-s); color: var(--color-slate); }
.review--highlight { box-shadow: var(--shadow-m), inset 0 0 0 2px var(--color-honey); }

/* Report */
.report { display: flex; flex-direction: column; gap: var(--space-l); padding: 36px; border-radius: var(--radius-l); background: var(--color-petrol); color: var(--color-text-on-dark); box-shadow: var(--shadow-m); }
.report__head { display: flex; justify-content: space-between; align-items: center; gap: var(--space-m); --icon-size: 34px; }
.report__head .icon { color: var(--color-honey); }
.report__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 30px; }
.report__rows li { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-m); padding: var(--space-m) 0; border-bottom: 1px solid var(--color-petrol-line); font-size: var(--fs-m); }
.report__rows li:last-child { border-bottom: 0; }
.report__value { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 34px; color: var(--color-honey); }

.report-page { overflow: hidden; border-radius: var(--radius-l); background: var(--color-white); box-shadow: var(--shadow-m); }
.report-page__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--space-m); padding: 28px 32px; background: var(--color-petrol); color: var(--color-text-on-dark); }
.report-page__body { display: flex; flex-direction: column; gap: 26px; padding: 28px 32px; }
.report-page__rows li { display: flex; justify-content: space-between; align-items: baseline; padding: var(--space-s) 0; border-bottom: 1px solid var(--color-line); }
.report-page__rows strong { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 26px; }
.tip-box { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border-radius: 18px 18px 18px 4px; background: var(--color-honey); }

/* Karte (Maps-Mockup) */
.map-mock { position: relative; min-height: 540px; overflow: hidden; border-radius: 36px 36px 36px 8px; background-color: #EFE8DA; background-image: linear-gradient(#E6DDCB 2px, transparent 2px), linear-gradient(90deg, #E6DDCB 2px, transparent 2px); background-size: 64px 64px; box-shadow: inset 0 0 0 1px var(--color-sand-line); }
.map-mock__search { position: absolute; top: 20px; left: 20px; right: 20px; display: flex; align-items: center; gap: var(--space-s); padding: 14px 20px; border-radius: var(--radius-pill); background: var(--color-white); box-shadow: var(--shadow-s); color: var(--color-slate); }
.map-mock__search span:last-child { color: var(--color-petrol); }
.map-mock__pin { position: absolute; width: 26px; height: 26px; border-radius: var(--radius-mark); transform: rotate(-45deg); background: var(--color-slate-light); }
.map-mock__pin--a { left: 22%; top: 30%; }
.map-mock__pin--b { left: 74%; top: 20%; }
.map-mock__ours { position: absolute; left: 46%; top: 24%; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.map-mock__label { padding: 5px 10px; border-radius: var(--radius-pill); background: var(--color-petrol); color: var(--color-text-on-dark); font-size: 12px; font-weight: var(--fw-bold); white-space: nowrap; }
.map-mock__results { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; flex-direction: column; gap: 6px; padding: 10px; border-radius: var(--radius-m); background: var(--color-linen); }
.result { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius-s); opacity: 0.72; }
.result--ours { opacity: 1; background: var(--color-white); box-shadow: var(--shadow-s), inset 0 0 0 2px var(--color-honey); }
.result__img { width: 64px; height: 64px; flex: none; border-radius: 12px; object-fit: cover; background: #E9E4DA; display: flex; align-items: center; justify-content: center; color: var(--color-slate-light); }
.result__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.result__name { font-weight: var(--fw-bold); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.result__meta { font-size: 13px; font-weight: var(--fw-semibold); color: var(--color-slate); }
.result--ours .result__meta { color: var(--color-success); }
.result--ours .stars__dim, .result .stars__dim { color: var(--color-sand-line); }

/* Faktoren */
.factor-visual { height: 170px; border-radius: 20px 20px 20px 5px; background: var(--color-white); padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: var(--space-s); position: relative; overflow: hidden; }
.factor-visual li { display: flex; align-items: center; gap: 10px; font-size: var(--fs-s); font-weight: var(--fw-semibold); }
.factor-visual li .icon { color: var(--color-success); }
.bar { height: 10px; border-radius: var(--radius-pill); background: var(--color-petrol); box-shadow: 0 0 0 0 var(--color-line); }
.rings { align-items: center; }
.rings::before, .rings::after { content: ""; position: absolute; left: 50%; top: 50%; border-radius: var(--radius-round); translate: -50% -50%; }
.rings::before { width: 260px; height: 260px; box-shadow: inset 0 0 0 2px var(--color-line), 0 0 0 40px transparent; }
.rings::after { width: 100px; height: 100px; background: var(--color-sand); }
.rings__center { position: relative; z-index: 1; width: 14px; height: 14px; border-radius: var(--radius-round); background: var(--color-petrol); box-shadow: 0 0 0 6px rgba(16, 54, 61, .15); }
.rings .mark { position: absolute; z-index: 1; left: calc(50% + 56px); top: 40px; }
.mini-bubble { align-self: flex-start; padding: 8px 12px; border-radius: 14px 14px 14px 3px; background: var(--color-sand); font-size: 13px; }
.mini-bubble--reply { align-self: flex-end; border-radius: 14px 14px 3px 14px; background: var(--color-petrol); color: var(--color-text-on-dark); }
.big-rating { display: flex; align-items: center; gap: var(--space-xs); font-size: 14px; color: var(--color-slate); }
.big-rating strong { font-family: var(--font-heading); font-size: 30px; color: var(--color-petrol); }

/* Kalender */
.calendar { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 6px; }
.calendar__head { text-align: center; font-size: 12px; font-weight: var(--fw-bold); color: var(--color-slate); padding-bottom: 4px; }
.calendar__day { aspect-ratio: 1; padding: 6px 8px; border-radius: 12px 12px 12px 3px; background: var(--color-linen); font-size: 13px; color: var(--color-slate-light); }
.calendar__day--mark { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0; background: var(--color-petrol); color: var(--color-text-on-dark-subtle); font-size: 12px; font-weight: var(--fw-bold); --icon-size: 20px; }
.calendar__day--mark .icon { color: var(--color-honey); }
.legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; font-size: 14px; }
.legend li { display: flex; align-items: center; gap: 10px; }
.legend .icon-box { width: 30px; height: 30px; border-radius: var(--radius-xs); --icon-size: 16px; }

/* Konto-Mockup, E-Mail-Mockup */
.window { overflow: hidden; border-radius: var(--radius-l); background: var(--color-white); color: var(--color-petrol); box-shadow: var(--shadow-l); }
.window__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-m); padding: var(--space-m) var(--space-l); background: var(--color-sand); font-weight: var(--fw-bold); }
.window__body { display: flex; flex-direction: column; gap: 20px; padding: var(--space-l); }

/* --------------------------------------------------------------------------
   Social-Post / Beitrag
   -------------------------------------------------------------------------- */
.post { display: flex; flex-direction: column; width: 100%; max-width: 340px; aspect-ratio: 1; overflow: hidden; border-radius: 16px; background: var(--color-petrol); box-shadow: var(--shadow-m); }
.post__img { flex: 1; min-height: 0; width: 100%; object-fit: cover; }
.post__body { display: flex; flex-direction: column; gap: 6px; padding: 20px 22px; }
.post__biz { font-size: 12px; font-weight: var(--fw-bold); color: var(--color-honey); }
.post__text { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 22px; line-height: 1.1; color: var(--color-text-on-dark); }

/* --------------------------------------------------------------------------
   Formulare
   -------------------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: var(--space-xs); font-size: 16px; font-weight: var(--fw-semibold); }
.field__optional { font-weight: var(--fw-regular); color: var(--color-slate); }
.input, .textarea {
  width: 100%; height: 60px; padding: 0 18px; border: 0; border-radius: var(--radius-s);
  background: var(--color-linen); box-shadow: inset 0 0 0 2px var(--color-sand-line);
  font: inherit; font-weight: var(--fw-regular); font-size: var(--fs-m); color: var(--color-petrol);
}
.textarea { height: auto; min-height: 150px; padding: var(--space-m) 18px; line-height: 1.5; resize: vertical; }
.input:focus, .textarea:focus { outline: 0; background: var(--color-white); box-shadow: inset 0 0 0 3px var(--color-petrol); }
.form__note { font-size: 14px; color: var(--color-slate); text-align: center; }
.form-card { padding: 36px; border-radius: 36px 36px 36px 8px; background: var(--color-white); box-shadow: var(--shadow-m); }
.checkbox { display: flex; gap: 14px; align-items: flex-start; font-size: var(--fs-s); line-height: 1.5; cursor: pointer; }
.checkbox input { width: 22px; height: 22px; margin: 0; flex: none; accent-color: var(--color-petrol); }
.form-success { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-m); padding: var(--space-l) 0; }
.form-success__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 34px; line-height: 1.05; }

/* Auswahlkarten (Radio) */
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice__box { display: flex; gap: var(--space-m); align-items: flex-start; padding: 20px 22px; border-radius: var(--radius-m); background: var(--color-white); box-shadow: inset 0 0 0 2px var(--color-sand-line); transition: background var(--transition), box-shadow var(--transition); }
.choice__box::before { content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: var(--radius-round); box-shadow: inset 0 0 0 2px currentColor; }
.choice input:checked + .choice__box { background: var(--color-petrol); color: var(--color-text-on-dark); box-shadow: none; }
.choice input:checked + .choice__box::before { background: var(--color-honey); box-shadow: inset 0 0 0 2px var(--color-honey); }
.choice input:focus-visible + .choice__box { outline: 3px solid var(--color-honey); outline-offset: 2px; }
.choice__title { display: block; font-weight: var(--fw-bold); font-size: var(--fs-base); }
.choice__sub { display: block; font-size: 14px; opacity: 0.8; }
.choice-list { display: flex; flex-direction: column; gap: 10px; }
.choice--pill .choice__box { padding: 11px 14px; border-radius: 12px 12px 12px 3px; justify-content: center; font-weight: var(--fw-bold); font-size: 14px; box-shadow: inset 0 0 0 2px var(--color-petrol); background: transparent; }
.choice--pill .choice__box::before { display: none; }
.choice--pill input:checked + .choice__box { background: var(--color-honey); color: var(--color-petrol); }
.choice-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: var(--space-xs); }

/* Fortschritt */
.progress { display: grid; grid-template-columns: repeat(var(--steps, 3), minmax(0, 1fr)); gap: var(--space-xs); }
.progress--4 { --steps: 4; }
.progress__step { display: flex; flex-direction: column; gap: var(--space-xs); font-size: 14px; font-weight: var(--fw-bold); color: var(--color-slate-light); }
.progress__step::before { content: ""; height: 6px; border-radius: var(--radius-pill); background: var(--color-sand-line); }
.progress__step.is-active, .progress__step.is-done { color: var(--color-petrol); }
.progress__step.is-active::before, .progress__step.is-done::before { background: var(--color-petrol); }
.step-nav { display: flex; justify-content: space-between; align-items: center; gap: var(--space-m); padding-top: 6px; border-top: 1px solid var(--color-line); }
.link-back { padding: 18px 4px; border: 0; background: none; cursor: pointer; font-weight: var(--fw-bold); font-size: 16px; color: var(--color-slate); }

/* --------------------------------------------------------------------------
   Tabs / Umschalter
   -------------------------------------------------------------------------- */
.tabs { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 5px; border-radius: var(--radius-pill); background: var(--color-sand); }
.tabs__btn { padding: 10px 20px; border: 0; border-radius: var(--radius-pill); background: transparent; color: var(--color-petrol); font-weight: var(--fw-bold); font-size: var(--fs-s); cursor: pointer; text-decoration: none; }
.tabs__btn[aria-selected="true"], .tabs__btn[aria-current="page"] { background: var(--color-petrol); color: var(--color-text-on-dark); }

.option-btn { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border: 0; border-radius: 22px 22px 22px 5px; background: var(--color-white); box-shadow: inset 0 0 0 2px var(--color-petrol); color: var(--color-petrol); text-align: left; cursor: pointer; }
.option-btn[aria-selected="true"] { background: var(--color-petrol); color: var(--color-text-on-dark); }
.option-btn__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 22px; }
.option-btn__sub { font-size: var(--fs-s); opacity: 0.8; }

.month-list { display: flex; flex-direction: column; gap: var(--space-s); }
.month-item { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-m) var(--space-l); padding: 22px 24px; border-radius: var(--radius-m); background: var(--color-linen); }
.month-item__when { flex: none; width: 110px; font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-l); }
.month-item__body { flex: 1 1 300px; display: flex; flex-direction: column; gap: 4px; }
.month-item__title { font-weight: var(--fw-bold); font-size: var(--fs-m); }

/* --------------------------------------------------------------------------
   Akkordeon (FAQ) – natives <details>
   -------------------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--space-s); }
.faq-item { border-radius: var(--radius-m); background: var(--color-white); overflow: hidden; }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 28px; cursor: pointer; list-style: none;
  font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: clamp(19px, 1.8vw, 23px); line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-round);
  background: var(--color-sand); font-family: var(--font-body); font-size: 24px; font-weight: var(--fw-regular);
}
.faq-item[open] summary::after { content: "−"; background: var(--color-petrol); color: var(--color-honey); }
.faq-item__a { padding: 0 28px 26px; max-width: 720px; font-size: var(--fs-m); line-height: var(--lh-body); color: var(--color-text-muted); }

/* --------------------------------------------------------------------------
   Sonstige Bausteine
   -------------------------------------------------------------------------- */
.cta-band { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-xl); }
.cta-band__text { flex: 1 1 480px; display: flex; flex-direction: column; gap: var(--space-s); }
.cta-band__title { font-size: clamp(32px, 4vw, 50px); }

.notice { display: flex; flex-wrap: wrap; align-items: center; gap: 20px var(--space-xl); padding: 32px 36px; border-radius: var(--radius-l); }

.quote { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.025em; line-height: 1.12; text-wrap: pretty; }
.person { display: flex; align-items: center; gap: 14px; }
.person__name { font-weight: var(--fw-bold); font-size: var(--fs-m); }
.person__role { font-size: var(--fs-s); color: var(--color-slate); }
.bg-petrol .person__role { color: var(--color-text-on-dark-subtle); }

.photo { width: 100%; object-fit: cover; border-radius: var(--radius-xl); }
.photo--4x5 { aspect-ratio: 4 / 5; max-height: 560px; }
.photo--5x4 { aspect-ratio: 5 / 4; }
.photo--1x1 { aspect-ratio: 1; }
.photo-wrap { position: relative; }
.photo-badge { position: absolute; left: 0; bottom: -24px; display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-radius: var(--radius-m); background: var(--color-petrol); color: var(--color-text-on-dark); box-shadow: var(--shadow-m); }
.photo-badge__big { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 26px; line-height: 1; }

.wordmark-split { display: flex; justify-content: center; align-items: baseline; font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: clamp(110px, 16vw, 220px); letter-spacing: -0.05em; line-height: 1; }
.wordmark-split span:first-child { color: var(--color-honey); }

.sign-row { display: grid; gap: var(--space-2xl) var(--space-l); align-items: end; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 56px); border-radius: var(--radius-xl); background: var(--color-white); }
.sign { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.sign__shape { display: flex; align-items: center; justify-content: center; height: 200px; }
.sign__shape--main { height: 260px; }
.sign__shape .mark { --mark-size: 150px; }
.sign__shape--main .mark { --mark-size: 240px; }
.sign__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 26px; }
.sign--main .sign__title { font-size: 34px; }

.rule-col { display: flex; flex-direction: column; gap: var(--space-xs); padding-top: 20px; border-top: 3px solid var(--color-petrol); }
.rule-col--accent { border-top-color: var(--color-honey); }
.rule-col__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 22px; }

.family-divider { display: flex; align-items: center; gap: var(--space-m); font-size: 14px; font-weight: var(--fw-bold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-slate); }
.family-divider::before, .family-divider::after { content: ""; flex: 1; height: 2px; background: var(--color-petrol); opacity: 0.15; }

.check-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; border-radius: 22px 22px 22px 5px; background: var(--color-linen); box-shadow: inset 0 0 0 2px var(--color-line); cursor: pointer; }
.check-item input { width: 28px; height: 28px; margin: 0; flex: none; accent-color: var(--color-petrol); }
.check-item:has(input:checked) { background: var(--color-sand); box-shadow: inset 0 0 0 2px var(--color-petrol); }
.check-item__title { display: block; font-weight: var(--fw-bold); font-size: var(--fs-m); }
.check-item__text { display: block; font-size: var(--fs-s); color: var(--color-text-muted); }
.verdict { display: flex; flex-direction: column; gap: 10px; padding: 28px; border-radius: var(--radius-l); background: var(--color-sand); }
.verdict.is-warning { background: var(--color-petrol); color: var(--color-text-on-dark); }
.verdict__count { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 56px; line-height: 1; }
.verdict__text { font-family: var(--font-heading); font-weight: var(--fw-bold); font-size: 22px; line-height: 1.25; }

.article-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius-l); background: var(--color-white); color: var(--color-petrol); text-decoration: none; transition: box-shadow var(--transition); }
.article-card:hover { color: var(--color-petrol); box-shadow: var(--shadow-m); }
.article-card__tile { position: relative; display: flex; align-items: center; justify-content: center; height: 150px; overflow: hidden; background: var(--color-sand); --icon-size: 52px; }
.article-card__tile .mark { position: absolute; right: -30px; bottom: -40px; --mark-size: 140px; --mark-color: #E6D8BC; }
.article-card__tile .mark::after { display: none; }
.article-card__tile .icon { position: relative; }
.article-card__tile--petrol { background: var(--color-petrol); color: var(--color-honey); }
.article-card__tile--petrol .mark { --mark-color: var(--color-petrol-light); }
.article-card__tile--honey { background: var(--color-honey); }
.article-card__tile--honey .mark { --mark-color: #F7A00A; }
.article-card__tile--white { background: var(--color-white); box-shadow: inset 0 -1px 0 var(--color-line); }
.article-card__body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: var(--space-l); }
.article-card__meta { display: flex; gap: 10px; font-size: var(--fs-xs); font-weight: var(--fw-bold); letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-slate); }
.article-card__title { font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: 22px; line-height: 1.2; }

.topic-btn { display: flex; align-items: center; gap: var(--space-m); padding: 20px 22px; border: 0; border-radius: var(--radius-m); background: var(--color-white); box-shadow: inset 0 0 0 2px var(--color-line); color: var(--color-petrol); text-align: left; cursor: pointer; }
.topic-btn[aria-pressed="true"] { background: var(--color-petrol); color: var(--color-text-on-dark); box-shadow: none; }
.topic-btn[aria-pressed="true"] .icon-box { background: var(--color-honey); }
.topic-btn__title { display: block; font-family: var(--font-heading); font-weight: var(--fw-extrabold); font-size: var(--fs-l); }
.topic-btn__count { display: block; font-size: 14px; opacity: 0.75; }

.featured { display: grid; overflow: hidden; border-radius: 36px 36px 36px 8px; background: var(--color-petrol); color: var(--color-text-on-dark); text-decoration: none; }
.featured:hover { color: var(--color-text-on-dark); }
.featured__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 280px; overflow: hidden; background: var(--color-petrol-light); }
.featured__visual .mark { position: absolute; --mark-size: 320px; --mark-hole: var(--color-petrol-light); }
.featured__body { display: flex; flex-direction: column; justify-content: center; gap: var(--space-m); padding: clamp(28px, 4vw, 48px); }
@media (min-width: 900px) { .featured { grid-template-columns: 1fr 1.2fr; } }

.prose { display: flex; flex-direction: column; gap: 22px; font-size: 19px; line-height: 1.7; color: #24444A; }
.prose h2 { margin-top: var(--space-m); font-size: var(--fs-2xl); letter-spacing: -0.02em; line-height: 1.1; color: var(--color-petrol); }
.answer-box { display: flex; gap: 18px; align-items: flex-start; padding: var(--space-l); border-radius: var(--radius-m); background: var(--color-petrol); color: var(--color-text-on-dark); font-size: var(--fs-m); line-height: var(--lh-body); }
.answer-box__title { font-weight: var(--fw-bold); color: var(--color-honey); }
.step-box { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; border-radius: 20px 20px 20px 5px; background: var(--color-white); }
.example { display: flex; flex-direction: column; gap: var(--space-s); padding: 22px; border-radius: 22px 22px 22px 5px; background: var(--color-white); box-shadow: inset 0 0 0 1px var(--color-sand-line); }
.example__head { display: flex; justify-content: space-between; align-items: center; gap: var(--space-s); }
.example__label { font-size: 14px; font-weight: var(--fw-bold); letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-slate); }
.example__text { font-size: var(--fs-base); line-height: 1.55; }
.copy-btn { display: inline-flex; align-items: center; gap: var(--space-xs); padding: 8px 14px; border: 0; border-radius: var(--radius-pill); background: var(--color-sand); font-weight: var(--fw-bold); font-size: 14px; cursor: pointer; --icon-size: 16px; }
.copy-btn.is-copied { background: var(--color-petrol); color: var(--color-text-on-dark); }

.search-field { display: flex; align-items: center; gap: 14px; width: 100%; max-width: 640px; padding: 0 var(--space-l); border-radius: var(--radius-pill); background: var(--color-white); box-shadow: var(--shadow-s), inset 0 0 0 2px var(--color-sand-line); color: var(--color-slate); --icon-size: 22px; }
.search-field input { flex: 1; height: 64px; border: 0; background: transparent; font: inherit; font-size: var(--fs-m); color: var(--color-petrol); outline: 0; }

.side-nav { display: flex; flex-direction: column; gap: 6px; }
.side-nav button { display: flex; justify-content: space-between; align-items: center; gap: var(--space-s); padding: 14px 18px; border: 0; border-radius: var(--radius-s); background: transparent; font-weight: var(--fw-bold); font-size: 16px; text-align: left; cursor: pointer; }
.side-nav button[aria-pressed="true"] { background: var(--color-petrol); color: var(--color-text-on-dark); }
.side-nav small { font-size: 13px; opacity: 0.7; }
.faq-layout { display: grid; gap: 40px; align-items: start; }
@media (min-width: 900px) { .faq-layout { grid-template-columns: 240px 1fr; } .side-nav { position: sticky; top: 100px; } }

.summary-card { display: flex; flex-direction: column; gap: 18px; padding: 28px; border-radius: var(--radius-l); background: var(--color-petrol); color: var(--color-text-on-dark); }
.summary-card__row { display: flex; justify-content: space-between; font-size: var(--fs-s); }
.summary-card__row span:first-child { color: var(--color-text-on-dark-muted); }
.summary-card__total { display: flex; justify-content: space-between; align-items: baseline; padding-top: var(--space-xs); font-weight: var(--fw-bold); }
.summary-card__total strong { font-family: var(--font-heading); font-size: 28px; }
.summary-card__prices { display: flex; flex-direction: column; gap: var(--space-xs); padding-top: var(--space-m); border-top: 1px solid var(--color-petrol-line); }
.checkout { display: grid; gap: 40px; align-items: start; }
@media (min-width: 960px) { .checkout { grid-template-columns: 1.6fr 1fr; } .checkout aside { position: sticky; top: 24px; } }
.checkout-header .site-header__inner { min-height: 64px; }
.secure-note { display: flex; align-items: center; gap: 10px; font-size: var(--fs-s); color: var(--color-slate); --icon-size: 18px; }
.summary-list { display: flex; flex-direction: column; border-radius: 22px 22px 22px 5px; box-shadow: inset 0 0 0 1px var(--color-sand-line); padding: 6px 22px; }
.summary-list li { display: flex; justify-content: space-between; gap: var(--space-m); padding: var(--space-m) 0; border-bottom: 1px solid var(--color-line); }
.summary-list li:last-child { border-bottom: 0; }
.summary-list span { color: var(--color-slate); }
.instruction { display: flex; flex-direction: column; gap: var(--space-s); padding: 22px; border-radius: 22px 22px 22px 5px; background: var(--color-sand); }

.legal-note { padding: var(--space-xl); border-radius: var(--radius-l); background: var(--color-sand); }
