@font-face { font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-style: normal; font-weight: 800; font-display: swap; src: url("fonts/inter-800.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/dm-sans-500.woff2") format("woff2"); }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/dm-sans-700.woff2") format("woff2"); }

:root {
  --gold-light: #c9a84c;
  --gold-dark: #8a7220;
  --gold: #b8952f;
  --gold-soft: #f3ead2;
  --max: 1100px;
  --radius: 14px;
  --text: #17130f;
  --blue: #1d4e6f;
  --blue-soft: #dde9f1;
  --red: #a33;
  --red-soft: #f6e2e2;
  --shadow: 0 2px 10px rgba(23,19,15,.06);
}



    :root {
      --paper: #f6f0e5;
      --ink: #17130f;
      --muted: #6c6255;
      --line: #27221d;
      --panel: #fffaf1;
      --panel-2: #efe3cf;
      --green: #0b665c;
      --green-soft: #d8eadf;
      --red: #b43d30;
      --red-soft: #efd1cb;
      --gold: #c89c3d;
      --gold-soft: #f2dfa8;
      --blue: #243f6b;
      --blue-soft: #dbe4ef;
      --shadow: 8px 8px 0 rgba(23, 19, 15, .16);
    }

    * { box-sizing: border-box; }

    html {
      background: var(--paper);
      color: var(--ink);
      font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        linear-gradient(rgba(23, 19, 15, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 19, 15, .035) 1px, transparent 1px),
        var(--paper);
      background-size: 30px 30px;
    }

    a { color: inherit; }

    .page {
      width: min(1320px, calc(100% - 32px));
      margin: 0 auto;
      padding: 24px 0 60px;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 10px 0 22px;
      border-bottom: 2px solid var(--line);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .mark {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 2px solid var(--line);
      background: var(--green);
      color: var(--paper);
      box-shadow: 4px 4px 0 rgba(23, 19, 15, .18);
    }

    .top-actions {
      display: flex;
      gap: 10px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      border: 2px solid var(--line);
      background: var(--panel);
      color: var(--ink);
      padding: 10px 14px;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 4px 4px 0 rgba(23, 19, 15, .13);
    }

    .btn.primary {
      background: var(--green);
      color: var(--paper);
    }

    h1, h2, h3 {
      margin: 0;
      font-family: "DM Sans", Georgia, serif;
      line-height: .98;
      letter-spacing: 0;
    }

    h1 {
      max-width: 960px;
      font-size: clamp(48px, 7.3vw, 94px);
    }

    h2 { font-size: clamp(34px, 4.5vw, 58px); }
    h3 { font-size: 27px; line-height: 1.05; }

    p { margin: 0; line-height: 1.62; }

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
      gap: 28px;
      padding: 44px 0 28px;
      align-items: stretch;
    }

    .stamp {
      display: inline-flex;
      width: fit-content;
      border: 2px solid var(--line);
      background: var(--gold);
      padding: 8px 12px;
      margin-bottom: 18px;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: 4px 4px 0 rgba(23, 19, 15, .16);
    }

    .lead {
      max-width: 820px;
      margin-top: 24px;
      color: #332d26;
      font-size: clamp(17px, 2vw, 21px);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-panel {
      border: 3px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 22px;
      display: grid;
      gap: 18px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .metric {
      border: 2px solid var(--line);
      background: var(--paper);
      padding: 14px;
      min-height: 118px;
    }

    .metric strong {
      display: block;
      font-family: "DM Sans", Georgia, serif;
      font-size: 42px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .small {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .section {
      margin-top: 42px;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(300px, .5fr);
      gap: 24px;
      align-items: end;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--line);
    }

    .section-head p {
      color: var(--muted);
      font-size: 15px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 20px;
    }

    .card {
      border: 2px solid var(--line);
      background: var(--panel);
      box-shadow: 5px 5px 0 rgba(23, 19, 15, .12);
      padding: 18px;
      min-height: 190px;
    }

    .card p {
      color: #3d362e;
      margin-top: 12px;
      font-size: 14px;
    }

    .kicker {
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .flow {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .flow-step {
      position: relative;
      min-height: 170px;
      border: 2px solid var(--line);
      background: var(--panel);
      padding: 16px;
      box-shadow: 4px 4px 0 rgba(23, 19, 15, .10);
    }

    .flow-step::before {
      content: attr(data-step);
      display: grid;
      place-items: center;
      width: 38px;
      height: 38px;
      margin-bottom: 14px;
      border: 2px solid var(--line);
      background: var(--blue);
      color: var(--paper);
      font-weight: 700;
    }

    .flow-step strong {
      display: block;
      margin-bottom: 8px;
      font-size: 15px;
    }

    .flow-step p {
      color: var(--muted);
      font-size: 13px;
    }

    .demo-shell {
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 18px;
      margin-top: 20px;
      border: 3px solid var(--line);
      background: var(--panel-2);
      box-shadow: var(--shadow);
      padding: 18px;
    }

    .demo-teaser {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 20px;
      margin-top: 20px;
      border: 3px solid var(--line);
      background: var(--green-soft);
      box-shadow: var(--shadow);
      padding: 22px;
      align-items: center;
    }

    .mini-dashboard {
      display: grid;
      gap: 10px;
      border: 2px solid var(--line);
      background: var(--panel);
      padding: 14px;
    }

    .mini-row {
      display: grid;
      grid-template-columns: 62px 1fr 88px;
      gap: 8px;
      align-items: center;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 8px;
      font-size: 12px;
    }

    .inbox-list {
      display: grid;
      gap: 10px;
    }

    .mail-item {
      border: 2px solid var(--line);
      background: var(--panel);
      padding: 12px;
    }

    .mail-item.active {
      background: var(--green-soft);
    }

    .mail-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-bottom: 8px;
    }

    .priority {
      display: inline-flex;
      border: 1px solid var(--line);
      padding: 3px 7px;
      font-size: 11px;
      font-weight: 700;
      white-space: nowrap;
    }

    .priority.high { background: var(--red-soft); }
    .priority.medium { background: var(--gold-soft); }
    .priority.low { background: var(--blue-soft); }

    .mail-item b {
      display: block;
      font-size: 13px;
      margin-bottom: 4px;
    }

    .mail-item span {
      color: var(--muted);
      font-size: 12px;
    }

    .demo-detail {
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 14px;
    }

    .detail-top {
      display: grid;
      grid-template-columns: 1.3fr .7fr;
      gap: 14px;
    }

    .panel {
      border: 2px solid var(--line);
      background: var(--panel);
      padding: 16px;
    }

    .panel h3 {
      font-size: 23px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .tag {
      display: inline-flex;
      border: 1px solid var(--line);
      background: var(--paper);
      padding: 4px 8px;
      font-size: 12px;
      font-weight: 700;
    }

    .draft {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 14px;
    }

    .draft-text {
      min-height: 250px;
      border: 2px solid var(--line);
      background: #fffdf8;
      padding: 18px;
      font-family: "DM Sans", Georgia, serif;
      font-size: 18px;
      line-height: 1.5;
    }

    .sources {
      display: grid;
      gap: 10px;
    }

    .source {
      border: 2px solid var(--line);
      background: var(--paper);
      padding: 12px;
      font-size: 13px;
    }

    .approve {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-top: 14px;
    }

    .approve button {
      min-height: 42px;
      border: 2px solid var(--line);
      background: var(--panel);
      font-family: inherit;
      font-weight: 700;
      cursor: default;
    }

    .approve button:first-child {
      background: var(--green);
      color: var(--paper);
    }

    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 20px;
    }

    .price-card {
      border: 3px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 20px;
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .price-card.main {
      background: var(--green-soft);
    }

    .package-summary {
      display: grid;
      gap: 8px;
      border: 2px solid var(--line);
      background: var(--paper);
      padding: 12px;
      min-height: 126px;
    }

    .package-summary b {
      font-size: 13px;
      text-transform: uppercase;
    }

    .package-block {
      display: grid;
      gap: 8px;
      border-top: 1px solid rgba(23, 19, 15, .32);
      padding-top: 12px;
    }

    .package-block strong {
      font-size: 12px;
      text-transform: uppercase;
      color: var(--red);
    }

    .package-note {
      border: 2px solid var(--line);
      background: var(--gold-soft);
      padding: 12px;
      font-size: 13px;
      line-height: 1.5;
    }

    .price {
      font-family: "DM Sans", Georgia, serif;
      font-weight: 850;
      font-size: 48px;
      line-height: .95;
    }

    .list {
      list-style: none;
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
    }

    .list li {
      display: grid;
      grid-template-columns: 26px 1fr;
      gap: 9px;
      align-items: start;
      line-height: 1.45;
      font-size: 14px;
    }

    .token {
      display: grid;
      place-items: center;
      width: 26px;
      height: 26px;
      border: 2px solid var(--line);
      background: var(--paper);
      font-weight: 700;
    }

    .cta-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 22px;
      margin-top: 42px;
      border: 3px solid var(--line);
      background: var(--green);
      color: var(--paper);
      box-shadow: var(--shadow);
      padding: 26px;
    }

    .cta-band p {
      color: #f9f4e8;
      margin-top: 14px;
      font-size: 17px;
    }

    .contact-card {
      border: 2px solid var(--line);
      background: var(--panel);
      color: var(--ink);
      padding: 18px;
    }

    .field {
      display: grid;
      gap: 6px;
      margin-top: 10px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .fake-input {
      min-height: 42px;
      border: 2px solid var(--line);
      background: var(--paper);
      padding: 10px;
      color: var(--muted);
      text-transform: none;
      font-weight: 400;
    }

    .footer {
      margin-top: 28px;
      border-top: 2px solid var(--line);
      padding-top: 16px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
    }

    .legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-top: 10px;
    }

    .legal-links a {
      color: var(--ink);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .comparison-table {
      width: 100%;
      min-width: 880px;
      border-collapse: collapse;
      border: 2px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      font-size: 14px;
    }

    .table-wrap {
      overflow-x: auto;
      margin-top: 20px;
    }

    .comparison-table th,
    .comparison-table td {
      border: 1px solid rgba(23, 19, 15, .35);
      padding: 14px;
      text-align: left;
      vertical-align: top;
    }

    .comparison-table th {
      background: var(--line);
      color: var(--paper);
    }

    .comparison-table tr:nth-child(even) td {
      background: #fbf4e9;
    }

    @media (max-width: 1080px) {
      .hero,
      .section-head,
      .demo-shell,
      .demo-teaser,
      .detail-top,
      .draft,
      .cta-band {
        grid-template-columns: 1fr;
      }

      .grid-3,
      .flow,
      .pricing {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      .page {
        width: min(100% - 20px, 1320px);
        padding-top: 16px;
      }

      .topbar {
        align-items: flex-start;
        flex-direction: column;
      }

      .metric-grid,
      .approve {
        grid-template-columns: 1fr;
      }
    }
  


/* ---- Artikel-, Tabellen- und FAQ-Stile (uebernommen aus dem VeloMenu-Stylesheet) ---- */
.shell { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.logo { font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: .02em; }
.logo b { color: var(--gold); }
.logo small { display: block; font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.top-nav { display: flex; gap: 4px 18px; align-items: center; flex-wrap: wrap; font-size: .86rem; font-weight: 600; }
.top-nav a { color: var(--muted); padding: 6px 2px; }
.top-nav a:hover, .top-nav a[aria-current="page"] { color: var(--gold-light); }
/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; font-size: .92rem; cursor: pointer; transition: transform .16s ease, border-color .16s ease, background .16s ease; font-family: "Inter", sans-serif; }
.btn:hover { transform: translateY(-2px); border-color: var(--gold); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #14100a; border: none; }
.btn-ghost { background: transparent; color: var(--gold-light); border-color: rgba(201,168,76,.4); }
.plan .btn { margin-top: auto; }
.compare { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
@media (max-width: 700px) {
  .compare { overflow-x: visible; border: none; }
  .compare table, .compare tbody, .compare tr, .compare td { display: block; width: 100%; }
  .compare thead { display: none; }
  .compare tr { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 8px; padding: 8px 12px; scroll-margin-top: 16px; }
  .compare td { display: flex; justify-content: space-between; gap: 10px; padding: 2px 0; border: none !important; font-size: .88rem; line-height: 1.4; text-align: right; }
  .compare td::before { content: attr(data-label); color: var(--muted); flex: 0 0 76px; text-align: left; }
  .compare td:first-child { display: block; text-align: left; font-size: 1.02rem; font-weight: 700; padding-bottom: 5px; border-bottom: 1px solid var(--line) !important; margin-bottom: 4px; }
  .compare td:first-child::before { content: none; }
  .jump-vm { display: block; margin: 0 0 12px; padding: 12px 14px; border: 1px solid var(--gold-dark, var(--line)); border-radius: var(--radius); text-align: center; font-weight: 700; }
}
/* Artikel / Content-Seiten */
.article { max-width: 780px; margin: 0 auto; padding: clamp(32px, 5vw, 56px) 0 24px; }
.article h1 { text-align: left; max-width: none; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.article .meta-line { color: var(--muted); font-size: .82rem; margin: 14px 0 0; }
.article h2 { text-align: left; font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin: 44px 0 12px; }
.article h3 { font-family: "DM Sans", sans-serif; font-size: 1.08rem; margin: 28px 0 8px; }
.article p, .article li { color: #c9c5bd; font-size: 1rem; line-height: 1.75; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 6px; }
.article strong { color: var(--text); }
.article a { color: var(--gold-light); text-decoration: underline; text-decoration-color: rgba(201,168,76,.4); text-underline-offset: 3px; }
.article .compare { margin: 18px 0; }
.article table { font-size: .84rem; }
.article blockquote { border-left: 3px solid var(--gold); margin: 20px 0; padding: 8px 0 8px 18px; color: var(--text); font-style: normal; background: rgba(201,168,76,.05); border-radius: 0 8px 8px 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 18px 20px; margin: 0 0 12px; }
.faq-item h3 { margin: 0 0 8px; font-size: 1rem; }
.faq-item p { margin: 0; font-size: .94rem; }
.info-box { border: 1px solid rgba(201,168,76,.45); border-radius: var(--radius); background: linear-gradient(160deg, rgba(201,168,76,.08), transparent); padding: 20px 22px; margin: 22px 0; }
.info-box h3 { margin: 0 0 8px; }
.info-box p { margin: 0; }
.article-cta { border: 1px solid rgba(201,168,76,.45); border-radius: 16px; background: linear-gradient(160deg, rgba(201,168,76,.09), transparent); padding: 28px 26px; margin: 44px 0 0; text-align: center; }
.article-cta h2 { margin-top: 0; text-align: center; }
.article-cta p { color: var(--muted); max-width: 560px; margin: 8px auto 20px; }
.related { max-width: 780px; margin: 0 auto; padding: 34px 0 64px; }
.related h2 { text-align: left; font-size: 1.2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.related-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); padding: 16px 16px 14px; font-size: .86rem; transition: border-color .16s ease, transform .16s ease; }
.related-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.related-card b { display: block; font-family: "DM Sans", sans-serif; margin-bottom: 6px; color: var(--text); }
.related-card span { color: var(--muted); }
.source-note { font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line); margin-top: 34px; padding-top: 14px; line-height: 1.6; }
.foot-nav { display: flex; gap: 4px 16px; flex-wrap: wrap; margin-top: 10px; }
.foot-nav a { color: var(--muted); }
.foot-nav a:hover { color: var(--gold-light); }
.cc-actions .btn { min-height: 42px; padding: 10px 18px; font-size: .86rem; }
@media (max-width: 860px) {
  .steps, .plans, .aufsteller, .related-grid { grid-template-columns: 1fr; }
  .row, .row3 { grid-template-columns: 1fr; }
}

/* ---- Hell-Theme-Korrektur (01.08.2026) ----
   Die Artikelregeln oben stammen aus dem VeloMenu-Stylesheet und sind fuer einen
   dunklen Hintergrund geschrieben. Diese Seite laeuft auf --paper (#f6f0e5).
   Ohne diesen Block steht der komplette Fliesstext in #c9c5bd auf #f6f0e5 —
   Kontrast 1,3:1, faktisch unlesbar. Farben hier auf die Papier-Palette gemappt;
   Zielwert ist mindestens 4,5:1 (WCAG AA fuer Fliesstext). */
.article p, .article li { color: var(--ink); }
.article .meta-line { color: var(--muted); }
.article h1, .article h2, .article h3 { color: var(--ink); }
.article strong { color: var(--ink); }
/* Links: Gold traegt auf hellem Grund nicht (2,0:1). Blau der Papier-Palette
   liegt bei rund 9:1 und ist als Link ohnehin die erwartete Farbe. */
.article a { color: var(--blue); text-decoration-color: rgba(36,63,107,.45); }
.article a:hover { color: var(--green); text-decoration-color: currentColor; }
.article blockquote { color: var(--ink); background: rgba(200,156,61,.10); border-left-color: var(--gold); }
.info-box { border-color: rgba(36,63,107,.35); background: linear-gradient(160deg, rgba(200,156,61,.14), transparent); }
.info-box h3, .info-box p { color: var(--ink); }
.article-cta { border-color: rgba(36,63,107,.35); background: linear-gradient(160deg, rgba(200,156,61,.14), transparent); }
.article-cta p { color: var(--muted); }
.faq-item h3, .faq-item p { color: var(--ink); }
.source-note { color: var(--muted); border-top-color: rgba(23,19,15,.18); }
.compare, .compare tr { border-color: rgba(23,19,15,.28); }
.compare td, .compare th { color: var(--ink); }
.compare td::before { color: var(--muted); }
.logo b { color: var(--gold-dark); }
.logo small { color: var(--muted); }
/* .top-nav a (0,2,0) schlaegt .btn-gold (0,1,0) — ohne diese Zeile steht die
   Schrift des Gold-Buttons in --muted auf dem Goldverlauf. */
.top-nav a.btn-gold, .btn-gold { color: #14100a; }
.top-nav a:hover, .top-nav a[aria-current="page"] { color: var(--green); }
.foot-nav a:hover { color: var(--green); }
.related-card b { color: var(--ink); }
.related-card span { color: var(--muted); }
.related-card:hover { border-color: var(--gold-dark); }
.jump-vm { border-color: rgba(23,19,15,.28); color: var(--ink); }

/* ---- Terminbuchung (/beratung) ----
   Eigener Namensraum .booking-*, damit die Formularregeln nicht mit den
   Artikelregeln kollidieren. Das Formular kam ohne Stylesheet und ohne Skript
   aus der Standalone-Seite herueber und war deshalb weder bedienbar noch lesbar. */
.booking { max-width: 780px; margin: 0 auto; padding: clamp(28px, 5vw, 48px) 0 24px; }
.booking h1 { text-align: left; font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--ink); }
.booking .lead { color: var(--ink); font-size: 1rem; line-height: 1.7; margin: 12px 0 26px; }
.booking .card { min-height: 0; margin-bottom: 16px; }
.booking .kicker { color: var(--blue); }
.booking .field { text-transform: none; font-size: .78rem; letter-spacing: .04em; color: var(--muted); }
.booking .field input,
.booking .field select,
.booking .field textarea {
  min-height: 46px; border: 2px solid var(--line); background: var(--paper);
  padding: 10px 12px; color: var(--ink); font: inherit; font-weight: 400;
  text-transform: none; border-radius: 0; width: 100%;
}
.booking .field textarea { min-height: 90px; resize: vertical; }
.booking .field input:focus-visible,
.booking .field select:focus-visible,
.booking .field textarea:focus-visible { outline: 3px solid var(--blue); outline-offset: 1px; }
.booking .chk { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 10px; }
.booking .chk label {
  display: flex; align-items: center; gap: 7px; cursor: pointer;
  border: 2px solid var(--line); background: var(--paper); padding: 8px 12px; font-size: .88rem;
}
.booking .chk input { accent-color: var(--green); }
.booking .card b { color: var(--ink); }
.booking .card > p { color: var(--muted); }
.booking .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking .plat { display: flex; gap: 12px; flex-wrap: wrap; }
.booking .plat label {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  border: 2px solid var(--line); background: var(--paper); padding: 10px 14px; font-size: .9rem;
}
.booking .plat input { accent-color: var(--green); }
.booking #slots { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.booking .slot {
  border: 2px solid var(--line); background: var(--paper); color: var(--ink);
  padding: 10px 14px; font: inherit; cursor: pointer; min-height: 44px;
}
.booking .slot:hover { border-color: var(--green); }
.booking .slot.sel { background: var(--green); color: var(--paper); border-color: var(--green); }
.booking .hint { color: var(--muted); font-size: .84rem; margin: 10px 0 0; line-height: 1.5; }
.booking .go {
  margin-top: 18px; width: 100%; min-height: 52px; border: 2px solid var(--line);
  background: var(--green); color: var(--paper); font: inherit; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
  box-shadow: 5px 5px 0 rgba(23,19,15,.18);
}
.booking .go:disabled { background: var(--panel-2); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.booking #status { display: none; margin: 14px 0 0; font-weight: 700; line-height: 1.5; }
@media (max-width: 620px) { .booking .two { grid-template-columns: 1fr; } }