:root {
      --yellow: #f5c400;
      --yellow-soft: #fff5bf;
      --ink: #17191c;
      --muted: #5e646c;
      --surface: #ffffff;
      --surface-alt: #f4f5f7;
      --line: #dfe2e6;
      --ok: #157347;
      --danger: #b42318;
      --radius: 18px;
      --shadow: 0 16px 45px rgba(23, 25, 28, .10);
      --max: 1180px;
      --font-main: Arial, Helvetica, sans-serif;
      --topbar-height: 42px;
      --header-height: 82px;
      --fixed-header-height: calc(var(--topbar-height) + var(--header-height));
      --admin-offset: 0px;
      --flow-font-size: clamp(.98rem, .94rem + .18vw, 1.08rem);
      --flow-line-height: clamp(1.56rem, 1.43rem + .38vw, 1.82rem);
    }

    * { box-sizing: border-box; }

    .theme-build-badge {
      position: fixed;
      right: 12px;
      bottom: 12px;
      z-index: 99999;
      padding: 7px 10px;
      border: 2px solid var(--ink);
      border-radius: 9px;
      background: var(--yellow);
      color: var(--ink);
      font-size: .76rem;
      font-weight: 950;
      box-shadow: 0 8px 22px rgba(0,0,0,.18);
    }
    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--fixed-header-height) + 18px);
      font-family: var(--font-main);
    }
    body {
      margin: 0;
      padding-top: var(--fixed-header-height);
      color: var(--ink);
      background: var(--surface);
      font-family: var(--font-main);
      line-height: 1.55;
    }
    body.admin-bar {
      --admin-offset: var(--wp-admin--admin-bar--height, 32px);
    }
    body,
    button,
    input,
    select,
    textarea,
    summary,
    table {
      font-family: var(--font-main) !important;
    }
    a { color: inherit; }
    img { max-width: 100%; }
    button, input, select { font: inherit; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin-inline: auto;
    }

    /*
      Einheitliche Satzgestaltung für längere Textinhalte.
      Die deutsche Seitensprache wird über WordPress language_attributes()
      am HTML-Element ausgegeben und aktiviert die sprachgerechte Trennung.
    */
    :where(main, footer) :is(
      p,
      li,
      dd,
      blockquote,
      figcaption,
      .helper,
      .source-note,
      .notice,
      .disclaimer,
      .service-note,
      .medical-warning,
      .alita-form-note,
      .alita-whatsapp-message,
      .location-status
    ) {
      font-size: var(--flow-font-size);
      line-height: var(--flow-line-height);
      text-align: justify;
      text-align-last: left;
      text-justify: inter-word;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
      hyphenate-character: "‐";
      hyphenate-limit-chars: 6 3 3;
      overflow-wrap: break-word;
      word-break: normal;
      line-break: auto;
      text-wrap: pretty;
    }

    /*
      Kurze Funktions-, Navigations- und Kennzeichnungstexte bleiben
      ohne Blocksatz, damit keine übergroßen Wortabstände entstehen.
    */
    :where(main, footer) :is(
      h1,
      h2,
      h3,
      h4,
      h5,
      h6,
      label,
      legend,
      summary,
      button,
      input,
      select,
      textarea,
      option,
      .eyebrow,
      .brand,
      .fact,
      .result-price,
      .result-meta,
      .cost-row,
      .card-link-hint,
      .call-number,
      .phone-button,
      .primary-button,
      .secondary-button,
      .whatsapp-button,
      .whatsapp-secondary
    ) {
      text-align: left;
      text-align-last: auto;
      -webkit-hyphens: manual;
      -ms-hyphens: manual;
      hyphens: manual;
    }

    .result-price,
    .fact,
    .call-number {
      text-align: inherit;
    }

    @media (max-width: 760px) {
      :root {
        --flow-font-size: clamp(.96rem, .92rem + .22vw, 1rem);
        --flow-line-height: clamp(1.5rem, 1.42rem + .32vw, 1.66rem);
      }

      :where(main, footer) :is(
        p,
        li,
        dd,
        blockquote,
        figcaption,
        .helper,
        .source-note,
        .notice,
        .disclaimer,
        .service-note,
        .medical-warning,
        .alita-form-note,
        .alita-whatsapp-message,
        .location-status
      ) {
        hyphenate-limit-chars: 5 2 2;
      }
    }

    @media (min-width: 1400px) {
      :root {
        --flow-font-size: 1.07rem;
        --flow-line-height: 1.78rem;
      }
    }

    .skip-link {
      position: fixed;
      left: 12px;
      top: -60px;
      z-index: 100;
      padding: 10px 14px;
      background: var(--ink);
      color: white;
      border-radius: 8px;
    }
    .skip-link:focus { top: 12px; }

    .topbar {
      position: fixed;
      top: var(--admin-offset);
      right: 0;
      left: 0;
      z-index: 7200;
      min-height: var(--topbar-height);
      background: var(--ink);
      color: white;
      font-size: .94rem;
    }
    .topbar-inner {
      display: flex;
      min-height: 42px;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .topbar p { margin: 0; }
    .topbar a { font-weight: 800; text-decoration: none; }

    header {
      position: fixed;
      top: calc(var(--admin-offset) + var(--topbar-height));
      right: 0;
      left: 0;
      z-index: 7100;
      min-height: var(--header-height);
      background: rgba(255,255,255,.97);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 26px rgba(23,25,28,.08);
      backdrop-filter: blur(12px);
    }
    .nav {
      display: flex;
      min-height: var(--header-height);
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      color: var(--ink);
      text-decoration: none;
      font-size: 1.22rem;
      font-weight: 950;
      line-height: 1.12;
      letter-spacing: -.025em;
      white-space: nowrap;
    }
    .brand > span:last-child {
      font-size: inherit;
    }
    .brand-mark {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      border-radius: 14px;
      background: var(--yellow);
      color: var(--ink);
      box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
      overflow: hidden;
      flex: 0 0 48px;
    }
    .brand-mark svg {
      display: block;
      width: 24px;
      height: 24px;
    }
    .brand small {
      display: block;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .05em;
      text-transform: uppercase;
    }
    nav ul {
      display: flex;
      align-items: center;
      gap: 22px;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    nav a {
      text-decoration: none;
      font-size: 1.02rem;
      font-weight: 800;
    }
    nav a:hover, nav a:focus-visible { text-decoration: underline; }
    .phone-button, .primary-button, .secondary-button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      border: 0;
      border-radius: 12px;
      padding: 12px 18px;
      font-weight: 900;
      text-decoration: none;
      cursor: pointer;
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .phone-button, .primary-button {
      background: var(--yellow);
      color: var(--ink);
      box-shadow: 0 7px 18px rgba(245,196,0,.25);
    }

    a[href^="tel:"],
    .whatsapp-button,
    .whatsapp-secondary {
      white-space: nowrap;
      word-break: keep-all;
    }

    .whatsapp-button,
    .whatsapp-secondary {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 12px;
      padding: 12px 18px;
      background: #168b52;
      color: #ffffff;
      font: inherit;
      font-weight: 900;
      text-decoration: none;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(22,139,82,.22);
    }
    .whatsapp-button:hover,
    .whatsapp-secondary:hover {
      background: #107240;
    }

    /* Kontrastregel: Helle gelbe und cremefarbene Elemente
       verwenden unabhängig vom umgebenden Bereich dunkle Schrift. */
    .eyebrow,
    .brand-mark,
    .icon-box,
    .contact-box {
      color: var(--ink);
    }
    .secondary-button {
      background: var(--ink);
      color: white;
    }
    .phone-button:hover, .primary-button:hover, .secondary-button:hover {
      transform: translateY(-1px);
    }

    .hero {
      overflow: hidden;
      background:
        radial-gradient(circle at 75% 15%, rgba(245,196,0,.28), transparent 28rem),
        linear-gradient(180deg, #fff 0%, #f7f7f8 100%);
      border-bottom: 1px solid var(--line);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 48px;
      align-items: center;
      min-height: 620px;
      padding-block: 72px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 18px;
      padding: 7px 11px;
      border-radius: 999px;
      background: var(--yellow-soft);
      color: var(--ink);
      font-size: .86rem;
      font-weight: 850;
    }
    h1, h2, h3 { line-height: 1.12; }
    h1 {
      max-width: 760px;
      margin: 0 0 20px;
      font-size: clamp(2.8rem, 6.2vw, 5.6rem);
      letter-spacing: -.055em;
    }
    h2 {
      margin: 0 0 18px;
      font-size: clamp(2.2rem, 4.2vw, 3.45rem);
      letter-spacing: -.04em;
    }
    h3 {
      margin-top: 0;
      font-size: clamp(1.28rem, 2vw, 1.55rem);
    }
    .lead {
      max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1.08rem, 2vw, 1.3rem);
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 22px;
      margin-top: 32px;
      color: var(--muted);
      font-weight: 750;
      font-size: .94rem;
    }
    .trust-row span::before {
      content: "✓";
      margin-right: 7px;
      color: var(--ok);
      font-weight: 1000;
    }

    .hero-card {
      position: relative;
      min-height: 420px;
      padding: 32px;
      border: 1px solid rgba(23,25,28,.08);
      border-radius: 32px;
      background: var(--ink);
      color: white;
      box-shadow: var(--shadow);
    }
    .hero-card::before {
      content: none;
    }
    .hero-card h3 {
      max-width: 260px;
      margin: 28px 0 14px;
      font-size: 2rem;
      letter-spacing: -.03em;
    }
    .hero-card p {
      max-width: 390px;
      color: #d7d9dc;
    }
    .call-number {
      display: block;
      margin-top: 46px;
      color: var(--yellow);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 950;
      letter-spacing: -.04em;
      text-decoration: none;
    }
    .availability {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      margin-top: 12px;
      font-weight: 750;
    }
    .availability::before {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #48d597;
      box-shadow: 0 0 0 5px rgba(72,213,151,.15);
      content: "";
    }

    section { padding-block: 86px; }
    .section-intro {
      max-width: 760px;
      margin-bottom: 36px;
    }
    .section-intro p {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .calculator-wrap {
      background: var(--surface-alt);
      border-block: 1px solid var(--line);
    }
    .calculator {
      display: grid;
      grid-template-columns: 1.12fr .88fr;
      gap: 28px;
      align-items: start;
    }
    .form-card, .result-card, .content-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .form-card { padding: 28px; }
    .result-card {
      position: sticky;
      top: 100px;
      padding: 28px;
      background: var(--ink);
      color: white;
    }
    .result-card p { color: #d7d9dc; }
    .result-price {
      margin: 16px 0 4px;
      color: var(--yellow);
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 950;
      letter-spacing: -.05em;
      line-height: 1;
    }
    .result-meta {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin: 24px 0;
    }
    .result-meta div {
      padding: 13px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      background: rgba(255,255,255,.06);
    }
    .result-meta small {
      display: block;
      color: #b7bbc0;
    }
    .result-meta strong { display: block; margin-top: 3px; }

    .cost-breakdown {
      display: grid;
      gap: 0;
      margin: 0 0 24px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      background: rgba(255,255,255,.04);
    }
    .cost-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 11px 13px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }
    .cost-row:last-child { border-bottom: 0; }
    .cost-row span { color: #c8ccd0; }
    .cost-row strong { text-align: right; }
    .cost-row.approach {
      background: rgba(245,196,0,.14);
    }
    .cost-row.approach span,
    .cost-row.approach strong { color: var(--yellow); }
    .location-status {
      margin: 0 0 20px;
      padding: 13px;
      border-radius: 12px;
      background: rgba(255,255,255,.07);
      color: #eef0f2;
      font-size: .9rem;
    }
    .location-status strong { color: white; }

    .disclaimer {
      padding: 14px;
      border-left: 4px solid var(--yellow);
      background: rgba(255,255,255,.07);
      color: #eef0f2;
      font-size: .9rem;
    }

    .notice {
      margin-bottom: 22px;
      padding: 14px 16px;
      border: 1px solid #efd36d;
      border-radius: 12px;
      background: #fff9d9;
      color: #544500;
      font-size: .92rem;
    }
    .notice strong { display: block; }
    .notice.error {
      border-color: #f2b8b5;
      background: #fff1f0;
      color: var(--danger);
    }
    .notice.success {
      border-color: #a8d8bf;
      background: #eefaf3;
      color: var(--ok);
    }
    .hidden { display: none !important; }

    form {
      display: grid;
      gap: 18px;
    }
    .field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }
    .field {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 7px;
      overflow: visible;
    }
    .field.full { grid-column: 1 / -1; }

    /* Das aktive Adressfeld und die Google-Trefferliste liegen immer
       über den danach folgenden Eingabefeldern. */
    .field.address-field-active,
    .field:focus-within {
      z-index: 5000;
    }
    .field-grid,
    .form-card,
    #fareForm {
      overflow: visible;
    }
    label {
      font-size: .92rem;
      font-weight: 850;
    }
    input, select {
      width: 100%;
      min-height: 50px;
      border: 1px solid #c9cdd2;
      border-radius: 11px;
      padding: 10px 12px;
      background: white;
      color: var(--ink);
    }
    input:focus, select:focus {
      outline: 3px solid rgba(245,196,0,.32);
      border-color: #9d7e00;
    }
    .checkbox {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .checkbox input {
      width: 20px;
      min-height: 20px;
      margin-top: 2px;
    }
    .helper {
      color: var(--muted);
      font-size: .84rem;
    }

    .places-widget-mount {
      position: relative;
      z-index: 5100;
      width: 100%;
      overflow: visible;
      isolation: isolate;
    }
    .places-widget-mount.hidden {
      display: none;
    }
    .places-widget-mount gmp-place-autocomplete {
      display: block;
      width: 100%;
      min-height: 50px;
      color: var(--ink);
      font-family: inherit;
      --gmp-mat-color-surface: #ffffff;
      --gmp-mat-color-on-surface: #17191c;
      --gmp-mat-color-on-surface-variant: #5e646c;
      --gmp-mat-color-primary: #17191c;
      --gmp-mat-color-outline-decorative: #c9cdd2;
      --gmp-mat-font-family: Arial, Helvetica, sans-serif;
    }
    .places-widget-mount gmp-place-autocomplete::part(input) {
      min-height: 50px;
      border: 1px solid #c9cdd2;
      border-radius: 11px;
      padding: 10px 12px;
      background: #ffffff;
      color: var(--ink);
      font: inherit;
    }
    .places-widget-mount gmp-place-autocomplete::part(input):focus {
      outline: 3px solid rgba(245,196,0,.32);
      border-color: #9d7e00;
    }
    .places-widget-mount gmp-place-autocomplete::part(prediction-item) {
      background: #ffffff;
      color: var(--ink);
    }
    .places-widget-mount gmp-place-autocomplete::part(prediction-item):hover,
    .places-widget-mount gmp-place-autocomplete::part(prediction-item):focus {
      background: var(--yellow-soft);
      color: var(--ink);
    }

    .address-input-wrap {
      position: relative;
      z-index: 40;
      width: 100%;
    }
    .address-input-wrap:focus-within {
      z-index: 100;
    }
    .address-suggestions {
      position: absolute;
      z-index: 10000;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      max-height: 340px;
      margin: 0;
      padding: 5px;
      overflow-y: auto;
      list-style: none;
      border: 1px solid #aeb4bb;
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 20px 50px rgba(23,25,28,.25);
    }
    .address-suggestions.hidden {
      display: none;
    }
    .address-suggestion {
      margin: 0;
      padding: 0;
    }
    .address-suggestion + .address-suggestion {
      border-top: 1px solid var(--line);
    }
    .address-suggestion button {
      display: grid;
      width: 100%;
      gap: 3px;
      border: 0;
      border-radius: 8px;
      padding: 12px 13px;
      background: #ffffff;
      color: var(--ink);
      text-align: left;
      cursor: pointer;
    }
    .address-suggestion button:hover,
    .address-suggestion button:focus-visible,
    .address-suggestion button[aria-selected="true"] {
      outline: none;
      background: var(--yellow-soft);
      color: var(--ink);
    }
    .address-suggestion-main {
      color: var(--ink);
      font-weight: 900;
      line-height: 1.25;
    }
    .address-suggestion-secondary {
      color: var(--muted);
      font-size: .84rem;
      line-height: 1.3;
    }
    .address-suggestion-empty {
      padding: 13px;
      color: var(--muted);
      font-size: .88rem;
    }
    .address-validation {
      display: flex;
      gap: 7px;
      align-items: flex-start;
      min-height: 20px;
      color: var(--muted);
      font-size: .82rem;
      line-height: 1.35;
    }
    .address-validation::before {
      flex: 0 0 auto;
      font-weight: 950;
    }
    .address-validation.neutral::before {
      content: "○";
    }
    .address-validation.checking::before {
      content: "…";
    }
    .address-validation.valid {
      color: var(--ok);
      font-weight: 750;
    }
    .address-validation.valid::before {
      content: "✓";
    }
    .address-validation.warning {
      color: #8a5b00;
      font-weight: 750;
    }
    .address-validation.warning::before {
      content: "!";
    }
    .address-validation.invalid {
      color: var(--danger);
      font-weight: 750;
    }
    .address-validation.invalid::before {
      content: "×";
    }
    .form-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
    }
    .loading {
      display: none;
      color: var(--muted);
      font-weight: 750;
    }
    .loading.show { display: inline; }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .content-card { padding: 25px; box-shadow: none; }
    .icon-box {
      display: grid;
      width: 48px;
      height: 48px;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 13px;
      background: var(--yellow-soft);
      color: var(--ink);
      font-size: 1.35rem;
    }
    .content-card p { color: var(--muted); }

    .service-card-link {
      display: block;
      color: var(--ink);
      text-decoration: none;
      cursor: pointer;
      transition:
        transform .15s ease,
        box-shadow .15s ease,
        border-color .15s ease;
    }
    .service-card-link:hover {
      transform: translateY(-3px);
      border-color: #b59600;
      box-shadow: 0 14px 32px rgba(23, 25, 28, .12);
    }
    .service-card-link:focus-visible {
      outline: 4px solid rgba(245,196,0,.55);
      outline-offset: 4px;
      border-color: #8c7000;
    }
    .card-link-hint {
      display: inline-block;
      margin-top: 8px;
      color: var(--ink);
      font-weight: 900;
    }

    .tariff-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }
    .tariff-table {
      width: 100%;
      border-collapse: collapse;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: white;
    }
    .tariff-table th, .tariff-table td {
      padding: 14px 16px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }
    .tariff-table th {
      background: var(--surface-alt);
      font-size: .9rem;
    }
    .tariff-table tr:last-child td { border-bottom: 0; }
    .source-note {
      margin-top: 14px;
      color: var(--muted);
      font-size: .88rem;
    }

    .alita-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }
    .alita-callout {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--yellow);
      color: var(--ink);
    }
    .alita-callout .call-number {
      display: inline-block;
      max-width: 100%;
      margin-top: 18px;
      color: var(--ink);
      font-size: clamp(2rem, 6vw, 3.2rem);
      line-height: 1.05;
      white-space: nowrap;
      word-break: keep-all;
      overflow-wrap: normal;
    }
    .alita-callout p { margin-bottom: 0; }
    .critical-alert {
      margin-top: 24px;
      padding: 18px;
      border: 4px solid #8f1515;
      border-radius: 14px;
      background: #fff;
      color: #701010;
      box-shadow: 0 10px 24px rgba(112,16,16,.16);
    }
    .critical-alert small {
      display: block;
      margin-bottom: 5px;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .critical-alert strong {
      display: block;
      font-size: 1.12rem;
      line-height: 1.35;
    }
    .alita-steps {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
      counter-reset: alita;
    }
    .alita-steps li {
      position: relative;
      min-height: 76px;
      padding: 17px 17px 17px 72px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: white;
    }
    .alita-steps li::before {
      position: absolute;
      left: 17px;
      top: 16px;
      display: grid;
      width: 39px;
      height: 39px;
      place-items: center;
      border-radius: 12px;
      background: var(--ink);
      color: white;
      content: counter(alita);
      counter-increment: alita;
      font-weight: 950;
    }
    .timetable-symbol {
      display: inline-grid;
      width: 38px;
      height: 30px;
      place-items: center;
      margin-inline: 5px;
      border: 2px solid var(--ink);
      border-radius: 7px;
      background: white;
      font-size: 1.1rem;
      vertical-align: middle;
    }
    .service-note {
      margin-top: 28px;
      padding: 18px 20px;
      border-left: 5px solid var(--yellow);
      background: var(--surface-alt);
    }

    .alita-whatsapp-card {
      margin-top: 34px;
      padding: 30px;
      border: 2px solid #168b52;
      border-radius: var(--radius);
      background: #ffffff;
      box-shadow: var(--shadow);
    }
    .alita-whatsapp-card h3 {
      margin-bottom: 8px;
    }
    .alita-whatsapp-intro {
      max-width: 850px;
      margin-bottom: 24px;
    }
    .alita-whatsapp-intro p {
      color: var(--muted);
    }
    .alita-order-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }
    .alita-order-grid .full {
      grid-column: 1 / -1;
    }
    .alita-special-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 18px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface-alt);
    }
    .alita-special-grid legend {
      padding-inline: 5px;
      font-weight: 900;
    }
    .alita-special-grid .checkbox {
      margin: 0;
    }
    .alita-form-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-top: 22px;
    }
    .alita-form-note {
      color: var(--muted);
      font-size: .88rem;
    }
    .alita-timetable-status {
      padding: 14px 16px;
      border: 1px solid var(--line);
      border-radius: 11px;
      background: var(--surface-alt);
      color: var(--muted);
      font-size: .9rem;
    }
    .alita-timetable-status.success {
      border-color: #9bd6b8;
      background: #effbf4;
      color: var(--ok);
    }
    .alita-timetable-status.warning {
      border-color: #dfc36c;
      background: #fff9d9;
      color: #6a5500;
    }
    .alita-timetable-status.error {
      border-color: #ef9b95;
      background: #fff0ef;
      color: var(--danger);
    }
    .alita-whatsapp-message {
      margin-top: 16px;
      padding: 13px 15px;
      border-radius: 11px;
      background: var(--surface-alt);
      color: var(--ink);
    }
    .alita-whatsapp-message.error {
      border: 1px solid #ef9b95;
      background: #fff0ef;
      color: var(--danger);
    }
    .alita-whatsapp-message.success {
      border: 1px solid #9bd6b8;
      background: #effbf4;
      color: var(--ok);
    }
    .alita-deadline-box {
      padding: 14px 16px;
      border-left: 5px solid var(--yellow);
      background: #fff9d9;
      color: #544500;
    }
    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    @media (max-width: 720px) {
      .alita-order-grid,
      .alita-special-grid {
        grid-template-columns: 1fr;
      }
      .alita-whatsapp-card {
        padding: 22px;
      }
      .alita-callout .call-number {
        font-size: clamp(2rem, 8vw, 2.7rem);
      }
      .contact-actions {
        justify-content: flex-start;
      }
    }

    .medical-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 28px;
      align-items: start;
    }
    .medical-grid.single-column {
      grid-template-columns: 1fr;
    }
    .medical-card {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: white;
    }
    .medical-card h3 { margin-bottom: 12px; }
    .medical-card p, .medical-card li { color: var(--muted); }
    .medical-card ul {
      margin: 14px 0 0;
      padding-left: 20px;
    }
    .copay-box {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--ink);
      color: white;
      box-shadow: var(--shadow);
    }
    .copay-box p { color: #d7d9dc; }
    .copay-formula {
      margin: 18px 0;
      padding: 18px;
      border-radius: 14px;
      background: var(--yellow);
      color: var(--ink);
      font-size: 1.2rem;
      font-weight: 950;
      text-align: center;
    }
    .copay-examples {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }
    .copay-examples div {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }
    .copay-examples div:last-child { border-bottom: 0; }
    .medical-warning {
      margin-top: 22px;
      padding: 16px 18px;
      border-left: 5px solid var(--yellow);
      background: #fff9d9;
      color: #544500;
    }

    .about {
      background: var(--ink);
      color: white;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 58px;
      align-items: center;
    }
    .about p { color: #d0d3d6; }
    .facts {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .fact {
      padding: 20px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      background: rgba(255,255,255,.06);
    }
    .fact strong {
      display: block;
      color: var(--yellow);
      font-size: 1.8rem;
      line-height: 1;
    }
    .fact span {
      display: block;
      margin-top: 8px;
      color: #d0d3d6;
    }

    details {
      border-top: 1px solid var(--line);
      padding-block: 18px;
    }
    details:last-child { border-bottom: 1px solid var(--line); }
    summary {
      cursor: pointer;
      font-weight: 850;
      font-size: 1.05rem;
    }
    details p { max-width: 850px; color: var(--muted); }

    .contact-box {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      padding: 38px;
      border-radius: 24px;
      background: var(--yellow);
      color: var(--ink);
    }
    .contact-box h2 { margin-bottom: 8px; }
    .contact-box p { margin: 0; max-width: 700px; }
    .contact-box .secondary-button { min-width: 220px; }

    footer {
      padding-block: 36px;
      background: var(--ink);
      color: #d0d3d6;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
    }
    .footer-links a { color: white; }

    @media (max-width: 900px) {
      nav ul { display: none; }
      .hero-grid, .calculator, .tariff-grid, .about-grid, .alita-grid, .medical-grid {
        grid-template-columns: 1fr;
      }
      .hero-grid { min-height: auto; padding-block: 54px; }
      .hero-card { min-height: 350px; }
      .result-card { position: static; }
      .cards { grid-template-columns: 1fr; }
      .about-grid { gap: 34px; }
      .contact-box, .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 782px) {
      body.admin-bar {
        --admin-offset: 46px;
      }
    }

    @media (max-width: 620px) {
      :root {
        --header-height: 70px;
      }
      .topbar-inner { justify-content: center; text-align: center; }
      .topbar-inner p:first-child { display: none; }
      .nav { min-height: var(--header-height); }
      .brand-mark { width: 42px; height: 42px; }
      .phone-button { padding-inline: 13px; font-size: .9rem; }
      .field-grid, .result-meta, .facts { grid-template-columns: 1fr; }
      .house-number-wrap { grid-template-columns: 1fr; }
      section { padding-block: 64px; }
      .form-card, .result-card { padding: 21px; }
      .contact-box { padding: 26px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition: none !important; }
    }
  

    /* Version 1.0.16 – Branding, Hero, Bestellwege, UPS */
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--ink);
      text-decoration: none;
      white-space: nowrap;
    }
    .brand-mark {
      display: inline-flex;
      width: 58px;
      height: 58px;
      align-items: center;
      justify-content: center;
      flex: 0 0 58px;
      border-radius: 16px;
      background: var(--yellow);
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(23,25,28,.08);
      color: inherit;
    }
    .brand-mark img {
      width: 34px;
      height: 34px;
      object-fit: contain;
      display: block;
      filter: none;
    }
    .brand-text {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      width: max-content;
      line-height: 1;
    }
    .brand-title {
      display: block;
      font-size: clamp(1.95rem, 1.45rem + 1vw, 2.3rem);
      font-weight: 950;
      letter-spacing: -.03em;
      white-space: nowrap;
      line-height: 1;
    }
    .brand-subline {
      display: block;
      font-size: clamp(1.02rem, .95rem + .18vw, 1.12rem);
      font-weight: 850;
      letter-spacing: .02em;
      color: var(--muted);
      white-space: nowrap;
      line-height: 1.08;
      text-transform: uppercase;
    }

    nav a,
    .section-intro > h2,
    .content-card h3,
    #taxi-deutschland-app h2,
    #kontakt h2,
    #krankenfahrten h2,
    #faq h2 {
      white-space: nowrap;
      word-break: keep-all;
      overflow-wrap: normal;
      hyphens: manual;
    }

    .hero-title-line {
      display: block;
      max-width: 13.8ch;
      font-size: clamp(2.65rem, 7vw, 6.1rem);
      line-height: .98;
      letter-spacing: -.045em;
      text-align: justify;
      text-align-last: left;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
      text-wrap: balance;
      white-space: normal;
    }

    .result-order-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
      margin-bottom: 18px;
    }

    .secondary-button,
    .primary-button,
    .phone-button,
    .whatsapp-button,
    .whatsapp-secondary,
    .call-number {
      white-space: nowrap;
    }

    @media (max-width: 980px) {
      .brand-title {
        font-size: clamp(1.62rem, 1.28rem + .9vw, 1.95rem);
      }
      .brand-subline {
        font-size: .92rem;
      }
      .hero-title-line {
        max-width: 13.2ch;
        font-size: clamp(2.2rem, 8.2vw, 4.35rem);
      }
    }

    @media (max-width: 700px) {
      .brand-mark {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
      }
      .brand-mark img {
        width: 30px;
        height: 30px;
      }
      .brand-title {
        font-size: 1.46rem;
      }
      .brand-subline {
        font-size: .8rem;
      }
      nav a {
        font-size: .96rem;
      }
      .hero-title-line {
        max-width: 12.6ch;
        font-size: clamp(2rem, 9.2vw, 3.2rem);
      }
    }

  

    /* Version 1.0.17 – Logos, Umbruch, Hero, UPS-Nachricht */
    .image-icon {
      padding: 0;
      overflow: hidden;
      background: transparent;
    }
    .image-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .image-icon-ups {
      width: 86px;
      height: 86px;
      border-radius: 18px;
      background: #fff;
      padding: 6px;
    }
    .inline-logo {
      width: 26px;
      height: 26px;
      object-fit: contain;
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
    }
    .alita-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    /* Alle Texte und Überschriften dürfen umbrechen und werden getrennt */
    h1, h2, h3, h4, h5, h6,
    p, li, dd, dt, figcaption, blockquote, small,
    .section-intro > h2,
    .section-intro > p,
    .brand-title,
    .brand-subline,
    nav a,
    .content-card p,
    .content-card h3,
    .notice,
    .disclaimer,
    .helper {
      white-space: normal !important;
      overflow-wrap: anywhere;
      word-break: normal;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
    }

    .brand-text {
      min-width: 0;
    }

    .hero-copy h1,
    .hero-title-line {
      max-width: 18ch !important;
      text-align: left !important;
      text-align-last: auto !important;
      text-wrap: balance;
      white-space: normal !important;
      font-size: clamp(2.6rem, 7vw, 5.7rem) !important;
      line-height: .97 !important;
      letter-spacing: -.04em !important;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
    }

    @media (max-width: 900px) {
      .hero-copy h1,
      .hero-title-line {
        max-width: 13ch !important;
        font-size: clamp(2.2rem, 9vw, 4.2rem) !important;
      }
    }

    @media (max-width: 560px) {
      .hero-copy h1,
      .hero-title-line {
        max-width: 11ch !important;
        font-size: clamp(1.95rem, 11vw, 3.1rem) !important;
      }
    }

    .app-download-card,
    .ups-status-card {
      display: grid;
      grid-template-columns: minmax(120px, 220px) 1fr;
      gap: 28px;
      align-items: center;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: clamp(22px, 3vw, 34px);
      box-shadow: var(--shadow);
    }
    .app-download-visual,
    .ups-status-visual {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .app-download-visual img {
      width: 180px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
    .ups-status-visual img {
      width: 220px;
      max-width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
      border-radius: 22px;
    }
    .store-links,
    .ups-status-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    @media (max-width: 780px) {
      .app-download-card,
      .ups-status-card {
        grid-template-columns: 1fr;
        align-items: start;
      }
      .app-download-visual,
      .ups-status-visual {
        justify-content: flex-start;
      }
    }

  

    /* Version 1.0.18 – Header ohne Umbruch, Inhalt mit Silbentrennung */

    /* Seiteninhalt: Texte und Überschriften dürfen umbrechen und trennen. */
    main :is(
      h1, h2, h3, h4, h5, h6,
      p, li, dd, dt, blockquote, figcaption,
      .lead, .notice, .disclaimer, .helper,
      .source-note, .service-note,
      .primary-button, .secondary-button,
      .whatsapp-button, .whatsapp-secondary
    ),
    footer :is(p, li, small, a) {
      white-space: normal !important;
      overflow-wrap: break-word !important;
      word-break: normal !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
    }

    .call-number,
    a[href^="tel:"] {
      white-space: nowrap !important;
      word-break: keep-all !important;
      -webkit-hyphens: none !important;
      -ms-hyphens: none !important;
      hyphens: none !important;
    }

    /* Hero: bewusst kein Blocksatz. */
    .hero h1,
    .hero-title-line {
      text-align: left !important;
      text-align-last: auto !important;
      text-justify: auto !important;
      max-width: 17ch !important;
      text-wrap: balance;
      white-space: normal !important;
      overflow-wrap: break-word !important;
      word-break: normal !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
    }

    /* Taxi-Deutschland: sicherer Umbruch auf kleineren Displays. */
    #taxi-deutschland-app .app-download-copy,
    #taxi-deutschland-app .app-download-copy h2,
    #taxi-deutschland-app .app-download-copy p {
      min-width: 0;
      max-width: 100%;
      white-space: normal !important;
      overflow-wrap: break-word !important;
      word-break: normal !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
    }

    /* Kopfzeile: keinerlei Zeilenumbruch. */
    header,
    header * {
      -webkit-hyphens: none !important;
      -ms-hyphens: none !important;
      hyphens: none !important;
    }
    header .nav {
      display: flex;
      flex-wrap: nowrap !important;
      align-items: center;
      gap: clamp(10px, 1.5vw, 22px);
      min-width: 0;
    }
    header .brand {
      flex: 0 0 auto;
      min-width: 0;
      white-space: nowrap !important;
    }
    header .brand-text {
      display: grid;
      grid-template-rows: auto auto;
      align-items: center;
      width: var(--brand-line-width, auto);
      min-width: 0;
      line-height: 1;
    }
    header .brand-title,
    header .brand-subline {
      display: block;
      width: 100%;
      margin: 0;
      white-space: nowrap !important;
      overflow-wrap: normal !important;
      word-break: keep-all !important;
    }
    header .brand-title {
      font-size: clamp(1.45rem, 1.05rem + 1.15vw, 2.25rem);
      line-height: 1;
    }
    header .brand-subline {
      font-size: clamp(.68rem, .52rem + .42vw, 1.04rem);
      line-height: 1.05;
      text-align: justify !important;
      text-align-last: justify !important;
      letter-spacing: 0;
    }
    header nav {
      flex: 1 1 auto;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
    }
    header nav::-webkit-scrollbar {
      display: none;
    }
    header nav ul {
      display: flex;
      flex-wrap: nowrap !important;
      gap: clamp(8px, 1.3vw, 20px);
      min-width: max-content;
    }
    header nav li {
      flex: 0 0 auto;
    }
    header nav a {
      display: inline-block;
      white-space: nowrap !important;
      word-break: keep-all !important;
      font-size: clamp(.82rem, .72rem + .28vw, 1rem);
    }
    header .phone-button {
      flex: 0 0 auto;
      white-space: nowrap !important;
      font-size: clamp(.86rem, .77rem + .2vw, 1rem);
      padding-inline: clamp(12px, 1.5vw, 20px);
    }

    /* Bearbeitungszeit für digitale Anfragen. */
    .digital-contact-note {
      margin: 10px 0 12px;
      padding: 10px 12px;
      border-left: 4px solid var(--yellow);
      border-radius: 8px;
      background: #fff8d4;
      color: #403500;
      font-size: .86rem !important;
      line-height: 1.42 !important;
      text-align: left !important;
      text-align-last: auto !important;
    }
    .digital-contact-note.is-outside-hours {
      border-left-color: #9b1c1c;
      background: #fff0ef;
      color: #7f1717;
    }
    .digital-contact-note a {
      font-weight: 900;
      white-space: nowrap !important;
    }
    .contact-digital-wrap {
      min-width: min(100%, 320px);
    }

    /* UPS-Abfrage direkt im Leistungsbaustein. */
    .ups-inline-check {
      margin-top: 16px;
      border-top: 1px solid var(--line);
      padding-top: 14px;
    }
    .ups-inline-check summary {
      cursor: pointer;
      font-weight: 900;
      white-space: normal !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
    }
    .ups-card-status-form {
      display: grid;
      gap: 12px;
      margin-top: 14px;
    }
    .ups-card-status-form .field {
      gap: 5px;
    }
    .ups-card-status-form input {
      min-height: 44px;
      width: 100%;
    }
    .ups-card-status-form .whatsapp-button {
      width: 100%;
    }

    @media (max-width: 980px) {
      header .nav {
        gap: 10px;
      }
      header .brand-mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
      }
      header .brand-mark img {
        width: 29px;
        height: 29px;
      }
      header .brand-title {
        font-size: clamp(1.25rem, 1.05rem + .65vw, 1.6rem);
      }
      header .brand-subline {
        font-size: clamp(.58rem, .5rem + .25vw, .78rem);
      }
      #taxi-deutschland-app .app-download-copy h2 {
        font-size: clamp(1.75rem, 5vw, 2.7rem);
        line-height: 1.05;
      }
    }

    @media (max-width: 700px) {
      header .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
      }
      header .brand-mark img {
        width: 25px;
        height: 25px;
      }
      header .brand-title {
        font-size: 1.12rem;
      }
      header .brand-subline {
        font-size: .52rem;
      }
      header .phone-button {
        padding: 9px 11px;
        font-size: .8rem;
      }
      #taxi-deutschland-app .app-download-card {
        grid-template-columns: 1fr;
      }
      #taxi-deutschland-app .app-download-copy h2 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
      }
    }

  

    /* Version 1.0.19 – Rechtliches und Google-Einwilligung */
    .google-privacy-gate {
      margin-bottom: 20px;
      padding: 18px;
      border: 1px solid #d9c255;
      border-radius: 14px;
      background: #fff9db;
      color: var(--ink);
    }
    .google-privacy-gate strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1.05rem;
    }
    .google-privacy-gate p {
      margin: 0 0 14px;
      text-align: left !important;
      text-align-last: auto !important;
    }
    .google-privacy-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .google-privacy-gate.is-enabled {
      border-color: #87c9a7;
      background: #effbf4;
    }

    .legal-section {
      padding: clamp(48px, 7vw, 90px) 0;
      scroll-margin-top: calc(var(--fixed-header-height) + var(--admin-offset) + 18px);
    }
    .legal-section:nth-of-type(even) {
      background: #f8f8f8;
    }
    .legal-card {
      max-width: 980px;
      padding: clamp(24px, 4vw, 42px);
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #ffffff;
      box-shadow: var(--shadow);
    }
    .legal-card h2 {
      margin-bottom: 28px;
    }
    .legal-card h3 {
      margin-top: 30px;
      margin-bottom: 8px;
    }
    .legal-card p {
      max-width: none;
    }
    .legal-card a {
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }
    .request-status-note {
      padding: 12px 14px;
      border-left: 4px solid var(--yellow);
      background: #fff9d9;
    }

    #alitaHealthConsentWrap {
      padding: 14px;
      border: 1px solid #d9c255;
      border-radius: 12px;
      background: #fff9db;
    }

    @media (max-width: 620px) {
      .google-privacy-actions > * {
        width: 100%;
      }
      .legal-card {
        padding: 20px;
        border-radius: 18px;
      }
    }

  
    /* Version 1.0.20 – Rollstuhltransport im Fahrpreisrechner */
    .wheelchair-field { margin-top: 4px; }
    .wheelchair-fare-info {
      display: grid; gap: 5px; padding: 12px 14px;
      border-left: 4px solid var(--yellow); border-radius: 9px;
      background: #fff9db; font-size: .9rem; line-height: 1.45;
    }
    .wheelchair-fare-info a { font-weight: 900; text-underline-offset: 2px; }
    .wheelchair-rule { margin-top: 6px; background: #eff7ff; border-color: #9fc5e8; }
    #fareWheelchairConsentWrap {
      margin-top: 16px; padding: 14px; border: 1px solid #d9c255;
      border-radius: 12px; background: #fff9db;
    }
    .wheelchair-case-card { border-top: 5px solid var(--yellow); }
    .wheelchair-order-card { margin-top: 24px; }
    #rollstuhltransport .medical-grid { align-items: stretch; }
    @media (max-width: 720px) {
      .wheelchair-fare-info, .wheelchair-rule { font-size: .86rem; }
    }

  

    /* Version 1.0.21 – Vollbreite und vollständig sichtbare Navigation */

    /* Die Inhaltsbereiche nutzen die verfügbare Fensterbreite mit nur
       einem dynamischen Sicherheitsrand. */
    .container {
      width: calc(100% - clamp(24px, 4vw, 72px)) !important;
      max-width: none !important;
      margin-inline: auto;
    }

    .section-intro {
      width: 100% !important;
      max-width: none !important;
    }

    .section-intro > p {
      width: 100%;
      max-width: none !important;
    }

    .calculator-wrap > .container,
    .hero > .container,
    section > .container {
      max-width: none !important;
    }

    /* Markenname und Unterzeile bleiben klar voneinander getrennt. */
    header .brand-text {
      display: grid !important;
      grid-template-rows: auto auto;
      align-content: center;
      row-gap: 5px !important;
      line-height: normal !important;
    }

    header .brand-title {
      line-height: 1.06 !important;
      margin: 0 !important;
    }

    header .brand-subline {
      line-height: 1.14 !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    /* Desktop: alle Menüpunkte in einer Zeile. */
    header .container.nav {
      width: calc(100% - clamp(20px, 2vw, 36px)) !important;
      max-width: none !important;
    }

    header nav {
      min-width: 0;
    }

    header nav ul {
      display: flex !important;
      flex-wrap: nowrap !important;
      align-items: center;
      justify-content: space-between;
      gap: clamp(5px, .75vw, 14px) !important;
      width: 100%;
      min-width: 0 !important;
    }

    header nav li {
      flex: 0 1 auto !important;
      min-width: 0;
    }

    header nav a {
      display: block;
      padding: 5px 3px;
      font-size: clamp(.76rem, .66rem + .28vw, 1rem) !important;
      line-height: 1.08;
      text-align: center;
      white-space: nowrap !important;
    }

    /* Mittlere Displays: Marke und Taxi-Button oben,
       vollständige Navigation in einer zweiten Zeile. */
    @media (max-width: 1350px) {
      :root {
        --header-height: 128px;
      }

      header .nav {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
          "brand spacer phone"
          "menu menu menu";
        align-content: center;
        column-gap: 14px !important;
        row-gap: 8px !important;
        padding-block: 8px;
      }

      header .brand {
        grid-area: brand;
      }

      header nav {
        grid-area: menu;
        width: 100%;
        overflow: visible !important;
      }

      header .phone-button {
        grid-area: phone;
      }

      header nav ul {
        display: grid !important;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 6px 10px !important;
      }

      header nav a {
        width: 100%;
        padding: 5px 2px;
        font-size: clamp(.78rem, .7rem + .22vw, .92rem) !important;
      }

      header .brand-title {
        font-size: clamp(1.45rem, 1.15rem + .75vw, 1.8rem) !important;
      }

      header .brand-subline {
        font-size: clamp(.64rem, .54rem + .25vw, .78rem) !important;
      }
    }

    /* Kleine Displays: alle sieben Reiter bleiben sichtbar,
       verteilt auf mehrere Zeilen – kein Reiter wird abgeschnitten. */
    @media (max-width: 760px) {
      :root {
        --header-height: 170px;
      }

      header .container.nav {
        width: calc(100% - 20px) !important;
      }

      header .nav {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
          "brand phone"
          "menu menu";
        row-gap: 9px !important;
      }

      header nav ul {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px 4px !important;
      }

      header nav a {
        font-size: .72rem !important;
        padding: 6px 2px;
      }

      header .brand {
        gap: 8px !important;
        min-width: 0;
      }

      header .brand-mark {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
      }

      header .brand-mark img {
        width: 24px !important;
        height: 24px !important;
      }

      header .brand-title {
        font-size: clamp(1rem, 3.8vw, 1.25rem) !important;
      }

      header .brand-subline {
        font-size: clamp(.48rem, 1.8vw, .62rem) !important;
      }

      header .phone-button {
        padding: 8px 10px !important;
        font-size: .76rem !important;
      }
    }

    @media (max-width: 520px) {
      :root {
        --header-height: 205px;
      }

      header nav ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      header nav a {
        font-size: .69rem !important;
      }

      header .brand-title {
        font-size: clamp(.92rem, 4.1vw, 1.1rem) !important;
      }

      header .brand-subline {
        font-size: clamp(.43rem, 1.85vw, .55rem) !important;
      }

      header .phone-button {
        font-size: .7rem !important;
        padding-inline: 8px !important;
      }
    }

  

    /* Version 1.0.22 – konsequente Vollbreite in allen Inhaltsbereichen */

    html,
    body,
    main,
    header,
    footer,
    section,
    .hero,
    .calculator-wrap,
    .about {
      width: 100%;
      max-width: none;
      box-sizing: border-box;
    }

    /* Einheitlicher Seitenrand, aber keine künstliche Maximalbreite. */
    :where(
      main,
      footer
    ) .container,
    header .container,
    section > .container,
    .hero > .container,
    .calculator-wrap > .container,
    footer > .container {
      width: calc(100% - clamp(20px, 3vw, 56px)) !important;
      max-width: none !important;
      margin-inline: auto !important;
      box-sizing: border-box;
    }

    /* Bisherige schmale Text- und Kartencontainer vollständig öffnen. */
    .section-intro,
    .section-intro > p,
    .lead,
    .hero-copy,
    .hero-card,
    .hero-card p,
    .hero-card h3,
    .alita-whatsapp-card,
    .alita-whatsapp-intro,
    .alita-whatsapp-intro p,
    .medical-card,
    .copay-box,
    .contact-box,
    .contact-box p,
    .legal-card,
    .legal-card p,
    .app-download-card,
    .app-download-copy,
    .ups-status-card,
    .ups-status-copy,
    .tariff-grid,
    .alita-grid,
    .medical-grid,
    .about-grid,
    .cards,
    .facts,
    #faq details,
    #faq details p,
    details p,
    .service-note,
    .medical-warning,
    .google-privacy-gate {
      width: 100% !important;
      max-width: none !important;
      box-sizing: border-box;
    }

    /* Grid-Kinder dürfen die verfügbare Breite wirklich ausnutzen. */
    .hero-grid,
    .tariff-grid,
    .alita-grid,
    .medical-grid,
    .about-grid,
    .app-download-card,
    .ups-status-card,
    .cards {
      min-width: 0;
    }

    .hero-grid > *,
    .tariff-grid > *,
    .alita-grid > *,
    .medical-grid > *,
    .about-grid > *,
    .app-download-card > *,
    .ups-status-card > *,
    .cards > * {
      min-width: 0;
      max-width: none;
    }

    /* Rechtliche Bereiche waren bisher nochmals auf 980 px begrenzt. */
    .legal-card {
      max-width: none !important;
    }

    /* FAQ-Texte waren separat begrenzt. */
    #faq details,
    #faq details p,
    details p {
      max-width: none !important;
    }

    /* Kontakttexte und ALiTa-Einleitungen nicht mehr künstlich schmal. */
    .contact-box p,
    .alita-whatsapp-intro,
    .lead {
      max-width: none !important;
    }

    /* Nur die Hero-Hauptüberschrift behält aus gestalterischen Gründen
       eine lesbare Zeilenlänge; der umgebende Container ist vollbreit. */
    .hero h1,
    .hero-title-line {
      width: auto !important;
    }

    @media (max-width: 900px) {
      :where(
        main,
        footer
      ) .container,
      header .container,
      section > .container,
      .hero > .container,
      .calculator-wrap > .container,
      footer > .container {
        width: calc(100% - 24px) !important;
      }
    }

    @media (max-width: 520px) {
      :where(
        main,
        footer
      ) .container,
      header .container,
      section > .container,
      .hero > .container,
      .calculator-wrap > .container,
      footer > .container {
        width: calc(100% - 16px) !important;
      }
    }

  
    .faq-more {
      margin-top: 10px;
      font-weight: 850;
    }
    .faq-more a {
      color: var(--ink);
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }
    .faq-more a:hover,
    .faq-more a:focus-visible {
      color: #7d6500;
    }

  
    .taxi-deutschland-button {
      position: relative;
      display: inline-flex;
      min-height: 58px;
      align-items: center;
      gap: 10px;
      padding: 6px 17px 7px 7px;
      border: 3px solid #000;
      border-radius: 16px;
      background: #ffed00;
      color: #000;
      text-decoration: none;
      box-shadow:
        0 5px 0 #e30613,
        0 8px 0 #000,
        0 12px 22px rgba(23,25,28,.16);
      transition:
        transform .15s ease,
        box-shadow .15s ease;
      white-space: nowrap !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
    }

    .taxi-deutschland-button:hover,
    .taxi-deutschland-button:focus-visible {
      transform: translateY(-2px);
      box-shadow:
        0 7px 0 #e30613,
        0 10px 0 #000,
        0 15px 26px rgba(23,25,28,.18);
    }

    .taxi-deutschland-button:focus-visible {
      outline: 4px solid rgba(245,196,0,.55);
      outline-offset: 4px;
    }

    .taxi-deutschland-button-logo {
      display: inline-flex;
      width: 46px;
      height: 46px;
      flex: 0 0 46px;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 11px;
      background: #ffed00;
    }

    .taxi-deutschland-button-logo img {
      width: 46px;
      height: 46px;
      display: block;
      object-fit: contain;
    }

    .taxi-deutschland-button-copy {
      display: grid;
      gap: 1px;
      line-height: 1;
      text-align: left;
    }

    .taxi-deutschland-button-copy strong {
      font-size: 1rem;
      font-weight: 950;
      letter-spacing: -.02em;
      white-space: nowrap !important;
    }

    .taxi-deutschland-button-copy small {
      font-size: .7rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: .06em;
      white-space: nowrap !important;
    }

    @media (max-width: 520px) {
      .taxi-deutschland-button {
        min-height: 54px;
        padding-right: 13px;
      }
      .taxi-deutschland-button-logo,
      .taxi-deutschland-button-logo img {
        width: 42px;
        height: 42px;
      }
      .taxi-deutschland-button-copy strong {
        font-size: .92rem;
      }
      .taxi-deutschland-button-copy small {
        font-size: .64rem;
      }
    }

  

    /* Version 1.0.23 – Mobile Hero, einheitliche Typografie und Buttons */

    :root {
      --runtime-fixed-header-height: var(--fixed-header-height);
      --type-body: clamp(.98rem, .96rem + .10vw, 1.04rem);
      --type-small: .86rem;
      --type-h2: clamp(1.9rem, 2.6vw, 2.65rem);
      --type-h3: clamp(1.2rem, 1.5vw, 1.42rem);
      --type-button: clamp(.96rem, .9rem + .16vw, 1.06rem);
    }

    body {
      padding-top: var(--runtime-fixed-header-height) !important;
      font-size: var(--type-body) !important;
    }

    html {
      scroll-padding-top: calc(var(--runtime-fixed-header-height) + 18px) !important;
    }

    body,
    main,
    footer,
    header,
    button,
    input,
    select,
    textarea,
    summary,
    label,
    a {
      font-family: var(--font-main) !important;
    }

    main :is(p, li, dd, dt, blockquote, figcaption),
    footer :is(p, li, small) {
      font-size: var(--type-body) !important;
      line-height: 1.6 !important;
    }

    main h2,
    .section-intro h2,
    .legal-card h2,
    .app-download-copy h2,
    .ups-status-copy h2 {
      font-size: var(--type-h2) !important;
      line-height: 1.08 !important;
      letter-spacing: -.025em !important;
    }

    main h3,
    .content-card h3,
    .medical-card h3,
    .hero-card h3,
    .legal-card h3 {
      font-size: var(--type-h3) !important;
      line-height: 1.15 !important;
      letter-spacing: -.015em !important;
    }

    .eyebrow,
    .helper,
    .source-note,
    .alita-form-note,
    .result-meta,
    .cost-row,
    label,
    legend {
      font-size: var(--type-small) !important;
    }

    .hero {
      overflow: visible !important;
    }

    .hero-grid,
    .hero-copy,
    .hero-copy h1 {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
    }

    .hero-copy h1 {
      margin: 0 0 22px !important;
      overflow: visible !important;
    }

    .hero-title-line {
      display: block !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
      overflow: visible !important;
      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      -webkit-hyphens: none !important;
      -ms-hyphens: none !important;
      hyphens: none !important;
      text-align: left !important;
      text-align-last: auto !important;
      text-wrap: balance;
      font-size: clamp(2.65rem, 6.2vw, 5.8rem) !important;
      line-height: .98 !important;
      letter-spacing: -.045em !important;
    }

    .hero-actions {
      display: grid !important;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px !important;
      width: 100%;
      margin-top: 28px;
    }

    .hero-actions > :is(
      .primary-button,
      .secondary-button,
      .whatsapp-secondary,
      .taxi-deutschland-button
    ) {
      width: 100% !important;
      min-width: 0 !important;
      min-height: 64px !important;
      height: 64px !important;
      margin: 0 !important;
      padding: 10px 16px !important;
      border-radius: 14px !important;
      box-sizing: border-box !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      font-family: var(--font-main) !important;
      font-size: var(--type-button) !important;
      font-weight: 900 !important;
      line-height: 1.1 !important;
      text-align: center !important;
      white-space: normal !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
    }

    .hero-actions .taxi-deutschland-button {
      position: relative;
      border: 3px solid #000 !important;
      background: #ffed00 !important;
      color: #000 !important;
      box-shadow:
        0 4px 0 #e30613,
        0 7px 0 #000,
        0 11px 20px rgba(23,25,28,.14) !important;
    }

    .hero-actions .taxi-deutschland-button-logo {
      width: 42px !important;
      height: 42px !important;
      flex: 0 0 42px !important;
      border-radius: 9px !important;
    }

    .hero-actions .taxi-deutschland-button-logo img {
      width: 42px !important;
      height: 42px !important;
    }

    .hero-actions .taxi-deutschland-button-copy {
      display: block !important;
      min-width: 0;
      line-height: 1.08 !important;
    }

    .hero-actions .taxi-deutschland-button-copy strong {
      font-family: var(--font-main) !important;
      font-size: var(--type-button) !important;
      font-weight: 900 !important;
      line-height: 1.08 !important;
      white-space: normal !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
    }

    header .brand-text {
      row-gap: 7px !important;
      line-height: normal !important;
    }

    header .brand-title {
      font-size: clamp(1.32rem, 1.05rem + .75vw, 1.82rem) !important;
      line-height: 1 !important;
      margin: 0 !important;
    }

    header .brand-subline {
      font-size: clamp(.58rem, .49rem + .25vw, .78rem) !important;
      line-height: 1.14 !important;
      margin: 0 !important;
    }

    @media (max-width: 1120px) {
      .hero-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero-title-line {
        font-size: clamp(2.5rem, 7.2vw, 4.8rem) !important;
      }
    }

    @media (max-width: 760px) {
      .hero {
        padding-top: clamp(30px, 7vw, 52px) !important;
      }

      .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
      }

      .hero-title-line {
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(2.35rem, 10.4vw, 4rem) !important;
        line-height: 1 !important;
        letter-spacing: -.04em !important;
      }

      .hero-actions {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
      }

      .hero-actions > :is(
        .primary-button,
        .secondary-button,
        .whatsapp-secondary,
        .taxi-deutschland-button
      ) {
        min-height: 62px !important;
        height: 62px !important;
        font-size: 1rem !important;
      }

      header .brand-title {
        font-size: clamp(1.06rem, 4vw, 1.3rem) !important;
      }

      header .brand-subline {
        font-size: clamp(.48rem, 1.8vw, .6rem) !important;
      }
    }

    @media (max-width: 440px) {
      .hero-title-line {
        font-size: clamp(2.15rem, 10.7vw, 3.3rem) !important;
      }

      .hero-actions .taxi-deutschland-button-logo {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
      }

      .hero-actions .taxi-deutschland-button-logo img {
        width: 38px !important;
        height: 38px !important;
      }
    }

  

    /* Version 1.0.24 – Sonderziele in Bestellanfragen */
    .order-place-note {
      margin-top: -4px;
    }

    .order-place-note p {
      margin: 0;
      padding: 10px 12px;
      border-left: 4px solid var(--yellow);
      border-radius: 8px;
      background: #fff9db;
      font-size: .88rem !important;
      line-height: 1.45 !important;
      text-align: left !important;
      text-align-last: auto !important;
    }

  

    /* Version 1.0.25 – Schnellbestellung hinter dem gelben Button */
    .quick-order-toggle {
      cursor: pointer;
      border: 0;
    }

    .quick-order-panel {
      width: 100%;
      margin-top: 18px;
      padding: clamp(18px, 3vw, 28px);
      border: 1px solid var(--line);
      border-radius: 24px;
      background: #fff;
      box-shadow: var(--shadow);
      scroll-margin-top: 110px;
      transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
    }

    .quick-order-panel:focus {
      outline: none;
    }

    .quick-order-panel.quick-order-panel-focus {
      border-color: rgba(245, 196, 0, .95);
      box-shadow:
        0 0 0 4px rgba(245, 196, 0, .18),
        0 22px 44px rgba(17, 24, 39, .16);
      transform: translateY(-2px);
    }

    @media (max-width: 720px) {
      .quick-order-panel {
        scroll-margin-top: 88px;
      }
    }

    .quick-order-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .quick-order-head > div {
      min-width: 0;
      flex: 1 1 auto;
    }

    .quick-order-head h3 {
      margin: 4px 0 8px;
    }

    .quick-order-head p {
      margin: 0;
      max-width: none !important;
    }

    .quick-order-close {
      display: inline-flex;
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: #f5f5f5;
      color: var(--ink);
      font-size: 1.7rem !important;
      font-weight: 700;
      line-height: 1;
      cursor: pointer;
    }

    .quick-order-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .quick-order-grid .full {
      grid-column: 1 / -1;
    }

    .quick-order-options {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 16px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fafafa;
    }

    .quick-order-options legend {
      padding: 0 6px;
      font-weight: 900;
    }

    #quickOrderHealthConsentWrap {
      margin-top: 16px;
      padding: 14px;
      border: 1px solid #d9c255;
      border-radius: 12px;
      background: #fff9db;
    }

    .quick-order-service-note {
      margin-top: 18px !important;
    }

    .quick-order-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .quick-order-actions > * {
      width: 100%;
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    @media (max-width: 720px) {
      .quick-order-grid,
      .quick-order-actions {
        grid-template-columns: 1fr;
      }

      .quick-order-options {
        grid-template-columns: 1fr;
      }

      .quick-order-panel {
        padding: 16px;
        border-radius: 18px;
      }

      .quick-order-head {
        gap: 10px;
      }
    }

  

    /* Version 1.0.26 – Anliegensteuerung im Kontakt-/Bestellformular */
    .quick-order-topic-field select {
      font-weight: 850;
    }

    .quick-order-topic-guide {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px;
      border: 1px solid #d9c255;
      border-radius: 14px;
      background: #fff9db;
    }

    .quick-order-topic-guide > div {
      min-width: 0;
      flex: 1 1 auto;
    }

    .quick-order-topic-guide strong {
      display: block;
      margin-bottom: 4px;
      font-size: 1.05rem;
    }

    .quick-order-topic-guide p {
      margin: 0;
      max-width: none !important;
      text-align: left !important;
      text-align-last: auto !important;
    }

    .quick-order-topic-guide .secondary-button {
      flex: 0 0 auto;
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .quick-order-subsection {
      width: 100%;
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
    }

    .quick-order-subsection-title {
      display: grid;
      gap: 3px;
      margin-bottom: 14px;
    }

    .quick-order-subsection-title strong {
      font-size: 1.08rem;
    }

    .quick-order-subsection-title span {
      color: var(--muted);
      font-size: .86rem;
    }

    #quickOrderInquiryText {
      width: 100%;
      min-height: 130px;
    }

    .quick-order-actions {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    @media (max-width: 820px) {
      .quick-order-topic-guide {
        align-items: stretch;
        flex-direction: column;
      }

      .quick-order-topic-guide .secondary-button {
        width: 100%;
      }

      .quick-order-actions {
        grid-template-columns: 1fr;
      }
    }

  

    /* Version 1.0.27 – Direktanruf und Behindertenfahrdienst-Abmeldung */
    .hero-phone-order {
      text-decoration: none;
    }

    .important-confirmation-note {
      margin-top: 14px;
      padding: 13px 14px;
      border-left: 4px solid #9b1c1c;
      border-radius: 9px;
      background: #fff0ef;
      color: #7f1717;
      line-height: 1.5;
    }

    #quickOrderDisabledCancelFields {
      background: #fafafa;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 16px;
    }

    #quickOrderDisabledCancelFields .quick-order-subsection-title {
      margin-top: 0;
    }

    @media (max-width: 720px) {
      #quickOrderDisabledCancelFields {
        padding: 14px;
      }
    }

  

    /* Version 1.0.28 – Behindertenfahrdienst-Abmeldung */
    .disabled-trip-scope {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fafafa;
    }

    .disabled-trip-scope legend {
      padding: 0 6px;
      font-weight: 900;
    }

    .radio-option {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      min-width: 0;
      padding: 10px;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
    }

    .radio-option input {
      flex: 0 0 auto;
      margin-top: 3px;
    }

    .disabled-return-note {
      padding: 13px 14px;
      border-left: 4px solid var(--yellow);
      border-radius: 9px;
      background: #fff9db;
      line-height: 1.5;
    }

    @media (max-width: 720px) {
      .disabled-trip-scope {
        grid-template-columns: 1fr;
      }
    }

  

    /* Version 1.0.29 – Auswahl "Welche Fahrten sind betroffen?" */
    .disabled-trip-scope {
      display: grid !important;
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: 12px !important;
      width: 100% !important;
      min-width: 0 !important;
      margin: 0 !important;
      padding: 14px !important;
      border: 1px solid var(--line) !important;
      border-radius: 14px !important;
      background: #fafafa !important;
      box-sizing: border-box !important;
    }

    .disabled-trip-scope legend {
      width: auto !important;
      max-width: calc(100% - 20px) !important;
      margin: 0 0 6px !important;
      padding: 0 6px !important;
      font-weight: 900 !important;
      white-space: normal !important;
      overflow-wrap: break-word !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
    }

    .disabled-trip-scope .radio-option {
      display: grid !important;
      grid-template-columns: 22px minmax(0, 1fr) !important;
      align-items: center !important;
      gap: 10px !important;
      width: 100% !important;
      min-width: 0 !important;
      min-height: 66px !important;
      margin: 0 !important;
      padding: 12px 14px !important;
      border: 1px solid var(--line) !important;
      border-radius: 12px !important;
      background: #fff !important;
      box-sizing: border-box !important;
      cursor: pointer !important;
    }

    /* Globale input/select-Regeln dürfen Radio-Buttons nicht aufblasen. */
    .disabled-trip-scope .radio-option input[type="radio"] {
      appearance: auto !important;
      -webkit-appearance: radio !important;
      width: 20px !important;
      height: 20px !important;
      min-width: 20px !important;
      max-width: 20px !important;
      min-height: 20px !important;
      max-height: 20px !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      border-radius: 50% !important;
      box-shadow: none !important;
      background: transparent !important;
      flex: 0 0 20px !important;
    }

    .disabled-trip-scope .radio-option span {
      display: block !important;
      width: 100% !important;
      min-width: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
      font-size: .95rem !important;
      font-weight: 800 !important;
      line-height: 1.35 !important;
      text-align: left !important;
      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: break-word !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
    }

    .disabled-trip-scope .radio-option:has(input[type="radio"]:checked) {
      border-color: #d2a900 !important;
      background: #fff8cf !important;
      box-shadow: inset 0 0 0 1px #d2a900 !important;
    }

    .disabled-trip-scope .radio-option:focus-within {
      outline: 3px solid rgba(245,196,0,.35) !important;
      outline-offset: 2px !important;
    }

    @media (max-width: 900px) {
      .disabled-trip-scope {
        grid-template-columns: 1fr !important;
      }

      .disabled-trip-scope .radio-option {
        min-height: 56px !important;
      }
    }

    @media (max-width: 520px) {
      .disabled-trip-scope {
        gap: 8px !important;
        padding: 10px !important;
      }

      .disabled-trip-scope .radio-option {
        min-height: 52px !important;
        padding: 10px 12px !important;
      }

      .disabled-trip-scope .radio-option span {
        font-size: .92rem !important;
      }
    }

  

    /* Version 1.0.31 – responsive, immer gleich große Hero-Buttons */
    .hero-actions {
      --hero-button-height: 74px;
      --hero-button-font-size: clamp(.9rem, .84rem + .18vw, 1.04rem);

      display: grid !important;
      grid-template-columns:
        repeat(auto-fit, minmax(min(100%, 220px), 1fr)) !important;
      grid-auto-rows: var(--hero-button-height) !important;
      align-items: stretch !important;
      gap: 14px !important;
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
    }

    .hero-actions > :is(
      .primary-button,
      .secondary-button,
      .whatsapp-secondary,
      .taxi-deutschland-button
    ) {
      width: 100% !important;
      min-width: 0 !important;
      max-width: none !important;
      min-height: var(--hero-button-height) !important;
      height: var(--hero-button-height) !important;
      padding: 10px 14px !important;
      margin: 0 !important;
      box-sizing: border-box !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 9px !important;

      font-family: var(--font-main) !important;
      font-size: var(--hero-button-font-size) !important;
      font-weight: 900 !important;
      line-height: 1.12 !important;
      text-align: center !important;

      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
    }

    /* Taxi-Deutschland: Logo und Text bleiben sicher innerhalb des Buttons. */
    .hero-actions .taxi-deutschland-button {
      display: grid !important;
      grid-template-columns: 42px minmax(0, 1fr) !important;
      align-items: center !important;
      justify-content: stretch !important;
      column-gap: 10px !important;
      overflow: hidden !important;
    }

    .hero-actions .taxi-deutschland-button-logo {
      width: 42px !important;
      height: 42px !important;
      min-width: 42px !important;
      max-width: 42px !important;
      min-height: 42px !important;
      max-height: 42px !important;
      margin: 0 !important;
      flex: none !important;
      justify-self: center !important;
      align-self: center !important;
    }

    .hero-actions .taxi-deutschland-button-logo img {
      display: block !important;
      width: 42px !important;
      height: 42px !important;
      object-fit: contain !important;
    }

    .hero-actions .taxi-deutschland-button-copy {
      display: block !important;
      width: 100% !important;
      min-width: 0 !important;
      max-width: 100% !important;
      overflow: hidden !important;
      text-align: center !important;
    }

    .hero-actions .taxi-deutschland-button-copy strong {
      display: grid !important;
      gap: 1px !important;
      width: 100% !important;
      min-width: 0 !important;
      margin: 0 !important;

      font-family: var(--font-main) !important;
      font-size: var(--hero-button-font-size) !important;
      font-weight: 900 !important;
      line-height: 1.06 !important;
      letter-spacing: -.015em !important;
      text-align: center !important;

      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
    }

    .hero-actions .taxi-deutschland-button-copy strong > span {
      display: block !important;
      width: 100% !important;
      white-space: nowrap !important;
    }

    /* Bei schmalen Buttons wird zuerst das Logo etwas kleiner,
       nicht die Textspalte gequetscht. */
    @media (max-width: 900px) {
      .hero-actions {
        --hero-button-height: 72px;
        --hero-button-font-size: .98rem;
      }
    }

    @media (max-width: 520px) {
      .hero-actions {
        --hero-button-height: 68px;
        --hero-button-font-size: .96rem;
        grid-template-columns: 1fr !important;
      }

      .hero-actions .taxi-deutschland-button {
        grid-template-columns: 38px minmax(0, 1fr) !important;
      }

      .hero-actions .taxi-deutschland-button-logo,
      .hero-actions .taxi-deutschland-button-logo img {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
      }
    }

    /* Extrem schmale Geräte: Text bleibt vollständig im Button. */
    @media (max-width: 360px) {
      .hero-actions {
        --hero-button-font-size: .9rem;
      }

      .hero-actions .taxi-deutschland-button {
        grid-template-columns: 34px minmax(0, 1fr) !important;
        column-gap: 8px !important;
        padding-inline: 10px !important;
      }

      .hero-actions .taxi-deutschland-button-logo,
      .hero-actions .taxi-deutschland-button-logo img {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
      }
    }

  

    /* Version 1.0.35 – ALiTa-Telefonnummer bleibt immer in ihrer Karte */
    .alita-callout {
      width: 100% !important;
      min-width: 0 !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
      container-type: inline-size;
    }

    .alita-callout .alita-main-phone {
      display: block !important;
      width: 100% !important;
      min-width: 0 !important;
      max-width: 100% !important;
      box-sizing: border-box !important;
      margin: 18px 0 0 !important;
      padding: 0 !important;

      /* Größe richtet sich an der tatsächlichen Breite des gelben Kastens aus. */
      font-size: min(3.2rem, 10.4cqw) !important;
      font-weight: 950 !important;
      line-height: 1 !important;
      letter-spacing: -.045em !important;
      font-variant-numeric: tabular-nums !important;

      color: var(--ink) !important;
      text-align: left !important;
      text-decoration: none !important;
      white-space: nowrap !important;
      word-break: keep-all !important;
      overflow-wrap: normal !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
    }

    /* Fallback für Browser ohne Container-Query-Einheiten. */
    @supports not (font-size: 1cqw) {
      .alita-callout .alita-main-phone {
        font-size: clamp(1.35rem, 6.2vw, 3.2rem) !important;
      }
    }

    @media (max-width: 620px) {
      .alita-callout {
        padding: clamp(20px, 5vw, 28px) !important;
      }

      .alita-callout .alita-main-phone {
        margin-top: 16px !important;
      }
    }

    @media (max-width: 380px) {
      .alita-callout {
        padding-inline: 18px !important;
      }
    }

  

    /* Version 1.0.36 – lesbare Bearbeitungszeit-Hinweise auf allen Hintergründen */
    .digital-contact-note {
      background: #fff4bf !important;
      color: #2b2400 !important;
      border-left-color: #f5c400 !important;
      border-top: 1px solid rgba(43, 36, 0, .10) !important;
      border-right: 1px solid rgba(43, 36, 0, .10) !important;
      border-bottom: 1px solid rgba(43, 36, 0, .10) !important;
      text-shadow: none !important;
      opacity: 1 !important;
    }

    .digital-contact-note,
    .digital-contact-note p,
    .digital-contact-note span,
    .digital-contact-note strong,
    .digital-contact-note b,
    .digital-contact-note em {
      color: #2b2400 !important;
    }

    .digital-contact-note strong,
    .digital-contact-note b {
      font-weight: 900 !important;
    }

    .digital-contact-note a {
      color: #17191c !important;
      font-weight: 950 !important;
      text-decoration: underline !important;
      text-decoration-thickness: 2px !important;
      text-underline-offset: 2px !important;
      text-shadow: none !important;
      opacity: 1 !important;
    }

    .digital-contact-note a:hover,
    .digital-contact-note a:focus-visible {
      color: #000 !important;
      background: rgba(245, 196, 0, .25) !important;
      border-radius: 4px !important;
      outline: none !important;
    }

    .digital-contact-note.is-outside-hours {
      background: #fff0ef !important;
      color: #6f1111 !important;
      border-left-color: #9b1c1c !important;
      border-top-color: rgba(111, 17, 17, .12) !important;
      border-right-color: rgba(111, 17, 17, .12) !important;
      border-bottom-color: rgba(111, 17, 17, .12) !important;
    }

    .digital-contact-note.is-outside-hours,
    .digital-contact-note.is-outside-hours strong,
    .digital-contact-note.is-outside-hours span,
    .digital-contact-note.is-outside-hours p {
      color: #6f1111 !important;
    }

    .digital-contact-note.is-outside-hours a {
      color: #520b0b !important;
    }

    /* Verhindert, dass Elternbereiche mit weißer Schrift den Hinweis überschreiben. */
    .alita-callout .digital-contact-note,
    .hero .digital-contact-note,
    .ups-card-status-form .digital-contact-note,
    .quick-order-panel .digital-contact-note,
    .contact-box .digital-contact-note {
      color: #2b2400 !important;
    }

  

    /* Version 1.0.37 – Prominente Telefonnummern und Inhaltsaktionen zentrieren */

    /*
     * Große Telefonnummern in Inhaltskarten werden als eigener CTA behandelt.
     * Inline-Telefonnummern in Hinweistexten sowie die Header-Telefonie bleiben
     * bewusst unverändert.
     */
    .hero-card .call-number,
    .alita-callout .call-number {
      display: block !important;
      width: 100% !important;
      max-width: 100% !important;
      margin-left: auto !important;
      margin-right: auto !important;
      text-align: center !important;
      text-align-last: center !important;
    }

    /* Die ALiTa-Hauptnummer behält ihre responsive Größenanpassung,
       wird aber immer mittig innerhalb der gelben Karte ausgerichtet. */
    .alita-callout .alita-main-phone {
      text-align: center !important;
      text-align-last: center !important;
      margin-inline: auto !important;
    }

    /* Einzelner grüner ALiTa-Button: Breite nach Inhalt, aber mittig in der Karte. */
    .alita-callout-action {
      display: flex !important;
      width: 100% !important;
      margin: 30px 0 0 !important;
      padding: 0 !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
    }

    .alita-callout-action .whatsapp-button {
      width: fit-content !important;
      max-width: 100% !important;
      margin-inline: auto !important;
      justify-content: center !important;
      text-align: center !important;
      text-align-last: center !important;
    }

    /*
     * Aktionsgruppen innerhalb der Inhaltsbereiche:
     * Buttons als Gruppe mittig statt links/rechts an den Container zu kleben.
     */
    .form-actions,
    .google-privacy-actions,
    .result-order-actions,
    .alita-form-actions,
    .contact-actions,
    .store-links {
      justify-content: center !important;
      text-align: center !important;
    }

    .store-links {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 12px !important;
    }

    /*
     * Buttonbeschriftungen selbst ebenfalls mittig. Das überschreibt die
     * allgemeine Regel für kurze Funktionstexte, die bisher linksbündig war.
     */
    :where(
      .form-actions,
      .google-privacy-actions,
      .result-order-actions,
      .alita-form-actions,
      .contact-actions,
      .store-links,
      .quick-order-actions,
      .ups-card-status-form,
      .ups-status-copy
    ) > :is(
      a.primary-button,
      a.secondary-button,
      a.whatsapp-button,
      a.whatsapp-secondary,
      button.primary-button,
      button.secondary-button,
      button.whatsapp-button,
      button.whatsapp-secondary
    ) {
      justify-content: center !important;
      text-align: center !important;
      text-align-last: center !important;
    }

    /* Hinweise innerhalb von Aktionszeilen stehen unter den Buttons zentriert. */
    .alita-form-actions .alita-form-note {
      flex-basis: 100% !important;
      width: 100% !important;
      text-align: center !important;
      text-align-last: center !important;
    }

    /* Kontaktbereich: statt Desktop rechts / Mobil links jetzt überall mittig. */
    .contact-actions {
      width: 100% !important;
      align-items: center !important;
    }

    /* Auf schmalen Geräten dürfen lange Buttons die Kartenbreite nutzen,
       bleiben aber optisch zentriert. */
    @media (max-width: 620px) {
      .alita-callout-action .whatsapp-button {
        width: min(100%, 500px) !important;
      }

      .result-order-actions,
      .alita-form-actions,
      .contact-actions,
      .store-links,
      .google-privacy-actions,
      .form-actions {
        align-items: center !important;
      }

      .result-order-actions > :is(a, button),
      .alita-form-actions > :is(a, button),
      .contact-actions > :is(a, button),
      .store-links > :is(a, button),
      .google-privacy-actions > :is(a, button) {
        margin-inline: auto !important;
      }
    }

  

    /* Version 1.0.38 – Taxi-Deutschland-Button bleibt in jeder Breite lesbar */
    .hero-actions .taxi-deutschland-button {
      display: grid !important;
      grid-template-columns: auto minmax(0, 1fr) !important;
      align-items: center !important;
      column-gap: 10px !important;
      row-gap: 0 !important;
      width: min(100%, 100%) !important;
      max-width: 100% !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
      padding: 8px 14px 9px 10px !important;
      white-space: normal !important;
      text-decoration: none !important;
    }

    .hero-actions .taxi-deutschland-button .taxi-deutschland-button-logo {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      width: clamp(42px, 11vw, 52px) !important;
      min-width: clamp(42px, 11vw, 52px) !important;
      max-width: clamp(42px, 11vw, 52px) !important;
      align-self: center !important;
    }

    .hero-actions .taxi-deutschland-button .taxi-deutschland-button-logo img {
      width: 100% !important;
      height: auto !important;
      display: block !important;
      object-fit: contain !important;
    }

    .hero-actions .taxi-deutschland-button .taxi-deutschland-button-copy {
      min-width: 0 !important;
      max-width: 100% !important;
      display: block !important;
      overflow: visible !important;
    }

    .hero-actions .taxi-deutschland-button .taxi-deutschland-button-copy strong {
      display: grid !important;
      gap: 2px !important;
      min-width: 0 !important;
      max-width: 100% !important;
      margin: 0 !important;
      font-size: clamp(.78rem, 2.95vw, 1rem) !important;
      line-height: 1.02 !important;
      font-weight: 950 !important;
      letter-spacing: -.02em !important;
      text-align: left !important;
      text-align-last: auto !important;
      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: anywhere !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
    }

    .hero-actions .taxi-deutschland-button .taxi-deutschland-button-copy strong > span {
      display: block !important;
      min-width: 0 !important;
      max-width: 100% !important;
      white-space: normal !important;
      overflow-wrap: anywhere !important;
      word-break: normal !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
    }

    @media (max-width: 520px) {
      .hero-actions .taxi-deutschland-button {
        padding: 8px 12px 9px 9px !important;
        column-gap: 8px !important;
      }

      .hero-actions .taxi-deutschland-button .taxi-deutschland-button-copy strong {
        font-size: clamp(.74rem, 3.7vw, .92rem) !important;
        line-height: 1.02 !important;
      }
    }

    @media (max-width: 380px) {
      .hero-actions .taxi-deutschland-button {
        padding: 7px 10px 8px 8px !important;
        column-gap: 7px !important;
      }

      .hero-actions .taxi-deutschland-button .taxi-deutschland-button-logo {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
      }

      .hero-actions .taxi-deutschland-button .taxi-deutschland-button-copy strong {
        font-size: clamp(.7rem, 3.95vw, .84rem) !important;
      }
    }

  
    /* v1.0.39 – Titel im Leistungsbaustein direkt neben den Symbolen */
    .content-card-head {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 14px;
    }
    .content-card-head .icon-box {
      flex: 0 0 48px;
      margin-bottom: 0;
    }
    .content-card-head h3 {
      margin: 0;
      line-height: 1.15;
      text-wrap: balance;
    }
    .content-card > p:first-of-type,
    .content-card > details:first-of-type {
      margin-top: 0;
    }
    @media (max-width: 640px) {
      .content-card-head {
        gap: 12px;
      }
      .content-card-head .icon-box {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
      }
    }

  

    /* v1.0.40 – Leistungsbausteine pro Zeile optisch angleichen */
    #leistungen .cards {
      align-items: stretch !important;
    }

    #leistungen .content-card {
      display: flex !important;
      flex-direction: column !important;
      align-self: stretch !important;
      height: 100% !important;
      min-height: 100% !important;
      box-sizing: border-box !important;
    }

    #leistungen .content-card-head {
      flex: 0 0 auto !important;
      align-items: center !important;
    }

    #leistungen .content-card > p {
      flex: 0 0 auto;
    }

    /* Weiterführende Links sitzen bei Karten mit Link einheitlich unten. */
    #leistungen .content-card > .card-link-hint {
      margin-top: auto !important;
      padding-top: 16px !important;
    }

    /* ALiTa hat den Weiter-Link in einem eigenen Absatz. */
    #leistungen .content-card > p:last-child:has(a[href="#alita"]) {
      margin-top: auto !important;
      padding-top: 16px !important;
      margin-bottom: 0 !important;
    }

    /* UPS-Paketstatus ebenfalls am unteren Kartenbereich ausrichten. */
    #leistungen .ups-service-card > .ups-inline-check {
      margin-top: auto !important;
      padding-top: 16px !important;
    }

    /* Die Karten behalten auf Mobilgeräten ihre natürliche Höhe,
       da dort in der Regel nur eine Karte pro Zeile steht. */
    @media (max-width: 640px) {
      #leistungen .content-card {
        height: auto !important;
        min-height: 0 !important;
      }

      #leistungen .content-card > .card-link-hint,
      #leistungen .content-card > p:last-child:has(a[href="#alita"]),
      #leistungen .ups-service-card > .ups-inline-check {
        margin-top: 14px !important;
        padding-top: 0 !important;
      }
    }

  

    /* v1.0.41 – Mobile Header kompakt, Tablet-Hero besser proportioniert */

    /*
     * Tablet: Der Hero soll nicht durch die alten Section- und Grid-Abstände
     * doppelt aufgebläht werden. Die Überschrift bekommt mehr nutzbare Breite.
     */
    @media (min-width: 481px) and (max-width: 900px) {
      .hero {
        padding-block: 0 !important;
        padding-top: 0 !important;
      }

      .hero .hero-grid {
        min-height: 0 !important;
        padding-top: clamp(34px, 5vw, 46px) !important;
        padding-bottom: clamp(42px, 6vw, 58px) !important;
        gap: 30px !important;
      }

      .hero-copy,
      .hero-copy h1,
      .hero-title-line {
        width: 100% !important;
        max-width: 20ch !important;
      }

      .hero-copy h1,
      .hero-title-line {
        font-size: clamp(2.3rem, 6.7vw, 3.55rem) !important;
        line-height: .98 !important;
        letter-spacing: -.038em !important;
        text-align: left !important;
        text-align-last: auto !important;
        text-wrap: balance !important;
        -webkit-hyphens: none !important;
        hyphens: none !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
      }
    }

    /*
     * Smartphone: Header besteht aus einer kompakten Kopfzeile
     * (Marke + Taxi-Button) und genau zwei Navigationszeilen.
     */
    @media (max-width: 760px) {
      :root {
        --topbar-height: 34px;
        --header-height: 126px;
      }

      .topbar {
        min-height: var(--topbar-height) !important;
        font-size: .82rem !important;
      }

      .topbar-inner {
        min-height: var(--topbar-height) !important;
        padding-block: 0 !important;
      }

      header {
        min-height: var(--header-height) !important;
      }

      header .container.nav,
      header .nav {
        width: calc(100% - 18px) !important;
        max-width: none !important;
        min-height: 0 !important;
        height: auto !important;
        margin-inline: auto !important;
        padding: 8px 0 7px !important;

        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas:
          "brand phone"
          "menu menu" !important;
        column-gap: 10px !important;
        row-gap: 6px !important;
        align-items: center !important;
        align-content: center !important;
      }

      header .brand {
        grid-area: brand !important;
        min-width: 0 !important;
        max-width: 100% !important;
        gap: 8px !important;
        overflow: hidden !important;
      }

      header .brand-mark {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        flex-basis: 38px !important;
        border-radius: 11px !important;
      }

      header .brand-mark img {
        width: 23px !important;
        height: 23px !important;
      }

      header .brand-text {
        display: grid !important;
        grid-template-rows: auto auto !important;
        row-gap: 3px !important;
        min-width: 0 !important;
        width: auto !important;
        max-width: 100% !important;
        overflow: hidden !important;
      }

      header .brand-title {
        margin: 0 !important;
        font-size: clamp(.98rem, 3.6vw, 1.2rem) !important;
        line-height: 1 !important;
        letter-spacing: -.025em !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: clip !important;
      }

      header .brand-subline {
        margin: 0 !important;
        padding: 0 !important;
        font-size: clamp(.43rem, 1.55vw, .56rem) !important;
        line-height: 1.05 !important;
        letter-spacing: .025em !important;
        white-space: nowrap !important;
      }

      header .phone-button {
        grid-area: phone !important;
        min-height: 38px !important;
        height: 38px !important;
        padding: 7px 10px !important;
        border-radius: 11px !important;
        font-size: .72rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        align-self: center !important;
      }

      header nav {
        grid-area: menu !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow: visible !important;
      }

      header nav ul {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 2px 5px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
      }

      header nav li {
        min-width: 0 !important;
      }

      header nav a {
        display: block !important;
        width: 100% !important;
        padding: 4px 1px !important;
        font-size: clamp(.64rem, 2vw, .74rem) !important;
        line-height: 1.05 !important;
        text-align: center !important;
        text-align-last: center !important;
        white-space: nowrap !important;
        overflow: visible !important;
        word-break: keep-all !important;
        hyphens: none !important;
      }

      /* Hero mobil: keine doppelte vertikale Polsterung. */
      .hero {
        padding-block: 0 !important;
        padding-top: 0 !important;
      }

      .hero .hero-grid {
        min-height: 0 !important;
        padding-top: 28px !important;
        padding-bottom: 42px !important;
        gap: 26px !important;
      }

      .hero-copy,
      .hero-copy h1,
      .hero-title-line {
        width: 100% !important;
        max-width: 100% !important;
      }

      .hero-copy h1,
      .hero-title-line {
        margin-bottom: 18px !important;
        font-size: clamp(2rem, 8vw, 2.6rem) !important;
        line-height: .99 !important;
        letter-spacing: -.035em !important;
        text-align: left !important;
        text-align-last: auto !important;
        text-wrap: balance !important;
        -webkit-hyphens: none !important;
        hyphens: none !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
      }

      .hero .eyebrow {
        margin-bottom: 14px !important;
      }
    }

    /*
     * Sehr schmale Geräte: 3 Spalten für die Navigation, damit kein
     * einzelnes langes Wort in Nachbarfelder hineinragt.
     */
    @media (max-width: 350px) {
      :root {
        --header-height: 154px;
      }

      header nav ul {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 2px 4px !important;
      }

      header nav a {
        font-size: .62rem !important;
      }

      header .brand-title {
        font-size: .92rem !important;
      }

      header .brand-subline {
        font-size: .40rem !important;
      }

      header .phone-button {
        padding-inline: 8px !important;
        font-size: .66rem !important;
      }

      .hero-copy h1,
      .hero-title-line {
        font-size: clamp(1.9rem, 9vw, 2.25rem) !important;
      }
    }

  

    /* v1.0.43 – Weniger Schriftgrößen, kompaktere Abstände, ruhigerer Hero */

    :root {
      /*
       * Bewusst nur wenige Textstufen:
       * 1) klein / Hinweis
       * 2) Standardtext / Buttons / Navigation
       * 3) Zwischenüberschrift / Kartentitel
       * 4) Abschnittsüberschrift
       * 5) Hero als einzige große Ausnahme
       */
      --type-small: .84rem;
      --type-body: 1rem;
      --type-h3: 1.24rem;
      --type-h2: clamp(1.9rem, 2.2vw, 2.3rem);
      --type-hero: clamp(3rem, 4.35vw, 4.15rem);
      --type-button: 1rem;
    }

    /* Grundtypografie */
    body,
    main,
    footer {
      font-size: var(--type-body) !important;
    }

    main :is(p, li, dd, dt, blockquote, figcaption),
    footer :is(p, li, small),
    .lead,
    .hero-card p,
    .content-card p,
    .contact-box p,
    .medical-card p,
    .legal-card p {
      font-size: var(--type-body) !important;
      line-height: 1.52 !important;
    }

    main h2,
    .section-intro h2,
    .legal-card h2,
    .app-download-copy h2,
    .ups-status-copy h2 {
      font-size: var(--type-h2) !important;
      line-height: 1.08 !important;
      letter-spacing: -.025em !important;
    }

    main h3,
    .content-card h3,
    .medical-card h3,
    .hero-card h3,
    .legal-card h3,
    .quick-order-panel h3 {
      font-size: var(--type-h3) !important;
      line-height: 1.16 !important;
      letter-spacing: -.012em !important;
    }

    :is(
      .eyebrow,
      .helper,
      .source-note,
      .alita-form-note,
      .result-meta,
      .cost-row,
      label,
      legend,
      .trust-row,
      .availability
    ) {
      font-size: var(--type-small) !important;
    }

    :is(
      .primary-button,
      .secondary-button,
      .whatsapp-button,
      .whatsapp-secondary,
      .phone-button,
      button,
      input,
      select,
      textarea,
      summary
    ) {
      font-size: var(--type-button) !important;
    }

    /* Header ebenfalls beruhigen */
    .brand-title {
      font-size: var(--type-h3) !important;
      line-height: 1 !important;
    }

    .brand-subline,
    nav a,
    .topbar {
      font-size: var(--type-small) !important;
    }

    /* Allgemeine Abschnittsabstände reduzieren */
    section {
      padding-block: clamp(56px, 5vw, 68px) !important;
    }

    .section-intro {
      margin-bottom: 26px !important;
    }

    .section-intro p {
      font-size: var(--type-body) !important;
    }

    /* Hero: keine künstliche Mindesthöhe mehr */
    .hero {
      padding-block: 0 !important;
    }

    .hero .hero-grid {
      min-height: 0 !important;
      padding-top: clamp(36px, 4vw, 48px) !important;
      padding-bottom: clamp(38px, 4.5vw, 54px) !important;
      gap: clamp(30px, 4vw, 44px) !important;
      align-items: center !important;
    }

    .hero-copy h1,
    .hero-title-line {
      max-width: 13.2ch !important;
      margin: 0 0 16px !important;
      font-size: var(--type-hero) !important;
      line-height: .98 !important;
      letter-spacing: -.04em !important;
      text-wrap: balance !important;
      text-align: left !important;
      text-align-last: auto !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
      overflow-wrap: normal !important;
      word-break: normal !important;
    }

    .hero .eyebrow {
      margin-bottom: 12px !important;
      padding: 6px 10px !important;
    }

    .hero .lead {
      max-width: 64ch !important;
      margin: 0 !important;
    }

    .hero .digital-contact-note {
      margin-top: 12px !important;
      margin-bottom: 0 !important;
      padding: 10px 12px !important;
      line-height: 1.4 !important;
      font-size: var(--type-small) !important;
    }

    .hero-actions {
      margin-top: 18px !important;
      gap: 10px !important;
    }

    .hero-actions > :is(
      .primary-button,
      .secondary-button,
      .whatsapp-secondary,
      .taxi-deutschland-button
    ) {
      min-height: 54px !important;
      height: 54px !important;
      padding-block: 8px !important;
      font-size: var(--type-button) !important;
    }

    .trust-row {
      margin-top: 18px !important;
      gap: 8px 20px !important;
      line-height: 1.35 !important;
    }

    /* Rechte Hero-Karte kompakter */
    .hero-card {
      min-height: 0 !important;
      padding: 26px !important;
      border-radius: 26px !important;
    }

    .hero-card .eyebrow {
      margin-bottom: 0 !important;
    }

    .hero-card h3 {
      max-width: none !important;
      margin: 18px 0 10px !important;
    }

    .hero-card p {
      max-width: 42ch !important;
      margin-bottom: 0 !important;
    }

    .hero-card .call-number {
      margin-top: 28px !important;
      font-size: clamp(2.15rem, 3.3vw, 2.8rem) !important;
      line-height: 1 !important;
    }

    .hero-card .availability {
      margin-top: 12px !important;
    }

    /* Desktop: Hero insgesamt klar kompakter als bisher */
    @media (min-width: 901px) {
      .hero .hero-grid {
        min-height: 500px !important;
      }
    }

    /* Tablet: bewusst eine Stufe kleiner, damit die Überschrift ruhiger läuft */
    @media (min-width: 601px) and (max-width: 900px) {
      :root {
        --type-hero: clamp(2.7rem, 5.4vw, 3.25rem);
      }

      .hero .hero-grid {
        padding-top: 32px !important;
        padding-bottom: 40px !important;
      }

      .hero-copy h1,
      .hero-title-line {
        max-width: 16ch !important;
      }
    }

    /* Smartphone: gleiche Typologik, nur skaliert */
    @media (max-width: 600px) {
      :root {
        --type-small: .8rem;
        --type-body: .96rem;
        --type-h3: 1.14rem;
        --type-h2: 1.8rem;
        --type-hero: clamp(2.15rem, 8.8vw, 2.7rem);
        --type-button: .94rem;
      }

      section {
        padding-block: 48px !important;
      }

      .hero .hero-grid {
        padding-top: 24px !important;
        padding-bottom: 32px !important;
        gap: 22px !important;
      }

      .hero-copy h1,
      .hero-title-line {
        max-width: 100% !important;
        margin-bottom: 14px !important;
      }

      .hero-actions {
        margin-top: 14px !important;
      }

      .trust-row {
        margin-top: 14px !important;
      }

      .hero-card {
        padding: 22px !important;
      }

      .hero-card .call-number {
        margin-top: 22px !important;
        font-size: clamp(2rem, 10vw, 2.45rem) !important;
      }
    }

  

    /* v1.0.44 – Hero nutzt die verfügbare Breite besser aus */

    /* Linke Hero-Spalte vollständig ausnutzen */
    .hero-copy {
      width: 100% !important;
      max-width: none !important;
      display: flex !important;
      flex-direction: column !important;
      align-items: stretch !important;
    }

    .hero-copy > * {
      width: 100% !important;
      max-width: 100% !important;
    }

    /*
     * Überschrift: nicht mehr künstlich schmal begrenzen.
     * Stattdessen volle Spaltenbreite nutzen und mit balance /
     * Hyphenation harmonischer umbrechen.
     */
    .hero-copy h1,
    .hero-title-line {
      width: 100% !important;
      max-width: 100% !important;
      text-wrap: balance !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
      overflow-wrap: normal !important;
      word-break: normal !important;
      margin-right: 0 !important;
    }

    /* Fließtext und Hinweisbox ebenfalls auf volle Breite bringen */
    .hero .lead,
    .hero .digital-contact-note {
      width: 100% !important;
      max-width: 100% !important;
      text-wrap: pretty !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
      overflow-wrap: normal !important;
      word-break: normal !important;
    }

    .hero .lead {
      line-height: 1.48 !important;
    }

    .hero .digital-contact-note {
      line-height: 1.42 !important;
    }

    /* Desktop/Laptop: mehr nutzbare Breite in der linken Spalte */
    @media (min-width: 901px) {
      .hero .hero-grid {
        grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr) !important;
        gap: 34px !important;
      }

      .hero-copy h1,
      .hero-title-line {
        font-size: clamp(2.95rem, 4.05vw, 4rem) !important;
        line-height: .98 !important;
      }
    }

    /* Tablet: ebenfalls volle Breite, etwas kleinere Schrift für sauberere Umbrüche */
    @media (min-width: 601px) and (max-width: 900px) {
      .hero-copy h1,
      .hero-title-line {
        max-width: 100% !important;
        font-size: clamp(2.55rem, 5vw, 3.1rem) !important;
        line-height: .99 !important;
      }

      .hero .lead,
      .hero .digital-contact-note {
        max-width: 100% !important;
      }
    }

    /* Handy: volle Breite und kontrollierte Schriftgröße */
    @media (max-width: 600px) {
      .hero-copy h1,
      .hero-title-line {
        width: 100% !important;
        max-width: 100% !important;
        font-size: clamp(2.12rem, 8.3vw, 2.58rem) !important;
        line-height: 1 !important;
      }

      .hero .lead,
      .hero .digital-contact-note {
        width: 100% !important;
        max-width: 100% !important;
      }
    }

  

    /* v1.0.45 – Globales Vollbreiten- und Umbruchsystem */

    :root {
      --page-gutter: 14px;
      --text-hyphen-min-word: 6;
      --text-hyphen-before: 3;
      --text-hyphen-after: 3;
    }

    /*
     * 1. Alle eigentlichen Seitencontainer nutzen nahezu die komplette Breite.
     * Header behält seine separat optimierte Navigation.
     */
    :where(
      main,
      footer
    ) .container,
    main > section > .container,
    main > .hero > .container,
    .calculator-wrap > .container,
    footer > .container {
      width: calc(100% - (2 * var(--page-gutter))) !important;
      max-width: none !important;
      margin-inline: auto !important;
      box-sizing: border-box !important;
    }

    /*
     * 2. Inhaltscontainer dürfen keine versteckten schmalen Maximalbreiten mehr
     *    aus älteren Gestaltungsständen übernehmen.
     */
    :where(
      .hero-copy,
      .hero-card,
      .section-intro,
      .section-intro > p,
      .lead,
      .calculator,
      .form-card,
      .result-card,
      .cards,
      .content-card,
      .tariff-grid,
      .tariff-table,
      .alita-grid,
      .alita-callout,
      .alita-whatsapp-card,
      .alita-whatsapp-intro,
      .medical-grid,
      .medical-card,
      .copay-box,
      .wheelchair-rule,
      .wheelchair-fare-info,
      .about-grid,
      .facts,
      .contact-box,
      .legal-card,
      .app-download-card,
      .app-download-copy,
      .ups-status-card,
      .ups-status-copy,
      .ups-card-status-form,
      .quick-order-panel,
      .quick-order-head,
      .google-privacy-gate,
      .critical-alert,
      .request-status-note,
      .service-note,
      .medical-warning,
      #faq details,
      #faq details > p,
      details > p
    ) {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
    }

    /*
     * 3. Grid- und Flex-Kinder dürfen ihre Zelle vollständig nutzen.
     */
    :where(
      .hero-grid,
      .calculator,
      .cards,
      .tariff-grid,
      .alita-grid,
      .medical-grid,
      .about-grid,
      .app-download-card,
      .ups-status-card,
      .quick-order-grid
    ) > * {
      min-width: 0 !important;
      max-width: none !important;
    }

    /*
     * 4. Längere Texte: überall dieselbe deutsche Trennung und derselbe Blocksatz.
     *    Keine künstlichen Zeichenumbrüche mitten im Wort.
     */
    :where(main, footer) :is(
      p,
      li,
      dd,
      dt,
      blockquote,
      figcaption,
      .lead,
      .helper,
      .source-note,
      .notice,
      .disclaimer,
      .service-note,
      .medical-warning,
      .alita-form-note,
      .alita-whatsapp-message,
      .location-status,
      .request-status-note,
      .wheelchair-fare-info,
      .wheelchair-rule,
      .quick-order-subsection-title span,
      .disabled-return-note
    ) {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;

      text-align: justify !important;
      text-align-last: left !important;
      text-justify: inter-word !important;

      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      line-break: auto !important;

      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      hyphenate-character: "‐" !important;
      hyphenate-limit-chars:
        var(--text-hyphen-min-word)
        var(--text-hyphen-before)
        var(--text-hyphen-after) !important;

      text-wrap: pretty !important;
    }

    /*
     * 5. Überschriften nutzen ebenfalls die volle Breite und dürfen bei Bedarf
     *    nach denselben deutschen Regeln trennen, bleiben aber linksbündig.
     */
    :where(main, footer) :is(
      h1,
      h2,
      h3,
      h4,
      h5,
      h6
    ) {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;

      text-align: left !important;
      text-align-last: auto !important;
      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;

      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      hyphenate-limit-chars:
        var(--text-hyphen-min-word)
        var(--text-hyphen-before)
        var(--text-hyphen-after) !important;

      text-wrap: balance !important;
    }

    /*
     * 6. Hero folgt demselben Breitenprinzip. Die Überschrift bleibt linksbündig
     *    und nutzt die volle Spaltenbreite.
     */
    .hero-copy,
    .hero-copy > *,
    .hero-copy h1,
    .hero-title-line,
    .hero .lead,
    .hero .digital-contact-note,
    .hero-actions,
    .trust-row {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
    }

    .hero-copy h1,
    .hero-title-line {
      text-align: left !important;
      text-align-last: auto !important;
      text-wrap: balance !important;
      overflow-wrap: normal !important;
      word-break: normal !important;
      -webkit-hyphens: auto !important;
      hyphens: auto !important;
    }

    /*
     * 7. Funktions- und Kennzeichnungstexte werden NICHT getrennt:
     *    Telefon, Buttons, Navigation und Formularbeschriftungen bleiben stabil.
     */
    :is(
      nav a,
      .brand-title,
      .brand-subline,
      .phone-button,
      .call-number,
      .primary-button,
      .secondary-button,
      .whatsapp-button,
      .whatsapp-secondary,
      .taxi-deutschland-button,
      .taxi-deutschland-button-copy,
      .taxi-deutschland-button-copy strong,
      .eyebrow,
      .card-link-hint,
      label,
      legend,
      input,
      select,
      textarea,
      option,
      summary,
      button
    ) {
      -webkit-hyphens: none !important;
      -ms-hyphens: none !important;
      hyphens: none !important;
      word-break: normal !important;
    }

    /*
     * Desktop: minimale Sicherheitsränder, maximale Nutzbreite.
     */
    @media (min-width: 1101px) {
      :root {
        --page-gutter: 14px;
      }

      .hero .hero-grid,
      .calculator,
      .tariff-grid,
      .alita-grid,
      .medical-grid,
      .about-grid {
        width: 100% !important;
        max-width: none !important;
      }
    }

    /*
     * Tablet: gleiche Regeln, nur etwas kleinerer Außenrand.
     * Trennregeln bleiben bewusst identisch.
     */
    @media (min-width: 601px) and (max-width: 1100px) {
      :root {
        --page-gutter: 10px;
      }

      :where(main, footer) :is(
        p,
        li,
        dd,
        dt,
        blockquote,
        figcaption,
        .lead,
        .helper,
        .source-note,
        .notice,
        .disclaimer,
        .service-note,
        .medical-warning,
        .alita-form-note,
        .location-status
      ) {
        hyphenate-limit-chars: 6 3 3 !important;
      }

      .section-intro,
      .section-intro > p,
      .contact-box p,
      .legal-card p,
      #faq details p {
        width: 100% !important;
        max-width: none !important;
      }
    }

    /*
     * Handy: fast vollständige Breite, aber noch sicherer Rand für Bedienbarkeit.
     * Kürzere Wörter dürfen etwas früher getrennt werden.
     */
    @media (max-width: 600px) {
      :root {
        --page-gutter: 7px;
        --text-hyphen-min-word: 5;
        --text-hyphen-before: 2;
        --text-hyphen-after: 2;
      }

      :where(
        main,
        footer
      ) .container,
      main > section > .container,
      main > .hero > .container,
      .calculator-wrap > .container,
      footer > .container {
        width: calc(100% - 14px) !important;
      }

      .form-card,
      .result-card,
      .content-card,
      .alita-callout,
      .medical-card,
      .contact-box,
      .legal-card,
      .quick-order-panel,
      .app-download-card,
      .ups-status-card {
        max-width: 100% !important;
      }

      :where(main, footer) :is(
        p,
        li,
        dd,
        dt,
        blockquote,
        figcaption,
        .lead,
        .helper,
        .source-note,
        .notice,
        .disclaimer,
        .service-note,
        .medical-warning,
        .alita-form-note,
        .location-status
      ) {
        hyphenate-limit-chars: 5 2 2 !important;
      }
    }

  

    /* v1.0.47 – volle Boxbreite, natürlicher Umbruch, einheitliche Trennung */

    /*
     * Alle texttragenden Boxen und ihre direkten Inhalte dürfen ihre
     * komplette verfügbare Breite nutzen.
     */
    :where(main, footer) :is(
      .hero-copy,
      .hero-copy > *,
      .section-intro,
      .section-intro > *,
      .content-card,
      .content-card > *,
      .form-card,
      .form-card > *,
      .result-card,
      .result-card > *,
      .alita-callout,
      .alita-callout > *,
      .alita-whatsapp-card,
      .alita-whatsapp-card > *,
      .medical-card,
      .medical-card > *,
      .contact-box,
      .contact-box > *,
      .legal-card,
      .legal-card > *,
      .quick-order-panel,
      .quick-order-panel > *,
      .app-download-copy,
      .app-download-copy > *,
      .ups-status-copy,
      .ups-status-copy > *,
      #faq details,
      #faq details > *
    ) {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
    }

    /*
     * Längere Texte: überall dieselbe Grundlogik.
     * Volle Breite, Blocksatz, echte deutsche Silbentrennung.
     */
    :where(main, footer) :is(
      p,
      li,
      dd,
      dt,
      blockquote,
      figcaption,
      .lead,
      .helper,
      .source-note,
      .notice,
      .disclaimer,
      .service-note,
      .medical-warning,
      .alita-form-note,
      .alita-whatsapp-message,
      .location-status,
      .request-status-note,
      .wheelchair-fare-info,
      .wheelchair-rule
    ) {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;

      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      line-break: auto !important;

      text-align: justify !important;
      text-align-last: left !important;
      text-justify: inter-word !important;
      text-wrap: wrap !important;

      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      hyphenate-character: "‐" !important;
      hyphenate-limit-chars: 6 3 3 !important;
    }

    /*
     * Überschriften ebenfalls über die volle Boxbreite.
     * KEIN text-wrap:balance mehr – das verkürzt Zeilen künstlich.
     */
    :where(main, footer) :is(
      h1,
      h2,
      h3,
      h4,
      h5,
      h6
    ) {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;

      white-space: normal !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      line-break: auto !important;

      text-align: left !important;
      text-align-last: auto !important;
      text-wrap: wrap !important;

      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      hyphenate-character: "‐" !important;
      hyphenate-limit-chars: 6 3 3 !important;
    }

    /* Hero konkret: keine ch-Begrenzung, keine künstliche Zweizeilenlogik. */
    .hero-copy,
    .hero-title,
    .hero .lead,
    .hero .digital-contact-note,
    .hero-actions,
    .trust-row {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      box-sizing: border-box !important;
    }

    .hero-title {
      margin: 0 0 16px !important;
      font-size: clamp(2.9rem, 4.05vw, 4rem) !important;
      line-height: .98 !important;
      letter-spacing: -.04em !important;

      white-space: normal !important;
      text-wrap: wrap !important;
      word-break: normal !important;
      overflow-wrap: normal !important;

      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      hyphenate-limit-chars: 6 3 3 !important;
    }

    /*
     * Funktions- und Interaktionstexte werden nicht getrennt.
     */
    :is(
      nav a,
      .brand-title,
      .brand-subline,
      .phone-button,
      .call-number,
      .primary-button,
      .secondary-button,
      .whatsapp-button,
      .whatsapp-secondary,
      .taxi-deutschland-button,
      .taxi-deutschland-button-copy,
      .eyebrow,
      .card-link-hint,
      label,
      legend,
      input,
      select,
      textarea,
      option,
      summary,
      button
    ) {
      -webkit-hyphens: none !important;
      -ms-hyphens: none !important;
      hyphens: none !important;
    }

    /* Tablet: gleiche Breitenlogik, nur typografisch skaliert. */
    @media (min-width: 601px) and (max-width: 900px) {
      :where(main, footer) :is(
        h1, h2, h3, h4, h5, h6,
        p, li, dd, dt, blockquote, figcaption,
        .lead, .helper, .source-note, .notice,
        .disclaimer, .service-note, .medical-warning,
        .alita-form-note, .location-status
      ) {
        hyphenate-limit-chars: 5 2 2 !important;
      }

      .hero-title {
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(2.45rem, 5.2vw, 3.15rem) !important;
        line-height: .99 !important;
        text-wrap: wrap !important;
      }
    }

    /* Handy: ebenfalls volle Boxbreite und echte flexible Trennung. */
    @media (max-width: 600px) {
      :where(main, footer) :is(
        h1, h2, h3, h4, h5, h6,
        p, li, dd, dt, blockquote, figcaption,
        .lead, .helper, .source-note, .notice,
        .disclaimer, .service-note, .medical-warning,
        .alita-form-note, .location-status
      ) {
        hyphenate-limit-chars: 5 2 2 !important;
      }

      .hero-title {
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(2.05rem, 8.35vw, 2.6rem) !important;
        line-height: 1 !important;
        letter-spacing: -.035em !important;
        text-wrap: wrap !important;
      }

      .hero .lead,
      .hero .digital-contact-note {
        width: 100% !important;
        max-width: none !important;
      }
    }

  

    /* v1.0.48 – Tablet-Hero nutzt bis 1180 px wirklich die volle Containerbreite */

    /*
     * Wichtig:
     * Tablets im Querformat liegen häufig oberhalb von 900 px.
     * Deshalb wird der Hero bis 1180 px einspaltig geführt.
     */
    @media (max-width: 1180px) {
      .hero .hero-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        gap: 28px !important;
        align-items: stretch !important;
      }

      .hero .hero-grid > *,
      .hero-copy,
      .hero-card,
      .hero-title,
      .hero .lead,
      .hero .digital-contact-note,
      .hero-actions,
      .trust-row {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
      }

      .hero-copy {
        grid-column: 1 / -1 !important;
      }

      .hero-card {
        grid-column: 1 / -1 !important;
        min-height: 0 !important;
      }

      /*
       * Keine künstliche Zeilenlänge:
       * Titel nutzt die volle Box und darf deutsch trennen.
       */
      .hero-title {
        max-width: none !important;
        white-space: normal !important;
        text-wrap: wrap !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        line-break: auto !important;

        -webkit-hyphens: auto !important;
        -ms-hyphens: auto !important;
        hyphens: auto !important;
        hyphenate-character: "‐" !important;
        hyphenate-limit-chars: 5 2 2 !important;
      }
    }

    /* Tablet quer / groß: volle Breite, aber etwas kleinere Schrift. */
    @media (min-width: 901px) and (max-width: 1180px) {
      .hero .hero-grid {
        padding-top: 30px !important;
        padding-bottom: 38px !important;
      }

      .hero-title {
        font-size: clamp(2.7rem, 5.1vw, 3.55rem) !important;
        line-height: .98 !important;
        letter-spacing: -.038em !important;
      }

      .hero .lead {
        font-size: var(--type-body) !important;
        line-height: 1.48 !important;
      }
    }

    /* Tablet hochkant: identische Vollbreitenlogik. */
    @media (min-width: 601px) and (max-width: 900px) {
      .hero .hero-grid {
        padding-top: 28px !important;
        padding-bottom: 36px !important;
      }

      .hero-title {
        width: 100% !important;
        max-width: none !important;
        font-size: clamp(2.4rem, 6vw, 3.05rem) !important;
        line-height: .99 !important;
        hyphenate-limit-chars: 5 2 2 !important;
      }
    }

    /* Handy: ebenfalls komplette Boxbreite, kein ch-Limit. */
    @media (max-width: 600px) {
      .hero .hero-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        width: 100% !important;
        max-width: none !important;
        padding-top: 22px !important;
        padding-bottom: 30px !important;
        gap: 22px !important;
      }

      .hero-copy,
      .hero-copy > *,
      .hero-title,
      .hero .lead,
      .hero .digital-contact-note,
      .hero-actions,
      .trust-row,
      .hero-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
      }

      .hero-title {
        font-size: clamp(2.02rem, 8.45vw, 2.55rem) !important;
        line-height: 1 !important;
        letter-spacing: -.035em !important;

        white-space: normal !important;
        text-wrap: wrap !important;
        word-break: normal !important;
        overflow-wrap: normal !important;

        -webkit-hyphens: auto !important;
        -ms-hyphens: auto !important;
        hyphens: auto !important;
        hyphenate-limit-chars: 5 2 2 !important;
      }
    }

    /* Erst auf echten Desktopbreiten wieder zweispaltig. */
    @media (min-width: 1181px) {
      .hero .hero-grid {
        grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr) !important;
      }
    }

  

    /* v1.0.49 – Hero-Titel darf wirklich die komplette Boxbreite nutzen */

    /*
     * Ursache:
     * Eine ältere Regel setzte .hero-copy h1 auf max-width: 18ch
     * und text-wrap: balance. Das begrenzte die Überschrift trotz
     * späterer Korrekturen weiterhin künstlich.
     */
    .hero-copy h1,
    .hero-title,
    .hero-title-line {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      display: block !important;

      white-space: normal !important;
      text-wrap: wrap !important;
      text-align: left !important;
      text-align-last: auto !important;
      word-break: normal !important;
      overflow-wrap: normal !important;
      line-break: auto !important;

      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      hyphenate-character: "‐" !important;
      hyphenate-limit-chars: 5 2 2 !important;
    }

    .hero .lead,
    .hero .digital-contact-note {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
    }

    /*
     * Tablet und Handy:
     * etwas weniger Seitenabstand, damit der reale Satzspiegel breiter wird.
     */
    @media (max-width: 1180px) {
      .hero > .container {
        width: calc(100% - 16px) !important;
        max-width: none !important;
      }

      .hero-copy,
      .hero-copy > *,
      .hero .lead,
      .hero .digital-contact-note {
        width: 100% !important;
        max-width: none !important;
      }
    }

    /* Tablet quer */
    @media (min-width: 901px) and (max-width: 1180px) {
      .hero-copy h1,
      .hero-title,
      .hero-title-line {
        font-size: clamp(2.5rem, 4.8vw, 3.35rem) !important;
        line-height: .985 !important;
        letter-spacing: -.038em !important;
      }
    }

    /* Tablet hochkant */
    @media (min-width: 601px) and (max-width: 900px) {
      .hero-copy h1,
      .hero-title,
      .hero-title-line {
        font-size: clamp(2.28rem, 5.7vw, 2.95rem) !important;
        line-height: .99 !important;
        letter-spacing: -.036em !important;
      }
    }

    /* Handy */
    @media (max-width: 600px) {
      .hero-copy h1,
      .hero-title,
      .hero-title-line {
        font-size: clamp(1.96rem, 8.8vw, 2.42rem) !important;
        line-height: 1 !important;
        letter-spacing: -.034em !important;
      }
    }

  

    /* v1.0.51 – Quittungshinweis typografisch vereinheitlicht */
    .copay-receipt-note {
      display: grid !important;
      grid-template-columns: auto minmax(0, 1fr) !important;
      gap: 12px !important;
      align-items: start !important;
      width: 100% !important;
      max-width: none !important;
      margin: 18px 0 !important;
      padding: 15px 16px !important;
      border: 2px solid #f5c400 !important;
      border-radius: 14px !important;
      background: #fff4bf !important;
      color: #17191c !important;
      box-sizing: border-box !important;
      box-shadow: 0 8px 22px rgba(0,0,0,.12) !important;

      text-align: justify !important;
      text-align-last: left !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      overflow-wrap: break-word !important;
      word-break: normal !important;
      line-break: auto !important;
    }

    .copay-receipt-note > div:last-child {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
    }

    .copay-receipt-note .copay-receipt-icon {
      display: flex !important;
      width: 38px !important;
      height: 38px !important;
      align-items: center !important;
      justify-content: center !important;
      flex: 0 0 38px !important;
      border-radius: 10px !important;
      background: #f5c400 !important;
      color: #17191c !important;
      font-size: 1.125rem !important;
      line-height: 1 !important;
      align-self: start !important;
      justify-self: start !important;
    }

    .copay-receipt-note strong,
    .copay-receipt-note p {
      width: 100% !important;
      max-width: none !important;
      min-width: 0 !important;
      font-size: var(--type-small) !important;
      line-height: 1.45 !important;
      letter-spacing: 0 !important;
      text-align: justify !important;
      text-align-last: left !important;
      text-wrap: pretty !important;
      -webkit-hyphens: auto !important;
      -ms-hyphens: auto !important;
      hyphens: auto !important;
      overflow-wrap: break-word !important;
      word-break: normal !important;
      line-break: auto !important;
    }

    .copay-receipt-note strong {
      display: block !important;
      margin: 1px 0 6px !important;
      color: #17191c !important;
      font-weight: 900 !important;
    }

    .copay-receipt-note p {
      margin: 0 !important;
      color: #2b2400 !important;
      font-weight: 500 !important;
    }

    @media (max-width: 900px) {
      .copay-receipt-note,
      .copay-receipt-note strong,
      .copay-receipt-note p {
        text-align: justify !important;
        text-align-last: left !important;
        -webkit-hyphens: auto !important;
        -ms-hyphens: auto !important;
        hyphens: auto !important;
      }
    }

    @media (max-width: 600px) {
      .copay-receipt-note {
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        padding: 14px !important;
      }

      .copay-receipt-note .copay-receipt-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 1rem !important;
      }

      .copay-receipt-note strong,
      .copay-receipt-note p {
        font-size: var(--type-small) !important;
        line-height: 1.45 !important;
      }
    }

  

    /* v1.0.52 – Mobile Header: unnötigen Leerraum unter der Navigation entfernen */

    @media (max-width: 760px) {
      :root {
        /* Nur noch als Startwert; JS misst anschließend die reale Höhe. */
        --header-height: 94px;
      }

      header {
        min-height: 0 !important;
        height: auto !important;
      }

      header .container.nav,
      header .nav {
        min-height: 0 !important;
        height: auto !important;
        padding-top: 5px !important;
        padding-bottom: 2px !important;
        row-gap: 4px !important;
        align-content: start !important;
      }

      header .brand-mark {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        flex-basis: 36px !important;
      }

      header .brand-mark img {
        width: 22px !important;
        height: 22px !important;
      }

      header .phone-button {
        min-height: 36px !important;
        height: 36px !important;
        padding-block: 6px !important;
      }

      header nav ul {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 5px !important;
        align-content: start !important;
      }

      header nav li {
        margin: 0 !important;
        padding: 0 !important;
      }

      header nav a {
        padding: 3px 1px !important;
        line-height: 1.02 !important;
      }
    }

    /*
     * Sehr schmale Handys: drei Navigationsspalten bleiben erhalten,
     * aber die bisherige 154/205-px-Höhenreserve entfällt.
     */
    @media (max-width: 350px) {
      :root {
        --header-height: 112px;
      }

      header .container.nav,
      header .nav {
        padding-top: 4px !important;
        padding-bottom: 1px !important;
        row-gap: 3px !important;
      }

      header nav ul {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0 4px !important;
      }

      header nav a {
        padding: 3px 1px !important;
        line-height: 1 !important;
      }
    }

  

    /* v1.0.53 – Hero-CTAs klarer nach Funktion unterscheiden */
    :root {
      --contact-action: #176b73;
      --contact-action-hover: #125a61;
    }

    /*
     * Der allgemeine Nachrichten-Button ist bewusst nicht WhatsApp-grün:
     * Er öffnet die zentrale Kontakt-/Anliegenauswahl und steht damit für
     * mehrere digitale Kontaktwege.
     */
    .hero-actions .whatsapp-secondary,
    .hero-actions [data-quick-order-whatsapp-toggle],
    .hero-actions #quickOrderWhatsappToggle {
      background: var(--contact-action) !important;
      border-color: var(--contact-action) !important;
      color: #fff !important;
      box-shadow: 0 10px 22px rgba(23, 107, 115, .18) !important;
    }

    .hero-actions .whatsapp-secondary:hover,
    .hero-actions .whatsapp-secondary:focus-visible,
    .hero-actions [data-quick-order-whatsapp-toggle]:hover,
    .hero-actions [data-quick-order-whatsapp-toggle]:focus-visible,
    .hero-actions #quickOrderWhatsappToggle:hover,
    .hero-actions #quickOrderWhatsappToggle:focus-visible {
      background: var(--contact-action-hover) !important;
      border-color: var(--contact-action-hover) !important;
      color: #fff !important;
    }

    /* Alle vier Hero-Aktionsbuttons bleiben gleich hoch und gleich breit. */
    .hero-actions {
      align-items: stretch !important;
    }

    .hero-actions > :is(
      .primary-button,
      .secondary-button,
      .whatsapp-secondary,
      .taxi-deutschland-button
    ) {
      min-width: 0 !important;
      width: 100% !important;
      height: 54px !important;
      min-height: 54px !important;
      max-height: none !important;
      box-sizing: border-box !important;
      justify-content: center !important;
      align-items: center !important;
      text-align: center !important;
      text-align-last: center !important;
    }

    /* Längere neue Beschriftung darf sauber umbrechen, ohne den Button zu vergrößern. */
    .hero-actions .whatsapp-secondary,
    .hero-actions [data-quick-order-whatsapp-toggle],
    .hero-actions #quickOrderWhatsappToggle {
      white-space: normal !important;
      line-height: 1.05 !important;
      padding-inline: 12px !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
    }

    @media (max-width: 600px) {
      .hero-actions .whatsapp-secondary,
      .hero-actions [data-quick-order-whatsapp-toggle],
      .hero-actions #quickOrderWhatsappToggle {
        font-size: .9rem !important;
        padding-inline: 10px !important;
      }
    }

  

    /* v1.0.54 – zentraler Bestätigungs- und Bearbeitungszeithinweis */
    .quick-order-service-note {
      margin-top: 18px !important;
      width: 100% !important;
      max-width: none !important;
    }

    .quick-order-service-note,
    .quick-order-service-note strong {
      line-height: 1.45 !important;
    }

  

    /* v1.0.55 – Taxi-Deutschland-Button robust bei jeder Breite */

    /*
     * Eigenes internes Raster:
     * - Logo hat einen festen, immer zentrierten Bereich.
     * - Text nutzt nur den verbleibenden Raum.
     * - Höhe bleibt identisch zu den drei anderen Hero-Buttons.
     */
    .hero-actions .taxi-deutschland-button {
      position: relative !important;
      display: grid !important;
      grid-template-columns: 40px minmax(0, 1fr) !important;
      align-items: center !important;
      justify-items: stretch !important;
      gap: 8px !important;

      width: 100% !important;
      min-width: 0 !important;
      height: 54px !important;
      min-height: 54px !important;
      max-height: 54px !important;

      margin: 0 !important;
      padding: 3px 10px 4px 7px !important;
      border: 3px solid #000 !important;
      border-radius: 14px !important;
      box-sizing: border-box !important;

      background: #ffed00 !important;
      color: #000 !important;
      overflow: hidden !important;
      white-space: normal !important;

      container-type: inline-size;
      box-shadow:
        0 4px 0 #e30613,
        0 7px 0 #000,
        0 11px 20px rgba(23,25,28,.14) !important;
    }

    /*
     * Logo-Zone: unabhängig vom Text immer geometrisch mittig.
     * Kein Abschneiden durch alte Padding-/Flex-Regeln.
     */
    .hero-actions .taxi-deutschland-button-logo {
      display: grid !important;
      place-items: center !important;
      place-self: center !important;

      width: 40px !important;
      height: 40px !important;
      min-width: 40px !important;
      min-height: 40px !important;
      max-width: 40px !important;
      max-height: 40px !important;

      margin: 0 !important;
      padding: 0 !important;
      border-radius: 8px !important;
      overflow: hidden !important;
      background: #ffed00 !important;
      box-sizing: border-box !important;
    }

    .hero-actions .taxi-deutschland-button-logo img {
      display: block !important;
      width: 100% !important;
      height: 100% !important;
      max-width: 100% !important;
      max-height: 100% !important;
      margin: 0 auto !important;
      padding: 0 !important;

      object-fit: contain !important;
      object-position: center center !important;
      transform: none !important;
    }

    /*
     * Textzone: darf niemals das Logo verdrängen.
     * Beide Markenzeilen bleiben jeweils zusammen.
     */
    .hero-actions .taxi-deutschland-button-copy {
      display: flex !important;
      width: 100% !important;
      min-width: 0 !important;
      max-width: 100% !important;
      height: 100% !important;

      margin: 0 !important;
      padding: 0 !important;
      align-items: center !important;
      justify-content: flex-start !important;

      overflow: hidden !important;
      text-align: left !important;
      text-align-last: left !important;
      line-height: 1 !important;
    }

    .hero-actions .taxi-deutschland-button-copy strong {
      display: grid !important;
      width: 100% !important;
      min-width: 0 !important;
      max-width: 100% !important;
      gap: 1px !important;

      margin: 0 !important;
      padding: 0 !important;

      font-family: var(--font-main) !important;
      font-size: clamp(.70rem, 6.2cqw, .94rem) !important;
      font-weight: 950 !important;
      line-height: .98 !important;
      letter-spacing: -.025em !important;

      color: #000 !important;
      text-align: left !important;
      text-align-last: left !important;
      white-space: normal !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
      overflow: visible !important;
    }

    .hero-actions .taxi-deutschland-button-copy strong > span {
      display: block !important;
      width: 100% !important;
      min-width: 0 !important;
      max-width: 100% !important;

      white-space: nowrap !important;
      word-break: keep-all !important;
      overflow-wrap: normal !important;
      -webkit-hyphens: none !important;
      hyphens: none !important;
    }

    /* Browser-Fallback ohne Container-Query-Einheiten. */
    @supports not (font-size: 1cqw) {
      .hero-actions .taxi-deutschland-button-copy strong {
        font-size: clamp(.70rem, 2.4vw, .94rem) !important;
      }
    }

    /* Schmale Buttons: Logo bleibt zentriert, nur Text/Abstände werden kleiner. */
    @media (max-width: 600px) {
      .hero-actions .taxi-deutschland-button {
        grid-template-columns: 38px minmax(0, 1fr) !important;
        gap: 7px !important;
        padding: 3px 8px 4px 6px !important;
      }

      .hero-actions .taxi-deutschland-button-logo {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
      }
    }

    @media (max-width: 380px) {
      .hero-actions .taxi-deutschland-button {
        grid-template-columns: 36px minmax(0, 1fr) !important;
        gap: 6px !important;
        padding-inline: 5px 7px !important;
      }

      .hero-actions .taxi-deutschland-button-logo {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
      }

      .hero-actions .taxi-deutschland-button-copy strong {
        font-size: .68rem !important;
      }
    }

  

    /* v1.0.58 – Kontaktdaten vor Bestellung aus dem Fahrpreisrechner */
    .fare-order-contact {
      width: 100% !important;
      max-width: none !important;
      margin: 18px 0 14px !important;
      padding: 16px !important;
      border: 1px solid rgba(255,255,255,.18) !important;
      border-radius: 14px !important;
      background: rgba(255,255,255,.07) !important;
      box-sizing: border-box !important;
    }

    .fare-order-contact-head {
      margin-bottom: 14px !important;
    }

    .fare-order-contact-head strong {
      display: block !important;
      margin-bottom: 5px !important;
      color: #fff !important;
      font-size: var(--type-body) !important;
      line-height: 1.3 !important;
    }

    .fare-order-contact-head p {
      margin: 0 !important;
      color: #d7d9dc !important;
      font-size: var(--type-small) !important;
      line-height: 1.45 !important;
      text-align: left !important;
      text-align-last: left !important;
    }

    .fare-order-contact-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 12px !important;
      width: 100% !important;
    }

    .fare-order-contact-grid .full {
      grid-column: 1 / -1 !important;
    }

    .fare-order-contact .field {
      min-width: 0 !important;
    }

    .fare-order-contact label {
      display: block !important;
      margin-bottom: 6px !important;
      color: #fff !important;
      font-size: var(--type-small) !important;
      font-weight: 800 !important;
      text-align: left !important;
    }

    .fare-order-contact input,
    .fare-order-contact select {
      width: 100% !important;
      min-width: 0 !important;
      height: 46px !important;
      padding: 10px 11px !important;
      border: 1px solid rgba(255,255,255,.28) !important;
      border-radius: 10px !important;
      background: #fff !important;
      color: #17191c !important;
      box-sizing: border-box !important;
    }

    .fare-order-contact input:focus,
    .fare-order-contact select:focus {
      outline: 3px solid rgba(245,196,0,.35) !important;
      outline-offset: 1px !important;
      border-color: var(--yellow) !important;
    }

    .fare-order-contact-message {
      margin: 12px 0 0 !important;
      padding: 10px 12px !important;
      border-left: 4px solid #f5c400 !important;
      border-radius: 8px !important;
      background: #fff4bf !important;
      color: #5b4200 !important;
      font-size: var(--type-small) !important;
      line-height: 1.45 !important;
      text-align: left !important;
      text-align-last: left !important;
    }

    @media (max-width: 720px) {
      .fare-order-contact-grid {
        grid-template-columns: 1fr !important;
      }

      .fare-order-contact-grid .full {
        grid-column: auto !important;
      }

      .fare-order-contact {
        padding: 14px !important;
      }
    }

  

    /* v1.0.59 – Navigation auf Tablet und Handy als echte Touch-Kacheln */

    @media (max-width: 980px) {
      header nav {
        width: 100% !important;
        overflow: visible !important;
      }

      header nav ul {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 6px !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
      }

      header nav li {
        min-width: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
      }

      header nav a {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px !important;
        padding: 7px 6px !important;

        align-items: center !important;
        justify-content: center !important;

        border: 1px solid var(--line) !important;
        border-radius: 10px !important;
        background: #f4f5f7 !important;
        color: var(--ink) !important;
        box-sizing: border-box !important;

        font-size: .88rem !important;
        font-weight: 900 !important;
        line-height: 1.08 !important;
        text-align: center !important;
        text-align-last: center !important;
        text-decoration: none !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        -webkit-hyphens: auto !important;
        hyphens: auto !important;

        transition:
          background .18s ease,
          border-color .18s ease,
          transform .18s ease,
          box-shadow .18s ease !important;
      }

      header nav a:hover,
      header nav a:focus-visible {
        background: #fff4bf !important;
        border-color: var(--yellow) !important;
        color: var(--ink) !important;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(23,25,28,.08) !important;
      }

      header nav a:active {
        transform: translateY(1px) !important;
      }
    }

    @media (max-width: 760px) {
      :root {
        --header-height: 150px;
      }

      header .container.nav,
      header .nav {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
        row-gap: 6px !important;
      }

      header nav ul {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 5px !important;
      }

      header nav a {
        min-height: 46px !important;
        padding: 6px 4px !important;
        border-radius: 9px !important;
        font-size: .80rem !important;
        line-height: 1.05 !important;
      }
    }

    @media (max-width: 390px) {
      :root {
        --header-height: 154px;
      }

      header nav ul {
        gap: 4px !important;
      }

      header nav a {
        min-height: 48px !important;
        padding-inline: 3px !important;
        font-size: .76rem !important;
      }
    }

