/* Design system: "engineered", not Apple. Barlow (road-sign grotesk) for
   body, Barlow Semi Condensed for headlines and big numbers, hairline
   borders instead of soft grey pillows, tight corners, rectangular buttons.
   Verkehrsblau is the brand blue: hero card, Autobahn card, links, progress.
   Plain CSS, mobile first, no build step. */

@font-face { font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/barlow-500.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-semicond-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow Semi Condensed"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/barlow-semicond-700.woff2") format("woff2"); }

:root {
  --blau: #0b4ea2;
  --blau-deep: #08397a;
  --weiss: #ffffff;
  --ink: #15181d;
  --ink-2: #5f6670;
  --surface: #f6f7f9;
  --surface-2: #eceef2;
  --line: #d6dae1;
  --line-strong: #b9bfc9;
  --rot: #c8102e;

  --font: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-head: "Barlow Semi Condensed", "Barlow", "Arial Narrow", Arial, sans-serif;

  --radius-xl: 16px;
  --radius: 12px;
  --radius-sm: 8px;
  --pill: 8px;
  --gutter: 1.25rem;
  --container: 68rem;
  --narrow: 44rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(env(safe-area-inset-top, 0px) + 84px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--font); font-size: 1.0625rem; line-height: 1.5;
  color: var(--ink); background: var(--weiss);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blau); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; text-wrap: balance; }
strong { font-weight: 600; }
:focus-visible { outline: 3px solid var(--blau); outline-offset: 3px; border-radius: 2px; }
.sign :focus-visible, .pkg--popular :focus-visible { outline-color: var(--weiss); }
.header :focus-visible, .menu :focus-visible { outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--narrow); }
.center { text-align: center; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--weiss); padding: .5rem 1rem; z-index: 100; border-radius: var(--radius-sm); }
.skip:focus { left: 1rem; top: 1rem; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

/* Header: wordmark, one CTA, one Menu button on every viewport. */
.header { position: sticky; top: 0; z-index: 20; background: var(--weiss); border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__logo { display: block; width: auto; height: 52px; }
@media (min-width: 960px) { .brand__logo { height: 60px; } .header__inner, .menu__bar { min-height: 72px; } }
.header__actions { display: flex; align-items: center; gap: .5rem; }
.header .header__cta { display: none; }
@media (min-width: 560px) { .header .header__cta { display: inline-flex; } }
.menu-btn {
  display: inline-flex; align-items: center; gap: .6rem; min-height: 40px; padding: .4rem .9rem .4rem .75rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--weiss); color: var(--ink);
  font: inherit; font-weight: 600; font-size: .95rem; cursor: pointer;
}
.menu-btn:hover { border-color: var(--ink); }
.menu-btn__icon { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; width: 18px; height: 18px; }
.menu-btn__icon i { display: block; height: 2px; background: currentColor; border-radius: 1px; transition: transform .25s, opacity .25s; }
.menu-btn--close .menu-btn__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn--close .menu-btn__icon i:nth-child(2) { opacity: 0; }
.menu-btn--close .menu-btn__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-fallback { display: flex; flex-wrap: wrap; gap: .25rem 1rem; padding-block: .5rem; font-weight: 600; }

/* Fullscreen slide-out menu (native <dialog>). */
.menu {
  position: fixed; inset: 0; width: 100vw; max-width: none; height: 100dvh; max-height: none;
  margin: 0; padding: 0; border: 0; background: var(--weiss); color: var(--ink); overflow-y: auto;
}
.menu::backdrop { background: transparent; }
.menu[open] { animation: menu-in .45s cubic-bezier(.2,.7,.2,1); }
.menu.is-closing { animation: menu-out .3s cubic-bezier(.4,0,.6,1) forwards; }
@keyframes menu-in { from { transform: translateX(100%); } to { transform: none; } }
@keyframes menu-out { from { transform: none; } to { transform: translateX(100%); } }
html:has(.menu[open]) { overflow: hidden; }
.menu__bar { display: flex; align-items: center; justify-content: space-between; min-height: 64px; border-bottom: 1px solid var(--line); }
.menu__grid { display: grid; gap: 2.5rem; padding-block: clamp(1.5rem, 5vh, 4rem) 3rem; }
@media (min-width: 900px) { .menu__grid { grid-template-columns: 1.3fr 1fr; gap: 4rem; padding-top: clamp(2rem, 8vh, 6rem); } }
.menu__links { display: grid; }
.menu__links li { border-bottom: 1px solid var(--line); }
.menu__links a {
  display: flex; align-items: center; justify-content: space-between; padding: .6rem 0;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 5.5vw, 3.75rem); line-height: 1.1; color: var(--ink);
}
.menu__links a::after { content: "→"; font-family: var(--font); font-weight: 400; font-size: .5em; color: var(--line-strong); transition: transform .2s, color .2s; }
.menu__links a:hover { text-decoration: none; color: var(--blau); }
.menu__links a:hover::after { transform: translateX(6px); color: var(--blau); }
.menu__links a[aria-current="page"] { color: var(--blau); }
.menu[open] .menu__links li { animation: menu-rise .5s cubic-bezier(.2,.7,.2,1) both; }
.menu[open] .menu__links li:nth-child(1) { animation-delay: .08s; }
.menu[open] .menu__links li:nth-child(2) { animation-delay: .12s; }
.menu[open] .menu__links li:nth-child(3) { animation-delay: .16s; }
.menu[open] .menu__links li:nth-child(4) { animation-delay: .2s; }
.menu[open] .menu__links li:nth-child(5) { animation-delay: .24s; }
.menu[open] .menu__links li:nth-child(6) { animation-delay: .28s; }
.menu[open] .menu__links li:nth-child(7) { animation-delay: .32s; }
.menu[open] .menu__aside { animation: menu-rise .5s cubic-bezier(.2,.7,.2,1) .25s both; }
@keyframes menu-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.menu__title { font-size: 1.1rem; font-family: var(--font); font-weight: 600; color: var(--ink-2); margin: 0 0 .75rem; }
.menu__pkgs { display: grid; gap: .5rem; margin-bottom: 2rem; }
.menu__pkgs a { display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto; column-gap: 1rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); }
.menu__pkgs a:hover { text-decoration: none; border-color: var(--blau); }
.menu__pkg-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; }
.menu__pkg-sub { grid-row: 2; font-size: .85rem; color: var(--ink-2); }
.menu__pkg-price { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--blau); }
.menu__contact { color: var(--ink-2); margin-bottom: 1.25rem; }
@media (prefers-reduced-motion: reduce) { .menu[open], .menu.is-closing, .menu[open] .menu__links li, .menu[open] .menu__aside { animation: none; } }

