    :root {
      --red: #d5001c;
      --red-dark: #a90016;
      --ink: #0b0d10;
      --graphite: #191d22;
      --muted: #66707d;
      --line: #e7eaee;
      --paper: #ffffff;
      --soft: #f4f6f8;
      --max: 1920px;
      --hero-max: 1920px;
      --radius: 8px;
      --topbar-height: 105px;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: auto; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      line-height: 1.5;
      letter-spacing: 0;
      padding-top: 0;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      background: #050608;
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.1);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 10000;
    }

    section {
      scroll-margin-top: calc(var(--topbar-height) + 16px);
    }

    .topbar .wrap {
      width: min(1760px, calc(100% - 160px));
    }

    .nav {
      min-height: 104px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-width: 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 382px;
      flex: 0 0 auto;
    }

    .header-logo {
      width: min(300px, 21vw);
      height: auto;
      background: #fff;
      padding: 0;
      border-radius: 4px;
      border: 0;
      box-shadow: 0 10px 24px rgba(0,0,0,.22);
      image-rendering: auto;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border: 2px solid #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      color: #fff;
      background: var(--red);
      line-height: 1;
    }

    .brand strong {
      display: block;
      font-size: 1.02rem;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .brand > span:not(.brand-mark) > span {
      display: block;
      color: #b8c0cc;
      font-size: .78rem;
      margin-top: 2px;
    }

    .partner-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-left: 14px;
      border-left: 1px solid rgba(255,255,255,.14);
      min-width: 154px;
      color: #fff;
      font-size: .68rem;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 800;
    }

    .diamond {
      width: 24px;
      height: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      transform: rotate(45deg);
      flex: 0 0 auto;
    }

    .diamond i {
      display: block;
      background: var(--red);
    }

    .links {
      display: flex;
      gap: 6px;
      align-items: center;
      color: #d7dce4;
      font-size: .78rem;
      white-space: nowrap;
      min-width: 0;
      flex: 1 1 auto;
      justify-content: center;
    }

    .links a {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 10px;
      border-radius: 3px;
      color: #cfd6df;
      font-weight: 780;
      line-height: 1;
      letter-spacing: .035em;
      text-transform: uppercase;
      text-decoration: none;
      outline: none;
      transition: color .18s ease, background .18s ease;
    }

    .links a::after {
      content: "";
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 6px;
      height: 2px;
      border-radius: 999px;
      background: var(--red);
      opacity: 0;
      transform: scaleX(.45);
      transform-origin: center;
      transition: opacity .18s ease, transform .18s ease;
    }

    .links a:hover,
    .links a:focus-visible {
      color: #fff;
      background: rgba(255,255,255,.055);
    }

    .links a:hover::after,
    .links a:focus-visible::after {
      opacity: 1;
      transform: scaleX(1);
    }

    .links a:active {
      color: #fff;
      background: rgba(213,0,28,.18);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #d7dce4;
      font-size: .86rem;
      white-space: nowrap;
      flex: 0 0 auto;
      min-width: 0;
    }

    .nav-actions .btn { padding: 0 17px; }
    .header-action {
      width: 40px;
      min-width: 40px;
      height: 40px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      border-radius: 999px;
      border: 0;
      background: rgba(255,255,255,.08);
      color: #fff;
      font-size: .78rem;
      font-weight: 800;
      line-height: 1;
      text-decoration: none;
      letter-spacing: 0;
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      box-shadow: 0 10px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
    }
    .header-action:hover {
      transform: translateY(-1px);
      background: rgba(255,255,255,.12);
      box-shadow: 0 14px 30px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.16);
    }
    .header-action-mark {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      flex: 0 0 auto;
    }
    .header-action-mark img {
      width: 14px;
      height: 14px;
      display: block;
    }
    .header-action.whatsapp .header-action-mark { background: #25d366; }
    .header-action.call .header-action-mark { background: var(--red); }
    .header-action.mail .header-action-mark { background: rgba(255,255,255,.16); }
    .header-action-label { display: none; }
    .menu-toggle {
      display: none;
      width: 40px;
      min-width: 40px;
      height: 40px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      color: #fff;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      box-shadow: 0 10px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }
    .menu-toggle span {
      display: block;
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform .18s ease, opacity .18s ease;
    }
    .menu-toggle:hover,
    .menu-toggle:focus-visible {
      background: rgba(255,255,255,.14);
      border-color: rgba(255,255,255,.28);
      outline: none;
      transform: translateY(-1px);
    }
    .menu-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 3px;
      font-weight: 800;
      font-size: .88rem;
      text-transform: uppercase;
      letter-spacing: .04em;
      cursor: pointer;
    }

    .btn-red { background: var(--red); color: #fff; }
    .btn-red:hover { background: var(--red-dark); }
    .btn-dark { background: rgba(8,10,13,.78); color: #fff; border-color: rgba(255,255,255,.34); }
    .btn-light { background: #fff; color: var(--ink); border-color: #fff; }
    .btn-ghost { border-color: #cfd5dc; color: var(--ink); background: transparent; }
    body.modal-open { overflow: hidden; }

    .hero {
      height: clamp(560px, calc(100svh - 78px), 860px);
      color: #fff;
      position: relative;
      overflow: hidden;
      background: #111;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      background: #111 url("assets/hero-finazzer-main.webp") left center / cover no-repeat;
    }

    .hero-video,
    .hero-fallback {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 38%;
      object-position: left center;
      filter: brightness(1.22) saturate(1.04);
    }

    .hero-video {
      z-index: 1;
      opacity: 0;
      transition: opacity 1.8s ease-in-out;
    }
    .hero-video.is-playing { opacity: 1; }
    .hero-fallback { z-index: 0; }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(90deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.22) 32%, rgba(0,0,0,.08) 50%, rgba(0,0,0,0) 68%);
    }


    .hero .wrap {
      width: min(var(--hero-max), calc(100% - 48px));
      height: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      align-items: center;
      gap: 34px;
      position: relative;
      z-index: 2;
      padding: clamp(34px, 5vh, 70px) 0 clamp(48px, 7vh, 96px);
    }

    .hero-content {
      transform: translateY(clamp(-86px, -7vh, -48px));
    }

    .eyebrow {
      color: #ff334a;
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: .12em;
      font-size: .78rem;
      margin-bottom: 16px;
    }

    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-size: clamp(2.9rem, 5.1vw, 5.7rem);
      line-height: .91;
      max-width: 700px;
      margin-bottom: 26px;
      text-transform: uppercase;
      letter-spacing: 0;
      font-weight: 950;
    }

    .hero-copy {
      max-width: 640px;
      color: #e6ebf1;
      font-size: 1.18rem;
      margin-bottom: 0;
    }

    section { padding: 86px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 32px;
      align-items: end;
      margin-bottom: 36px;
    }
    .kicker {
      color: var(--red);
      font-size: .8rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-weight: 900;
      margin-bottom: 10px;
    }
    h2 {
      font-size: clamp(2.1rem, 3.3vw, 3.7rem);
      line-height: .98;
      text-transform: uppercase;
      margin-bottom: 0;
      letter-spacing: 0;
      max-width: 760px;
    }
    .section-head p { max-width: 430px; color: var(--muted); margin-bottom: 4px; }

    .services {
      background: var(--soft);
      border-top: 1px solid #dfe3e8;
    }
    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 28px rgba(13,18,26,.055);
      min-height: 100%;
      padding: 22px 22px 20px;
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      column-gap: 14px;
      align-items: center;
    }
    .service-card-image {
      grid-column: 1 / -1;
      margin: -22px -22px 18px;
      overflow: hidden;
      border-radius: var(--radius) var(--radius) 0 0;
      background: #e8ebef;
    }
    .service-card-image img {
      width: 100%;
      aspect-ratio: 900 / 620;
      object-fit: cover;
      transition: transform .32s ease;
    }
    .card:hover .service-card-image img { transform: scale(1.025); }
    .service-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 0;
      border-radius: 6px;
      background: #0b0d10;
      color: #fff;
      display: grid;
      place-items: center;
      box-shadow: inset 4px 0 0 var(--red);
    }
    .service-icon svg {
      width: 22px;
      height: 22px;
    }
    h3 {
      font-size: 1rem;
      line-height: 1.16;
      margin-bottom: 0;
      text-transform: uppercase;
    }
    .card p { grid-column: 1 / -1; color: var(--muted); margin: 15px 0 0; font-size: .92rem; }
    .text-link { color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .82rem; }

    .offer-strip {
      background: var(--soft);
      padding-top: 0;
    }
    .offer-box {
      display: grid;
      gap: 24px;
      background: #fff;
      color: var(--ink);
      border-radius: var(--radius);
      padding: clamp(24px, 3vw, 36px);
      border: 1px solid var(--line);
      box-shadow: 0 16px 36px rgba(13,18,26,.08);
    }
    .offer-box h2 {
      font-size: clamp(1.7rem, 2.5vw, 2.8rem);
      max-width: 780px;
      margin-bottom: 12px;
    }
    .offer-box p {
      max-width: 820px;
      color: var(--muted);
      margin-bottom: 0;
    }
    .offer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .offer-card {
      min-height: 100%;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      display: grid;
      grid-template-rows: auto 1fr;
      box-shadow: 0 12px 28px rgba(13,18,26,.055);
    }
    .offer-card img {
      width: 100%;
      aspect-ratio: 743 / 520;
      object-fit: cover;
      background: #e8ebef;
    }
    .offer-card-body {
      padding: 20px;
      display: grid;
      gap: 10px;
      align-content: start;
    }
    .offer-card strong {
      display: block;
      color: var(--ink);
      font-size: 1rem;
      line-height: 1.15;
      text-transform: uppercase;
    }
    .offer-card span {
      display: block;
      color: var(--red);
      font-weight: 900;
      font-size: .92rem;
    }
    .offer-card p {
      color: var(--muted);
      font-size: .9rem;
      margin: 0;
    }
    .offer-card .text-link {
      margin-top: 4px;
      align-self: end;
    }
    .offer-box > .btn {
      justify-self: start;
      background: var(--red);
      color: #fff;
    }
    .offer-box > .btn:hover { background: var(--red-dark); }

    .split {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.28fr);
      gap: clamp(28px, 4vw, 68px);
      align-items: stretch;
      background: #fff;
      color: var(--ink);
    }
    .split > *, .split-copy, .split-media { min-width: 0; }
    .split-copy {
      display: grid;
      gap: 22px;
      align-content: start;
    }
    .split-copy h2 {
      font-size: clamp(2.4rem, 4vw, 5rem);
      line-height: .96;
      max-width: 780px;
    }
    .split-copy p {
      color: #434b55;
      max-width: 760px;
      font-size: clamp(1rem, 1.2vw, 1.18rem);
      margin-bottom: 0;
    }
    .region-cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 2px;
    }
    .region-card {
      min-height: 188px;
      padding: 24px 24px 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: 0 14px 32px rgba(13,18,26,.065);
    }
    .region-card i {
      display: block;
      color: var(--red);
      font-size: 2.35rem;
      line-height: 1;
      margin-bottom: 22px;
    }
    .region-card-logo {
      display: block;
      width: 44px;
      height: 44px;
      object-fit: contain;
      margin: 0 0 18px;
    }
    .region-card strong {
      display: block;
      font-size: 1.03rem;
      line-height: 1.15;
      margin-bottom: 10px;
    }
    .region-card span {
      display: block;
      color: #525b66;
      font-size: .94rem;
      line-height: 1.45;
    }
    .region-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0;
      margin-top: 0;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(13,18,26,.045);
    }
    .region-proof span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 10px 16px;
      color: #1d232a;
      font-weight: 780;
      font-size: .9rem;
      border-right: 1px solid var(--line);
      text-align: center;
    }
    .region-proof span:last-child { border-right: 0; }
    .region-proof i {
      color: var(--ink);
      font-size: 1rem;
    }
    .split-media {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      grid-template-rows: minmax(0, 1.45fr) minmax(116px, .55fr);
      gap: 18px;
      min-height: 100%;
    }
    .split-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius);
      border: 1px solid rgba(13,18,26,.08);
      box-shadow: 0 14px 32px rgba(13,18,26,.09);
      background: #e8ebef;
    }
    .split-media .region-main-image {
      grid-column: 1 / -1;
      min-height: 0;
      aspect-ratio: auto;
    }
    .split-media .region-thumb {
      aspect-ratio: auto;
      min-height: 116px;
    }
    .rating {
      position: absolute;
      right: 24px;
      bottom: 24px;
      width: min(360px, calc(100% - 48px));
      background: #fff;
      color: var(--ink);
      padding: 20px;
      border-left: 5px solid var(--red);
      box-shadow: 0 12px 30px rgba(0,0,0,.25);
    }
    .rating .score {
      color: var(--red);
      font-size: 1.18rem;
      font-weight: 950;
      margin-bottom: 4px;
      letter-spacing: .04em;
    }
    .rating strong { display: block; }
    .rating span { color: var(--muted); }

    #betrieb {
      background: #050608;
      color: #fff;
    }
    #betrieb .split {
      background: transparent;
      color: #fff;
    }
    #betrieb .split-copy {
      min-height: 100%;
      padding: clamp(28px, 3vw, 46px);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius);
      background: #0b0d10;
      box-shadow: 0 20px 46px rgba(0,0,0,.28);
    }
    #betrieb .split-copy h2,
    #betrieb .compact-team-head h2 {
      color: #fff;
    }
    #betrieb .split-copy p,
    #betrieb .compact-team-head p {
      color: #c9d1dc;
    }
    #betrieb .region-card {
      border-color: rgba(255,255,255,.12);
      background: rgba(255,255,255,.055);
      box-shadow: none;
    }
    #betrieb .region-card strong { color: #fff; }
    #betrieb .region-card span { color: #c9d1dc; }
    #betrieb .region-proof {
      border-color: rgba(255,255,255,.12);
      background: rgba(255,255,255,.055);
      box-shadow: none;
    }
    #betrieb .region-proof span {
      color: #eef2f6;
      border-right-color: rgba(255,255,255,.12);
    }
    #betrieb .region-proof i { color: #fff; }
    #betrieb .region-trust {
      display: grid;
      grid-template-columns: minmax(170px, .48fr) minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      background: rgba(255,255,255,.055);
    }
    #betrieb .region-trust .kicker {
      margin: 0 0 5px;
      color: #c9d1dc;
      font-size: .7rem;
    }
    #betrieb .region-trust-score {
      color: #fff;
      font-size: 2rem;
      line-height: .95;
      font-weight: 950;
    }
    #betrieb .region-trust-score span {
      color: #c9d1dc;
      font-size: .9rem;
      font-weight: 800;
    }
    #betrieb .region-trust-stars {
      color: #ffcc33;
      font-size: .95rem;
      letter-spacing: .06em;
      margin-top: 5px;
    }
    #betrieb .region-trust p {
      margin: 0;
      color: #e8edf3;
      font-size: .9rem;
      line-height: 1.35;
    }
    #betrieb .region-trust .btn {
      min-height: 38px;
      padding: 0 13px;
      font-size: .76rem;
      white-space: nowrap;
    }
    #betrieb .split-media img {
      border-color: rgba(255,255,255,.12);
      box-shadow: 0 20px 46px rgba(0,0,0,.28);
      background: #141922;
    }
    #betrieb .btn-ghost {
      color: #fff;
      border-color: rgba(255,255,255,.28);
      background: rgba(255,255,255,.06);
    }
    #betrieb .btn-ghost:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.42);
    }

    @media (min-width: 981px) {
      #betrieb { padding: 62px 0; }
      #betrieb .split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
        gap: clamp(22px, 2.6vw, 42px);
      }
      #betrieb .split-copy {
        gap: 14px;
        padding: clamp(22px, 2.2vw, 34px);
      }
      #betrieb .split-copy .kicker {
        margin-bottom: 4px;
        font-size: .72rem;
      }
      #betrieb .split-copy h2 {
        font-size: clamp(2rem, 2.8vw, 3.35rem);
        line-height: .96;
        max-width: 680px;
      }
      #betrieb .split-copy p {
        font-size: clamp(.92rem, .95vw, 1rem);
        line-height: 1.45;
        max-width: 680px;
      }
      #betrieb .region-cards {
        gap: 12px;
      }
      #betrieb .region-card {
        min-height: 132px;
        padding: 16px 16px 15px;
      }
      #betrieb .region-card i {
        font-size: 1.55rem;
        margin-bottom: 12px;
      }
      #betrieb .region-card-logo {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
      }
      #betrieb .region-card strong {
        font-size: .9rem;
        line-height: 1.12;
        margin-bottom: 6px;
      }
      #betrieb .region-card span {
        font-size: .8rem;
        line-height: 1.32;
      }
      #betrieb .region-proof span {
        min-height: 42px;
        padding: 8px 10px;
        gap: 7px;
        font-size: .78rem;
      }
      #betrieb .region-trust {
        padding: 12px 14px;
      }
      #betrieb .region-trust-score {
        font-size: 1.65rem;
      }
      #betrieb .region-trust p {
        font-size: .82rem;
      }
      #betrieb .betrieb-actions {
        margin-top: 10px;
        gap: 10px;
      }
      #betrieb .betrieb-actions .btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: .78rem;
      }
      #betrieb .split-media {
        gap: 12px;
        grid-template-rows: minmax(0, 1.5fr) minmax(92px, .5fr);
      }
      #betrieb .split-media .region-thumb { min-height: 92px; }
    }

    .building-strip { display: none; }

    .model-carousel {
      display: grid;
      grid-template-columns: 54px minmax(0, 1fr) 54px;
      gap: 16px;
      align-items: stretch;
    }
    .carousel-button {
      width: 54px;
      min-height: 260px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      font-size: 1.4rem;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(13,18,26,.055);
    }
    .carousel-button:hover { color: var(--red); border-color: #cfd5dc; }
    .model-viewport {
      min-width: 0;
      overflow: hidden;
      border-radius: var(--radius);
      touch-action: pan-y;
      user-select: none;
    }
    .model-carousel, .model-viewport { max-width: 100%; }
    .models {
      --visible-models: 3;
      display: flex;
      gap: 22px;
      transform: translate3d(0, 0, 0);
      transition: transform .36s ease;
      will-change: transform;
    }
    .model {
      min-height: 430px;
      flex: 0 0 calc((100% - (22px * (var(--visible-models) - 1))) / var(--visible-models));
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: end;
      color: #fff;
      position: relative;
      overflow: hidden;
      background: #111;
      border-radius: var(--radius);
    }
    .carousel-dots {
      grid-column: 2;
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 16px;
    }
    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      border: 0;
      background: #c9d0d8;
      cursor: pointer;
    }
    .carousel-dot.is-active { background: var(--red); }
    .model::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 38%, rgba(0,0,0,.10) 68%, rgba(0,0,0,0) 100%);
      z-index: 1;
    }
    .model img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }
    .model:hover img { transform: scale(1.03); }
    .model-content {
      position: relative;
      z-index: 2;
      max-width: 360px;
      display: grid;
      gap: 5px;
      padding: 12px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 8px;
      background: rgba(5,6,8,.56);
      box-shadow: 0 16px 36px rgba(0,0,0,.22);
    }
    .model-content h3 { margin: 0; }
    .model p { color: #e8edf3; margin: 0; font-size: .92rem; line-height: 1.38; }
    .model-content > p:not(.model-meta) { display: none; }
    .model-meta {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      max-width: none;
      margin-left: 0;
      height: 18px;
      padding: 0;
      border-top: 1px solid rgba(255,255,255,.20);
      color: rgba(255,255,255,.58);
      font-size: .48rem !important;
      line-height: 1;
      font-weight: 500;
      text-align: left;
      transform: translateY(2px);
      margin-bottom: 0;
    }
    .model-details {
      border-top: 1px solid rgba(255,255,255,.22);
      padding-top: 6px;
      font-size: .68rem;
      line-height: 1.42;
      color: rgba(255,255,255,.76);
    }
    .model-details summary {
      width: fit-content;
      cursor: pointer;
      color: #fff;
      font-weight: 850;
      text-transform: uppercase;
      font-size: .68rem;
      letter-spacing: .035em;
    }
    .model-details p { margin-top: 6px; color: rgba(220,228,237,.78); }
    .model-link {
      width: fit-content;
      margin-top: 2px;
      color: #fff;
      font-weight: 900;
      text-transform: uppercase;
      font-size: .72rem;
      letter-spacing: .035em;
      border-bottom: 2px solid var(--red);
    }
    .model-link:hover { color: #f1f4f7; }

    .sync-panel {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      margin: 26px 0 32px;
    }
    .sync-card {
      border: 1px solid var(--line);
      border-left: 5px solid var(--red);
      background: #fff;
      padding: 22px;
      border-radius: var(--radius);
    }
    .sync-card strong { display: block; text-transform: uppercase; margin-bottom: 6px; }
    .sync-card span, .sync-card p { color: var(--muted); }
    .model-source {
      margin-top: 18px;
      color: var(--muted);
      font-size: .78rem;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 12px 14px;
      background: #fff;
    }
    .model-source strong {
      display: block;
      color: var(--ink);
      font-weight: 850;
    }
    .model-source p { margin: 8px 0 0; }
    .betrieb-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px;
    }
    .betrieb-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }
    .legacy-box .text-link {
      display: inline-flex;
      margin-top: 14px;
    }

    .betrieb-team {
      margin-top: 34px;
    }
    .compact-team-head {
      align-items: start;
      margin-bottom: 22px;
    }
    .compact-team-head h2 {
      max-width: 680px;
    }
    .compact-team-head p {
      color: var(--muted);
      max-width: 390px;
      margin-bottom: 0;
    }

    .team-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }
    .team-group-title {
      grid-column: 1 / -1;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 18px 0 0;
      padding: 9px 12px;
      border-left: 4px solid var(--red);
      background: #f4f6f8;
      color: var(--ink);
      font-size: .95rem;
      font-weight: 900;
      line-height: 1.15;
      text-transform: uppercase;
      letter-spacing: 0;
    }
    .team-group-title:first-child { margin-top: 0; }
    .team-group-title i { color: var(--red); }
    .person {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      display: grid;
      grid-template-rows: auto 1fr;
      box-shadow: 0 12px 28px rgba(13,18,26,.055);
      position: relative;
      padding-top: 12px;
    }
    .person::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 76px;
      background: #f4f6f8;
      border-bottom: 1px solid var(--line);
      z-index: 0;
    }
    .person > * { position: relative; z-index: 1; }
    .person img, .person-photo-fallback {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      width: min(58%, 132px);
      max-width: 132px;
      margin: 0 auto;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #e8ebef;
      border: 3px solid #fff;
      box-shadow: 0 8px 18px rgba(13,18,26,.14);
    }
    .person img { display: block; }
    .person-photo-fallback {
      color: var(--red);
      font-size: 2rem;
    }
    .person-body {
      padding: 12px 12px 14px;
      display: grid;
      gap: 8px;
      align-content: start;
    }
    .person-title {
      display: grid;
      grid-template-columns: 30px minmax(0, 1fr);
      gap: 8px;
      align-items: center;
    }
    .person-icon {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 6px;
      background: #0b0d10;
      color: #fff;
      box-shadow: inset 4px 0 0 var(--red);
    }
    .person strong { display: block; color: var(--ink); font-size: .96rem; font-weight: 900; line-height: 1.12; }
    .person span { color: var(--muted); font-size: .82rem; }
    .person p { color: var(--muted); font-size: .9rem; margin: 0; }
    .team-contact {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 2px;
    }
    .team-contact a {
      min-height: 30px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 0 9px;
      color: var(--ink);
      font-size: .78rem;
      font-weight: 800;
      background: #fff;
    }
    .team-contact a:hover { border-color: #c9d0d8; color: var(--red); }

    .legacy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .legacy-box {
      border: 1px solid var(--line);
      background: #fff;
      padding: 24px;
      border-radius: var(--radius);
    }
    .legacy-box ul { margin: 0; padding-left: 20px; color: var(--muted); }
    .hours {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }
    .hours div {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--line);
    }    .hub-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .hub-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      padding: 22px;
      min-height: 100%;
    }
    .hub-card strong {
      display: block;
      margin-bottom: 8px;
      text-transform: uppercase;
    }
    .hub-card p { color: var(--muted); margin-bottom: 14px; }
    .hub-card a { color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .82rem; }

    .contact-band {
      background: #07090c;
      color: #fff;
      padding: 54px 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }
    .contact-card {
      border: 1px solid rgba(255,255,255,.12);
      padding: 26px;
      background: rgba(255,255,255,.04);
      border-radius: var(--radius);
    }
    .contact-card p { color: #c9d1dc; margin-bottom: 0; }

    .appointment-modal {
      position: fixed;
      inset: 0;
      z-index: 20000;
      display: grid;
      place-items: center;
      padding: 22px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease;
    }
    .appointment-modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .appointment-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5,6,8,.74);
    }
    .appointment-dialog {
      position: relative;
      width: min(620px, 100%);
      max-height: min(780px, calc(100svh - 44px));
      overflow: auto;
      background: #fff;
      color: var(--ink);
      border-radius: var(--radius);
      box-shadow: 0 24px 80px rgba(0,0,0,.34);
      padding: clamp(24px, 4vw, 34px);
    }
    .appointment-dialog h2 {
      margin: 0 44px 10px 0;
      text-transform: uppercase;
      font-size: clamp(1.75rem, 3vw, 2.6rem);
      line-height: .98;
    }
    .appointment-dialog p {
      color: var(--muted);
    }
    .appointment-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
    }
    .appointment-close:hover {
      color: var(--red);
      border-color: #cfd5dc;
    }
    .appointment-form {
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }
    .appointment-form label {
      display: grid;
      gap: 7px;
      color: var(--ink);
      font-weight: 850;
      font-size: .88rem;
      text-transform: uppercase;
      letter-spacing: .035em;
    }
    .appointment-form input,
    .appointment-form textarea {
      width: 100%;
      border: 1px solid #cfd5dc;
      border-radius: 4px;
      background: #fff;
      color: var(--ink);
      padding: 12px 13px;
      font: inherit;
      text-transform: none;
      letter-spacing: 0;
    }
    .appointment-form textarea {
      resize: vertical;
      min-height: 130px;
    }
    .appointment-form input:focus,
    .appointment-form textarea:focus {
      outline: 2px solid rgba(213,0,28,.18);
      border-color: var(--red);
    }
    .field-hp {
      position: absolute;
      width: 1px;
      height: 1px;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      overflow: hidden;
      white-space: nowrap;
    }
    .form-message {
      border-radius: 6px;
      padding: 12px 14px;
      font-weight: 800;
    }
    .form-message-success {
      background: #effaf2;
      color: #17672a;
      border: 1px solid #bfe8c8;
    }
    .form-message-error {
      background: #fff6f7;
      color: #8c1023;
      border: 1px solid #f0c9d0;
    }
    .form-note {
      margin: 0;
      font-size: .88rem;
      color: var(--muted);
    }
    .required-note {
      margin: -4px 0 0;
      color: var(--muted);
      font-size: .78rem;
      font-weight: 750;
    }

    footer {
      background: #050608;
      color: #aeb7c2;
      padding: 52px 0 34px;
      font-size: .88rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.05fr .72fr .82fr .95fr 1fr;
      gap: 28px;
      align-items: start;
    }
    .footer-grid h3 {
      color: #fff;
      font-size: .88rem;
      margin-bottom: 12px;
    }
    .footer-grid a { color: #fff; display: block; margin: 7px 0; }
    .footer-logo { width: min(260px, 100%); background: #fff; border-radius: 4px; margin-bottom: 14px; }
    .footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
    .social-icon {
      min-height: 38px;
      padding: 0 12px;
      border-radius: 999px;
      display: inline-flex !important;
      align-items: center;
      gap: 8px;
      color: #fff;
      background: rgba(255,255,255,.1);
      margin: 0 !important;
      font-weight: 800;
      font-size: .84rem;
    }
    .social-icon svg { width: 16px; height: 16px; flex: 0 0 auto; }
    .social-icon:hover { background: var(--red); }
    .footer-meta-list { display: grid; gap: 8px; color: #d5dbe4; }
    .footer-meta-list strong { color: #fff; display: block; margin-bottom: 2px; }
    .notdienst-links a { margin: 3px 0; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      margin-top: 32px;
      padding-top: 18px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }


    @media (prefers-reduced-motion: reduce) {
      .links a,
      .links a::after,
      .header-action { transition: none; }
    }

    @media (max-width: 1760px) {
      .nav-actions .phone { display: none; }
      .links { gap: 4px; font-size: .78rem; }
    }

    @media (max-width: 1500px) {
      .topbar .wrap { width: min(var(--max), calc(100% - 96px)); }
    }

    @media (max-width: 1450px) {
      .links { display: none; }
      .brand { min-width: 272px; }
      .header-logo { width: 258px; }
      .nav-actions .btn { padding: 0 14px; }
      .menu-toggle { display: inline-flex; }
      .links.is-open {
        position: absolute;
        top: calc(100% + 1px);
        left: 48px;
        right: 48px;
        z-index: 10001;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 0 0 8px 8px;
        background: rgba(5,6,8,.98);
        box-shadow: 0 18px 44px rgba(0,0,0,.32);
      }
      .links.is-open a {
        justify-content: center;
        min-height: 40px;
        border-radius: 4px;
        background: rgba(255,255,255,.045);
      }
    }

    @media (max-width: 980px) {
      .links, .nav-actions .phone, .partner-badge { display: none; }
      .hero { height: auto; min-height: auto; }
      .hero .wrap { height: auto; width: min(100% - 40px, var(--max)); }
      .hero .wrap { grid-template-columns: 1fr; padding: 56px 0 72px; }
      .hero-content { transform: translateY(-22px); }
      .hero-content { max-width: 100%; min-width: 0; }
      .cards, .offer-grid, .team-row, .contact-grid, .footer-grid, .legacy-grid, .sync-panel, .hub-grid, .betrieb-grid { grid-template-columns: 1fr 1fr; }
      .model-carousel { grid-template-columns: 44px minmax(0, 1fr) 44px; }
      .carousel-button { width: 44px; }
      .models { --visible-models: 2; }
      .split { grid-template-columns: 1fr; }
      .region-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .split-media {
        grid-template-rows: minmax(280px, auto) minmax(120px, auto);
      }
      .section-head { display: block; }
      .section-head p { margin-top: 18px; max-width: 650px; }
    }

    @media (max-width: 640px) {
      :root { --topbar-height: 92px; }
      .wrap { width: min(100% - 28px, var(--max)); }
      .topbar .wrap { width: min(100% - 28px, var(--max)); }
      .nav { min-height: 72px; gap: 10px; flex-wrap: nowrap; justify-content: space-between; padding: 8px 0; }
      .brand { min-width: 0; }
      .brand > span:not(.brand-mark) { display: none; }
      .brand-mark { width: 40px; height: 40px; }
      .header-logo { width: clamp(160px, 48vw, 202px); }
      .btn { width: 100%; }
      .nav .btn { width: auto; min-height: 40px; padding: 0 12px; font-size: .74rem; }
      .header-action { width: 36px; height: 36px; min-width: 36px; padding: 0; gap: 0; }
      .header-action-label { display: none; }
      .header-action-mark { width: 22px; height: 22px; }
      .header-action-mark img { width: 13px; height: 13px; }
      .menu-toggle { width: 38px; min-width: 38px; height: 38px; }
      .links.is-open {
        left: 14px;
        right: 14px;
        grid-template-columns: 1fr 1fr;
      }
      .hero { background-position: 42% bottom; }
      .hero-content { transform: none; }
      h1 { font-size: clamp(1.9rem, 9.2vw, 2.55rem); overflow-wrap: anywhere; max-width: 100%; }
      .hero-copy { font-size: 1rem; max-width: 100%; overflow-wrap: break-word; }
      .cards, .offer-grid, .team-row, .contact-grid, .stats, .footer-grid, .legacy-grid, .sync-panel, .hub-grid, .betrieb-grid, .region-cards, .region-proof { grid-template-columns: 1fr; }
      .region-card { min-height: 0; }
      .region-proof span {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
      .region-proof span:last-child { border-bottom: 0; }
      #betrieb .region-trust { grid-template-columns: 1fr; }
      #betrieb .region-trust .btn { width: 100%; white-space: normal; }
      #betrieb .betrieb-actions { display: grid; grid-template-columns: 1fr; }
      .appointment-modal { padding: 14px; align-items: end; }
      .appointment-dialog {
        max-height: calc(100svh - 28px);
        padding: 22px;
      }
      .appointment-form .btn { width: 100%; }
      .split-media {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
      }
      .split-media .region-main-image,
      .split-media .region-thumb {
        min-height: 0;
        aspect-ratio: 16 / 10;
      }
      .model-carousel { grid-template-columns: 1fr; }
      .model-carousel, .model-viewport { overflow: hidden; }
      .carousel-button { display: none; }
      .models { --visible-models: 1; }
      .carousel-dots { grid-column: 1; }
      .offer-box { padding: 24px; }
      section { padding: 58px 0; }
      .model { min-height: 390px; padding: 16px; }
    }

    @media (max-width: 520px) {
      .topbar .wrap { width: min(100% - 24px, var(--max)); margin-left: auto; margin-right: auto; }
      .nav { gap: 8px; }
      .nav-actions { justify-content: flex-end; }
      .nav .btn { min-height: 38px; padding: 0 10px; font-size: .72rem; }
      .nav-actions { gap: 6px; }
      .links.is-open { grid-template-columns: 1fr; }
    }

    @media (max-width: 360px) {
      .header-logo { width: 118px; }
      .nav { gap: 6px; }
      .nav-actions { gap: 5px; }
      .model-carousel,
      .model-viewport,
      .models,
      .model {
        min-width: 0;
        max-width: 100%;
      }
      .model-carousel {
        grid-template-columns: minmax(0, 1fr) !important;
      }
      .model-viewport,
      .models,
      .model {
        width: 100%;
      }
      .models {
        display: grid;
        gap: 0;
        transform: none !important;
        transition: none;
      }
      .model {
        grid-area: 1 / 1;
        flex: none;
        display: none;
      }
      .model:first-child,
      .model[aria-hidden="false"] {
        display: flex;
      }
      .header-action {
        width: 32px;
        min-width: 32px;
        height: 32px;
      }
      .header-action-mark {
        width: 20px;
        height: 20px;
      }
      .header-action-mark img {
        width: 12px;
        height: 12px;
      }
      .menu-toggle {
        width: 34px;
        min-width: 34px;
        height: 34px;
      }
      .nav .btn { padding: 0 9px; font-size: .68rem; }
    }

    .header-action {
      width: 38px;
      min-width: 38px;
      height: 38px;
    }

    .header-action-mark {
      width: 22px;
      height: 22px;
    }

    .header-action-mark img {
      width: 13px;
      height: 13px;
    }

    .model-meta {
      height: auto;
      min-height: 22px;
      color: rgba(255,255,255,.74);
      font-size: .72rem !important;
      line-height: 1.24;
      transform: none;
    }

    .model-details summary,
    .model-link {
      min-height: 42px;
      align-items: center;
    }

    .model-link {
      display: inline-flex;
      width: fit-content;
      padding: 0 2px;
    }

    .carousel-dots {
      gap: 4px;
      align-items: center;
    }

    .carousel-dot {
      width: 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      background: transparent;
    }

    .carousel-dot::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: #c9d0d8;
    }

    .carousel-dot.is-active {
      background: transparent;
    }

    .carousel-dot.is-active::before {
      background: var(--red);
    }

    .footer-grid a {
      min-height: 32px;
      display: flex;
      align-items: center;
    }

    @media (max-width: 640px) {
      .header-action {
        width: 36px;
        min-width: 36px;
        height: 36px;
      }

      .model-link {
        min-height: 44px;
      }

      .footer-grid a {
        min-height: 36px;
      }
    }

    @media  (max-width: 1450px) and (min-width: 641px) {
      .nav {
        flex-wrap: wrap;
        align-content: center;
        row-gap: 8px;
        padding-bottom: 10px;
      }

      .links {
        order: 3;
        display: flex;
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
        gap: 6px;
        overflow-x: auto;
        padding: 1px 2px 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .links::-webkit-scrollbar { display: none; }

      .links a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 12px;
        border: 0;
        border-radius: 999px;
        background: rgba(255,255,255,.025);
        color: #d7dce4;
        font-size: .72rem;
        font-weight: 720;
        line-height: 1;
        letter-spacing: .018em;
      }

      .links a::after {
        left: 12px;
        right: 12px;
        bottom: 7px;
        height: 1px;
      }

      .links a:hover,
      .links a:focus-visible {
        background: rgba(255,255,255,.07);
        color: #fff;
      }
    }

    @media (max-width: 640px) {
      .nav { min-height: 92px; }
      .header-logo { width: clamp(148px, 46vw, 188px); }
      .links { gap: 7px; padding-bottom: 2px; }
      .links a { min-height: 36px; padding: 0 10px; font-size: .69rem; letter-spacing: .018em; }
      .header-action { width: 36px; height: 36px; min-width: 36px; }
    }

    .model-meta,
    .model-link,
    .model-details summary {
      font-size: .76rem !important;
    }

    .model-link,
    .model-details summary,
    .carousel-dot {
      min-height: 44px;
    }

    .model-link,
    .model-details summary {
      display: inline-flex;
      align-items: center;
    }

    .carousel-dot {
      width: 44px;
      height: 44px;
    }

    .header-action {
      width: 38px;
      min-width: 38px;
      height: 38px;
    }

    .footer-grid a {
      min-height: 40px;
      display: flex;
      align-items: center;
    }

    #betrieb .betrieb-actions .btn,
    .team-contact a,
    .contact-card .btn {
      min-height: 44px;
    }

    .team-contact a {
      display: inline-flex;
      align-items: center;
    }

    .contact-card p a {
      min-height: 32px;
      display: inline-flex;
      align-items: center;
    }

    @media (max-width: 640px) {
      .header-action {
        width: 36px;
        min-width: 36px;
        height: 36px;
      }
    }

    @media (max-width: 1450px) {
      .menu-toggle { display: inline-flex; }
      .links {
        display: none;
        order: initial;
        flex: initial;
        width: auto;
        overflow: visible;
        padding: 0;
      }
      .links.is-open {
        position: absolute;
        top: calc(100% + 1px);
        left: 48px;
        right: 48px;
        z-index: 10001;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding: 12px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 0 0 8px 8px;
        background: rgba(5,6,8,.98);
        box-shadow: 0 18px 44px rgba(0,0,0,.32);
      }
      .links.is-open a {
        justify-content: center;
        min-height: 40px;
        border-radius: 4px;
        background: rgba(255,255,255,.045);
        padding: 0 10px;
      }
    }

    @media (max-width: 640px) {
      .nav-actions { gap: 6px; }
      .links.is-open {
        left: 14px;
        right: 14px;
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 520px) {
      .links.is-open { grid-template-columns: 1fr; }
    }

    @media (max-width: 360px) {
      .header-logo { width: 118px; }
      .nav { gap: 6px; }
      .nav-actions { gap: 5px; }
      .header-action {
        width: 32px;
        min-width: 32px;
        height: 32px;
      }
      .header-action-mark {
        width: 20px;
        height: 20px;
      }
      .header-action-mark img {
        width: 12px;
        height: 12px;
      }
      .menu-toggle {
        width: 34px;
        min-width: 34px;
        height: 34px;
      }
    }

    #betrieb .building-dots {
      display: none;
    }

    @media (max-width: 980px) {
      #betrieb .split-media {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr);
        overflow: hidden;
        aspect-ratio: 16 / 10;
        min-height: 0;
        border-radius: var(--radius);
        touch-action: pan-y;
        user-select: none;
      }

      #betrieb .split-media img {
        grid-area: 1 / 1;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .24s ease, visibility .24s ease;
      }

      #betrieb .split-media img:first-child,
      #betrieb .split-media img.is-active {
        opacity: 1;
        visibility: visible;
      }

      #betrieb .split-media img.is-active {
        pointer-events: auto;
      }

      #betrieb .building-dots {
        position: absolute;
        left: 50%;
        bottom: 12px;
        z-index: 3;
        display: flex;
        gap: 8px;
        padding: 6px 8px;
        border-radius: 999px;
        background: rgba(5, 6, 8, .62);
        transform: translateX(-50%);
      }

      #betrieb .building-dots button {
        width: 10px;
        height: 10px;
        padding: 0;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, .55);
        cursor: pointer;
      }

      #betrieb .building-dots button.is-active {
        background: #fff;
      }
    }

    @media (max-width: 640px) {
      #betrieb .team-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      #betrieb .person {
        min-width: 0;
        padding-top: 8px;
      }

      #betrieb .person::before {
        height: 58px;
      }

      #betrieb .person img,
      #betrieb .person-photo-fallback {
        width: min(54%, 82px);
        max-width: 82px;
        border-radius: 9px;
      }

      #betrieb .person-photo-fallback {
        font-size: 1.45rem;
      }

      #betrieb .person-body {
        padding: 9px 7px 10px;
        gap: 6px;
      }

      #betrieb .person-title {
        grid-template-columns: 24px minmax(0, 1fr);
        gap: 5px;
      }

      #betrieb .person-icon {
        width: 24px;
        height: 24px;
        border-radius: 5px;
        font-size: .72rem;
      }

      #betrieb .person strong {
        font-size: .76rem;
        line-height: 1.1;
      }

      #betrieb .person span {
        font-size: .64rem;
        line-height: 1.18;
      }

      #betrieb .team-contact {
        gap: 5px;
      }

      #betrieb .team-contact a {
        min-height: 31px;
        padding: 0 6px;
        gap: 4px;
        font-size: .6rem;
      }

      #betrieb .team-contact a i {
        font-size: .72rem;
      }
    }

    @media (max-width: 360px) {
      #betrieb .team-row {
        gap: 8px;
      }

      #betrieb .person-body {
        padding-inline: 6px;
      }

      #betrieb .person strong {
        font-size: .72rem;
      }

      #betrieb .person span {
        font-size: .6rem;
      }

      #betrieb .team-contact a {
        min-height: 30px;
        padding: 0 5px;
        font-size: .56rem;
      }
    }

    @media (max-width: 640px) {
      #service .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      #service .card {
        min-width: 0;
        padding: 10px;
        grid-template-columns: 26px minmax(0, 1fr);
        column-gap: 7px;
        align-items: center;
      }

      #service .service-card-image {
        margin: -10px -10px 9px;
      }

      #service .service-card-image img {
        aspect-ratio: 16 / 10;
      }

      #service .service-icon {
        width: 26px;
        height: 26px;
        border-radius: 5px;
      }

      #service .service-icon svg {
        width: 15px;
        height: 15px;
      }

      #service .card h3 {
        font-size: .7rem;
        line-height: 1.08;
      }

      #service .card p {
        margin-top: 8px;
        font-size: .62rem;
        line-height: 1.22;
      }
    }

    @media (max-width: 360px) {
      #service .cards {
        gap: 8px;
      }

      #service .card {
        padding: 8px;
        grid-template-columns: 23px minmax(0, 1fr);
        column-gap: 6px;
      }

      #service .service-card-image {
        margin: -8px -8px 8px;
      }

      #service .service-icon {
        width: 23px;
        height: 23px;
      }

      #service .service-icon svg {
        width: 13px;
        height: 13px;
      }

      #service .card h3 {
        font-size: .63rem;
      }

      #service .card p {
        font-size: .56rem;
      }
    }

    @media (max-width: 640px) {
      .hero {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
      }

      .hero .wrap {
        padding-top: 42px;
        padding-bottom: 58px;
      }

      .hero-content {
        max-width: 100%;
      }

      .eyebrow {
        margin-bottom: 10px;
        font-size: .68rem;
        line-height: 1.15;
        letter-spacing: .08em;
      }

      h1 {
        max-width: 100%;
        margin-bottom: 16px;
        font-size: 31px;
        line-height: 1.02;
        overflow-wrap: normal;
        text-wrap: balance;
      }

      .hero-copy {
        max-width: 32rem;
        font-size: 15px;
        line-height: 1.36;
      }
    }

    @media (max-width: 360px) {
      .hero .wrap {
        padding-top: 38px;
        padding-bottom: 52px;
      }

      h1 {
        font-size: 28px;
        line-height: 1.04;
        margin-bottom: 14px;
      }

      .hero-copy {
        font-size: 14px;
        line-height: 1.34;
      }
    }
