    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red: #C0392B;
      --red2: #E74C3C;
      --ink: #0c0c0c;
      --ink2: #161616;
      --ink3: #1f1f1f;
      --chalk: #ffffff;
      --muted: rgba(255,255,255,0.45);
      --muted2: rgba(255,255,255,0.15);
      --line: rgba(255,255,255,0.08);
    }
    html, body { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

    /* ── GLOBAL TRANSITIONS ── */
    a, button {
      transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
    }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 3px solid #ff8070;
      outline-offset: 3px;
    }

    /* ── SCROLL REVEAL ── */
    .motion-ready .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.52s cubic-bezier(0.22,1,0.36,1),
        transform 0.52s cubic-bezier(0.22,1,0.36,1);
    }
    .motion-ready .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .motion-ready .reveal-delay-1 { transition-delay: 0.08s; }
    .motion-ready .reveal-delay-2 { transition-delay: 0.14s; }
    .motion-ready .reveal-delay-3 { transition-delay: 0.2s; }
    .motion-ready .reveal-delay-4 { transition-delay: 0.24s; }

    /* ── PANEL FADE ── */
    .panel.active { animation: panelFade 0.4s ease; }
    @keyframes panelFade {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── PRIMARY CTA: static by default, restrained interaction on pointer devices ── */
    .btn-call-pulse {
      box-shadow: 0 8px 24px rgba(192,57,43,0.2);
    }

    /* ── IMAGE AND CARD TRANSITIONS ── */
    .strip-3 img, .strip-4 img, .strip-5 img {
      transition: filter 0.36s ease, transform 0.42s cubic-bezier(0.22,1,0.36,1);
    }
    .si { overflow: hidden; }
    .svc-img img { transition: transform 0.46s cubic-bezier(0.22,1,0.36,1), filter 0.36s ease; }
    .stat-item { transition: background-color 0.3s ease; cursor: default; }
    .stat-num { transition: color 0.3s ease; }
    .review-card,
    .fact-box,
    .process-item,
    .intent-card,
    .svc-txt {
      transition:
        background-color 0.28s ease,
        border-color 0.28s ease,
        transform 0.32s cubic-bezier(0.22,1,0.36,1),
        box-shadow 0.32s ease;
    }
    .fact-n { transition: color 0.3s ease; }

    /* ── NAV HOVER LINE ── */
    .hdr-nav-item { overflow: hidden; }

    /* ── Static service indicator and 24/7 wordmark ── */
    .dot-live { opacity: 1; }
    .hero-247-shimmer {
      background: var(--red2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── ACCESSIBLE 24/7 WORDMARK ── */
    .sr-only {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }
    .availability-mark {
      display: inline-flex;
      align-items: baseline;
      vertical-align: baseline;
      white-space: nowrap;
      letter-spacing: 0;
      font-variant-numeric: tabular-nums;
    }
    .availability-visual {
      display: inline-flex;
      align-items: baseline;
      column-gap: 0.075em;
      line-height: 1;
      white-space: nowrap;
    }
    .availability-part { display: inline-block; line-height: 1; }
    .availability-slash {
      font-size: 0.92em;
      transform: translateY(-0.02em);
      transform-origin: center;
    }
    .hero-247-shimmer .availability-slash {
      color: var(--red2);
      -webkit-text-fill-color: var(--red2);
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--ink);
      color: var(--chalk);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── TOPBAR (removed) ── */

    /* ── HEADER ── */
    header {
      background: rgba(18,18,18,0.97);
      border-bottom: 1px solid var(--line);
      position: sticky; top: 0; z-index: 300;
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
    }
    .hdr-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: var(--pv-header-height, 72px);
      gap: clamp(0.75rem, 1.5vw, 1.5rem);
      padding: 0 var(--pv-header-inline, clamp(14px, 3vw, 48px));
    }

    /* nav */
    .hdr-nav {
      display: flex; align-items: center; gap: 0;
      list-style: none;
    }
    .hdr-nav > li { list-style: none; }
    .hdr-nav-item {
      padding: 0 0.65rem;
      height: var(--pv-header-height, 72px);
      display: flex; align-items: center;
      font-size: 0.67rem; font-weight: 600; letter-spacing: 0.7px;
      text-transform: uppercase; color: rgba(255,255,255,0.4);
      cursor: pointer; white-space: nowrap;
      border-bottom: 2px solid transparent;
      transition: color 0.15s, border-color 0.15s;
      position: relative;
      background: none;
      border-top: 0;
      border-right: 0;
      border-left: 0;
      font-family: inherit;
    }
    .hdr-nav-item:hover { color: rgba(255,255,255,0.85); }
    .hdr-nav-item.active { color: #fff; border-bottom-color: var(--red); }

    /* ── HAMBURGER ── */
    .hamburger {
      display: none; position: relative;
      width: 44px; height: 44px; cursor: pointer;
      background: none; border: none; padding: 0; flex-shrink: 0;
    }
    .hamburger span {
      position: absolute; left: 11px; width: 22px; height: 2px; background: #fff;
      border-radius: 2px; transform-origin: center; transition: transform 0.24s ease, opacity 0.18s ease, top 0.24s ease;
    }
    .hamburger span:nth-child(1) { top: 14px; }
    .hamburger span:nth-child(2) { top: 21px; }
    .hamburger span:nth-child(3) { top: 28px; }
    .hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

    .service-bar {
      position: relative;
      z-index: 15;
      display: flex;
      min-height: 40px;
      align-items: stretch;
      justify-content: center;
      overflow-x: auto;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: #101010;
      scrollbar-width: none;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }
    .service-bar::-webkit-scrollbar { display: none; }
    .service-bar a {
      display: inline-flex;
      min-height: 40px;
      align-items: center;
      padding: 0.6rem 1rem;
      border-right: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.62);
      font-size: 0.64rem;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }
    .service-bar a:last-child { border-right: 0; }
    .service-bar a:hover,
    .service-bar a:focus-visible { color: #fff; background: rgba(255,255,255,0.035); }
    .service-bar strong { margin-right: 0.32rem; color: var(--red2); }

    /* ── MOBILE NAV DRAWER ── */
    .mobile-nav {
      display: none;
      position: fixed; inset: var(--pv-header-height, 72px) 0 0 0;
      background: rgba(10,10,10,0.98);
      backdrop-filter: blur(12px);
      z-index: 299; overflow-y: auto;
      flex-direction: column;
      padding: 1rem 0 3rem;
      transform: translateY(-8px); opacity: 0;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .mobile-nav.open {
      display: flex; opacity: 1; transform: translateY(0);
    }
    .mobile-nav-item {
      padding: 1.1rem 1.5rem;
      font-size: 1rem; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      cursor: pointer; border-bottom: 1px solid var(--line);
      transition: color 0.15s, background 0.15s;
      width: 100%;
      background: none;
      border-top: 0;
      border-right: 0;
      border-left: 0;
      text-align: left;
      font-family: inherit;
    }
    .mobile-nav-item:hover, .mobile-nav-item.active {
      color: #fff; background: rgba(255,255,255,0.03);
    }
    .mobile-nav-item.active { border-left: 3px solid var(--red); color: #fff; }
    .mobile-nav-call {
      margin: 1.5rem 1.5rem 1.5rem;
      display: block;
      background: var(--red); color: #fff; text-align: center;
      padding: 1rem; border-radius: 3px;
      font-weight: 700; font-size: 1rem; letter-spacing: 0;
      white-space: normal; word-break: break-word;
    }
    .mobile-nav-language {
      display: flex;
      min-height: 48px;
      align-items: center;
      margin: 1rem 1.5rem 0;
      padding: 0.85rem 1rem;
      border: 1px solid var(--line);
      border-radius: 3px;
      color: #fff;
      font-size: 0.78rem;
      font-weight: 800;
      justify-content: center;
      letter-spacing: 0.08em;
      text-decoration: none;
    }

    .hdr-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink:0; }
    .hdr-avail {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3px;
      color: rgba(255,255,255,0.35); text-align: right; line-height: 1.4;
    }
    .hdr-avail strong { display: block; color: var(--red2); font-size: 0.75rem; font-weight: 700; }
    .hdr-avail .availability-mark { justify-content: flex-end; }
    .hdr-cta {
      background: var(--red);
      color: #fff;
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px;
      padding: 0.6rem 1.4rem; border-radius: 3px;
      transition: background 0.2s;
      white-space: nowrap;
      flex-shrink: 0;
      overflow: visible;
    }
    .hdr-cta:hover { background: var(--red2); }
    .lang-toggle {
      display: inline-flex;
      min-width: 44px;
      min-height: 44px;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff; font-size: 0.65rem; font-weight: 700;
      letter-spacing: 1px; padding: 0.35rem 0.7rem;
      border-radius: 3px; cursor: pointer; flex-shrink: 0;
      transition: background 0.2s;
      text-decoration: none;
    }
    .lang-toggle:hover { background: rgba(255,255,255,0.15); }
    .hdr-cta-mobile {
      display: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      background: var(--red); color: #fff;
      border-radius: 4px; flex: 0 0 44px;
    }
    @media (min-width: 1351px) {
      .hdr-cta-mobile { display: none !important; }
      .hdr-cta { display: inline-flex !important; }
    }
    @media (max-width: 1350px) {
      .hdr-cta-mobile { display: inline-flex !important; }
    }
    @media (max-width: 1023px) {
      .service-bar { justify-content: flex-start; overscroll-behavior-x: contain; }
      .service-bar a { flex: 0 0 auto; min-height: 44px; padding-inline: 0.85rem; }
    }

    /* ── HERO ── */
    .hero { position: relative; height: calc(90vh - 40px); min-height: 560px; overflow: hidden; }
    .hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 50%;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(12,12,12,0.85) 35%, rgba(12,12,12,0.15) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      height: 100%; padding: 0 5%;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding-bottom: 80px; max-width: 900px;
    }

    .hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--red2);
      margin-bottom: 1.5rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-label::before {
      content: ''; display: block; width: 28px; height: 1px; background: var(--red2);
    }

    .hero-h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }
    .hero-247 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(3rem, 6.5vw, 5.5rem);
      font-weight: 900; line-height: 0.95;
      text-transform: uppercase; letter-spacing: -1px;
      color: var(--red2);
      margin-bottom: 1.75rem;
    }

    .hero-row {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 3rem; flex-wrap: wrap;
    }
    .hero-sub {
      font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.6);
      line-height: 1.75; max-width: 440px;
    }
    .hero-sub strong { color: #fff; font-weight: 600; }
    .hero-phones { display: flex; flex-direction: column; gap: 0.25rem; flex-shrink:0; }
    .hero-actions { display:flex; flex-wrap:wrap; gap:0.8rem; margin-bottom:2rem; }
    .hero-secondary-cta {
      display:inline-flex; min-height:48px; align-items:center; justify-content:center;
      padding:0.85rem 1.5rem; border:1px solid rgba(255,255,255,0.35); border-radius:3px;
      color:#fff; font-size:0.78rem; font-weight:700; letter-spacing:0.8px;
    }
    .hero-secondary-cta:hover { border-color:#fff; background:rgba(255,255,255,0.08); }
    .hero-phone-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.2rem; font-weight: 900; color: #fff;
      letter-spacing: 0.5px; line-height: 1;
      transition: color 0.15s;
    }
    .hero-phone-link:hover { color: var(--red2); }
    .hero-phone-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 2px; margin-bottom: 0.75rem; }

    /* ── STAT BAND ── */
    .stat-band {
      background: var(--ink3);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      display: grid; grid-template-columns: repeat(4,1fr);
    }
    .stat-item {
      padding: 2rem 2.5rem;
      border-right: 1px solid var(--line);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.8rem; font-weight: 900; color: #fff;
      letter-spacing: -1px; line-height: 1; margin-bottom: 0.3rem;
    }
    .intent-hub { padding:4rem 5%; border-bottom:1px solid var(--line); background:var(--ink); }
    .intent-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:1px; margin-top:2rem; background:var(--line); border:1px solid var(--line); }
    .intent-card { display:flex; min-width:0; min-height:150px; flex-direction:column; justify-content:space-between; gap:1rem; padding:1.5rem; background:var(--ink2); }
    .intent-card strong { color:#fff; font-size:1rem; }
    .intent-card span { color:var(--muted); font-size:0.8rem; line-height:1.6; }
    .intent-card:hover { background:var(--ink3); }
    .intent-card:hover strong { color:var(--red2); }
    .stat-num .stat-accent { color: var(--red2); }
    .stat-label { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.4); letter-spacing: 0.3px; }

    /* ── PANELS ── */
    .panels { background: var(--ink); }
    .panel { display: none; }
    .panel.active { display: block; }

    /* ── LAYOUT HELPERS ── */
    .section { padding: 96px 5%; border-bottom: 1px solid var(--line); }
    .section-sm { padding: 64px 5%; border-bottom: 1px solid var(--line); }
    .section-flush { border-bottom: 1px solid var(--line); }
    .mw { max-width: 1200px; margin: 0 auto; }

    .sec-label {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--red2);
      display: flex; align-items: center; gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .sec-label::before { content:''; width:20px; height:1px; background:var(--red2); display:block; }

    .sec-h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-weight: 800; letter-spacing: -1.5px; line-height: 1.05;
      margin-bottom: 1.5rem;
    }
    .sec-body {
      font-size: 0.93rem; font-weight: 400;
      color: rgba(255,255,255,0.55); line-height: 1.85;
      max-width: 560px;
    }

    /* ── SERVICE SPLIT LAYOUT ── */
    .svc-split {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }
    .svc-img { overflow: hidden; }
    .svc-img img { width:100%; height:100%; object-fit:cover; object-position:center; filter:brightness(0.85); }
    .svc-txt {
      padding: 80px 6%;
      display: flex; flex-direction: column; justify-content: center;
      background: var(--ink2);
    }

    .svc-list { list-style:none; margin: 1.5rem 0 2rem; }
    .svc-list li {
      padding: 0.7rem 0;
      border-bottom: 1px solid var(--line);
      font-size: 0.88rem; color: rgba(255,255,255,0.6);
      display: flex; align-items: center; gap: 0.75rem;
    }
    .svc-list li::before {
      content: '';
      width: 4px; height: 4px; border-radius: 50%;
      background: var(--red2); flex-shrink: 0;
    }
    .svc-list li:last-child { border-bottom: none; }

    .btn-primary {
      display: inline-block;
      background: var(--red);
      color: #fff; padding: 0.8rem 1.75rem;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
      border-radius: 3px; transition: background 0.2s;
      align-self: flex-start;
    }
    .btn-primary:hover { background: var(--red2); }

    .btn-ghost {
      display: inline-block;
      background: transparent;
      color: rgba(255,255,255,0.55); padding: 0.8rem 1.75rem;
      font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
      border: 1px solid rgba(255,255,255,0.15); border-radius: 3px;
      transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
      align-self: flex-start;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

    /* ── PHOTO STRIPS ── */
    .strip-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
    .strip-3 img { width:100%; height:300px; object-fit:cover; filter:brightness(0.8); }
    .strip-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
    .strip-4 img { width:100%; height:240px; object-fit:cover; filter:brightness(0.82); }
    .strip-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
    .strip-5 img { width:100%; height:220px; object-fit:cover; filter:brightness(0.82); }

    /* ── FACTS GRID ── */
    .facts-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: var(--line);
      border: 1px solid var(--line);
    }
    .fact-box { background: var(--ink2); padding: 2rem 1.75rem; }
    .fact-n {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.5rem; font-weight: 900; color: #fff;
      letter-spacing: -0.5px; line-height: 1; margin-bottom: 0.4rem;
    }
    .fact-n .fact-accent { color: var(--red2); }
    .fact-l { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.35); }

    /* ── PROCESS ── */
    .process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
    .process-item { background: var(--ink2); padding: 2.5rem 2rem; }
    .process-n {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
      color: var(--red2); margin-bottom: 1rem;
      font-family: 'Inter', sans-serif;
    }
    .process-title { font-size: 1rem; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 0.75rem; }
    .process-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

    /* ── SOCIAL BUTTONS ── */
    .social-links { display:flex; align-items:center; gap:0.6rem; }
    .social-btn {
      display:inline-flex; align-items:center; gap:0.5rem;
      padding:0.45rem 0.9rem;
      border-radius:3px;
      font-size:0.72rem; font-weight:700; letter-spacing:0.5px;
      border:1px solid rgba(255,255,255,0.12);
      color:rgba(255,255,255,0.55);
      transition:color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      white-space:nowrap;
    }
    .social-btn:hover { border-color:rgba(255,255,255,0.35); color:#fff; transform:translateY(-1px); }
    .social-btn.ig:hover { border-color:#e1306c; color:#e1306c; }
    .social-btn.fb:hover { border-color:#1877f2; color:#1877f2; }
    .social-btn.ka:hover { border-color:#f06a00; color:#f06a00; }
    .social-btn svg { flex-shrink:0; }

    /* ── GALERIE PANEL ── */
    .gal-grid-15 {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 2px;
    }
    .gal-grid-15 .gi { overflow:hidden; }
    .gal-grid-15 .gi img { width:100%; height:220px; object-fit:cover; filter:brightness(0.8); transition:filter 0.3s, transform 0.4s; display:block; }
    .gal-grid-15 .gi.w2 { grid-column: span 2; }
    .gal-grid-15 .gi.w2 img { height:220px; }
    .gallery-project { position:relative; margin:0; overflow:hidden; border-radius:6px; aspect-ratio:4/3; background:#111; }
    .gallery-project img { width:100%; height:100%; object-fit:cover; display:block; filter:brightness(0.82); transition:filter 0.3s, transform 0.4s; }
    .gallery-project figcaption { position:absolute; right:0; bottom:0; left:0; padding:2.4rem 1rem 0.85rem; background:linear-gradient(transparent,rgba(0,0,0,.88)); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.06em; }

    /* ── BEWERTUNGEN ── */
    .review-slider { position: relative; }
    .reviews-viewport {
      overflow-x: auto;
      overscroll-behavior-inline: contain;
      scroll-behavior: smooth;
      scroll-snap-type: inline mandatory;
      scrollbar-width: none;
    }
    .reviews-viewport::-webkit-scrollbar { display: none; }
    .reviews-viewport:focus-visible {
      outline: 2px solid var(--red2);
      outline-offset: 4px;
    }
    .reviews-grid {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 1px) / 2);
      gap: 1px;
      width: 100%;
      background: var(--line);
      border: 1px solid var(--line);
    }
    .google-reviews {
      border-top: 1px solid var(--line);
    }
    .google-reviews-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 2rem; margin-bottom: 2rem;
    }
    .google-reviews-head .sec-h2 { margin-bottom: 0; }
    .google-reviews-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .google-reviews-rating {
      display: flex; align-items: center; gap: 0.7rem;
      color: rgba(255,255,255,0.55); font-size: 0.72rem;
      white-space: nowrap;
    }
    .google-reviews-rating strong { color: #fff; font-size: 1.15rem; }
    .review-slider-controls { display: flex; gap: 0.5rem; }
    .review-slider-button {
      display: inline-grid;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255,255,255,0.025);
      color: rgba(255,255,255,0.8);
      font: inherit;
      font-size: 1rem;
      cursor: pointer;
      transition: transform 180ms ease, opacity 180ms ease;
    }
    .review-slider-button:hover,
    .review-slider-button:focus-visible {
      transform: translateY(-2px);
      color: #fff;
    }
    .review-slider-button:focus-visible {
      outline: 2px solid var(--red2);
      outline-offset: 2px;
    }
    .review-slider-button:disabled {
      cursor: default;
      opacity: 0.25;
      transform: none;
    }
    .review-card {
      background: var(--ink2); padding: 2rem 1.75rem;
      display: flex; flex-direction: column; gap: 1rem;
      min-height: 22rem;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      transition: transform 240ms ease, opacity 240ms ease, box-shadow 240ms ease;
    }
    .review-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 2px; }
    .review-text {
      font-size: 0.88rem; color: rgba(255,255,255,0.6);
      line-height: 1.75; flex: 1;
    }
    .review-text::before { content: '„'; color: var(--red2); font-size: 1.2rem; font-weight: 700; line-height: 0; }
    .review-footer {
      border-top: 1px solid var(--line);
      padding-top: 1rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .review-name { font-size: 0.8rem; font-weight: 700; color: #fff; }
    .review-date { margin-top: 0.2rem; color: rgba(255,255,255,0.35); font-size: 0.68rem; }
    .review-source { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.5px; color: rgba(255,255,255,0.25); text-transform: uppercase; }
    .google-reviews-link {
      display: inline-flex; min-height: 44px; align-items: center;
      margin-top: 1.25rem; color: rgba(255,255,255,0.72);
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
      text-decoration: underline; text-underline-offset: 0.25em;
    }
    .google-reviews-link:hover,
    .google-reviews-link:focus-visible { color: #fff; }

    /* ── KONTAKT ── */
    .cta-full {
      background: var(--red);
      padding: 80px 5%;
      display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap;
    }
    .cta-full-left h2 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800; letter-spacing: -1px; line-height: 1.1;
      margin-bottom: 0.5rem;
    }
    .cta-full-left p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
    .cta-nums { display: flex; flex-direction: column; gap: 0.4rem; flex-shrink:0; }
    .cta-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.4rem; font-weight: 900;
      color: #fff; letter-spacing: 0.5px; line-height: 1;
      transition: opacity 0.15s;
    }
    .cta-num:hover { opacity: 0.75; }
    .cta-num-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }

    .contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 6rem; }
    .cinfo-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 0.2rem; }
    .cinfo-val { font-size: 0.92rem; font-weight: 600; margin-bottom: 1.5rem; }
    .cinfo-val a:hover { color: var(--red2); }

    .form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .fg { display: flex; flex-direction: column; gap: 0.35rem; }
    .fg label { font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    .fg input, .fg textarea, .fg select {
      background: var(--ink3); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 3px; color: #fff;
      padding: 0.8rem 1rem;
      font-family: 'Inter', sans-serif; font-size: 0.88rem;
      outline: none; width: 100%; transition: border-color 0.2s;
    }
    .fg input:focus, .fg textarea:focus, .fg select:focus { border-color: rgba(255,255,255,0.3); }
    .fg select option { background: var(--ink3); }
    .fg textarea { min-height: 130px; resize: vertical; }

    /* ── IMPRESSUM ── */
    .impressum-content {
      max-width: 780px;
      font-size: 0.87rem; color: rgba(255,255,255,0.4); line-height: 1.9;
    }
    .impressum-content h3 {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      margin: 2rem 0 0.4rem; border-bottom: 1px solid var(--line); padding-bottom: 0.4rem;
    }
    .impressum-content h3:first-child { margin-top: 0; }
    .impressum-content strong { color: rgba(255,255,255,0.7); }
    .impressum-content a { color: var(--red2); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink2); border-top: 1px solid var(--line);
      padding: 2rem 5%;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo { font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
    footer p { font-size: 0.75rem; color: rgba(255,255,255,0.58); }
    footer a, .footer-action { color: rgba(255,255,255,0.7); }
    footer a:hover, .footer-action:hover { color: var(--red2); }
    .footer-action { padding: 0; border: 0; background: none; font: inherit; cursor: pointer; }
    .footer-mobile-summary { display: none; }
    .footer-hours { color: rgba(255,255,255,0.62) !important; }
    #pv-consent-banner button.accept { background:#c0392b !important; border-color:#c0392b !important; }

    /* ── RESPONSIVE ── */
    .luxus-carousel-frame { position: relative; }
    .luxus-carousel-caption {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      margin: 0;
      padding: 1.5rem 1rem 0.75rem;
      background: linear-gradient(transparent, rgba(0,0,0,0.82));
      color: rgba(255,255,255,0.88);
      font-size: 0.76rem;
      font-weight: 700;
      line-height: 1.4;
    }
    .luxus-carousel-dot {
      position: relative;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
    }
    .luxus-carousel-dot::before {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255,255,255,0.28);
      content: "";
      transform: translate(-50%,-50%);
    }
    .luxus-carousel-dot.is-active::before { background: #C0392B; }

    @media (hover: hover) and (pointer: fine) {
      .btn-call-pulse:hover,
      .btn-call-pulse:focus-visible,
      .hdr-cta:hover,
      .hdr-cta:focus-visible,
      .btn-primary:hover,
      .btn-primary:focus-visible,
      .hero-secondary-cta:hover,
      .hero-secondary-cta:focus-visible {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 10px 28px rgba(192,57,43,0.24);
      }
      .si:hover img,
      .svc-img:hover img,
      .gal-grid-15 .gi:hover img,
      .gallery-project:hover img {
        filter: brightness(1) !important;
        transform: scale(1.03);
      }
      .review-card:hover,
      .fact-box:hover,
      .process-item:hover,
      .intent-card:hover,
      .svc-txt:hover {
        transform: translateY(-3px);
        border-color: rgba(255,255,255,0.13);
        box-shadow: 0 14px 30px rgba(0,0,0,0.22);
      }
      .review-card:hover,
      .fact-box:hover { background: #202020; }
      .stat-item:hover { background: rgba(255,255,255,0.03); }
      .stat-item:hover .stat-num,
      .fact-box:hover .fact-n { color: var(--red2); }
    }

    @media (max-width: 1280px) {
      .hdr-avail { display: none; }
    }
    @media (min-width: 1025px) and (max-width: 1380px) {
      .hdr-inner { padding: 0 2%; }
      .hdr-cta { font-size: 0.7rem; padding: 0.5rem 0.9rem; letter-spacing: 0; }
    }
    @media (max-width: 1024px) {
      .stat-band { grid-template-columns: repeat(2,1fr); }
      .svc-split { grid-template-columns: 1fr; }
      .svc-img { aspect-ratio: 16/9; height: auto; }
      .facts-grid { grid-template-columns: repeat(2,1fr); }
      .process-grid { grid-template-columns: 1fr; }
      .gal-grid-15 { grid-template-columns: repeat(3,1fr); }
      .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .cta-full { flex-direction: column; }
      .intent-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    }
    @media (max-width: 1350px) {
      .hdr-nav { display: none; }
      .hamburger { display: flex; }
      .hdr-cta { display: none; }
      .hdr-avail { display: none; }
    }
    /* ── TABLET (≤768px) ── */
    @media (max-width: 768px) {
      * { box-sizing: border-box; }
      body { overflow-x: hidden; width: 100%; }

      /* Header */
      .hdr-inner { padding: 0 var(--pv-header-inline, 14px); }
      /* Hero */
      .hero { height: auto; min-height: min(760px, 100svh); }
      .hero-content { padding: 0 1.2rem 3rem; max-width: 100%; }
      .hero-247 { font-size: clamp(2.8rem, 10vw, 4rem) !important; }
      .hero-h1 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
      .hero-row { flex-direction: column; gap: 1.2rem; }
      .hero-sub { max-width: 100%; font-size: 0.88rem; }
      .hero-phones { gap: 0.1rem; }
      .hero-phones { width: 100%; min-width: 0; }
      .hero-phones > a { width: fit-content !important; max-width: 100%; min-height: 44px; display: inline-flex; align-items: center; }
      .hero-phones > div {
        width: 100%;
        flex-wrap: wrap;
        column-gap: 0.75rem !important;
        row-gap: 0.45rem !important;
      }
      .hero-phones > div > a {
        min-height: 44px;
        padding-block: 0.65rem;
      }
      .hero-phones > div > span { display: none; }
      .hero-actions { display:grid; grid-template-columns:1fr; width:min(100%,360px); }
      .hero-actions > a { width:100%; min-height:48px; text-align:center; }
      .hero-phone-link { font-size: 1.8rem; }
      .hero-label { font-size: 0.6rem; }

      /* Stat band */
      .stat-band { grid-template-columns: 1fr 1fr; }
      .stat-item { padding: 1.5rem 1rem; border-right: none; border-bottom: 1px solid var(--line); }
      .stat-item:nth-child(odd) { border-right: 1px solid var(--line); }
      .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
      .stat-num { font-size: 2.2rem !important; }
      .stat-label { font-size: 0.65rem; }
      .intent-hub { padding:2.5rem 1.2rem; }

      /* Sections */
      .section { padding: 2.5rem 1.2rem !important; }
      .section-sm { padding: 2rem 1.2rem !important; }
      .mw { padding: 0; }
      .sec-h2 { font-size: 1.75rem !important; letter-spacing: -0.5px; }

      /* Service split */
      .svc-split { grid-template-columns: 1fr; }
      .svc-img { aspect-ratio: 16/9; }
      .svc-txt { padding: 2rem 1.2rem; }
      .btn-primary, .btn-ghost { width: 100%; text-align: center; display: block; }
      .svc-list li { font-size: 0.85rem; }

      /* Facts */
      .facts-grid { grid-template-columns: 1fr 1fr; }
      .fact-box { padding: 1.5rem 1rem; }
      .fact-n { font-size: 2rem; }

      /* Process */
      .process-grid { grid-template-columns: 1fr; }
      .process-item { padding: 1.75rem 1.2rem; }

      /* Gallery */
      .galerie-grid { grid-template-columns: repeat(2,1fr) !important; }
      .gal-grid-15 { grid-template-columns: repeat(2,1fr); }

      /* Reviews */
      .review-card { padding: 1.5rem 1.2rem; }
      .google-reviews-head { align-items: flex-start; flex-direction: column; gap: 1rem; }

      /* CTA-Full */
      .cta-full { padding: 2.5rem 1.2rem !important; flex-direction: column; gap: 1.5rem; }
      .cta-full-left h2 { font-size: 1.6rem !important; }
      .cta-num { font-size: 1.8rem !important; }
      .cta-num-sub { font-size: 0.6rem; }

      /* Kontakt */
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .contact-grid > div { padding: 0; }
      .form { padding: 0 0 2rem; }
      .form-row { grid-template-columns: 1fr; }
      .cinfo-val { font-size: 0.88rem; }

      /* Social */
      .social-links { flex-wrap: wrap; gap: 0.5rem; }
      .social-btn { font-size: 0.68rem; padding: 0.4rem 0.7rem; }
      .hdr-cta-mobile, .lang-toggle, .hamburger { min-width: 44px; min-height: 44px; }

      /* Strips */
      .strip-3, .strip-4, .strip-5 { grid-template-columns: 1fr 1fr; }
      .strip-3 img { height: 160px !important; }
      .strip-4 img { height: 140px !important; }
      .strip-5 img { height: 130px !important; }

      /* Footer */
      footer {
        padding: 1.75rem 1.2rem calc(1.75rem + env(safe-area-inset-bottom));
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
        text-align: center;
      }
      .footer-logo { display: block; width: 100%; color: rgba(255,255,255,0.62); }
      .footer-hours { display: block; width: 100%; margin: 0 !important; text-align: center; }
      .footer-hours > div:last-child { display: inline-grid !important; text-align: left; }
      .footer-desktop-meta { display: block; width: 100%; margin: 0.5rem 0 0 !important; line-height: 2; }
      .footer-desktop-meta a,
      .footer-desktop-meta .footer-action {
        display: inline-flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        padding-inline: 0.25rem;
      }
      .footer-mobile-summary { display: none; }
      /* Über-uns statistics */
      .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-auto-rows: 1fr;
        overflow: visible !important;
      }
      .about-stat-card {
        display: flex;
        min-width: 0;
        min-height: 108px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.25rem 0.75rem !important;
        overflow-wrap: anywhere;
      }
      .about-values { grid-template-columns: minmax(0,1fr) !important; }

      /* Luxusautotransporte: mobile-only, Safari-stabile Ausrichtung */
      #panel-luxustransport .luxus-premium-section {
        padding: 2.5rem 1rem !important;
        overflow: hidden;
      }
      #panel-luxustransport .luxus-premium-header {
        margin-bottom: 2rem !important;
      }
      #panel-luxustransport .luxus-premium-layout {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-areas: "media" "features";
        gap: 1.5rem !important;
        align-items: stretch !important;
        width: 100%;
        min-width: 0;
      }
      #panel-luxustransport .luxus-feature-list {
        grid-area: features;
        display: grid !important;
        grid-template-rows: none;
        grid-auto-rows: 1fr;
        gap: 0.75rem !important;
        min-width: 0;
      }
      #panel-luxustransport .luxus-feature-card {
        display: grid !important;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 0.75rem !important;
        align-items: center !important;
        min-width: 0;
        height: 100%;
        padding: 0.75rem 0;
      }
      #panel-luxustransport .luxus-feature-icon {
        width: 40px !important;
        height: 40px !important;
        align-self: center;
      }
      #panel-luxustransport .luxus-feature-copy {
        min-width: 0;
      }
      #panel-luxustransport .luxus-feature-title {
        font-size: 0.82rem !important;
        line-height: 1.35;
        overflow-wrap: normal;
        word-break: normal;
      }
      #panel-luxustransport .luxus-feature-description {
        font-size: 0.72rem !important;
        line-height: 1.5 !important;
        overflow-wrap: normal;
        word-break: normal;
      }
      #panel-luxustransport .luxus-availability-parenthetical {
        display: inline-flex;
        align-items: baseline;
        white-space: nowrap;
      }
      #panel-luxustransport .luxus-premium-media {
        grid-area: media;
        display: grid;
        grid-template-rows: minmax(0, 1fr) auto;
        align-self: stretch;
        min-width: 0;
        min-height: 0;
        overflow: visible !important;
      }
      #panel-luxustransport .luxus-carousel-frame {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
        border-radius: 10px;
      }
      #panel-luxustransport .luxus-carousel-image {
        width: 100% !important;
        height: 100% !important;
        max-height: 100%;
        aspect-ratio: auto !important;
        object-fit: contain !important;
        object-position: 50% 50% !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
      }
      #panel-luxustransport .luxus-carousel-dots {
        flex: 0 0 auto;
      }
    }

    /* ── PHONE (≤480px) ── */
    @media (max-width: 480px) {
      .hero-247 { font-size: 2.8rem !important; }
      .hero-phone-link { font-size: 1.5rem; }
      .hero { min-height: clamp(560px, 68svh, 600px); }
      .hero-content {
        height: auto;
        min-height: inherit;
        justify-content: center;
        padding: 1.75rem 1.2rem;
      }
      .hero-label { margin-bottom: 1rem; }
      .hero-247 { margin-bottom: 1.25rem; }
      .hero-actions { margin-bottom: 1.25rem; }
      .hero-row { gap: 0.8rem; }
      .hero-sub { line-height: 1.65; }
      .hero-social-links {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start;
        width: 100%;
        gap: clamp(0.15rem, 1vw, 0.4rem) !important;
      }
      .hero-social-links > a {
        flex: 0 1 auto;
        min-width: 0;
        gap: 0.2rem !important;
        font-size: clamp(0.53rem, 2.55vw, 0.7rem) !important;
        letter-spacing: 0.1px !important;
        white-space: nowrap;
      }
      .hero-social-links > a svg {
        flex: 0 0 auto;
        width: 13px;
        height: 13px;
      }
      .hero-social-links > span { display: none; }
      .hero-social-links > a[href*="kleinanzeigen.de"] { order: 1; }
      .hero-social-links > a[href*="instagram.com"] { order: 2; }
      .hero-social-links > a[href*="facebook.com"] { order: 3; }
      .hero-social-links > a[href^="https://wa.me/"] {
        display: flex !important;
        order: 4;
      }
      .stat-item { padding: 1.1rem 0.75rem; }
      .stat-num { font-size: 1.9rem !important; }
      .stat-label { color: rgba(255,255,255,0.68); font-size: 0.61rem; line-height: 1.45; }
      .stat-band { grid-template-columns: 1fr 1fr; }
      .intent-grid { grid-template-columns:1fr; }
      .intent-card { min-height:0; }
      .facts-grid { grid-template-columns: 1fr 1fr; }
      .galerie-grid { grid-template-columns: repeat(2,1fr) !important; gap: 4px !important; }
      .gallery-project--bmw-m5 figcaption {
        padding: 2rem 0.75rem 0.65rem;
        font-size: 0.62rem;
        line-height: 1.25;
      }
      .sec-h2 { font-size: 1.5rem !important; }
      .section { padding: 2rem 1rem !important; }
      .section-sm { padding: 1.5rem 1rem !important; }
      .process-item { padding: 1.25rem 1rem; }
      .fact-box { padding: 1.25rem 0.75rem; }
      .fact-n { font-size: 1.75rem; }
      .btn-primary { font-size: 0.8rem; padding: 0.75rem 1rem; }
      .mobile-nav-call { font-size: 0.85rem; }
      .review-card { padding: 1.25rem 1rem; }
      .reviews-grid { grid-auto-columns: 100%; }
      .review-slider-controls { display: none; }
      .cta-full-left h2 { font-size: 1.4rem !important; }
      .cta-num { font-size: 1.5rem !important; }
      /* Galerie button */
      #gal-more-btn-wrap button { padding: 0.6rem 1.5rem; font-size: 0.75rem; }
      #panel-luxustransport .luxus-premium-section { padding-inline: 0.75rem !important; }
      #panel-luxustransport .luxus-premium-layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.25rem !important;
      }
      #panel-luxustransport .luxus-feature-card {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 0.6rem !important;
        padding-block: 0.6rem;
      }
      #panel-luxustransport .luxus-feature-icon {
        width: 34px !important;
        height: 34px !important;
      }
      #panel-luxustransport .luxus-feature-title { font-size: 0.75rem !important; }
      #panel-luxustransport .luxus-feature-description {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
      }
    }
    @media (max-width: 768px) and (orientation: landscape) and (max-height: 520px) {
      .hero { min-height: 520px; }
      .hero-content { padding-top: 2rem; padding-bottom: 2rem; }
      .hero-label { margin-bottom: 0.75rem; }
      .hero-247 { margin-bottom: 1rem; }
    }
    @media (max-width: 340px) {
      .about-stats { grid-template-columns: minmax(0, 1fr) !important; }
      .about-stat-card { min-height: 96px; }
    }
    @media (prefers-reduced-motion: reduce) {
      html, body { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
      .motion-ready .reveal {
        opacity: 1 !important;
        transform: none !important;
      }
      .hero-bg { transform: none !important; }
    }