/* Code texture: real source of this site, faint, fading out toward the text. */
.sign--hero { position: relative; overflow: hidden; isolation: isolate; }
.sign--hero > :not(.sign__code) { position: relative; z-index: 1; }
.sign__code {
  position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; width: min(62%, 720px); margin: 0; padding: 2rem 2rem 0 0;
  font: 12px/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; white-space: pre; overflow: hidden;
  color: rgba(255,255,255,.1); pointer-events: none; user-select: none; text-align: left;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 45%); mask-image: linear-gradient(to right, transparent, #000 45%);
}
.sign--split .sign__code { width: 100%; -webkit-mask-image: linear-gradient(to right, transparent 5%, #000 50%, transparent 95%); mask-image: linear-gradient(to right, transparent 5%, #000 50%, transparent 95%); }
@media (max-width: 700px) { .sign__code { width: 100%; font-size: 10px; opacity: .7; } }

/* Hero with photo */
.sign--split { display: grid; gap: 2rem; align-items: center; }
.sign__media { position: relative; margin: 0; }
.sign__photo img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius); }
.nolimit { position: absolute; right: 14px; bottom: 14px; width: clamp(64px, 16vw, 104px); height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
@media (min-width: 960px) {
  .sign--split { grid-template-columns: 1.15fr .85fr; gap: 3rem; }
  .sign--split .sign__title { font-size: clamp(2.75rem, 5.6vw, 4.75rem); }
  .sign__photo img { aspect-ratio: 1 / 1; object-position: 30% 50%; }
  .nolimit { right: auto; left: -28px; bottom: 28px; }
}
@media (prefers-reduced-motion: no-preference) {
  .nolimit { animation: nolimit-in .7s cubic-bezier(.2,.7,.2,1) .25s both; }
  @keyframes nolimit-in { from { opacity: 0; transform: scale(.6) rotate(-20deg); } to { opacity: 1; transform: none; } }
}

/* Booking demo: a phone that books a job on a 14 s loop.
   Screen 1: service, time, Continue. Screen 2: name, phone, address type
   themselves in, Book now. Then "You're booked". */
.demo__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .demo__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.demo__steps { display: grid; gap: .9rem; margin-top: 1.75rem; }
.demo__steps li { padding-left: 1.1rem; border-left: 3px solid var(--line); color: var(--ink-2); }
.demo__steps strong { color: var(--ink); }
.demo__stage { display: flex; justify-content: center; }
.phone { width: 290px; height: 590px; box-sizing: border-box; border: 11px solid var(--ink); border-radius: 46px; background: var(--weiss); box-shadow: 0 30px 60px rgba(21,24,29,.18); position: relative; }
.phone::before { content: ""; position: absolute; top: 8px; left: 50%; width: 84px; height: 22px; margin-left: -42px; border-radius: 12px; background: var(--ink); z-index: 3; }
.phone__screen { position: absolute; inset: 0; border-radius: 35px; overflow: hidden; font-size: 14px; color: var(--ink); background: #fbfcfd; }
.bk__track { display: flex; width: 200%; height: 100%; }
.bk__pane { width: 50%; height: 100%; box-sizing: border-box; padding: 46px 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.bk__head { display: flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.bk__logo { width: 22px; height: 22px; border-radius: 6px; background: var(--blau); }
.bk__label { margin: 8px 0 0; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.bk__summary { margin: 0; padding: 9px 12px; border-radius: 10px; background: #e9f0fa; color: var(--blau); font-weight: 600; font-size: 13px; }
.bk__opt { position: relative; display: flex; justify-content: space-between; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--weiss); font-weight: 600; }
.bk__opt span:last-child { color: var(--ink-2); font-weight: 500; }
.bk__slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.bk__slots span { position: relative; text-align: center; padding: 8px 0; border: 1px solid var(--line); border-radius: 8px; background: var(--weiss); font-weight: 600; font-variant-numeric: tabular-nums; }
.bk__slots .is-off { color: var(--line-strong); text-decoration: line-through; background: var(--surface); }
.bk__field { height: 40px; display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--weiss); font-weight: 500; }
.bk__type { display: inline-block; white-space: nowrap; }
.bk__btn { position: relative; margin-top: auto; padding: 13px; border-radius: 10px; background: var(--ink); color: var(--weiss); text-align: center; font-weight: 700; }
.bk__tap { position: absolute; left: 50%; top: 50%; width: 38px; height: 38px; margin: -19px 0 0 -19px; border-radius: 50%; background: rgba(11,78,162,.35); opacity: 0; pointer-events: none; }
.bk__done { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 0 20px; background: #fbfcfd; text-align: center; opacity: 0; }
.bk__done strong { font-family: var(--font-head); font-size: 26px; }
.bk__done span { color: var(--ink-2); }
.bk__done small { margin-top: 8px; color: var(--ink-2); }
.bk__done .bk__check { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center; border-radius: 50%; background: var(--blau); color: var(--weiss) !important; margin-bottom: 6px; }
@media (prefers-reduced-motion: no-preference) {
  .bk__opt--pick { animation: bk-pick 14s infinite; }
  .bk__slot--pick { animation: bk-slot 14s infinite; }
  .bk__btn--next { animation: bk-press-next 14s infinite; }
  .bk__btn--book { animation: bk-press-book 14s infinite; }
  .bk__track { animation: bk-slide 14s infinite; }
  .bk__type--1 { animation: bk-type-1 14s infinite steps(11); }
  .bk__type--2 { animation: bk-type-2 14s infinite steps(14); }
  .bk__type--3 { animation: bk-type-3 14s infinite steps(20); }
  .bk__tap--1 { animation: bk-tap-1 14s infinite; }
  .bk__tap--2 { animation: bk-tap-2 14s infinite; }
  .bk__tap--3 { animation: bk-tap-3 14s infinite; }
  .bk__tap--4 { animation: bk-tap-4 14s infinite; }
  .bk__done { animation: bk-done 14s infinite; }
}
@media (prefers-reduced-motion: reduce) {
  .bk__opt--pick { border-color: var(--blau); background: #e9f0fa; }
  .bk__slot--pick { border-color: var(--blau) !important; background: var(--blau) !important; color: var(--weiss); }
}
/* timeline (14 s): 9% service, 19% time, 27% Continue, 30-34% slide,
   38-47% name, 49-58% phone, 60-70% address, 76% Book, 80-92% booked */
@keyframes bk-pick { 0%, 9% { border-color: var(--line); background: var(--weiss); } 10%, 96% { border-color: var(--blau); background: #e9f0fa; } 100% { border-color: var(--line); background: var(--weiss); } }
@keyframes bk-slot { 0%, 19% { border-color: var(--line); background: var(--weiss); color: var(--ink); } 20%, 96% { border-color: var(--blau); background: var(--blau); color: var(--weiss); } 100% { border-color: var(--line); background: var(--weiss); color: var(--ink); } }
@keyframes bk-press-next { 0%, 26% { background: var(--ink); transform: none; } 27% { background: var(--blau); transform: scale(.97); } 29%, 100% { background: var(--ink); transform: none; } }
@keyframes bk-press-book { 0%, 75% { background: var(--ink); transform: none; } 76% { background: var(--blau); transform: scale(.97); } 78%, 100% { background: var(--blau); transform: none; } }
@keyframes bk-slide { 0%, 30% { transform: translateX(0); } 34%, 96% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes bk-type-1 { 0%, 38% { clip-path: inset(0 100% 0 0); } 47%, 100% { clip-path: inset(0 0 0 0); } }
@keyframes bk-type-2 { 0%, 49% { clip-path: inset(0 100% 0 0); } 58%, 100% { clip-path: inset(0 0 0 0); } }
@keyframes bk-type-3 { 0%, 60% { clip-path: inset(0 100% 0 0); } 70%, 100% { clip-path: inset(0 0 0 0); } }
@keyframes bk-tap-1 { 0%, 7% { opacity: 0; transform: scale(.4); } 9% { opacity: 1; transform: scale(1); } 13%, 100% { opacity: 0; transform: scale(1.6); } }
@keyframes bk-tap-2 { 0%, 17% { opacity: 0; transform: scale(.4); } 19% { opacity: 1; transform: scale(1); } 23%, 100% { opacity: 0; transform: scale(1.6); } }
@keyframes bk-tap-3 { 0%, 25% { opacity: 0; transform: scale(.4); } 27% { opacity: 1; transform: scale(1); } 31%, 100% { opacity: 0; transform: scale(1.6); } }
@keyframes bk-tap-4 { 0%, 74% { opacity: 0; transform: scale(.4); } 76% { opacity: 1; transform: scale(1); } 80%, 100% { opacity: 0; transform: scale(1.6); } }
@keyframes bk-done { 0%, 79% { opacity: 0; transform: translateY(10px); } 83%, 93% { opacity: 1; transform: none; } 97%, 100% { opacity: 0; transform: none; } }

/* Speed card: gauges + code window */
.speed__grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 960px) { .speed__grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; } }
.gauges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 560px) { .gauges { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) { .gauges { grid-template-columns: repeat(2, 1fr); } }
.gauge { position: relative; display: grid; justify-items: center; gap: .5rem; text-align: center; }
.gauge svg { width: 112px; height: 112px; transform: rotate(-90deg); }
.gauge__track { fill: none; stroke: var(--surface-2); stroke-width: 9; }
.gauge__value { fill: none; stroke: var(--blau); stroke-width: 9; stroke-linecap: round; }
.gauge__num { position: absolute; top: 0; width: 112px; height: 112px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2.1rem; font-variant-numeric: tabular-nums; }
.gauge__label { font-weight: 600; font-size: .95rem; }
.speed__note { margin-top: 1.5rem; color: var(--ink-2); font-size: .95rem; }
@media (prefers-reduced-motion: no-preference) {
  .gauge__value { animation: gauge-fill 1.4s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes gauge-fill { from { stroke-dasharray: 0 100; } }
}
.codewin { margin: 0; border-radius: var(--radius-xl); overflow: hidden; background: #0f1523; border: 1px solid #0f1523; }
.codewin__bar { display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; background: #182033; }
.codewin__bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a4560; }
.codewin__bar span { margin-left: 8px; font-size: .8rem; color: #9aa6bf; }
.codewin pre { margin: 0; padding: 1.25rem 1.4rem; overflow-x: auto; font: 13px/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #d8e1f3; scrollbar-width: thin; scrollbar-color: #3a4560 transparent; }
.codewin pre::-webkit-scrollbar { height: 6px; }
.codewin pre::-webkit-scrollbar-track { background: transparent; }
.codewin pre::-webkit-scrollbar-thumb { background: #3a4560; border-radius: 3px; }
.codewin figcaption { padding: .9rem 1.4rem 1.2rem; font-size: .9rem; color: #9aa6bf; border-top: 1px solid #182033; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Home: mockup form */
.mockup__form { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; max-width: 34rem; margin: 1.25rem auto 0; }
.mockup__form .field__input { flex: 1 1 16rem; width: auto; }

/* Mockup builder */
.mkb .container { max-width: 90rem; }
.mkb__head { max-width: 44rem; margin-bottom: 1.75rem; }
.mkb__controls { display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
@media (min-width: 900px) { .mkb__controls { grid-template-columns: minmax(14rem, 20rem) 1fr auto; align-items: end; } }
.mkb__group { border: 0; margin: 0; padding: 0; min-width: 0; }
.mkb__group legend { margin-bottom: .4rem; padding: 0; }
.mkb__pills { display: flex; flex-wrap: wrap; gap: .4rem; }
.mkb__pill { position: relative; }
.mkb__pill input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.mkb__pill span, .mkb__device { display: inline-flex; align-items: center; min-height: 40px; padding: .4rem .9rem; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--weiss); font: inherit; font-weight: 600; font-size: .95rem; color: var(--ink); cursor: pointer; }
.mkb__pill input:checked + span, .mkb__device[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--weiss); }
.mkb__pill input:focus-visible + span { outline: 3px solid var(--blau); outline-offset: 2px; }
.mkb__device:disabled { opacity: .35; cursor: not-allowed; }
.mkb__submit { justify-self: start; }
.js .mkb__submit { display: none; }
.mkb__stage { display: flex; justify-content: center; padding: 1.5rem 0; background: var(--surface); border-radius: var(--radius-xl); overflow: hidden; }
.mkb__device-frame { --w: 390px; zoom: var(--s, 1); width: var(--w); flex: none; height: 760px; border: 10px solid var(--ink); border-radius: 40px; overflow: hidden; background: var(--weiss); box-shadow: 0 24px 50px rgba(21,24,29,.16); transition: width .35s ease, border-radius .35s ease; }
.mkb__stage[data-device="tablet"] .mkb__device-frame { --w: 820px; border-radius: 28px; height: 820px; }
.mkb__stage[data-device="desktop"] .mkb__device-frame { --w: 1280px; border-width: 28px 10px 10px; border-radius: 14px; height: 760px; }
.mkb__frame { display: block; width: 100%; height: 100%; border: 0; }
.mkb__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.mkb__cta p { margin: 0; color: var(--ink-2); max-width: 40rem; }

/* Job photo strip */
.jobs__grid { display: grid; gap: 1rem; }
.jobs__item { margin: 0; }
.jobs__photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.jobs__item figcaption { margin-top: .6rem; color: var(--ink-2); font-size: .95rem; }
@media (min-width: 640px) { .jobs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .jobs__grid { grid-template-columns: repeat(4, 1fr); } }

/* Inline photos */
.aside__figure { margin: 0 0 2rem; }
.aside__photo img, .duo__photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.aside__figure figcaption { margin-top: .6rem; color: var(--ink-2); font-size: .95rem; }
.duo { display: grid; gap: 1rem; margin-block: 1.5rem 2.5rem; }
@media (min-width: 720px) { .duo { grid-template-columns: 1fr 1fr; } }

/* About: why a detailer builds websites */
.why { display: grid; gap: 2.5rem; align-items: start; }
.why__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.why__photos figure { margin: 0; }
.why__photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 20%; border-radius: var(--radius); }
.why__photos figcaption { margin-top: .6rem; color: var(--ink-2); font-size: .9rem; }
.work { display: grid; gap: .75rem; margin-top: 2rem; }
.work__item { background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.25rem; }
.work__title { font-size: 1.3rem; margin: 0 0 .25rem; }
.work__item p { margin: 0; color: var(--ink-2); }
@media (min-width: 960px) { .why { grid-template-columns: 1.2fr 1fr; gap: 4rem; } .why__photos { position: sticky; top: 90px; } }

/* Buttons: pills. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 48px; padding: .7rem 1.3rem; border-radius: var(--radius-sm);
  font: inherit; font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn--sm { min-height: 36px; padding: .4rem 1rem; font-size: .9rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--ink); color: var(--weiss); border-color: var(--ink); }
.btn--primary:hover { background: var(--blau); border-color: var(--blau); color: var(--weiss); }
.btn--outline { background: var(--weiss); color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover { border-color: var(--ink); }
.btn--light { background: var(--weiss); color: var(--blau); border-color: var(--weiss); }
.btn--light:hover { background: var(--surface); }
.btn--ghost-light { background: transparent; color: var(--weiss); border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { border-color: var(--weiss); background: rgba(255,255,255,.1); color: var(--weiss); }
.btn:disabled { opacity: .6; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero card: the one blue Autobahn sign per page. */
.hero { padding-block: 1rem 0; }
.sign {
  background: var(--blau); color: var(--weiss);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 4.5rem);
}
.sign--hero { padding-top: clamp(2.75rem, 8vw, 5.5rem); }
.sign__title { font-size: clamp(2.75rem, 8.5vw, 5.5rem); font-weight: 700; letter-spacing: -0.015em; line-height: .98; max-width: 15ch; margin-bottom: 1rem; }
.sign__title--sm { font-size: clamp(2rem, 5.5vw, 3.25rem); }
.sign__sub { font-size: clamp(1.1rem, 2.1vw, 1.35rem); line-height: 1.4; max-width: 44ch; margin-bottom: 1.75rem; color: rgba(255,255,255,.88); text-wrap: pretty; }
.sign .btn-row { margin-bottom: .5rem; }
.sign__exits { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.sign__exits a {
  display: inline-flex; align-items: center; gap: .35rem; padding: .45rem .85rem;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.55); color: var(--weiss); font-weight: 600; font-size: .95rem;
}
.sign__exits a:hover { background: var(--weiss); color: var(--blau); text-decoration: none; }
.sign--cta { background: var(--weiss); color: var(--ink); text-align: center; border: 1px solid var(--line); }
.sign--cta .sign__title { margin-inline: auto; }
.sign--cta .sign__sub { color: var(--ink-2); margin-inline: auto; }
.sign--cta .btn-row { justify-content: center; }
.sign--cta .btn--light { background: var(--ink); color: var(--weiss); border-color: var(--ink); }
.sign--cta .btn--light:hover { background: var(--blau); border-color: var(--blau); }
.sign--cta .btn--ghost-light { background: var(--weiss); color: var(--ink); border-color: var(--line-strong); }
.sign--cta .btn--ghost-light:hover { border-color: var(--ink); background: var(--weiss); color: var(--ink); }

/* Trust strip */
.strip { }
.strip { border-bottom: 1px solid var(--line); }
.strip__row { display: flex; flex-wrap: wrap; justify-content: center; gap: .25rem 2rem; padding-block: 1rem; font-size: .95rem; color: var(--ink-2); text-align: center; }
.strip__item { margin: 0; }
.strip__item strong { color: var(--ink); }

/* Sections */
.section { padding-block: clamp(3rem, 8vw, 6.5rem); }
.section--grey { background: var(--surface); }
.section__head { margin-bottom: clamp(1.75rem, 4vw, 3rem); max-width: 42rem; }
.section__title { font-size: clamp(2.1rem, 5.2vw, 3.5rem); margin-bottom: .6rem; }
.section__sub { color: var(--ink-2); font-size: 1.15rem; margin: 0; text-wrap: pretty; }

/* Cards (shared) */
.card { background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.5rem, 3.5vw, 2.25rem); }

/* Highlights carousel (home): scroll-snap track, one card in view with the
   next peeking, a segmented progress line with numbered labels underneath.
   Progress and autoplay come from site.js. */
.hl { padding-block: clamp(3rem, 8vw, 6.5rem); overflow: hidden; }
.hl__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: .75rem 1rem; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.hl__head .section__title { margin: 0; }
.hl__more { display: inline-flex; align-items: center; gap: .25rem; font-weight: 500; white-space: nowrap; padding-bottom: .35rem; }
.hl__more .icon { width: 1em; height: 1em; }
.hl__track { outline-offset: -3px; }
.hl__list {
  --hl-side: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
  position: relative; display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  padding-inline: var(--hl-side); scroll-padding-inline: var(--hl-side);
  overscroll-behavior-x: contain;
}
.hl__list::-webkit-scrollbar { display: none; }
.hl__slide { flex: 0 0 calc(100% - 2.5rem); scroll-snap-align: start; }
@media (min-width: 900px) { .hl__slide { flex-basis: calc(100% - 4rem); } }
.hl__card {
  position: relative; height: 100%; min-height: clamp(24rem, 56vh, 32rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 4rem);
  transition: transform .5s ease;
}
.hl__slide:not(.is-active) .hl__card { transform: scale(.97); }
.hl__title { font-size: clamp(1.6rem, 3.4vw, 2.5rem); max-width: 22ch; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.hl__stat { margin: 0; font-family: var(--font-head); font-size: clamp(4.5rem, 13vw, 9rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--blau); font-variant-numeric: tabular-nums; }
.hl__stat-label { margin: .5rem 0 clamp(1.25rem, 3vw, 2rem); font-size: 1.05rem; color: var(--ink-2); }
.hl__body { margin: 0; color: var(--ink-2); max-width: 46ch; text-wrap: pretty; }
.hl__slide.is-active .hl__stat { animation: hl-rise .6s cubic-bezier(.2,.7,.2,1) both; }
.hl__slide.is-active .hl__stat-label, .hl__slide.is-active .hl__body { animation: hl-rise .6s cubic-bezier(.2,.7,.2,1) .08s both; }
@keyframes hl-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hl__nav { display: flex; align-items: flex-start; gap: 1.5rem; margin-top: 1.5rem; }
.hl__nav[hidden] { display: none; }
.hl__segs { flex: 1; display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem; }
.hl__seg { display: block; width: 100%; padding: .5rem 0 0; border: 0; background: none; text-align: left; cursor: pointer; color: var(--ink-2); font: inherit; }
.hl__bar { display: block; height: 3px; background: var(--line); overflow: hidden; }
.hl__fill { display: block; height: 100%; width: 100%; background: var(--blau); transform: scaleX(0); transform-origin: left; }
.hl__seg-label { display: none; margin-top: .6rem; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hl__seg[aria-selected="true"] { color: var(--ink); }
.hl__seg[aria-selected="true"] .hl__bar { background: var(--line-strong); }
@media (min-width: 720px) { .hl__seg-label { display: block; } }
.hl__play { flex: none; padding: .5rem 0 0; border: 0; background: none; font: inherit; font-size: .85rem; font-weight: 500; color: var(--ink-2); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.hl__play:hover { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .hl__card { transition: none; }
  .hl__slide.is-active .hl__stat, .hl__slide.is-active .hl__stat-label, .hl__slide.is-active .hl__body { animation: none; }
}

/* Packages: segmented toggle, white cards, Autobahn in blue. */
.toggle { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.5rem; }
.toggle__btn { padding: .5rem 1.1rem; font-weight: 600; font-size: .95rem; color: var(--ink); background: var(--weiss); }
.toggle__btn:hover { text-decoration: none; background: var(--surface); }
.toggle__btn[aria-current="true"] { background: var(--ink); color: var(--weiss); }
.pkg-grid { display: grid; gap: 1rem; }
.pkg { display: flex; flex-direction: column; background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; }
.pkg--popular { background: var(--blau); border-color: var(--blau); color: var(--weiss); }
.pkg__sign { display: flex; flex-direction: column; align-items: flex-start; padding: 1.75rem 1.75rem 0; }
.pkg__name { font-size: 2.1rem; font-weight: 700; letter-spacing: -0.01em; }
.pkg__subtitle { margin: 0; font-size: .95rem; color: var(--ink-2); }
.pkg--popular .pkg__subtitle { color: rgba(255,255,255,.75); }
.pkg__badge {
  justify-self: start; margin-bottom: .9rem;
  display: inline-flex; align-items: center; gap: .3rem; padding: .3rem .6rem; border-radius: 4px;
  background: var(--weiss); color: var(--blau); font-size: .75rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
}
.pkg__badge .icon { width: .85em; height: .85em; fill: currentColor; }
.pkg__body { display: flex; flex-direction: column; flex: 1; padding: 1rem 1.75rem 1.75rem; gap: .8rem; }
.pkg__for { margin: 0; font-weight: 600; font-size: 1.05rem; }
.pkg__price { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 .35rem; }
.pkg__price strong { font-family: var(--font-head); font-weight: 700; font-size: 2.9rem; line-height: 1; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.pkg__unit { color: var(--ink-2); font-weight: 500; }
.pkg--popular .pkg__unit { color: rgba(255,255,255,.75); }
.pkg__price small { flex-basis: 100%; color: var(--ink-2); font-size: .95rem; margin-top: .3rem; }
.pkg--popular .pkg__price small { color: rgba(255,255,255,.75); }
.pkg__features { display: grid; gap: .5rem; margin-block: .25rem auto; font-size: .97rem; }
.pkg__features li { display: flex; gap: .55rem; align-items: flex-start; line-height: 1.35; }
.pkg__features .icon { margin-top: .15rem; color: var(--ink-2); }
.pkg--popular .pkg__features .icon { color: rgba(255,255,255,.8); }
.pkg__body .btn { margin-top: 1rem; }
.pkg--popular .btn--primary { background: var(--weiss); color: var(--blau); }
.pkg--popular .btn--primary:hover { background: var(--surface); }
.pkg-section__note { margin: 1.5rem 0 0; color: var(--ink-2); font-size: .95rem; }
.section .pkg-section + .center { margin-top: 2rem; }
@media (min-width: 640px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }

/* A package you jumped to lights up: blue ring that settles into a steady
   outline, so you can see which card the link meant. */
.pkg { transition: box-shadow .4s ease, border-color .4s ease; }
.pkg.is-target { border-color: var(--blau); box-shadow: 0 0 0 3px var(--blau), 0 18px 40px rgba(11, 78, 162, .18); }
.pkg--popular.is-target { box-shadow: 0 0 0 3px var(--weiss), 0 0 0 6px var(--blau), 0 18px 40px rgba(11, 78, 162, .28); }
@media (prefers-reduced-motion: no-preference) {
  .pkg.is-target { animation: pkg-hit .9s cubic-bezier(.2,.7,.2,1); }
  @keyframes pkg-hit { 0% { transform: scale(1); } 35% { transform: scale(1.02); } 100% { transform: scale(1); } }
}

/* Comparison table: hairlines only. */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--weiss); padding: .5rem 1rem; }
.compare { border-collapse: collapse; width: 100%; min-width: 760px; font-size: .95rem; }
.compare th, .compare td { padding: .9rem .75rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.compare thead th { vertical-align: bottom; border-bottom-width: 2px; }
.compare tbody th { font-weight: 500; color: var(--ink-2); background: var(--weiss); position: sticky; left: 0; min-width: 11rem; }
.compare__name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; line-height: 1.1; }
.compare thead th:nth-child(4) .compare__name { color: var(--blau); }
.compare__sub { display: block; font-weight: 400; font-size: .8rem; color: var(--ink-2); margin-top: .25rem; }
.compare__price { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.compare__price span { font-weight: 400; font-size: .85rem; color: var(--ink-2); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare__tail { white-space: nowrap; }
.compare__info { position: relative; display: inline-grid; vertical-align: -5px; margin-left: .3rem; place-items: center; width: 24px; height: 24px; padding: 0; border: 0; border-radius: 50%; background: none; color: var(--ink-2); cursor: pointer; transition: color .15s ease; }
.compare__info::before { content: ""; position: absolute; inset: -10px; }
.compare__info:hover { color: var(--blau); }
.compare__info:focus-visible { outline: 2px solid var(--blau); outline-offset: 1px; }
.compare__info .icon { width: 18px; height: 18px; }

/* Info dialog: native popover, centered in the top layer */
.infopop { width: min(26rem, calc(100vw - 2rem)); margin: auto; padding: 1.25rem 1.25rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--weiss); color: var(--ink); box-shadow: 0 24px 60px rgba(21,24,29,.18); }
.infopop::backdrop { background: rgba(21,24,29,.4); }
.infopop__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.infopop__title { margin: .25rem 0 0; font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; line-height: 1.15; }
.infopop__close { flex: none; display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--weiss); color: var(--ink); cursor: pointer; transition: border-color .15s ease; }
.infopop__close:hover { border-color: var(--ink); }
.infopop__close:focus-visible { outline: 2px solid var(--blau); outline-offset: 2px; }
.infopop__close .icon { width: 18px; height: 18px; }
.infopop__body { margin: .75rem 0 0; color: var(--ink-2); font-size: 1rem; text-wrap: pretty; }
@media (prefers-reduced-motion: no-preference) {
  .infopop, .infopop::backdrop { transition: opacity .2s ease, transform .2s cubic-bezier(.2,.7,.2,1), overlay .2s allow-discrete, display .2s allow-discrete; }
  .infopop:not(:popover-open) { opacity: 0; transform: translateY(8px) scale(.98); }
  .infopop:not(:popover-open)::backdrop { opacity: 0; }
  @starting-style {
    .infopop:popover-open { opacity: 0; transform: translateY(8px) scale(.98); }
    .infopop:popover-open::backdrop { opacity: 0; }
  }
}

/* Extras, Ausfahrt, mockup */
.extra-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .extra-grid { grid-template-columns: 1fr 1fr; } }
.extra { background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.5rem, 3.5vw, 2.25rem); display: flex; flex-direction: column; gap: .25rem; }
.extra__name { font-size: 2rem; margin-bottom: .1rem; }
.extra__sub { color: var(--blau); font-weight: 600; margin-bottom: .6rem; }
.extra p { color: var(--ink-2); }
.extra .btn { align-self: flex-start; margin-top: auto; }
.ausfahrt { display: grid; gap: 1.5rem; align-items: center; background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.5rem, 4vw, 2.5rem); }
.ausfahrt__sign {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem;
  width: 7.5rem; height: 7.5rem; border-radius: var(--radius); background: var(--blau); color: var(--weiss); font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
}
.ausfahrt__sign .icon { width: 2.25rem; height: 2.25rem; }
.ausfahrt p { margin: 0; color: var(--ink-2); }
.ausfahrt .section__title { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
@media (min-width: 720px) { .ausfahrt { grid-template-columns: auto 1fr; } }
.mockup { position: relative; overflow: hidden; background: var(--blau); color: var(--weiss); border-radius: var(--radius-xl); padding: clamp(2.25rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem); text-align: center; }
.mockup .section__title { margin-inline: auto; color: var(--weiss); font-size: clamp(2.2rem, 5.5vw, 3.75rem); }
.mockup p { color: rgba(255,255,255,.88); max-width: 40ch; margin-inline: auto; font-size: 1.1rem; }
.mockup .mockup__form .field__input { border-color: transparent; min-height: 54px; font-size: 1.05rem; }
.mockup .mockup__form .field__input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.45); }
.mockup .mockup__form .btn--primary { min-height: 54px; background: var(--weiss); border-color: var(--weiss); color: var(--blau); }
.mockup .mockup__form .btn--primary:hover { background: var(--surface); border-color: var(--surface); }
.mockup :focus-visible { outline-color: var(--weiss); }

/* Templates */
.tpl-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .tpl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tpl-grid { grid-template-columns: repeat(4, 1fr); } .tpl-grid--wide { grid-template-columns: repeat(2, 1fr); } }
.tpl { background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; }
.tpl__frame { margin: .75rem .75rem 0; border: 1px solid var(--line); border-radius: 10px 10px 0 0; overflow: hidden; background: var(--surface); }
.tpl__bar { display: flex; align-items: center; gap: 6px; height: 28px; padding: 0 10px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.tpl__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.tpl__bar span { margin-left: 8px; font-size: .75rem; font-weight: 500; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tpl__viewport { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.tpl__shot img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.tpl__full { position: absolute; inset: 0; background-repeat: no-repeat; background-size: 100% auto; background-position: 50% 0%; opacity: 0; transition: opacity .35s ease, background-position 0s linear .35s; }
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .tpl__frame--scroll.is-loaded:hover .tpl__full { opacity: 1; background-position: 50% 100%; transition: opacity .35s ease, background-position 9s linear .4s; }
}
.tpl__body { padding: 1.25rem; }
.tpl__name { font-size: 1.6rem; margin-bottom: .15rem; }
.tpl__vibe { color: var(--blau); font-weight: 600; margin-bottom: .6rem; }
.tpl__body p { color: var(--ink-2); }
.tpl__meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .75rem; margin: 0; font-weight: 500; }
.tpl__links { display: inline-flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.tpl__demo, .tpl__try { font-weight: 600; }
.palette { flex: none; }

/* Steps */
.steps { display: grid; gap: 1rem; }
.step { background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 1.5rem; }
.step__title { font-size: 1.4rem; margin-bottom: .35rem; }
.step p { margin: 0 0 .35rem; }
.step__detail { color: var(--ink-2); }
@media (min-width: 900px) { .steps--compact { grid-template-columns: repeat(4, 1fr); } }
.steps + .center { margin-top: 2rem; }

/* Checklists */
.checklist { display: grid; gap: .6rem; margin-bottom: 1.5rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; }
.checklist .icon { color: var(--ink-2); margin-top: .2rem; }
.checklist--big { gap: .5rem; font-size: 1.1rem; }
.checklist--big li { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem 1.2rem; align-items: center; }
.checklist--big .icon { color: var(--blau); width: 1.4rem; height: 1.4rem; margin: 0; }

/* FAQ: hairline accordion */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { cursor: pointer; padding: 1.25rem 0; font-weight: 600; font-size: 1.15rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-weight: 300; font-size: 1.6rem; line-height: 1; color: var(--ink-2); flex: none; transition: transform .2s; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { margin: 0; padding: 0 0 1.5rem; color: var(--ink-2); max-width: 60ch; }

/* Founder */
.founder { display: grid; gap: 1.5rem; align-items: center; background: var(--weiss); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(1.5rem, 4vw, 3rem); }
.founder__photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; object-position: 60% 40%; border-radius: var(--radius); }
.founder__role { font-weight: 600; color: var(--blau); }
@media (min-width: 800px) { .founder { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }

/* Forms */
.form-layout { display: grid; gap: 2.5rem; }
.aside__title { font-size: 1.4rem; margin: 0 0 .75rem; }
.aside__title + p, .checklist + .aside__title { margin-top: 1.5rem; }
@media (min-width: 900px) { .form-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field__label { font-weight: 500; font-size: .95rem; }
.field__opt { font-weight: 400; color: var(--ink-2); font-size: .85rem; margin-left: .35rem; }
.field__input {
  width: 100%; min-height: 50px; padding: .7rem 1rem; font: inherit; color: var(--ink);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--weiss);
}
textarea.field__input { min-height: 7rem; resize: vertical; }
select.field__input {
  appearance: none; -webkit-appearance: none; padding-right: 2.75rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 1.1rem;
}
.field__input::placeholder { color: #a1a1a6; }
.field__input:focus { outline: none; border-color: var(--blau); box-shadow: 0 0 0 3px rgba(11,78,162,.16); }
.field--error .field__input { border-color: var(--rot); background: var(--weiss); }
.field__error { margin: 0; color: var(--rot); font-size: .9rem; font-weight: 500; }
.form__note { margin: 0; color: var(--ink-2); font-size: .9rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-weight: 500; }
.alert--error { background: #fff0f0; color: #a10010; }
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: inline; }
.htmx-request .btn > span:first-child { display: none; }
.success { background: var(--weiss); border: 1px solid var(--blau); border-radius: var(--radius-xl); padding: 2rem; }
.success__icon { display: inline-flex; width: 3rem; height: 3rem; align-items: center; justify-content: center; background: var(--blau); color: var(--weiss); border-radius: 50%; margin-bottom: 1rem; }
.success h3 { font-size: 1.6rem; margin-bottom: .5rem; }
.calendar { border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1.5rem; background: var(--weiss); }
.calendar iframe { display: block; width: 100%; min-height: 32rem; border: 0; }
.calendar--placeholder { min-height: 14rem; display: grid; place-items: center; color: var(--ink-2); text-align: center; padding: 1rem; }
.calendar--placeholder p { margin: 0; }

/* Prose & legal */
.prose h2 { font-size: 1.5rem; margin: 2rem 0 .5rem; }
.prose .section__title { margin-top: 0; }

/* Footer: quiet, light. */
.footer { background: var(--ink); color: var(--weiss); margin-top: 2rem; }
.footer__cta { padding-block: clamp(2.5rem, 7vw, 5rem) 1.5rem; text-align: center; }
.footer__line { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 5.5vw, 3.25rem); line-height: 1.05; margin-bottom: 1.5rem; }
.footer__cta .btn-row { justify-content: center; }
.footer .btn--light { color: var(--ink); }
.footer__grid { display: grid; gap: 1.5rem; padding-block: 2rem 3rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .9rem; color: rgba(255,255,255,.7); }
.footer__brand { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--weiss); margin-bottom: .25rem; }
.footer__tag { margin-bottom: .5rem; }
.footer__small { margin: 0; }
.footer__links { display: grid; gap: .5rem; align-content: start; }
.footer__links a { color: rgba(255,255,255,.75); }
.footer__links a:hover { color: var(--weiss); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