/* v1.0.64 – language switch DE / EN */
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  flex: 0 0 auto;
}

.language-button {
  min-width: 38px;
  min-height: 27px;
  padding: 3px 7px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.language-button.is-active {
  background: var(--yellow);
  color: var(--ink);
}

.language-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.english-legal-note {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #f5c400;
  border-radius: 12px;
  background: #fff4bf;
  color: #17191c;
  box-sizing: border-box;
}

html[lang="en"] .english-legal-note:not([hidden]) {
  display: block;
}

html[lang="en"] :is(main, footer) :is(p, li, dd, blockquote, figcaption) {
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 620px) {
  .topbar-inner {
    justify-content: space-between !important;
    text-align: left !important;
    gap: 8px !important;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .topbar-call-label {
    display: none;
  }

  .topbar-actions p {
    white-space: nowrap;
    font-size: .78rem !important;
  }

  .language-switch {
    margin-left: auto;
  }

  .language-button {
    min-width: 34px;
    min-height: 26px;
    padding-inline: 6px;
  }
}


/* v1.0.67 – Sprachschalter mit Flaggen */
.language-switch {
  gap: 3px !important;
  padding: 3px !important;
}

.language-button {
  display: inline-flex !important;
  min-width: 58px !important;
  min-height: 32px !important;
  padding: 4px 8px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  border: 1px solid transparent !important;
  border-radius: 7px !important;
  box-sizing: border-box !important;
}

.language-flag {
  display: block !important;
  width: 24px !important;
  height: 16px !important;
  flex: 0 0 24px !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  border-radius: 2px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.18) !important;
}

.language-button > span {
  display: inline-block !important;
  min-width: 20px !important;
  color: inherit !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.language-button.is-active {
  border-color: #000 !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.72),
    0 2px 6px rgba(0,0,0,.16) !important;
}

@media (max-width: 620px) {
  .language-button {
    min-width: 54px !important;
    min-height: 30px !important;
    padding: 3px 6px !important;
    gap: 5px !important;
  }

  .language-flag {
    width: 22px !important;
    height: 15px !important;
    flex-basis: 22px !important;
  }

  .language-button > span {
    min-width: 18px !important;
    font-size: .74rem !important;
  }
}

@media (max-width: 380px) {
  .language-button {
    min-width: 49px !important;
    padding-inline: 5px !important;
    gap: 4px !important;
  }

  .language-flag {
    width: 20px !important;
    height: 14px !important;
    flex-basis: 20px !important;
  }

  .language-button > span {
    min-width: 17px !important;
    font-size: .70rem !important;
  }
}


/* v1.0.68 – třetí jazyk: čeština */
.language-switch {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.czech-legal-note {
  display: none;
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid #f5c400;
  border-radius: 12px;
  background: #fff4bf;
  color: #17191c;
  box-sizing: border-box;
}

html[lang="cs"] .czech-legal-note:not([hidden]) {
  display: block;
}

html[lang="cs"] :is(main, footer) :is(p, li, dd, blockquote, figcaption) {
  -webkit-hyphens: auto;
  hyphens: auto;
}

@media (max-width: 620px) {
  .language-button {
    min-width: 48px !important;
  }
}

@media (max-width: 380px) {
  .language-button {
    min-width: 43px !important;
    gap: 3px !important;
    padding-inline: 4px !important;
  }

  .language-button > span {
    font-size: .67rem !important;
  }
}


/* v1.0.69 – feste Hero-Zeilenstruktur */
.hero-title-line {
  display: block;
  width: 100%;
  max-width: none;
}

.hero-title-line + .hero-title-line {
  margin-top: 0;
}



/* v1.0.73 – Hero nach Entfernen des Standortbereichs sauber neu ausrichten */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy > .eyebrow {
  display: none !important;
}

.hero .hero-grid {
  min-height: 560px;
  gap: 40px;
  padding-block: 52px;
}

.hero-copy h1,
.hero-title {
  margin-top: 0 !important;
  margin-bottom: 18px !important;
}

.hero .lead {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.hero-actions {
  margin-top: 24px !important;
}

.trust-row {
  margin-top: 24px !important;
}

@media (max-width: 1100px) {
  .hero .hero-grid {
    min-height: auto;
    gap: 30px;
    padding-block: 36px;
  }

  .hero-copy h1,
  .hero-title {
    margin-bottom: 16px !important;
  }

  .hero-actions,
  .trust-row {
    margin-top: 20px !important;
  }
}

@media (max-width: 600px) {
  .hero .hero-grid {
    gap: 22px;
    padding-block: 28px;
  }

  .hero-copy h1,
  .hero-title {
    margin-bottom: 14px !important;
  }

  .hero-actions,
  .trust-row {
    margin-top: 16px !important;
  }
}


/* v1.0.76 – allgemeine Anfrage ohne zusätzlichen Kontaktbutton */
.quick-order-topic-guide,
#quickOrderTopicGuide {
  padding-bottom: 16px !important;
}

.quick-order-topic-guide > :last-child,
#quickOrderTopicGuide > :last-child {
  margin-bottom: 0 !important;
}

.quick-order-topic-guide .button-row:empty,
#quickOrderTopicGuide .button-row:empty,
.quick-order-topic-guide a:empty,
#quickOrderTopicGuide a:empty {
  display: none !important;
}


/* v1.0.77 – strukturierte Rechnungsanfrage */
.invoice-admin-contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid #f0c400;
  border-radius: 14px;
  background: #fff7cf;
  box-sizing: border-box;
}

.invoice-admin-contact > div:first-child {
  display: grid;
  gap: 4px;
}

.invoice-admin-contact > div:first-child strong {
  font-weight: 900;
}

.invoice-admin-contact > div:first-child span {
  color: var(--muted);
}

.invoice-admin-contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.invoice-admin-contact-links a {
  display: flex;
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(23,25,28,.16);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-sizing: border-box;
}

.invoice-admin-contact-links a:hover,
.invoice-admin-contact-links a:focus-visible {
  border-color: var(--ink);
}

.invoice-admin-contact-links a span {
  font-size: .82em;
  color: var(--muted);
}

.invoice-admin-contact-links a strong {
  overflow-wrap: anywhere;
  font-weight: 900;
}

.invoice-privacy-note {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-left: 3px solid #f0c400;
  background: #fffdf2;
  color: var(--muted);
}

@media (max-width: 760px) {
  .invoice-admin-contact {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .invoice-admin-contact-links {
    grid-template-columns: 1fr;
  }

  .invoice-admin-contact-links a {
    min-height: 54px;
  }
}


/* v1.0.79 – zeitgesteuerter Hinweis zur nicht besetzten Verwaltung */
.invoice-administration-closure {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 15px 16px;
  border: 2px solid #b42318;
  border-radius: 14px;
  background: #fff0ee;
  color: #7a1712;
  box-sizing: border-box;
}

.invoice-administration-closure.hidden {
  display: none !important;
}

.invoice-administration-closure strong {
  font-weight: 950;
}

.invoice-administration-closure span {
  line-height: 1.45;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 760px) {
  .invoice-administration-closure {
    padding: 13px 14px;
  }
}


/* v1.0.80 – Schnellziele für Start- und Zieladresse */
.poi-quick-picker {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(23,25,28,.14);
  border-radius: 12px;
  background: #fbfbfc;
  box-sizing: border-box;
}

.poi-quick-picker-head {
  display: grid;
  gap: 2px;
}

.poi-quick-picker-head strong {
  font-weight: 900;
}

.poi-quick-picker-head span {
  color: var(--muted);
  font-size: .88em;
}

.poi-quick-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poi-quick-buttons button {
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(23,25,28,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
}

.poi-quick-buttons button:hover:not(:disabled),
.poi-quick-buttons button:focus-visible:not(:disabled) {
  border-color: var(--ink);
  background: #fff5bf;
}

.poi-quick-buttons button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.poi-quick-buttons button[aria-busy="true"] {
  opacity: .72;
}

.poi-quick-results {
  display: grid;
  gap: 7px;
  max-height: 320px;
  overflow: auto;
  padding-top: 3px;
}

.poi-quick-result {
  display: grid;
  width: 100%;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid rgba(23,25,28,.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.poi-quick-result:hover,
.poi-quick-result:focus-visible {
  border-color: #d6a900;
  background: #fff9da;
}

.poi-quick-result strong {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.poi-quick-result span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.poi-quick-result small {
  color: #6d5b00;
  font-weight: 800;
}

.poi-quick-empty {
  margin: 0;
  padding: 10px 12px;
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
}

@media (max-width: 620px) {
  .poi-quick-picker {
    padding: 10px;
  }

  .poi-quick-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .poi-quick-buttons button {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    padding-inline: 8px;
  }

  .poi-quick-results {
    max-height: 280px;
  }
}

@media (max-width: 390px) {
  .poi-quick-buttons {
    grid-template-columns: 1fr;
  }
}


/* v1.0.81 – ALiTa-Fahrtenfinder v36 */
.alita-finder-card{display:grid;gap:18px;margin-top:26px;padding:18px;border:1px solid rgba(23,25,28,.16);border-radius:18px;background:#fff;box-shadow:0 12px 30px rgba(23,25,28,.06);box-sizing:border-box}
.alita-finder-intro{display:grid;gap:9px}
.alita-finder-intro h3,.alita-finder-intro p{margin:0}
.finder-confirmation-note{padding:12px 14px;border-left:4px solid var(--yellow);border-radius:10px;background:#fff7cf}
.alita-fahrtenfinder-frame{display:block;width:100%;min-height:760px;height:920px;border:1px solid rgba(23,25,28,.12);border-radius:14px;background:#fff;box-sizing:border-box}
.alita-finder-source{margin:0}
@media(max-width:760px){
  .alita-finder-card{margin-top:18px;padding:10px;border-radius:14px}
  .alita-fahrtenfinder-frame{min-height:720px;height:820px;border-radius:10px}
}


/* v1.0.84 – verschlankte ALiTa-Einbindung */
.alita-finder-embed {
  width: 100%;
  margin-top: 20px;
}



.alita-finder-embed .alita-finder-source {
  margin-top: 10px;
}


@media (max-width: 760px) {
  .alita-finder-embed {
    margin-top: 14px;
  }
}


/* v1.0.87 – ein gemeinsamer Hinweis für Bearbeitungszeit und ALiTa-Frist */
.alita-combined-notice {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 2px solid #991f1f;
  border-left-width: 7px;
  border-radius: 14px;
  background: #fff7f3;
  color: #5f1717;
  box-sizing: border-box;
}

.alita-combined-notice > strong {
  font-size: 1.05em;
  font-weight: 950;
}

.alita-combined-notice p {
  margin: 0;
  line-height: 1.5;
}

.alita-combined-notice a {
  color: inherit;
  font-weight: 950;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .alita-combined-notice {
    padding: 14px 15px;
    border-radius: 12px;
  }
}

/* v1.0.93 – stabiler Buchungsmodus */
.alita-fahrtenfinder-frame{overflow-anchor:none}
.alita-fahrtenfinder-frame.is-booking-active{min-height:520px!important;max-height:900px}
