﻿:root {
    --red: #e11318;
    --red-dark: #9b070b;
    --black: #030303;
    --panel: #080808;
    --line: rgba(225, 19, 24, .55);
    --muted: #b9b9b9;
    --white: #f6f6f6;
    color-scheme: dark;
}

.gallery-page-shell {
    padding: 8.4rem clamp(1rem, 4vw, 4rem) 4rem;
    background:
        radial-gradient(circle at 78% 8%, rgba(225,19,24,.13), transparent 24rem),
        linear-gradient(180deg, #050607, #020303 70%, #030303);
}
.gallery-hero {
    width: min(100%, 58rem);
    margin: 0 auto 2rem;
    text-align: center;
}
.gallery-kicker {
    margin: 0 0 .8rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.gallery-hero h1 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .96;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.gallery-hero p {
    width: min(100%, 43rem);
    margin: 1.3rem auto 0;
    color: #c8c8c8;
    font-size: 1rem;
    line-height: 1.7;
}
.gallery-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(100%, 96rem);
    margin: 0 auto 2rem;
    padding: 1.15rem 1.35rem;
    border: 1px solid rgba(225,19,24,.55);
    background: linear-gradient(135deg, rgba(225,19,24,.14), rgba(255,255,255,.02));
}
.gallery-notice strong {
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.gallery-notice p {
    margin: 0;
    color: #cfcfcf;
    line-height: 1.55;
}
.gallery-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    width: min(100%, 96rem);
    margin: 0 auto;
}
.gallery-compare-card {
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.025);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.gallery-compare-card:hover {
    border-color: rgba(225,19,24,.75);
    box-shadow: 0 0 26px rgba(225,19,24,.2);
    transform: translateY(-2px);
}
.gallery-compare {
    --compare-position: 50%;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #080909;
}
.gallery-compare::before {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: 4;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,.34), transparent 18rem),
        radial-gradient(circle at 80% 18%, rgba(255,255,255,.22), transparent 16rem),
        radial-gradient(circle at 52% 82%, rgba(255,255,255,.16), transparent 14rem),
        linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
    filter: blur(18px);
    opacity: .78;
    pointer-events: none;
}
.gallery-compare::after {
    content: "Bilder folgen";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 7;
    padding: .45rem .8rem;
    border: 1px solid rgba(225,19,24,.75);
    background: rgba(0,0,0,.62);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}
.gallery-compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.35) blur(1.2px) brightness(.48) contrast(1.1);
}
.gallery-compare > div {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: var(--compare-position);
    overflow: hidden;
}
.gallery-compare b {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    z-index: 6;
    width: 2px;
    background: #fff;
    box-shadow: 0 0 18px rgba(255,255,255,.6);
    transform: translateX(-50%);
}
.gallery-compare b::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.4rem;
    aspect-ratio: 1;
    border: 2px solid #fff;
    background: rgba(225,19,24,.86);
    transform: translate(-50%, -50%) rotate(45deg);
}
.gallery-before,
.gallery-after {
    position: absolute;
    top: .85rem;
    z-index: 8;
    padding: .28rem .55rem;
    background: rgba(0,0,0,.62);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}
.gallery-before { left: .85rem; }
.gallery-after { right: .85rem; }
.gallery-compare input {
    position: absolute;
    inset: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}
.gallery-card-copy {
    padding: 1.1rem 1.2rem 1.25rem;
}
.gallery-card-copy h2 {
    margin: 0 0 .35rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.gallery-card-copy p {
    margin: 0;
    color: #aeb4bb;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .gallery-page-shell {
        padding: 6rem .85rem 2.6rem;
    }
    .gallery-notice {
        align-items: flex-start;
        flex-direction: column;
    }
    .gallery-compare-grid {
        grid-template-columns: 1fr;
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body { margin: 0; background: var(--black); color: var(--white); font-family: Inter, system-ui, sans-serif; }
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
.brand-name {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}
.brand-name-md { color: #fff !important; font-weight: 800; }
.brand-name-rest { color: var(--red) !important; font-weight: 800; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(26rem, 34rem) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 3rem);
    min-height: 6.8rem;
    padding: 1.1rem clamp(1.25rem, 3vw, 3rem);
    background: linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.2));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: min-height .25s ease, background .25s ease;
}
.site-header.is-scrolled { min-height: 5rem; background: rgba(0, 0, 0, .96); }
.brand { display: grid; grid-template-columns: auto minmax(10rem, 15rem); align-items: center; gap: .7rem 1.25rem; width: fit-content; font-family: Oswald, sans-serif; text-transform: uppercase; }
.brand-main { display: grid; gap: 0; }
.brand-main span { color: #fff; font-size: 1.55rem; font-weight: 600; letter-spacing: .05em; line-height: 1; }
.brand-main .brand-name { white-space: nowrap; }
.brand-main .brand-name-md,
.brand-main .brand-name-rest { font-weight: 800; }
.brand-main .brand-name-rest { color: var(--red); }
.brand small { display: grid; gap: .25rem; min-width: 0; padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,.18); color: #fff; font-size: .74rem; font-weight: 300; letter-spacing: .18em; line-height: 1.18; }
.brand small span { display: block; }
.car-mark {
    display: block;
    width: 18rem;
    height: auto;
    aspect-ratio: 393 / 83;
    margin: 0 auto -.18rem;
    object-fit: contain;
    opacity: 1;
    transform: scaleX(-1);
    filter: brightness(1.18) contrast(1.12) drop-shadow(0 0 .55rem rgba(255,255,255,.26));
}
.car-mark.is-small { width: 13.5rem; margin: 0 0 -.12rem; }
.brand .car-mark.is-small { width: 11.8rem; margin: 0 0 -.14rem; }
.desktop-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(1rem, 2.5vw, 2.6rem); padding-right: clamp(1rem, 3vw, 3.5rem); font-family: Oswald, sans-serif; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: .75rem 0; font-size: .98rem; letter-spacing: .06em; color: #e8e8e8; }
.desktop-nav > a:first-child,
.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a { color: var(--red); }
.desktop-nav > a:first-child::after,
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: var(--red); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: .35rem; }
.nav-dropdown > a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1rem;
    height: 1rem;
}
.nav-dropdown > a::after { pointer-events: none; }
.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + .65rem);
    left: 50%;
    z-index: 45;
    min-width: 17rem;
    padding: .65rem;
    border: 1px solid rgba(225,19,24,.52);
    background:
        radial-gradient(circle at 100% 0, rgba(225,19,24,.18), transparent 11rem),
        rgba(8,8,8,.98);
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, .35rem);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.nav-dropdown-panel a {
    display: block;
    padding: .75rem .85rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #d7dbe0;
    font-size: .86rem;
    line-height: 1.25;
    white-space: nowrap;
}
.nav-dropdown-panel a:last-child { border-bottom: 0; }
.nav-dropdown-panel a:hover,
.nav-dropdown-panel a:focus-visible {
    color: #fff;
    background: rgba(225,19,24,.12);
}
.nav-dropdown-panel a::after { display: none; }
.booking-link, .btn { display: inline-flex; align-items: center; justify-content: center; gap: .7rem; border-radius: 4px; font-family: Oswald, sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.booking-link { min-height: 2.9rem; padding: .7rem 1.4rem; border: 0; background: var(--red); cursor: pointer; }
.btn { min-height: 2.7rem; padding: .65rem 1.35rem; border: 0; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, var(--red), #f52222); box-shadow: 0 12px 28px rgba(225, 19, 24, .24); }

.menu-toggle {
    position: fixed;
    top: 1.45rem;
    right: 1.25rem;
    z-index: 60;
    display: none;
    width: 3rem;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(0, 0, 0, .78);
    cursor: pointer;
}
.menu-toggle span { display: block; width: 1.35rem; height: 2px; margin: .28rem auto; background: #fff; }
.menu-backdrop { position: fixed; inset: 0; z-index: 55; pointer-events: none; opacity: 0; background: rgba(0, 0, 0, .72); transition: opacity .25s ease; }
.menu-backdrop.is-open { pointer-events: auto; opacity: 1; }
.menu-panel { position: fixed; inset: 0 0 0 auto; z-index: 70; width: min(25rem, 92vw); height: 100dvh; max-height: 100dvh; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 1.5rem; background: #060606; border-left: 1px solid var(--line); transform: translateX(105%); transition: transform .28s ease; }
.menu-panel.is-open { transform: translateX(0); }
.menu-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.menu-close { position: relative; width: 2.8rem; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.2); border-radius: 4px; background: transparent; cursor: pointer; }
.menu-close span { position: absolute; top: 50%; left: 20%; width: 60%; height: 2px; background: #fff; }
.menu-close span:first-child { transform: rotate(45deg); }
.menu-close span:last-child { transform: rotate(-45deg); }
.menu-nav section { margin-top: 1.6rem; }
.menu-nav p { margin: 0 0 .55rem; color: var(--red); font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.menu-nav a,
.menu-nav button { display: flex; width: 100%; justify-content: space-between; gap: 1rem; padding: .95rem 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: transparent; font-family: Oswald, sans-serif; text-align: left; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; }
.menu-nav strong { color: var(--red); font-size: 1.45rem; line-height: 1; }

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 8rem clamp(1.2rem, 6vw, 7rem) 4rem;
    overflow: hidden;
    border-bottom: 2px solid var(--red-dark);
    background: #020202;
}
.hero::after, .about::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 33%, rgba(0,0,0,.18) 68%, rgba(0,0,0,.58) 100%),
        linear-gradient(180deg, rgba(0,0,0,.72) 0%, transparent 28%, rgba(0,0,0,.86) 100%),
        radial-gradient(circle at 72% 40%, rgba(225,19,24,.18), transparent 28rem);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; touch-action: pan-y; cursor: grab; }
.hero-media.is-dragging { cursor: grabbing; }
.hero-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(calc(var(--hero-index, 0) * -100%), 0, 0);
    transition: transform .55s ease;
}
.hero-media.is-dragging .hero-track { transition: none; }
.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.hero-copy { position: relative; z-index: 1; width: min(100%, 47rem); text-align: left; }
.hero .car-mark { width: min(17rem, 46vw); margin: 0 0 1.1rem; }
.hero h1 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(4.2rem, 8vw, 8rem);
    line-height: .86;
    text-transform: uppercase;
    letter-spacing: .02em;
    text-shadow: 0 0 18px rgba(0,0,0,.82);
}
.claim {
    max-width: 38rem;
    margin: 1.1rem 0 1.65rem;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.25rem, 2.1vw, 2rem);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .22em;
    line-height: 1.35;
}
.hero-services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; max-width: 39rem; margin: 0 0 2rem; border-block: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.28); backdrop-filter: blur(8px); }
.hero-services article { padding: .9rem .75rem; border-right: 1px solid rgba(255,255,255,.16); }
.hero-services article:last-child { border-right: 0; }
.line-icon { color: var(--red); font-size: 2rem; line-height: 1; }
.hero-services strong { display: block; margin-top: .35rem; font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .05em; }
.hero-services small { display: block; color: var(--muted); font-size: .82rem; }
.hero-statement { margin: 0 0 1.2rem; font-family: Oswald, sans-serif; font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 700; line-height: 1.05; text-transform: uppercase; }
.hero-statement span { color: var(--red); }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 1.55rem;
    z-index: 2;
    display: flex;
    gap: .65rem;
    transform: translateX(-50%);
}
.hero-dots button {
    width: .78rem;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid rgba(255,255,255,.82);
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.hero-dots button.is-active,
.hero-dots button:hover,
.hero-dots button:focus-visible {
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 0 16px rgba(225,19,24,.72);
    transform: scale(1.18);
}
.hero-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.service-showcase {
    padding: 2rem clamp(1rem, 4vw, 4rem) 1.6rem;
    border-top: 1px solid rgba(225,19,24,.52);
    border-bottom: 1px solid rgba(225,19,24,.45);
    background:
        radial-gradient(circle at 50% 0, rgba(225,19,24,.11), transparent 24rem),
        linear-gradient(180deg, #020202, #070707 42%, #030303);
}
.service-showcase-title {
    max-width: 70rem;
    margin-bottom: 1.35rem;
}
.service-showcase-title div { text-align: center; }
.service-showcase-title p {
    margin: 0 0 .25rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
}
.service-showcase-title h2 {
    margin: 0;
    text-shadow: 0 0 10px rgba(255,255,255,.32);
}
.service-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    width: min(100%, 86rem);
    margin: 0 auto;
}
.service-card {
    position: relative;
    min-height: clamp(19rem, 26vw, 21.5rem);
    border: 1px solid rgba(225,19,24,.42);
    border-radius: 6px;
    overflow: hidden;
    isolation: isolate;
    background: #070707;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}
.service-card-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    filter: grayscale(.85) contrast(1.12) brightness(.72);
    transition: transform .35s ease, filter .35s ease, opacity .35s ease;
}
.service-card-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 36%, rgba(0,0,0,.2) 72%, rgba(0,0,0,.62) 100%),
        linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.74));
    transition: background .35s ease, opacity .35s ease;
}
.service-card-content {
    display: flex;
    min-height: inherit;
    width: min(28rem, 66%);
    flex-direction: column;
    justify-content: center;
    padding: 1.65rem 1.75rem;
}
.service-card-icon {
    display: grid;
    place-items: center;
    width: 3.35rem;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border: 1px solid rgba(225,19,24,.55);
    border-radius: 6px;
    background: rgba(0,0,0,.45);
}
.service-card-icon img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}
.service-card h3 {
    max-width: 21rem;
    margin: 0 0 .7rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.95rem);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: .06em;
    text-shadow: 0 0 9px rgba(255,255,255,.28);
}
.service-card p {
    max-width: 23rem;
    margin: 0 0 1rem;
    color: #d1d1d1;
    font-size: .94rem;
    font-weight: 600;
    line-height: 1.5;
}
.service-card ul {
    display: grid;
    gap: .45rem;
    margin: 0 0 1.2rem;
    padding: 0;
    list-style: none;
    color: #c8c8c8;
    font-size: .85rem;
    font-weight: 700;
}
.service-card li {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: .5rem;
    align-items: start;
}
.service-card li::before {
    content: "\2713";
    display: grid;
    place-items: center;
    width: .85rem;
    aspect-ratio: 1;
    margin-top: .12rem;
    border-radius: 50%;
    background: var(--red);
    color: #050505;
    font-size: .58rem;
    font-weight: 900;
    line-height: 1;
}
.service-card strong {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    width: fit-content;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.service-card:hover,
.service-card:focus-visible {
    border-color: rgba(225,19,24,.86);
    box-shadow: 0 0 28px rgba(225,19,24,.24), inset 0 0 0 1px rgba(225,19,24,.22);
}
.service-card:hover .service-card-bg,
.service-card:focus-visible .service-card-bg {
    opacity: 1;
    filter: grayscale(.18) contrast(1.18) brightness(1.28);
    transform: scale(1.04);
}
.service-card:hover .service-card-shade,
.service-card:focus-visible .service-card-shade {
    background:
        linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.54) 36%, rgba(0,0,0,.04) 72%, rgba(0,0,0,.28) 100%),
        linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.38));
}
.service-card:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.service-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: min(100%, 86rem);
    margin: 1.2rem auto 0;
    padding: .95rem 1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.service-benefits p {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: .15rem 1rem;
    min-height: 4.4rem;
    margin: 0;
    padding: .5rem 1.2rem;
    border-right: 1px solid rgba(225,19,24,.26);
    color: #b6b6b6;
    font-size: .83rem;
    line-height: 1.35;
}
.service-benefits p:last-child { border-right: 0; }
.service-benefits span {
    grid-row: span 2;
    align-self: center;
    color: var(--red);
    font-size: 2.25rem;
    line-height: 1;
}
.service-benefits strong {
    display: block;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.section-pad { padding: 2rem clamp(1.25rem, 4vw, 4rem); }
.section-title { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1.2rem; margin: 0 auto 1rem; max-width: 56rem; }
.section-title span { height: 1px; background: var(--line); }
.section-title h2 { margin: 0; font-family: Oswald, sans-serif; font-size: 1.7rem; font-weight: 300; text-transform: uppercase; letter-spacing: .22em; text-align: center; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 72rem; margin: 0 auto; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 29.5rem; padding: 1.7rem 1.8rem; border: 1px solid rgba(255,255,255,.38); border-radius: 8px; background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.package-card.is-featured { border-color: var(--red); }
.package-card .car-mark.is-small { width: min(16.5rem, 92%); margin: 0 auto .85rem; }
.badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); padding: .2rem .65rem; border-radius: 3px; background: var(--red); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.package-card h3 { display: grid; place-items: center; min-height: 4.25rem; margin: .25rem 0 1rem; color: var(--red); font-family: Oswald, sans-serif; font-size: 1.75rem; line-height: 1.05; text-transform: uppercase; letter-spacing: .07em; text-align: center; }
.package-card ul { flex: 1 1 auto; min-height: 10rem; padding: 0; margin: 0; list-style: none; }
.package-card li { display: grid; grid-template-columns: 1.5rem 1fr; gap: .55rem; margin: .7rem 0; color: #ddd; }
.package-card li span { color: var(--red); }
.price { margin: auto 0 1rem; text-align: center; font-family: Oswald, sans-serif; font-size: 2.2rem; font-weight: 600; letter-spacing: .08em; }
.price small { display: block; font-size: .8rem; font-weight: 400; text-transform: uppercase; }
.package-card .btn { width: 100%; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 68rem; margin: 1.2rem auto 0; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
.trust-row p { display: grid; grid-template-columns: 2.6rem 1fr; margin: 0; color: var(--muted); font-size: .82rem; }
.trust-row span { grid-row: span 2; color: var(--red); font-size: 2rem; }
.trust-row strong { display: block; color: #fff; font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .07em; }

.about { position: relative; display: grid; grid-template-columns: 1fr 1fr minmax(17rem, .8fr); gap: 2rem; align-items: center; min-height: 16rem; padding: 2rem clamp(1.25rem, 5vw, 4rem); border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.about > * { position: relative; z-index: 1; }
.about-image { align-self: stretch; min-height: 15rem; background: linear-gradient(90deg, transparent, rgba(0,0,0,.7)), url('../images/hero_1.png') center bottom / cover no-repeat; }
.gallery { border-top: 1px solid rgba(255,255,255,.08); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; max-width: 76rem; margin: 0 auto; border: 1px solid rgba(255,255,255,.12); background: var(--line); }
.gallery figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: #111; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.eyebrow { margin: 0 0 .55rem; color: var(--red); font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .12em; }
.about h2, .legal-hero h1 { margin: 0 0 1rem; font-family: Oswald, sans-serif; font-size: clamp(2rem, 3vw, 2.8rem); line-height: 1.1; text-transform: uppercase; letter-spacing: .06em; }
.about-copy p:not(.eyebrow) { color: #d3d3d3; line-height: 1.65; }
.about-list { padding: 1.2rem; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; }
.about-list p { display: grid; grid-template-columns: 2.4rem 1fr; margin: .6rem 0; color: var(--muted); font-size: .9rem; }
.about-list span { grid-row: span 2; color: var(--red); font-size: 1.8rem; }
.about-list strong { display: block; color: #fff; font-family: Oswald, sans-serif; text-transform: uppercase; }

.home > .service-showcase,
.home > .packages,
.home > .gallery,
.home > .about {
    display: none;
}
.home-categories {
    padding: 3.6rem clamp(1.25rem, 4vw, 4rem) 3rem;
    background: radial-gradient(circle at 50% 0, rgba(225,19,24,.08), transparent 24rem), #030303;
}
.home-categories-title {
    margin-bottom: 2rem;
    max-width: 64rem;
}
.home-categories-title div,
.home-advantages .section-title div {
    text-align: center;
}
.home-categories-title p,
.home-advantages .section-title p,
.home-quality-panel p {
    margin: 0 0 .25rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.home-categories-title strong {
    display: block;
    max-width: 32rem;
    margin: .55rem auto 0;
    color: #d8d8d8;
    font-weight: 400;
    line-height: 1.45;
}
.home-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    max-width: 86rem;
    margin: 0 auto;
}
.home-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 23rem;
    overflow: hidden;
    padding: 12.7rem 1.15rem 1.25rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    background: #060707;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.home-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.04), rgba(4,5,6,.8) 48%, rgba(4,5,6,.98)),
        linear-gradient(90deg, rgba(0,0,0,.3), rgba(0,0,0,.08), rgba(0,0,0,.45));
}
.home-category-card > img {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 13.2rem;
    object-fit: cover;
    filter: grayscale(.35) contrast(1.15) brightness(.82);
}
.home-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    border: 1px solid rgba(225,19,24,.92);
    box-shadow: 0 0 24px rgba(225,19,24,.28), inset 0 0 0 1px rgba(225,19,24,.22);
    transition: opacity .18s ease;
}
.home-category-card:hover,
.home-category-card:focus-visible {
    border-color: rgba(225,19,24,.9);
    box-shadow: 0 0 28px rgba(225,19,24,.22);
    transform: translateY(-2px);
}
.home-category-card:hover::after,
.home-category-card:focus-visible::after {
    opacity: 1;
}
.home-category-icon,
.home-category-card h3,
.home-category-card p,
.home-category-card strong {
    position: relative;
    z-index: 2;
}
.home-category-icon {
    position: absolute;
    top: 10.2rem;
    left: 50%;
    display: grid;
    place-items: center;
    width: 4.35rem;
    aspect-ratio: 1;
    background: transparent;
    box-shadow: none;
    transform: translateX(-50%);
}
.home-category-icon img {
    width: 2.35rem;
    height: 2.35rem;
    object-fit: contain;
    filter: brightness(1.45) drop-shadow(0 0 14px rgba(225,19,24,.42));
}
.home-category-card h3 {
    margin: 0 0 .95rem;
    font-family: Oswald, sans-serif;
    font-size: 1.5rem;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
}
.home-category-card p {
    flex: 1 1 auto;
    margin: 0 0 1.35rem;
    color: #d9d9d9;
    font-size: .92rem;
    line-height: 1.55;
}
.home-category-card strong {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.05rem;
    border-top: 1px solid rgba(255,255,255,.14);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.home-category-card strong span {
    color: var(--red);
}
.home-quality-panel {
    display: grid;
    align-items: center;
    min-height: 22rem;
    max-width: 86rem;
    margin: 2rem auto 0;
    padding: clamp(1.4rem, 4vw, 3rem);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 4px;
    background:
        linear-gradient(90deg, rgba(2,3,3,.96), rgba(3,3,3,.76) 45%, rgba(3,3,3,.1)),
        url('../images/hero_4.webp') right center / 64% auto no-repeat,
        #050607;
}
.home-quality-panel > div {
    max-width: 35rem;
}
.home-quality-panel h2 {
    margin: .55rem 0 1.1rem;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: .98;
    text-transform: uppercase;
}
.home-quality-panel strong {
    display: block;
    max-width: 31rem;
    margin-bottom: 1.55rem;
    color: #d6d6d6;
    font-weight: 400;
    line-height: 1.7;
}
.home-advantages {
    max-width: 86rem;
    margin: 2.5rem auto 0;
}
.home-advantage-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 1.7rem;
}
.home-advantage-grid article {
    min-height: 10rem;
    padding: 1rem 1.3rem;
    border-right: 1px solid rgba(255,255,255,.14);
    text-align: center;
}
.home-advantage-grid article:last-child {
    border-right: 0;
}
.home-advantage-grid img {
    width: 3.2rem;
    height: 3.2rem;
    margin: 0 auto 1.25rem;
    object-fit: contain;
}
.home-advantage-grid h3 {
    margin: 0 0 .65rem;
    font-family: Oswald, sans-serif;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.home-advantage-grid p {
    margin: 0;
    color: #d0d0d0;
    font-size: .88rem;
    line-height: 1.55;
}
.home-appointment-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 86rem;
    margin: 2rem auto 0;
    padding: 1.25rem 1.6rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.home-appointment-cta > div {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1.15rem;
    align-items: center;
}
.home-appointment-cta span {
    color: var(--red);
    font-size: 2.1rem;
}
.home-appointment-cta p {
    margin: 0;
    color: #d7d7d7;
}
.home-appointment-cta strong {
    display: block;
    margin-bottom: .25rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.home-appointment-cta .btn {
    min-width: 18rem;
}

.service-area {
    position: relative;
    padding: 4.4rem clamp(1rem, 4vw, 4rem) 0;
    overflow: hidden;
    border-top: 1px solid rgba(225,19,24,.24);
    background:
        radial-gradient(circle at 7% 0, rgba(225,19,24,.28), transparent 20rem),
        radial-gradient(circle at 92% 18%, rgba(255,255,255,.08), transparent 18rem),
        linear-gradient(180deg, #050505, #090909 62%, #040404);
}
.service-area-head {
    position: relative;
    z-index: 1;
    max-width: 52rem;
    margin: 0 auto 2.8rem;
    text-align: center;
}
.service-area-head > p {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    min-height: 2.75rem;
    margin: 0 0 1.6rem;
    padding: .55rem 1.55rem;
    border: 1px solid var(--red);
    border-radius: 999px;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .22em;
}
.service-area-head > p span { font-size: 1.15rem; letter-spacing: 0; }
.service-area h2 {
    margin: 0;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .03em;
    text-shadow: 0 0 12px rgba(255,255,255,.22);
}
.service-area h2 span { color: var(--red); }
.service-area-head strong {
    display: block;
    max-width: 48rem;
    margin: 1.35rem auto 0;
    color: #b8b8b8;
    font-size: 1.03rem;
    font-weight: 400;
    line-height: 1.8;
}
.service-area-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 72rem);
    margin: 0 auto;
}
.service-area-grid article,
.service-area-grid a {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: .45rem;
    min-height: 11.4rem;
    padding: 1.25rem 1rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
    text-align: center;
    text-decoration: none;
    box-shadow: inset 0 0 32px rgba(255,255,255,.025);
}
.service-area-grid article.is-home,
.service-area-grid a.is-home {
    border-color: var(--red);
    background:
        linear-gradient(145deg, rgba(225,19,24,.16), rgba(255,255,255,.018));
    box-shadow: 0 0 24px rgba(225,19,24,.3), inset 0 0 34px rgba(225,19,24,.08);
}
.service-area-icon {
    display: grid;
    place-items: center;
    width: 4.1rem;
    aspect-ratio: 1;
    margin-bottom: .25rem;
    border: 1px solid rgba(225,19,24,.52);
    border-radius: 50%;
    color: var(--red);
    font-size: 1.65rem;
    line-height: 1;
}
.service-area-grid article:not(.is-home) .service-area-icon,
.service-area-grid a:not(.is-home) .service-area-icon {
    display: none;
}
.service-area-silhouette {
    display: block;
    width: 12.2rem;
    height: auto;
    aspect-ratio: 393 / 83;
    margin: 0 0 .35rem;
    border: 0;
    object-fit: contain;
    opacity: .86;
    transform: scaleX(-1);
    filter:
        brightness(1.16)
        contrast(1.14)
        drop-shadow(0 0 .55rem rgba(255,255,255,.28));
}
.service-area-grid article.is-home .service-area-icon,
.service-area-grid a.is-home .service-area-icon {
    border-color: transparent;
    background: transparent;
    color: var(--red);
    box-shadow: none;
}
.service-area-grid h3 {
    margin: .1rem 0 .45rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.45rem;
    line-height: 1.12;
    text-wrap: balance;
}
.service-area-grid p {
    margin: 0 0 .2rem;
    color: #bababa;
    font-size: .96rem;
}
.service-area-grid small {
    color: #9c9c9c;
    font-size: .9rem;
    line-height: 1.3;
}
.service-area-grid article.is-home small,
.service-area-grid a.is-home small {
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.service-area-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    max-width: 86rem;
    margin: 2rem auto 0;
    padding: 1.25rem 1.6rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 4px;
    background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}
.service-area-cta p {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    align-items: center;
    gap: 1.15rem;
    margin: 0;
    color: #d7d7d7;
}
.service-area-cta p > span:first-child {
    display: grid;
    place-items: center;
    width: 3.2rem;
    aspect-ratio: 1;
    color: var(--red);
    font-size: 2.1rem;
}
.service-area-cta p > span:last-child {
    display: block;
    width: auto;
    color: #d7d7d7;
    font-size: inherit;
}
.service-area-cta p strong {
    display: block;
    margin-bottom: .25rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.service-area-cta .btn {
    min-width: 18rem;
}

.site-footer {
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 75% 0, rgba(110,0,10,.22), transparent 24rem),
        #070707;
}
.footer-wrap { width: min(100% - 2rem, 86rem); margin: 0 auto; }
.test-service-page .footer-wrap { width: min(100% - clamp(2rem, 5vw, 5rem), 100rem); }
.seo-tag-section {
    padding: 0 clamp(1.25rem, 3vw, 3rem) 2.6rem;
}
.seo-tag-box {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(225,19,24,.38);
    background: linear-gradient(145deg, rgba(225,19,24,.06), rgba(255,255,255,.018));
}
.seo-tag-box h2 {
    margin: 0 0 .85rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .92rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.seo-tag-box div {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.seo-tag-box span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.15rem;
    padding: .45rem .7rem;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.2);
    color: #e7e7e7;
    font-size: .84rem;
    line-height: 1.2;
    transition: border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}
.seo-tag-box span:hover {
    border-color: rgba(225,19,24,.9);
    box-shadow: 0 0 18px rgba(225,19,24,.28), inset 0 0 0 1px rgba(225,19,24,.18);
    color: #fff;
    transform: translateY(-1px);
}
.seo-tag-box span:first-child {
    border-color: rgba(225,19,24,.55);
    color: #fff;
    font-weight: 700;
}
.footer-main {
    order: 2;
    display: grid;
    grid-template-columns: 1.35fr 1.25fr 1fr 1.25fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    padding: 3.2rem 0 2.8rem;
}
.site-footer h2 {
    margin: 0 0 1.25rem;
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(225,19,24,.7);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.footer-silhouette {
    display: block;
    width: min(11.8rem, 82%);
    height: auto;
    margin: 0 0 1rem;
    opacity: 1;
    transform: scaleX(-1);
    filter: brightness(1.18) contrast(1.12) drop-shadow(0 0 .55rem rgba(255,255,255,.22));
}
.footer-about p {
    max-width: 20rem;
    margin: 0 0 1.6rem;
    color: #b7b7b7;
    line-height: 1.7;
}
.footer-social { display: flex; gap: .75rem; flex-wrap: wrap; }
.footer-social a {
    display: grid;
    place-items: center;
    width: 2.35rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .82rem;
    letter-spacing: .06em;
    transition: border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 0 18px rgba(225,19,24,.35);
}
.footer-links { display: grid; gap: .85rem; }
.footer-links a,
.footer-links button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    width: fit-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: #b9b9b9;
    cursor: pointer;
    font-size: .92rem;
    line-height: 1.4;
    text-align: left;
}
.footer-links a::after,
.footer-links button::after,
.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.28rem;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}
.footer-links a::before,
.footer-links button::before {
    content: "\203A";
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: 1.05rem;
}
.footer-links a:hover,
.footer-links button:hover,
.footer-links a:focus-visible,
.footer-links button:focus-visible { color: #fff; }
.footer-links a:hover::after,
.footer-links button:hover::after,
.footer-links a:focus-visible::after,
.footer-links button:focus-visible::after,
.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after { transform: scaleX(1); }
.footer-contact-panel p {
    display: grid;
    grid-template-columns: 1.7rem minmax(0, 1fr);
    gap: .05rem .7rem;
    margin: 0 0 1rem;
    color: #b9b9b9;
    line-height: 1.45;
}
.footer-contact-panel a,
.footer-contact-panel p {
    min-width: 0;
    overflow-wrap: anywhere;
}
.footer-contact-panel p > span {
    grid-row: span 2;
    color: var(--red);
    font-size: 1.35rem;
    line-height: 1;
}
.footer-contact-panel strong {
    color: #fff;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.footer-bottom {
    order: 3;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.2rem 0 1.6rem;
    color: #999;
    font-size: .86rem;
}
.footer-bottom nav { display: flex; gap: 1rem; }
.footer-bottom a { position: relative; }
.external-link-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    padding: 1rem;
}
.external-link-modal.is-open { display: grid; place-items: center; }
.external-link-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.78);
    cursor: pointer;
}
.external-link-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 34rem);
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border: 1px solid rgba(225,19,24,.7);
    background:
        radial-gradient(circle at 100% 0, rgba(225,19,24,.2), transparent 14rem),
        #101010;
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.external-link-dialog h2 {
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: .98;
}
.external-link-dialog p:not(.exterior-kicker) { color: #c7c7c7; line-height: 1.65; }
.external-link-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }

.cookie-consent {
    position: fixed;
    inset: auto 1rem 1rem;
    z-index: 90;
    display: none;
}
.cookie-consent.is-open { display: block; }
.cookie-panel {
    width: min(100%, 48rem);
    margin-left: auto;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    border: 1px solid rgba(225,19,24,.72);
    background:
        radial-gradient(circle at 100% 0, rgba(225,19,24,.2), transparent 16rem),
        #0b0b0b;
    box-shadow: 0 22px 70px rgba(0,0,0,.6);
}
.cookie-copy h2 {
    margin: 0 0 .8rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: .98;
    text-transform: uppercase;
}
.cookie-copy p:not(.exterior-kicker),
.cookie-note { color: #aeb4bb; line-height: 1.55; }
.cookie-options {
    display: grid;
    gap: .75rem;
    margin: 1.2rem 0;
}
.cookie-options label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .8rem;
    align-items: start;
    padding: .9rem 1rem;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.025);
}
.cookie-options input { margin-top: .2rem; accent-color: var(--red); }
.cookie-options span { display: grid; gap: .2rem; color: #9da3aa; line-height: 1.45; }
.cookie-options strong {
    color: #fff;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.cookie-text-button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cookie-text-button:hover,
.cookie-text-button:focus-visible { color: var(--red); }
.map-consent-box {
    display: grid;
    place-items: center;
    gap: 1rem;
    min-height: 18rem;
    padding: 1.5rem;
    background:
        linear-gradient(135deg, rgba(255,255,255,.04), transparent),
        #090909;
    text-align: center;
}
.map-consent-box p { max-width: 22rem; margin: 0; color: #aeb4bb; line-height: 1.55; }
.map-consent-box strong {
    display: block;
    margin-bottom: .3rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.map-consent-box.is-loaded {
    display: block;
    min-height: 0;
    padding: 0;
}
.map-consent-box.is-loaded iframe {
    width: 100%;
    height: 18rem;
    border: 0;
}

.legal-main { padding-top: 6.8rem; min-height: 70vh; background: radial-gradient(circle at 80% 0, rgba(225,19,24,.16), transparent 28%), #050505; }
.legal-hero { padding: 2.25rem clamp(1.25rem, 5vw, 5rem) 1.35rem; border-bottom: 1px solid var(--line); }
.legal-updated { margin: .35rem 0 0; color: #777d85; font-size: .88rem; }
.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 30rem);
    align-items: start;
    gap: clamp(1.5rem, 4vw, 3rem);
    width: min(100% - 2rem, 86rem);
    margin: 0 auto;
    padding: 0 0 5rem;
}
.legal-content { max-width: 58rem; margin: 0 auto; padding: 3rem 1.25rem 5rem; line-height: 1.75; color: #ddd; }
.legal-content h2 { margin: 2rem 0 .4rem; color: #fff; font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .05em; }
.legal-content a { color: var(--red); }
.legal-page .legal-content {
    max-width: 62rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
    padding: 2.2rem clamp(1rem, 3vw, 2.4rem);
    border: 1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at 90% 0, rgba(120,0,10,.2), transparent 18rem),
        #0b0b0b;
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.imprint-section { margin: 0 0 2.4rem; }
.imprint-section:last-child { margin-bottom: 0; }
.imprint-section h2 {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 1.1rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(240,0,24,.65);
    color: #fff;
    font-size: 1.6rem;
}
.imprint-section h2 span { color: #f00018; font-size: 1rem; }
.imprint-section h3 {
    margin: 1.3rem 0 .35rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.imprint-section p { margin: .35rem 0; color: #d6d9dd; }
.imprint-box {
    padding: 1.25rem 1.35rem;
    border-left: 3px solid #f00018;
    background: rgba(255,255,255,.035);
}
.imprint-box strong { color: #fff; }
.legal-split-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.legal-split-box > div {
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.025);
}
.legal-split-box strong {
    display: block;
    margin-bottom: .6rem;
    color: #f00018;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.legal-list {
    margin: .8rem 0 0;
    padding: 0;
    list-style: none;
}
.legal-list li {
    position: relative;
    margin: .35rem 0;
    padding-left: 1.1rem;
    color: #d6d9dd;
}
.legal-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: .35rem;
    height: .35rem;
    background: #f00018;
}
.legal-hosting-section p {
    margin: 1.45rem 0;
}
.legal-hosting-section .imprint-box {
    margin: 1.15rem 0 2rem;
    padding-block: 1.55rem;
}
.legal-hosting-section .imprint-box p {
    margin: .65rem 0;
}
.legal-hosting-section .legal-list {
    margin: 1.35rem 0 2rem;
}
.legal-hosting-section .legal-list li {
    margin: .7rem 0;
}
.legal-rights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin: 1rem 0;
}
.legal-rights-grid span {
    padding: .65rem .85rem;
    border: 1px solid rgba(240,0,24,.18);
    background: rgba(240,0,24,.08);
    color: #fff;
    font-weight: 700;
}
.legal-service-table {
    display: grid;
    margin-top: 1rem;
    border: 1px solid rgba(255,255,255,.12);
    background: #101010;
}
.legal-service-table > div {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1.35fr 1.35fr;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.legal-service-table > div:last-child { border-bottom: 0; }
.legal-service-table :is(strong, span) {
    padding: .8rem .9rem;
    color: #d6d9dd;
    font-size: .84rem;
    line-height: 1.45;
}
.legal-service-table strong {
    color: #f00018;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.imprint-sidebar {
    position: sticky;
    top: 7rem;
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}
.imprint-location-card,
.imprint-contact-card {
    border: 1px solid rgba(255,255,255,.14);
    background:
        radial-gradient(circle at 100% 0, rgba(120,0,10,.22), transparent 15rem),
        #101010;
}
.imprint-location-card iframe {
    width: 100%;
    height: 18rem;
    border: 0;
    filter: grayscale(.2) contrast(.95);
}
.imprint-route-card {
    overflow: hidden;
}
.imprint-route-card .map-consent-box,
.imprint-route-card iframe {
    border-bottom: 1px solid rgba(240,0,24,.62);
}
.imprint-location-copy,
.imprint-sticky-contact { padding: 1.45rem; }
.imprint-location-copy h2,
.imprint-sticky-contact h2,
.imprint-contact-card h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: 1.35rem;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.imprint-location-copy p {
    margin: 0 0 1.3rem;
    color: #d6d9dd;
    line-height: 1.65;
}
.imprint-sticky-contact {
    border-bottom: 1px solid rgba(240,0,24,.62);
}
.imprint-sticky-contact h2 {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(240,0,24,.62);
}
.imprint-sticky-contact h2 span { color: #f00018; }
.imprint-sticky-contact p {
    margin: 0;
    color: #d6d9dd;
    line-height: 1.65;
}
.imprint-sticky-contact a { color: inherit; }
.imprint-location-copy .exterior-btn { width: 100%; justify-content: center; }
.imprint-route-card .imprint-location-copy {
    display: grid;
    gap: 1.1rem;
}
.imprint-route-card .imprint-location-copy h2 {
    margin-bottom: 0;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(240,0,24,.62);
}
.imprint-route-card .imprint-location-copy p {
    margin-bottom: 0;
}
.imprint-contact-card {
    display: grid;
    gap: .2rem;
    padding: 1.45rem;
}
.imprint-contact-card p {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    gap: .75rem;
    margin: 0;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: #d6d9dd;
}
.imprint-contact-card p:last-child { border-bottom: 0; }
.imprint-contact-card span { color: #f00018; }
.imprint-contact-card a { color: inherit; }
.privacy-responsible-card { gap: 1.35rem; }
.privacy-responsible-card h2 {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(240,0,24,.62);
}
.privacy-responsible-card h2 span {
    color: #f00018;
    font-size: 1rem;
}
.privacy-responsible-card div {
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.privacy-responsible-card div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.privacy-responsible-card strong {
    display: block;
    margin-bottom: .65rem;
    color: #f00018;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.privacy-responsible-card p {
    display: block;
    margin: .35rem 0;
    padding: 0;
    border-bottom: 0;
    color: #d6d9dd;
}
.privacy-responsible-card .privacy-contact-line {
    display: grid;
    grid-template-columns: 1.6rem 1fr;
    gap: .75rem;
    align-items: center;
}
.privacy-imprint-button {
    width: 100%;
    justify-content: center;
}
.blank-main { min-height: 70vh; padding: 12rem clamp(1.25rem, 5vw, 5rem) 5rem; background: #050505; }
.blank-main h1 { margin: 0; color: var(--red); font-family: Oswald, sans-serif; font-size: clamp(2.4rem, 5vw, 4.5rem); text-transform: uppercase; letter-spacing: .06em; }

.exterior-page,
.location-page { background: #030303; }
.exterior-main {
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5.2rem),
        radial-gradient(circle at 72% 8%, rgba(112, 0, 10, .34), transparent 24rem),
        #030303;
}
.exterior-wrap { width: min(82rem, calc(100% - 2.5rem)); margin-inline: auto; }
.exterior-hero { position: relative; min-height: 48rem; padding: 12rem 0 7rem; }
.exterior-hero-grid { display: grid; grid-template-columns: minmax(19rem, 31rem) minmax(22rem, 1fr); align-items: center; gap: clamp(2rem, 8vw, 10rem); }
.exterior-kicker { margin: 0 0 .75rem; color: #ff001b; font-family: Oswald, sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .22em; }
.exterior-kicker::before { content: ""; display: inline-block; width: 1.7rem; height: 2px; margin-right: .55rem; vertical-align: middle; background: #ff001b; }
.exterior-copy h1,
.exterior-heading h2,
.exterior-cta h2 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    line-height: .96;
    text-transform: uppercase;
}
.exterior-copy h1 { font-size: clamp(3.25rem, 7vw, 6.25rem); }
.exterior-copy h1 span { color: #f00018; }
.exterior-lead { max-width: 28rem; margin: 1.45rem 0 1.7rem; color: #a8adb4; font-size: .98rem; line-height: 1.65; }
.exterior-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.exterior-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    padding: .7rem 1.25rem;
    border: 1px solid #f00018;
    cursor: pointer;
    border-radius: 0;
    font-family: Oswald, sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.exterior-btn::after { content: "\203A"; margin-left: .45rem; color: inherit; }
.exterior-btn-primary { background: #f00018; color: #fff; }
.exterior-btn-ghost { background: transparent; color: #fff; }
.exterior-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; max-width: 30rem; margin-top: 2rem; padding-top: 1.35rem; border-top: 1px solid rgba(255,255,255,.15); }
.exterior-stats p { margin: 0; }
.exterior-stats strong { display: block; font-family: Oswald, sans-serif; font-size: 1.95rem; line-height: 1; }
.exterior-stats span { display: block; margin-top: .35rem; color: #70747b; font-family: Oswald, sans-serif; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.service-hero-full,
.interior-hero-full {
    display: grid;
    align-items: center;
    min-height: 100svh;
    padding: 8rem 0 4rem;
    overflow: hidden;
    isolation: isolate;
}
.service-hero-full::before,
.interior-hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.78) 34%, rgba(0,0,0,.24) 66%, rgba(0,0,0,.52) 100%),
        linear-gradient(180deg, rgba(0,0,0,.72), transparent 32%, rgba(0,0,0,.82));
    pointer-events: none;
}
.service-hero-bg,
.interior-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/hero_6.webp') center / cover no-repeat;
    pointer-events: none;
}
.exterior-hero-bg {
    background-image: url('../images/hero_7.webp');
}
.polishing-hero-bg {
    background-image: url('../images/hero_8.webp');
}
.ceramic-hero-bg {
    background-image: url('../images/hero_9.webp');
}
.location-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.75) 38%, rgba(0,0,0,.22) 68%, rgba(0,0,0,.56) 100%),
        url('../images/hero_3.webp') center / cover no-repeat;
    pointer-events: none;
}
.service-hero-full .exterior-hero-grid,
.interior-page .interior-hero-full .exterior-hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    width: auto;
    max-width: none;
    margin: 0;
    padding-left: clamp(1.25rem, 5vw, 5.5rem);
    padding-right: clamp(1.25rem, 5vw, 5.5rem);
}
.service-hero-full .exterior-copy,
.interior-page .interior-hero-full .exterior-copy {
    max-width: min(40rem, 100%);
}
.service-hero-full .exterior-kicker,
.interior-page .interior-hero-full .exterior-kicker {
    color: #f00018;
    text-shadow: 0 0 16px rgba(240,0,24,.45);
}
.service-hero-full .exterior-kicker::before,
.interior-page .interior-hero-full .exterior-kicker::before {
    display: none;
}
.service-hero-full .exterior-copy h1,
.interior-page .interior-hero-full .exterior-copy h1 {
    max-width: 39rem;
    font-size: clamp(4rem, 8vw, 8.3rem);
    line-height: .88;
    text-shadow: 0 0 18px rgba(255,255,255,.18);
}
.service-hero-full .exterior-lead,
.interior-page .interior-hero-full .exterior-lead {
    max-width: 36rem;
    color: #d0d2d6;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.55;
}
.service-hero-full .exterior-actions,
.interior-page .interior-hero-full .exterior-actions {
    margin-top: .6rem;
}
.service-hero-full .exterior-btn,
.interior-page .interior-hero-full .exterior-btn {
    min-width: 12.8rem;
    min-height: 3.35rem;
    padding-inline: 1.6rem;
    border-radius: 4px;
}
.service-hero-full .exterior-btn-ghost,
.interior-page .interior-hero-full .exterior-btn-ghost {
    background: rgba(0,0,0,.38);
    box-shadow: inset 0 0 0 1px rgba(240,0,24,.34);
}
.service-hero-full .exterior-stats,
.interior-page .interior-hero-full .exterior-stats {
    max-width: 40rem;
    margin-top: 3rem;
    padding-top: 0;
    border-top: 0;
}
.service-hero-full .exterior-stats p,
.interior-page .interior-hero-full .exterior-stats p {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: .2rem .9rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255,255,255,.15);
}
.service-hero-full .exterior-stats p:last-child,
.interior-page .interior-hero-full .exterior-stats p:last-child {
    border-right: 0;
}
.service-hero-full .exterior-stats i,
.interior-page .interior-hero-full .exterior-stats i {
    grid-row: span 2;
    align-self: center;
    color: #f00018;
    font-style: normal;
    font-size: 2.2rem;
    line-height: 1;
}
.service-hero-full .exterior-stats strong,
.interior-page .interior-hero-full .exterior-stats strong {
    color: #fff;
    font-size: 1.9rem;
    text-transform: uppercase;
}
.service-hero-full .exterior-stats strong small {
    display: block;
    color: #8b8f96;
    font-family: Inter, sans-serif;
    font-size: .7rem;
    line-height: 1.1;
    text-transform: uppercase;
}
.service-hero-full .exterior-stats span,
.interior-page .interior-hero-full .exterior-stats span {
    margin: 0;
    color: #8b8f96;
}
.exterior-hero-mark { position: relative; min-height: 25rem; display: grid; place-items: center; isolation: isolate; }
.exterior-hero-mark .ring { position: absolute; border: 1px solid rgba(240, 0, 24, .28); border-radius: 50%; }
.exterior-hero-mark .ring-one { width: min(28rem, 84vw); aspect-ratio: 1; }
.exterior-hero-mark .ring-two { width: min(20.5rem, 62vw); aspect-ratio: 1; }
.exterior-hero-mark .dot { position: absolute; width: .35rem; aspect-ratio: 1; background: #f00018; border-radius: 50%; box-shadow: 0 0 16px rgba(240, 0, 24, .72); }
.exterior-hero-mark .dot-one { top: 24%; left: 20%; }
.exterior-hero-mark .dot-two { right: 20%; top: 22%; }
.exterior-hero-mark .dot-three { right: 16%; bottom: 34%; }
.exterior-hero-mark img { position: relative; z-index: 2; width: min(25rem, 76vw); height: auto; object-fit: contain; filter: drop-shadow(0 0 12px rgba(255,255,255,.12)); }
.exterior-hero-mark .car-mark { position: relative; z-index: 2; width: min(25rem, 76vw); filter: drop-shadow(0 0 12px rgba(255,255,255,.12)); }
.interior-seat-mark {
    position: relative;
    z-index: 2;
    display: block;
    width: min(14rem, 50vw);
    aspect-ratio: 1.35;
    filter: drop-shadow(0 0 12px rgba(255,255,255,.1));
}
.interior-seat-mark span { position: absolute; display: block; }
.seat-line { border-color: #efefef; border-style: solid; }
.seat-left { left: 9%; bottom: 12%; width: 1.9rem; height: 4.9rem; border-width: 3px 0 0 3px; }
.seat-right { right: 24%; bottom: 12%; width: 2.1rem; height: 5.6rem; border-width: 0 3px 3px 0; }
.seat-back { left: 22%; top: 18%; width: 47%; height: 2.2rem; border-width: 3px 3px 0 3px; border-radius: 1.1rem 1.1rem 0 0; }
.seat-cushion { width: 2.7rem; aspect-ratio: 1; border: 3px solid #f00018; border-radius: 6px; }
.seat-one { left: 18%; bottom: 31%; }
.seat-two { right: 15%; bottom: 31%; }
.seat-dash { right: 2%; bottom: 13%; width: .6rem; height: 3px; background: #efefef; border-radius: 99px; }
.interior-page .exterior-gallery::after { right: 0; width: 45vw; background: rgba(120, 0, 10, .35); }
.polish-target-mark {
    position: relative;
    z-index: 2;
    display: block;
    width: min(11.5rem, 44vw);
    aspect-ratio: 1;
    filter: drop-shadow(0 0 12px rgba(255,255,255,.1));
}
.polish-target-mark span { position: absolute; display: block; }
.polish-orbit { inset: 12%; border: 3px solid #efefef; border-radius: 50%; }
.polish-core { inset: 28%; border: 2px solid #f00018; border-radius: 50%; }
.polish-slash { left: 19%; top: 49%; width: 72%; height: 2px; background: #f00018; transform: rotate(-46deg); transform-origin: center; }
.polish-cross { width: 24%; height: 2px; background: rgba(255,255,255,.72); }
.polish-cross::after { content: ""; position: absolute; left: 50%; top: 50%; width: 2px; height: 100%; background: rgba(255,255,255,.72); transform: translate(-50%, -50%); }
.polish-cross-one { left: 2%; top: 18%; transform: rotate(45deg); }
.polish-cross-two { right: 2%; bottom: 18%; transform: rotate(45deg); }
.polish-compare { padding-top: 2rem; }
.polish-compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 3.4rem; max-width: 58rem; }
.polish-compare-grid article { padding: 1.5rem; border: 1px solid rgba(255,255,255,.13); background: #111; }
.polish-compare-grid article.is-after { border-color: #f00018; }
.polish-compare-grid span { display: inline-flex; margin-bottom: 1rem; padding: .25rem .65rem; background: rgba(255,255,255,.08); color: #aeb3ba; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.polish-compare-grid article.is-after span { background: #f00018; color: #fff; }
.polish-surface { height: 5.6rem; overflow: hidden; background: #181818; }
.polish-surface.is-before {
    background:
        repeating-linear-gradient(102deg, rgba(255,255,255,.12) 0 .2rem, transparent .2rem .75rem),
        linear-gradient(90deg, #202020, #111);
}
.polish-surface.is-after { background: linear-gradient(105deg, #101010, #1e1e1e 45%, #333, #151515); }
.polish-surface.is-after::after { content: ""; display: block; width: 40%; height: 100%; margin-left: auto; background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent); }
.polish-compare-grid p { margin: 1rem 0 0; color: #858b93; font-size: .86rem; line-height: 1.55; }
.polish-image-compare {
    position: relative;
    max-width: 58rem;
    margin-top: 1.4rem;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    background: #101010;
    isolation: isolate;
}
.polish-image-compare img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}
.polish-image-before-wrap {
    position: absolute;
    inset: 0;
    width: var(--compare-position);
    overflow: hidden;
}
.polish-image-before {
    width: 100%;
    max-width: none;
}
.polish-image-label {
    position: absolute;
    top: 1rem;
    z-index: 3;
    padding: .32rem .7rem;
    background: rgba(0,0,0,.72);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.polish-image-label.is-before { left: 1rem; }
.polish-image-label.is-after { right: 1rem; background: #f00018; }
.polish-image-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--compare-position);
    z-index: 4;
    width: 2px;
    background: #f00018;
    box-shadow: 0 0 18px rgba(240,0,24,.72);
    transform: translateX(-50%);
}
.polish-image-divider::before {
    content: "\2194";
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 3rem;
    aspect-ratio: 1;
    border: 2px solid #f00018;
    border-radius: 50%;
    background: rgba(0,0,0,.82);
    color: #fff;
    font-size: 1.15rem;
    transform: translate(-50%, -50%);
}
.polish-image-compare input {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}
.polish-step-list { grid-template-columns: repeat(5, 1fr); max-width: 64rem; }
.ceramic-hero .exterior-hero-grid { align-items: start; }
.ceramic-shield-mark {
    position: relative;
    z-index: 2;
    display: block;
    width: min(18rem, 60vw);
    aspect-ratio: 1;
    filter: drop-shadow(0 0 12px rgba(255,255,255,.1));
}
.ceramic-shield-mark span { position: absolute; display: block; }
.shield-outer,
.shield-inner {
    clip-path: polygon(50% 0, 89% 20%, 89% 58%, 78% 82%, 50% 100%, 22% 82%, 11% 58%, 11% 20%);
}
.shield-outer { inset: 6%; border: 0; background: #efefef; }
.shield-outer::after {
    content: "";
    position: absolute;
    inset: 4%;
    clip-path: inherit;
    background: #050505;
}
.shield-inner { inset: 21%; background: #f00018; }
.shield-inner::after {
    content: "";
    position: absolute;
    inset: 4%;
    clip-path: inherit;
    background: #050505;
}
.shield-check {
    left: 34%;
    top: 54%;
    width: 35%;
    height: 18%;
    border-left: 4px solid #f00018;
    border-bottom: 4px solid #f00018;
    transform: rotate(-45deg);
    transform-origin: center;
}
.ceramic-compare { padding-top: 2rem; }
.ceramic-compare-layout { display: grid; grid-template-columns: minmax(14rem, .75fr) minmax(0, 2.2fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.ceramic-compare-copy { max-width: 23rem; }
.ceramic-compare-copy .exterior-kicker { margin-bottom: 1rem; }
.ceramic-compare-copy h2 { color: #fff; font-family: Oswald, sans-serif; font-size: clamp(2.2rem, 4.4vw, 4.1rem); line-height: .98; text-transform: uppercase; letter-spacing: .02em; }
.ceramic-compare-copy p:not(.exterior-kicker) { margin-top: 2rem; color: #a3a7ad; font-size: 1.02rem; line-height: 1.65; }
.ceramic-table { border: 1px solid rgba(255,255,255,.12); background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); box-shadow: 0 1.5rem 4rem rgba(0,0,0,.35); }
.ceramic-table > div { display: grid; grid-template-columns: 1.1fr 1.35fr 1fr; border-bottom: 1px solid rgba(255,255,255,.08); }
.ceramic-table > div:last-child { border-bottom: 0; }
.ceramic-table strong,
.ceramic-table span { padding: 1rem 1.25rem; color: #d9dce0; font-size: .9rem; line-height: 1.4; }
.ceramic-table strong { color: #747a82; font-family: Oswald, sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.ceramic-table > div > :nth-child(2) { border-inline: 1px solid rgba(240,0,24,.55); background: linear-gradient(135deg, rgba(240,0,24,.42), rgba(240,0,24,.11)); color: #fff; font-weight: 800; }
.ceramic-table > div:first-child > :nth-child(2) { border-top: 1px solid rgba(240,0,24,.7); color: #fff; }
.ceramic-table > div:last-child > :nth-child(2) { border-bottom: 1px solid rgba(240,0,24,.7); }
.ceramic-table span:nth-child(2),
.ceramic-table span:nth-child(3) { display: flex; align-items: center; gap: .75rem; }
.ceramic-table span i { display: inline-grid; flex: 0 0 auto; width: 1.28rem; height: 1.28rem; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-family: Arial, sans-serif; font-size: .8rem; font-style: normal; font-weight: 900; line-height: 1; }
.ceramic-table span:nth-child(2) i { color: #ff001e; }
.ceramic-table span:nth-child(3) { color: #969aa0; }
.ceramic-table span:nth-child(3) i { color: #676b70; }
.ceramic-step-list { grid-template-columns: repeat(5, 1fr); max-width: 64rem; }

.exterior-section { padding: 4rem 0; }
.exterior-heading { max-width: 46rem; text-align: center; }
.exterior-heading .exterior-kicker::before { display: none; }
.exterior-heading h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); letter-spacing: .02em; }
.exterior-heading p:not(.exterior-kicker) { margin: 1rem auto 0; max-width: 36rem; color: #858b93; line-height: 1.6; }
.exterior-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 3.8rem; border-inline: 1.3rem solid rgba(255,255,255,.12); background: rgba(255,255,255,.08); gap: 1px; }
.exterior-service-grid article { min-height: 12rem; padding: 2.5rem 2rem; background: #0b0b0b; outline: 1px solid transparent; outline-offset: -1px; transition: outline-color .2s ease, box-shadow .2s ease, filter .2s ease; }
.exterior-service-grid article:hover,
.exterior-service-grid article:focus-within {
    outline-color: #f00018;
    box-shadow:
        0 0 10px rgba(225, 19, 24, .88),
        0 0 28px rgba(225, 19, 24, .62),
        0 0 58px rgba(225, 19, 24, .34),
        inset 0 0 22px rgba(225, 19, 24, .18);
    animation: service-border-flicker 650ms linear 1;
}
.exterior-service-grid img { width: 2rem; height: 2rem; margin-bottom: 1.8rem; object-fit: contain; background: transparent; }
.exterior-service-grid h3,
.exterior-package-grid h3,
.exterior-step-list strong,
.exterior-gallery figcaption {
    margin: 0;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.exterior-service-grid h3 { color: #fff; font-size: 1rem; letter-spacing: .04em; }
.exterior-service-grid p { margin: .65rem 0 0; color: #858b93; font-size: .86rem; line-height: 1.55; }
.location-page .exterior-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 58rem;
}
.ceramic-service-note {
    display: block;
    margin-top: 1rem;
    color: #d6d9dd;
    font-size: .82rem;
    font-weight: 700;
}
.ceramic-service-note::before {
    content: "\2713";
    margin-right: .45rem;
    color: #f00018;
    font-weight: 900;
}
.exterior-process { padding: 4rem 0; border-block: 1px solid rgba(255,255,255,.08); background: #121212; }
.exterior-step-list {
    --timeline-progress: 0%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    margin-top: 4.5rem;
    padding: 1.15rem 0 0;
    border-top: 2px solid rgba(255,255,255,.16);
    list-style: none;
}
.exterior-step-list::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: var(--timeline-progress);
    height: 2px;
    background: #d50018;
    transition: width .12s linear;
}
.exterior-step-list li { position: relative; padding: 0 1rem 0 .9rem; }
.exterior-step-list li::before { content: ""; position: absolute; top: -1.25rem; left: 0; width: 1px; height: .8rem; background: rgba(255,255,255,.18); transition: background-color .2s ease; }
.exterior-step-list li.is-filled::before { background: #d50018; }
.exterior-step-list span { display: block; margin-bottom: .7rem; color: #f00018; font-family: Oswald, sans-serif; font-size: 1rem; font-weight: 700; }
.exterior-step-list strong { display: block; font-size: .85rem; letter-spacing: .04em; }
.exterior-step-list p { margin: .55rem 0 0; color: #70747b; font-size: .78rem; line-height: 1.45; }
.location-context {
    padding-top: 1rem;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.025));
}
.location-context-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(14rem, .8fr));
    gap: 1.2rem;
}
.location-context-grid article {
    padding: 2rem 1.7rem;
    border: 1px solid rgba(255,255,255,.12);
    background: #101010;
}
.location-context-grid h2,
.location-context-grid h3 {
    margin: 0;
    color: #fff;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.location-context-grid h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); line-height: 1; }
.location-context-grid h3 { font-size: 1.15rem; }
.location-context-grid p:not(.exterior-kicker) {
    margin: 1rem 0 0;
    color: #91969d;
    line-height: 1.65;
}
.location-context-grid ul {
    display: grid;
    gap: .65rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}
.location-context-grid li {
    position: relative;
    padding-left: 1rem;
    color: #d1d4d8;
    line-height: 1.45;
}
.location-context-grid li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: #f00018;
    font-weight: 800;
}
.exterior-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.3rem; }
.exterior-package-grid article { position: relative; padding: 2.3rem 1.7rem 1.9rem; border: 1px solid rgba(255,255,255,.12); background: #111; transition: border-color .2s ease, box-shadow .2s ease, filter .2s ease; }
.exterior-package-grid article.is-featured { border-color: #f00018; background: linear-gradient(180deg, rgba(75, 0, 8, .52), #111 46%); }
.exterior-package-grid article:hover,
.exterior-package-grid article:focus-within {
    border-color: #f00018;
    box-shadow:
        0 0 10px rgba(225, 19, 24, .88),
        0 0 28px rgba(225, 19, 24, .62),
        0 0 58px rgba(225, 19, 24, .34),
        inset 0 0 22px rgba(225, 19, 24, .18);
    animation: service-border-flicker 650ms linear 1;
}
.exterior-badge { position: absolute; top: 0; left: 1.7rem; transform: translateY(-50%); padding: .28rem .8rem; background: #f00018; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.exterior-package-grid h3 { color: #f00018; font-size: 1.25rem; letter-spacing: .04em; }
.exterior-package-grid ul { min-height: 12rem; padding: 1.2rem 0 0; margin: 0; list-style: none; }
.exterior-package-grid li { position: relative; padding: .65rem 0 .65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); color: #d1d4d8; font-size: .88rem; line-height: 1.4; }
.exterior-package-grid li::before { content: "+"; position: absolute; left: 0; color: #f00018; font-weight: 800; }
.exterior-price { margin: 1.4rem 0 1.1rem; font-family: Oswald, sans-serif; font-size: 2.45rem; font-weight: 600; line-height: 1; }
.exterior-price small { display: block; margin-bottom: .35rem; color: #777d85; font-family: Inter, sans-serif; font-size: .72rem; text-transform: uppercase; }
.exterior-package-grid .exterior-btn { width: 100%; min-height: 2.75rem; }
.exterior-gallery { position: relative; }
.exterior-gallery::after { content: ""; position: absolute; right: 0; bottom: 6.6rem; z-index: 0; width: 42vw; height: 13rem; background: rgba(120, 0, 10, .38); pointer-events: none; }
.exterior-gallery-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; margin-top: 2.2rem; }
.exterior-gallery figure { position: relative; min-height: 17rem; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: #111; }
.exterior-gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.82)); }
.exterior-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.05); }
.exterior-gallery figcaption { position: absolute; left: 1rem; bottom: 1rem; z-index: 1; font-size: .82rem; font-weight: 700; }
.exterior-cta { padding: 4.8rem 1.25rem 5.2rem; text-align: center; background: #e50019; }
.exterior-cta h2 { font-size: clamp(2rem, 4vw, 3rem); }
.exterior-cta p { margin: 1rem 0 1.5rem; color: rgba(255,255,255,.86); }
.exterior-cta .brand-name-md,
.exterior-cta .brand-name-rest { color: #fff !important; }
.exterior-cta .brand-name-rest { opacity: .92; }
.exterior-phone { display: inline-flex; align-items: center; justify-content: center; min-height: 2.65rem; padding: .65rem 1.4rem; background: #fff; color: #e50019; font-weight: 800; }
.exterior-phone::before { content: "\260E"; margin-right: .45rem; }

.appointment-success {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 140;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: start;
    max-width: min(28rem, calc(100vw - 2rem));
    padding: 1rem 1.15rem;
    border: 1px solid #f00018;
    background: #0b0b0b;
    box-shadow: 0 0 30px rgba(225,19,24,.3);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.appointment-success.is-hidden {
    visibility: hidden;
    opacity: 0;
    transform: translateY(.75rem);
}
.appointment-success strong { color: #fff; font-family: Oswald, sans-serif; text-transform: uppercase; }
.appointment-success span { display: block; margin-top: .35rem; color: #b8bdc4; font-size: .88rem; line-height: 1.45; }
.appointment-success button {
    display: grid;
    place-items: center;
    width: 1.75rem;
    aspect-ratio: 1;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    background: transparent;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}
.appointment-success button:hover,
.appointment-success button:focus-visible {
    border-color: #f00018;
    color: #f00018;
}
.appointment-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    visibility: hidden;
    opacity: 0;
    transition: opacity .22s ease, visibility .22s ease;
}
.appointment-modal.is-open { visibility: visible; opacity: 1; }
.appointment-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(0,0,0,.74);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.appointment-dialog {
    position: relative;
    width: min(58rem, calc(100% - 2rem));
    max-height: calc(100vh - 1rem);
    margin: .5rem auto;
    overflow-y: auto;
    padding: clamp(1.1rem, 2.6vw, 2rem);
    border: 1px solid rgba(240,0,24,.65);
    background:
        radial-gradient(circle at 84% 0, rgba(160,0,15,.22), transparent 18rem),
        #090909;
    color: #fff;
    box-shadow: 0 0 60px rgba(225,19,24,.22), 0 28px 80px rgba(0,0,0,.58);
}
.appointment-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.appointment-head h2 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: .95;
    text-transform: uppercase;
}
.appointment-intro { max-width: 43rem; margin: .75rem 0 0; color: #a8adb4; line-height: 1.6; }
.appointment-close { flex: 0 0 auto; }
.appointment-message { margin-top: 1rem; padding: .85rem 1rem; border: 1px solid #f00018; background: rgba(240,0,24,.12); color: #fff; }
.appointment-message strong { display: block; }
.appointment-message ul { margin: .45rem 0 0; padding-left: 1.1rem; color: #d7dbe0; line-height: 1.45; }
.appointment-form { display: grid; gap: 1rem; margin-top: 1rem; }
.appointment-spam-check {
    left: -10000px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: auto;
}
.appointment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem 1rem; }
.appointment-span { grid-column: 1 / -1; }
.appointment-form label {
    display: grid;
    gap: .35rem;
    color: #a8adb4;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.appointment-form :is(input, select, textarea) {
    width: 100%;
    min-height: 2.9rem;
    padding: .75rem .85rem;
    border: 1px solid rgba(255,255,255,.16);
    background: #111;
    color: #fff;
    font: inherit;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}
.appointment-form textarea { min-height: 6rem; resize: vertical; }
.appointment-form :is(input, select, textarea):focus {
    border-color: #f00018;
    outline: 2px solid rgba(240,0,24,.22);
}
.appointment-consent {
    display: grid !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: .75rem !important;
    color: #c5c9ce !important;
    font-size: .78rem !important;
    font-weight: 500 !important;
    line-height: 1.5;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.appointment-consent input { width: 1rem; min-height: 1rem; margin-top: .2rem; accent-color: #f00018; }
.appointment-consent a { color: #fff; text-decoration: underline; text-underline-offset: .18em; }
.appointment-note { margin: 0; color: #777d85; font-size: .82rem; line-height: 1.5; }
.appointment-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.appointment-submit { justify-self: start; min-width: 13rem; border-color: #f00018; cursor: pointer; }
.appointment-cancel { min-width: 11rem; cursor: pointer; }

.package-detail-main { background: radial-gradient(circle at 78% 10%, rgba(112,0,10,.34), transparent 26rem), #030303; }
.package-hero {
    min-height: 44rem;
    padding: 12rem 0 5.8rem;
    background:
        radial-gradient(circle at 74% 18%, rgba(112,0,10,.34), transparent 26rem),
        linear-gradient(118deg, rgba(255,255,255,.018) 0 1px, transparent 1px 5.2rem);
}
.package-hero-grid {
    width: min(100% - 3rem, 104rem);
    display: grid;
    grid-template-columns: minmax(22rem, 44rem) minmax(20rem, 30rem);
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 10vw, 12rem);
}
.sales-package-page .package-hero-grid,
.sales-package-page .exterior-copy,
.sales-package-page .exterior-copy h1,
.sales-package-page .exterior-lead { min-width: 0; }
.sales-package-page .exterior-copy h1 { overflow-wrap: anywhere; }
.basic-summary-card {
    position: relative;
    padding: 2.2rem 2rem;
    border: 1px solid rgba(255,255,255,.14);
    background: #111;
    box-shadow: 0 0 42px rgba(120,0,10,.12);
}
.premium-summary-card { border-color: #f00018; background: linear-gradient(180deg, rgba(75,0,8,.52), #111 46%); }
.sales-summary-card { border-color: rgba(255,255,255,.16); }
.sales-label { position: absolute; top: 0; left: 1.7rem; transform: translateY(-50%); padding: .28rem .8rem; background: #fff; color: #111; font-size: .68rem; font-weight: 900; text-transform: uppercase; }
.basic-summary-card h2,
.package-ideal-grid h3 {
    margin: 0;
    color: #f00018;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.basic-summary-card ul { padding: .8rem 0 1.3rem; margin: 0; list-style: none; }
.basic-summary-card li { position: relative; padding: .75rem 0 .75rem 1rem; border-bottom: 1px solid rgba(255,255,255,.08); color: #d1d4d8; }
.basic-summary-card li::before { content: "+"; position: absolute; left: 0; color: #f00018; font-weight: 800; }
.basic-summary-card .exterior-btn { width: 100%; }
.basic-note { margin: 1rem 0 0; color: #70747b; font-size: .78rem; text-align: center; }
.package-included { background: linear-gradient(180deg, rgba(70,0,7,.18), transparent 12rem); }
.package-feature-grid { grid-template-columns: repeat(3, 1fr); }
.premium-feature-grid { grid-template-columns: repeat(4, 1fr); }
.package-number { display: block; margin-bottom: 1rem; color: #f00018; font-family: Oswald, sans-serif; font-weight: 700; }
.package-compare-table {
    margin-top: 3.2rem;
    border: 1px solid rgba(255,255,255,.12);
    background: #111;
}
.package-compare-table > div { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.08); }
.package-compare-table > div:last-child { border-bottom: 0; }
.package-compare-table strong,
.package-compare-table span { padding: 1rem 1.15rem; color: #d9dce0; font-size: .9rem; line-height: 1.4; }
.package-compare-table strong { color: #747a82; font-family: Oswald, sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.package-compare-table strong:nth-child(2) { color: #f00018; }
.package-compare-basic > div > :nth-child(2) { background: rgba(75,0,8,.42); }
.package-compare-premium strong:nth-child(2) { color: #747a82; }
.package-compare-premium strong:nth-child(3) { color: #f00018; }
.package-compare-premium > div > :nth-child(3) { background: rgba(75,0,8,.42); }
.package-compare-sales strong:nth-child(2) { color: #747a82; }
.package-compare-sales strong:nth-child(4) { color: #f00018; }
.package-compare-sales > div > :nth-child(4) { background: rgba(75,0,8,.42); }
.sales-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.sales-value-grid article { padding: 2rem 1.7rem; border: 1px solid rgba(255,255,255,.12); background: #111; }
.sales-value-grid h3 { margin: 0 0 .8rem; color: #f00018; font-family: Oswald, sans-serif; font-size: 1.65rem; text-transform: uppercase; }
.sales-value-grid p { margin: 0; color: #858b93; line-height: 1.55; }
.package-compare-table .has-check { color: #f00018; font-weight: 900; }
.package-compare-table .has-dash { color: #70747b; }
.package-ideal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
.package-ideal-grid article {
    min-height: 12rem;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: .8rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,.12);
    background: #111;
    text-align: center;
    transition: outline-color .2s ease, box-shadow .2s ease, filter .2s ease;
    outline: 1px solid transparent;
    outline-offset: -1px;
}
.package-ideal-grid article:hover,
.package-ideal-grid article:focus-within {
    outline-color: #f00018;
    box-shadow: 0 0 10px rgba(225,19,24,.88), 0 0 28px rgba(225,19,24,.62), 0 0 58px rgba(225,19,24,.34), inset 0 0 22px rgba(225,19,24,.18);
    animation: service-border-flicker 650ms linear 1;
}
.package-ideal-grid img { width: 2rem; height: 2rem; object-fit: contain; }
.package-ideal-grid p { margin: 0; color: #858b93; line-height: 1.55; }
.basic-cta-button { border: 0; cursor: pointer; }

.about-detail-main { background: radial-gradient(circle at 74% 0, rgba(112,0,10,.28), transparent 28rem), #030303; }
.about-hero {
    position: relative;
    min-height: 46rem;
    display: grid;
    align-items: center;
    padding: 8.5rem 0 2.8rem;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.8) 24%, rgba(0,0,0,.28) 58%, rgba(0,0,0,.72) 100%),
        url('../images/hero_11.webp') center right / cover no-repeat,
        #030303;
    text-align: left;
}
.about-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(0deg, rgba(0,0,0,.92), transparent);
    pointer-events: none;
}
.about-hero-copy { position: relative; z-index: 1; max-width: 37rem; margin-left: 0; padding-left: clamp(3rem, 4.6vw, 5.5rem); }
.about-hero h1,
.about-story h2 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: clamp(3rem, 5.6vw, 5.8rem);
    line-height: .94;
    text-transform: uppercase;
}
.about-hero h1 span { color: #f00018; }
.about-hero p:not(.exterior-kicker) { max-width: 35rem; margin: 1.25rem 0 1.8rem; color: #c4c8cd; line-height: 1.6; }
.about-hero .exterior-actions { justify-content: flex-start; }
.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(7rem, 1fr));
    gap: 0;
    margin-top: clamp(2.5rem, 7vw, 6rem);
    width: min(56rem, calc(100vw - 2rem));
}
.about-hero-stats p {
    display: grid;
    grid-template-columns: 2.2rem auto;
    align-items: center;
    gap: .2rem .85rem;
    margin: 0;
    padding: 0 1.45rem;
    border-right: 1px solid rgba(255,255,255,.18);
}
.about-hero-stats p:first-child { padding-left: 0; }
.about-hero-stats p:last-child { border-right: 0; }
.about-hero-stats i {
    grid-row: span 2;
    color: #f00018;
    font-size: 1.65rem;
    font-style: normal;
    line-height: 1;
}
.about-hero-stats strong {
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
    line-height: 1;
    text-transform: uppercase;
}
.about-hero-stats span {
    color: #8b9097;
    font-family: Oswald, sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.about-story-grid { display: grid; grid-template-columns: minmax(34rem, 44rem) minmax(20rem, 34rem); align-items: center; justify-content: center; gap: clamp(3rem, 7vw, 8rem); }
.about-story .exterior-hero-mark {
    min-height: 34rem;
    place-items: center start;
    filter: none !important;
    box-shadow: none !important;
}
.about-story .exterior-hero-mark::before,
.about-story .exterior-hero-mark::after { display: none !important; }
.about-story .exterior-hero-mark img.about-story-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: none !important;
    box-shadow: none !important;
}
.about-story h2 { margin-bottom: 1.2rem; font-size: clamp(2.2rem, 4vw, 3.5rem); }
.about-story p:not(.exterior-kicker) { color: #a8adb4; line-height: 1.75; }
.about-card-grid { display: grid; gap: 1px; margin-top: 3rem; border-inline: 1.3rem solid rgba(255,255,255,.12); background: rgba(255,255,255,.08); }
.about-value-grid { grid-template-columns: repeat(3, 1fr); }
.about-service-grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; border-inline: 0; background: transparent; }
.about-card-grid article {
    min-height: 12rem;
    padding: 2.2rem 1.6rem;
    background: #111;
    outline: 1px solid transparent;
    outline-offset: -1px;
    transition: outline-color .2s ease, box-shadow .2s ease, filter .2s ease;
}
.about-card-grid article:hover,
.about-card-grid article:focus-within {
    outline-color: #f00018;
    box-shadow: 0 0 10px rgba(225,19,24,.88), 0 0 28px rgba(225,19,24,.62), 0 0 58px rgba(225,19,24,.34), inset 0 0 22px rgba(225,19,24,.18);
    animation: service-border-flicker 650ms linear 1;
}
.about-card-grid img { width: 2rem; height: 2rem; margin-bottom: 1.5rem; object-fit: contain; }
.about-card-grid h3 { margin: 0; color: #fff; font-family: Oswald, sans-serif; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
.about-card-grid p { margin: .7rem 0 0; color: #858b93; line-height: 1.55; }
.about-service-grid a { display: inline-flex; margin-top: 1rem; color: #f00018; font-family: Oswald, sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.about-owner {
    position: relative;
    overflow: hidden;
    min-height: 14.5rem;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(75,0,8,.88), rgba(0,0,0,.98) 33%, rgba(0,0,0,.98) 66%, rgba(0,0,0,.95)),
        #050505;
    border-block: 1px solid rgba(240,0,24,.22);
}
.about-owner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(240,0,24,.14), transparent 31%, transparent 68%, rgba(0,0,0,.72)),
        radial-gradient(circle at 50% 45%, rgba(240,0,24,.09), transparent 16rem);
    pointer-events: none;
}
.about-owner-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(16rem, 29rem) minmax(18rem, 28rem) minmax(17rem, 27rem);
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 3vw, 3.5rem);
    min-height: 14.5rem;
    width: min(100% - 2rem, 88rem);
}
.about-owner-copy h2 {
    margin: .35rem 0 0;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 3rem);
    line-height: 1;
    text-transform: uppercase;
}
.about-owner-copy h2 .brand-name { white-space: nowrap; }
.about-owner-rule {
    display: block;
    width: 3rem;
    height: 2px;
    margin: .75rem 0 .85rem;
    background: #f00018;
}
.about-owner-copy p:not(.exterior-kicker) {
    margin: 0 0 .75rem;
    color: #c3c7cc;
    font-size: .86rem;
    line-height: 1.55;
}
.about-owner-signature {
    margin: 1rem 0 .35rem !important;
    color: #f00018 !important;
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: clamp(2.1rem, 3vw, 3.25rem) !important;
    line-height: 1 !important;
    transform: rotate(-7deg);
}
.about-owner-name,
.about-owner-role {
    display: block;
}
.about-owner-name {
    color: #fff;
    font-size: .95rem;
    letter-spacing: .06em;
}
.about-owner-role {
    margin-top: .15rem;
    color: #969ba3;
    font-weight: 700;
    font-size: .82rem;
}
.about-owner-card {
    position: relative;
    margin: 0;
    align-self: stretch;
    min-height: clamp(18rem, 27vw, 25rem);
    overflow: hidden;
    background: #050505;
}
.about-owner-card img {
    width: 100%;
    height: 100%;
    min-height: clamp(18rem, 27vw, 25rem);
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: none;
    transform: none;
}
.about-owner-card figcaption { display: none; }
.about-owner-proof {
    display: grid;
    align-self: center;
    gap: .75rem;
}
.about-owner-proof blockquote {
    position: relative;
    margin: 0;
    padding: 0 0 .8rem 3rem;
    border-bottom: 2px solid rgba(240,0,24,.55);
    color: #d9dce1;
    font-size: clamp(.95rem, 1.35vw, 1.15rem);
    line-height: 1.35;
}
.about-owner-proof blockquote::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -.45rem;
    color: #f00018;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}
.about-owner-proof-list { display: grid; gap: .8rem; }
.about-owner-proof-list p {
    display: grid;
    grid-template-columns: 2.6rem 1fr;
    margin: 0;
    color: #b7bbc0;
    font-size: .83rem;
    line-height: 1.35;
}
.about-owner-proof-list span {
    grid-row: span 2;
    display: grid;
    width: 2.1rem;
    height: 2.1rem;
    place-items: center;
    border: 2px solid rgba(240,0,24,.75);
    border-radius: 50%;
    color: #f00018;
    font-size: .95rem;
}
.about-owner-proof-list strong {
    display: block;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .9rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.about-package-grid article { text-align: center; }
.about-package-grid .exterior-price { text-align: center; }

@keyframes service-lightning-sweep {
    0% { left: -90%; opacity: 0; }
    12% { opacity: .25; }
    20% { opacity: 1; }
    35% { opacity: .38; }
    52% { opacity: .92; }
    100% { left: 150%; opacity: 0; }
}

@keyframes service-lightning-sweep-mobile {
    0% { left: -55%; opacity: 0; }
    14% { opacity: .28; }
    24% { opacity: .82; }
    45% { opacity: .34; }
    100% { left: 115%; opacity: 0; }
}

@keyframes service-border-flicker {
    0%, 8%, 18%, 32% {
        box-shadow: none;
        filter: brightness(1);
    }
    5%, 12%, 24%, 38% {
        box-shadow:
            0 0 14px rgba(255,255,255,.95),
            0 0 36px rgba(225,19,24,.9),
            inset 0 0 18px rgba(255,255,255,.18);
        filter: brightness(1.18);
    }
    55%, 100% {
        box-shadow:
            0 0 10px var(--tile-glow),
            0 0 28px rgba(225,19,24,.62),
            0 0 58px rgba(225,19,24,.34),
            inset 0 0 22px rgba(225,19,24,.18);
        filter: brightness(1.04);
    }
}

@keyframes service-overexposure {
    0%, 14%, 28%, 100% { opacity: 0; }
    10% { opacity: .16; }
    20% { opacity: .62; }
    34% { opacity: .22; }
}

@media (max-width: 1040px) {
    .site-header { grid-template-columns: 1fr auto; padding-right: 5.3rem; }
    .desktop-nav, .booking-link { display: none; }
    .menu-toggle { display: grid; place-content: center; }
    .hero { grid-template-columns: 1fr; padding-top: 8.5rem; }
    .hero-media { inset: 0; opacity: 1; }
    .hero-slide { background-position: 62% center; }
    .hero-copy { grid-column: 1; max-width: 42rem; margin: 0; }
    .package-grid, .trust-row, .about, .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .service-showcase-grid { grid-template-columns: 1fr 1fr; }
    .service-card { min-height: 20rem; }
    .service-card-content { width: min(30rem, 76%); }
    .service-benefits { grid-template-columns: repeat(2, 1fr); }
    .service-benefits p:nth-child(2) { border-right: 0; }
    .service-benefits p:nth-child(-n + 2) { border-bottom: 1px solid rgba(225,19,24,.26); }
    .service-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-list { grid-column: 1 / -1; }
    .exterior-hero { padding-top: 10rem; }
    .service-hero-full,
    .interior-hero-full { min-height: 100svh; padding: 8rem 0 4rem; }
    .service-hero-bg,
    .interior-hero-bg { background-position: 64% center; }
    .exterior-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .exterior-copy { max-width: 36rem; }
    .exterior-hero-mark { min-height: 20rem; }
    .exterior-service-grid,
    .exterior-package-grid,
    .exterior-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .exterior-step-list { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
    .location-page .exterior-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .location-context-grid { grid-template-columns: 1fr 1fr; }
    .location-context-grid article:first-child { grid-column: 1 / -1; }
    .polish-compare-grid { grid-template-columns: 1fr; }
    .polish-step-list { grid-template-columns: repeat(3, 1fr); }
    .ceramic-step-list { grid-template-columns: repeat(3, 1fr); }
    .package-hero-grid,
    .package-feature-grid,
    .premium-feature-grid,
    .package-ideal-grid,
    .sales-value-grid { grid-template-columns: 1fr; }
    .about-value-grid,
    .about-service-grid { grid-template-columns: 1fr 1fr; }
    .about-hero { background-position: 62% center; }
    .about-hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; row-gap: 1.4rem; }
    .about-hero-stats p:nth-child(2) { border-right: 0; }
    .about-hero-stats p:nth-child(3) { padding-left: 0; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-story .exterior-hero-mark { place-items: center; }
    .about-story .exterior-hero-mark img.about-story-image { width: 100%; }
    .about-owner-grid { grid-template-columns: 1fr; }
    .about-owner-card { width: min(34rem, 100%); justify-self: center; min-height: clamp(19rem, 60vw, 26rem); }
    .about-owner-card img { min-height: clamp(19rem, 60vw, 26rem); object-position: center center; }
    .about-owner-proof { max-width: 34rem; }
    .legal-layout { grid-template-columns: 1fr; }
    .imprint-sidebar { position: static; margin-top: 0; }
    .legal-layout-privacy .privacy-sidebar { order: -1; }
    .legal-split-box,
    .legal-rights-grid { grid-template-columns: 1fr; }
    .legal-service-table > div:first-child { display: none; }
    .legal-service-table > div { grid-template-columns: 1fr; padding: .85rem 0; }
    .legal-service-table span { display: grid; gap: .2rem; padding: .25rem .9rem; }
    .legal-service-table span::before {
        color: #747a82;
        font-family: Oswald, sans-serif;
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .05em;
    }
    .legal-service-table span:nth-child(1)::before { content: "Dienst"; color: #f00018; }
    .legal-service-table span:nth-child(2)::before { content: "Zweck"; }
    .legal-service-table span:nth-child(3)::before { content: "Anbieter"; }
    .legal-service-table span:nth-child(4)::before { content: "Aktivierung"; }
}

@media (max-width: 680px) {
    html, body { width: 100%; overflow-x: hidden; }
    body, main, section, article, div { min-width: 0; }
    .site-header { min-height: 4.9rem; padding: .55rem 4.6rem .55rem .85rem; background: rgba(0,0,0,.97); }
    .brand { grid-template-columns: minmax(0, auto) minmax(7.2rem, 9.2rem); gap: .35rem .6rem; max-width: calc(100vw - 5.6rem); }
    .brand-main { min-width: 0; }
    .brand-main span { font-size: .92rem; line-height: .98; }
    .brand-main .brand-name,
    .brand-main .brand-name span { white-space: nowrap; font-size: .82rem; letter-spacing: .035em; }
    .brand small { gap: .12rem; padding-left: .55rem; font-size: .48rem; letter-spacing: .07em; line-height: 1.12; }
    .car-mark.is-small { width: min(7.2rem, 34vw); margin-bottom: -.06rem; }
    .brand .car-mark.is-small { width: min(6.1rem, 30vw); margin-bottom: -.08rem; }
    .menu-toggle { top: 1rem; right: .85rem; width: 2.8rem; }
    .hero { min-height: 100svh; padding: 7.2rem 1.35rem 4.2rem; align-items: end; }
    .hero::after {
        background:
            linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.54) 62%, rgba(0,0,0,.36)),
            linear-gradient(180deg, rgba(0,0,0,.74) 0%, transparent 32%, rgba(0,0,0,.92) 100%);
    }
    .hero-slide { background-position: 66% center; }
    .hero .car-mark { width: min(13rem, 58vw); margin-bottom: .8rem; }
    .hero h1 { max-width: 100%; font-size: clamp(2.7rem, 12vw, 3.7rem); line-height: .92; overflow-wrap: normal; }
    .hero h1 .brand-name-rest { display: block; }
    .claim { font-size: clamp(1.05rem, 7vw, 1.65rem); letter-spacing: .16em; }
    .about { padding-top: 1.2rem; gap: 1rem; }
    .about-image { min-height: 10rem; }
    .hero-dots { bottom: 1.15rem; }
    .hero-services, .service-showcase-grid, .service-benefits, .package-grid, .trust-row, .about, .gallery-grid { grid-template-columns: 1fr; }
    .btn,
    .booking-link,
    .exterior-btn {
        max-width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }
    .package-grid { max-width: 100%; gap: 1rem; }
    .package-card {
        width: 100%;
        min-width: 0;
        min-height: auto;
        padding: 1.35rem 1rem;
        overflow: hidden;
        border-radius: 6px;
    }
    .package-card.is-featured,
    .exterior-package-grid article.is-featured {
        padding-top: 2.35rem;
    }
    .badge,
    .exterior-badge {
        top: .75rem;
        left: 1rem;
        transform: none;
        max-width: calc(100% - 2rem);
        white-space: nowrap;
    }
    .badge {
        left: 50%;
        transform: translateX(-50%);
    }
    .package-card h3 {
        font-size: clamp(1.45rem, 9vw, 2.25rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }
    .package-card ul { min-height: auto; }
    .package-card .price { margin-top: 1.2rem; }
    .package-card li {
        grid-template-columns: 1.25rem minmax(0, 1fr);
        font-size: .98rem;
        overflow-wrap: anywhere;
    }
    .package-card .car-mark.is-small {
        width: min(14.5rem, 78vw);
        margin: 0 auto .75rem;
    }
    .price { font-size: clamp(2rem, 12vw, 3.3rem); }
    .service-showcase { padding: 1.6rem .85rem 1.2rem; }
    .service-showcase-title { gap: .5rem; margin-bottom: 1rem; }
    .service-showcase-title h2 {
        font-size: clamp(1.45rem, 7vw, 2.05rem);
        letter-spacing: .08em;
        line-height: 1.1;
    }
    .service-card { min-height: 24rem; }
    .service-card-shade {
        background:
            linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.68) 58%, rgba(0,0,0,.3)),
            linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82));
    }
    .service-card-content {
        display: grid;
        grid-template-columns: 2.75rem minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;
        align-content: end;
        align-items: center;
        gap: .35rem .95rem;
        width: 100%;
        padding: 1.25rem;
    }
    .service-card-icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        width: 2.25rem;
        margin: 0;
        border-radius: 4px;
    }
    .service-card-icon img {
        width: 1.45rem;
        height: 1.45rem;
    }
    .service-card h3 {
        grid-column: 2;
        grid-row: 1;
        max-width: 18rem;
        margin: 0;
        font-size: clamp(1.35rem, 7.4vw, 1.8rem);
        overflow-wrap: anywhere;
    }
    .service-card p,
    .service-card ul { max-width: 21rem; }
    .service-card p {
        grid-column: 2;
        grid-row: 2;
        margin: .2rem 0 0;
    }
    .service-card ul {
        grid-column: 1 / -1;
        grid-row: 3;
        margin-top: .85rem;
    }
    .service-card strong {
        grid-column: 1 / -1;
        grid-row: 4;
    }
    .service-benefits {
        padding: .75rem;
        gap: .15rem;
    }
    .service-benefits p,
    .service-benefits p:nth-child(-n + 2) {
        min-height: auto;
        padding: .75rem .4rem;
        border-right: 0;
        border-bottom: 1px solid rgba(225,19,24,.22);
        grid-template-columns: 2.4rem minmax(0, 1fr);
    }
    .service-benefits p:last-child { border-bottom: 0; }
    .service-benefits span { font-size: 2rem; }
    .hero-services article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); padding: .75rem 0; }
    .hero-services article:last-child { border-bottom: 0; }
    .claim { letter-spacing: .16em; }
    .section-pad { padding: 1.45rem .9rem; }
    .section-title { grid-template-columns: 1fr; }
    .section-title span { display: none; }
    .section-title h2 {
        font-size: clamp(1.45rem, 7vw, 2.05rem);
        letter-spacing: .08em;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }
    .trust-row {
        padding: .9rem;
        gap: .75rem;
        overflow: hidden;
    }
    .trust-row p,
    .about-list p {
        grid-template-columns: 2rem minmax(0, 1fr);
        overflow-wrap: break-word;
    }
    .about {
        gap: 1.1rem;
        padding: 1.5rem .9rem;
    }
    .about h2 {
        font-size: clamp(1.8rem, 9vw, 2.45rem);
        overflow-wrap: anywhere;
    }
    .about-list {
        padding: 1rem;
        overflow: hidden;
    }
    .service-area { padding: 3.1rem .85rem 0; }
    .service-area-head { margin-bottom: 1.8rem; }
    .service-area-head > p {
        max-width: 100%;
        padding-inline: 1rem;
        font-size: .75rem;
        letter-spacing: .14em;
    }
    .service-area h2 {
        font-size: clamp(2.2rem, 10vw, 3.3rem);
        overflow-wrap: anywhere;
    }
    .service-area-head strong {
        font-size: .96rem;
        line-height: 1.65;
    }
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
    }
    .service-area-grid article,
    .service-area-grid a {
        display: grid;
        grid-template-columns: 6.5rem minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        justify-items: stretch;
        gap: .25rem .95rem;
        min-height: auto;
        padding: 1rem .9rem;
        text-align: left;
    }
    .service-area-grid article .service-area-icon,
    .service-area-grid a .service-area-icon,
    .service-area-silhouette {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        width: 7.1rem;
        height: auto;
        aspect-ratio: 393 / 83;
        margin: 0;
        border: 0;
        border-radius: 0;
        color: var(--red);
        font-size: 1.05rem;
    }
    .service-area-grid h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        font-size: clamp(1.3rem, 7vw, 1.75rem);
        overflow-wrap: anywhere;
    }
    .service-area-grid p,
    .service-area-grid small {
        grid-column: 2;
        margin: 0;
    }
    .service-area-cta {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.6rem;
        padding: 1rem;
    }
    .service-area-cta p {
        grid-template-columns: 1fr;
        gap: .55rem;
        align-items: flex-start;
        font-size: .95rem;
        line-height: 1.5;
    }
    .service-area-cta .btn {
        width: 100%;
        min-width: 0;
    }
    .footer-main,
    .footer-bottom { justify-content: start; }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom { flex-direction: column; gap: .5rem; }
    .seo-tag-section { padding: 0 .85rem 2rem; }
    .seo-tag-box { padding: 1rem; }
    .exterior-wrap { width: min(100% - 1.4rem, 82rem); }
    .exterior-hero { min-height: auto; padding: 6.2rem 0 2.6rem; }
    .service-hero-full,
    .interior-hero-full {
        display: block;
        min-height: auto;
        padding: 0 0 2.6rem;
        align-items: initial;
        background: #030303;
    }
    .service-hero-full::before,
    .interior-hero-full::before {
        display: none;
    }
    .service-hero-bg,
    .interior-hero-bg {
        position: relative;
        z-index: 0;
        height: min(44vh, 22rem);
        min-height: 14.5rem;
        margin-bottom: 0;
        background-position: 64% center;
    }
    .location-page .location-hero {
        display: grid;
        min-height: auto;
        padding: 5.4rem 0 1.4rem;
        background:
            linear-gradient(180deg, rgba(3,3,3,.82), rgba(3,3,3,.97)),
            #030303;
    }
    .exterior-hero-grid { gap: 1.35rem; }
    .service-hero-full .exterior-hero-grid,
    .interior-page .interior-hero-full .exterior-hero-grid {
        position: relative;
        z-index: 1;
        padding: 1.5rem .95rem 0;
        background:
            radial-gradient(circle at 90% 0, rgba(240,0,24,.18), transparent 14rem),
            #030303;
    }
    .location-page .service-hero-full .exterior-hero-grid {
        order: 1;
        padding: 1.15rem .95rem 0;
        background: #030303;
    }
    .location-page .service-hero-full .exterior-copy h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 13.2vw, 4.05rem);
        line-height: .9;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }
    .location-page .service-hero-full .exterior-lead {
        max-width: 100%;
        margin-top: 1rem;
        font-size: .98rem;
        line-height: 1.55;
    }
    .location-page .service-hero-full .exterior-actions {
        gap: .8rem;
        margin-top: 1.4rem;
    }
    .location-page .service-hero-full .exterior-btn {
        min-height: 3.35rem;
    }
    .exterior-copy h1 { font-size: clamp(2.45rem, 12vw, 3.55rem); }
    .service-hero-full .exterior-copy h1,
    .interior-page .interior-hero-full .exterior-copy h1 {
        font-size: clamp(3.3rem, 16vw, 5.2rem);
    }
    .service-hero-full .exterior-lead,
    .interior-page .interior-hero-full .exterior-lead {
        font-size: .95rem;
    }
    .service-hero-full .exterior-actions,
    .interior-page .interior-hero-full .exterior-actions {
        align-items: stretch;
    }
    .service-hero-full .exterior-btn,
    .interior-page .interior-hero-full .exterior-btn {
        flex: 1 1 100%;
        min-width: 0;
    }
    .exterior-lead { font-size: .92rem; }
    .exterior-actions { align-items: stretch; }
    .exterior-btn { flex: 1 1 100%; min-width: 0; }
    .exterior-stats { grid-template-columns: 1fr; gap: .55rem; max-width: none; margin-top: 1.2rem; padding-top: 1rem; }
    .service-hero-full .exterior-stats,
    .interior-page .interior-hero-full .exterior-stats {
        grid-template-columns: 1fr;
        gap: .85rem;
        margin-top: 1.6rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,.15);
    }
    .location-page .service-hero-full .exterior-stats {
        gap: .65rem;
        margin-top: 1.45rem;
    }
    .service-hero-full .exterior-stats p,
    .interior-page .interior-hero-full .exterior-stats p {
        grid-template-columns: 2.4rem minmax(0, 1fr);
        padding: 0;
        border-right: 0;
    }
    .location-page .service-hero-full .exterior-stats p {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: .1rem .8rem;
    }
    .location-page .service-hero-full .exterior-stats i {
        font-size: 1.65rem;
    }
    .location-page .service-hero-full .exterior-stats strong {
        font-size: clamp(1.8rem, 9vw, 2.55rem);
    }
    .exterior-stats p { display: grid; grid-template-columns: minmax(4.8rem, auto) minmax(0, 1fr); align-items: center; gap: .8rem; }
    .exterior-stats strong { font-size: clamp(2.3rem, 12vw, 3.1rem); line-height: .95; word-break: normal; }
    .exterior-stats span { margin-top: 0; font-size: .68rem; letter-spacing: .03em; }
    .exterior-hero-mark { min-height: 11.5rem; margin-top: .4rem; overflow: hidden; }
    .exterior-hero-mark .ring-one { width: min(20rem, 88vw); }
    .exterior-hero-mark .ring-two { width: min(14.5rem, 65vw); }
    .exterior-hero-mark .car-mark,
    .exterior-hero-mark img { width: min(18rem, 76vw); }
    .exterior-section { padding: 2.35rem 0; }
    .exterior-heading { text-align: left; }
    .exterior-heading .exterior-kicker::before { display: inline-block; }
    .exterior-service-grid,
    .exterior-package-grid,
    .exterior-gallery-grid { grid-template-columns: 1fr; }
    .location-page .exterior-service-grid { grid-template-columns: 1fr; }
    .location-context { padding-top: 0; }
    .location-context-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .location-context-grid article {
        padding: 1.45rem 1rem;
        overflow: hidden;
    }
    .location-context-grid h2 {
        font-size: clamp(1.8rem, 9vw, 2.55rem);
        overflow-wrap: anywhere;
    }
    .location-context-grid h3,
    .location-context-grid li,
    .location-context-grid p {
        overflow-wrap: break-word;
    }
    .exterior-service-grid { border-inline-width: .45rem; margin-top: 1.6rem; }
    .exterior-service-grid article { min-height: auto; padding: 1.65rem 1.05rem; }
    .exterior-service-grid article,
    .package-feature-grid article,
    .premium-feature-grid article,
    .package-ideal-grid article,
    .about-card-grid article {
        display: grid;
        grid-template-columns: 2.75rem minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        justify-items: stretch;
        align-content: start;
        gap: .35rem .95rem;
        min-height: auto;
        text-align: left;
    }
    .exterior-service-grid article > img,
    .package-feature-grid article > img,
    .premium-feature-grid article > img,
    .package-ideal-grid article > img,
    .about-card-grid article > img {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        width: 2rem;
        height: 2rem;
        margin: 0;
    }
    .package-feature-grid .package-number,
    .premium-feature-grid .package-number {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        margin: 0;
        font-size: 1.2rem;
        line-height: 1;
    }
    .exterior-service-grid article > h3,
    .package-feature-grid article > h3,
    .premium-feature-grid article > h3,
    .package-ideal-grid article > h3,
    .about-card-grid article > h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0;
        min-width: 0;
    }
    .exterior-service-grid article > p,
    .package-feature-grid article > p,
    .premium-feature-grid article > p,
    .package-ideal-grid article > p,
    .about-card-grid article > p {
        grid-column: 2;
        grid-row: 2;
        min-width: 0;
        margin: .2rem 0 0;
    }
    .exterior-service-grid article > small,
    .exterior-service-grid article > .ceramic-service-note {
        grid-column: 2;
        grid-row: 3;
        min-width: 0;
        margin: .75rem 0 0;
        align-self: start;
    }
    .about-service-grid article > a {
        grid-column: 1 / -1;
        grid-row: 3;
        display: flex;
        width: 100%;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
        border: 1px solid rgba(240,0,24,.78);
        color: #fff;
        background: rgba(240,0,24,.08);
        text-align: center;
    }
    .exterior-process { padding: 2.8rem 0; }
    .exterior-step-list { grid-template-columns: 1fr; margin-top: 2.5rem; border-top: 0; border-left: 2px solid rgba(255,255,255,.16); padding: 0 0 0 1.1rem; }
    .exterior-step-list::before { top: 0; left: -2px; width: 2px; height: var(--timeline-progress); }
    .exterior-step-list li { padding: 0 0 0 1rem; }
    .exterior-step-list li::before { top: .55rem; left: -1.15rem; width: .85rem; height: 1px; }
    .polish-step-list { grid-template-columns: 1fr; }
    .polish-target-mark { width: min(10rem, 48vw); }
    .polish-compare { padding-top: 1rem; }
    .polish-compare-grid { margin-top: 2rem; }
    .polish-compare-grid article { padding: 1.1rem; }
    .ceramic-shield-mark { width: min(13rem, 62vw); }
    .ceramic-compare-layout { grid-template-columns: 1fr; gap: 2rem; }
    .ceramic-compare-copy { max-width: 38rem; }
    .ceramic-table { overflow: hidden; }
    .ceramic-table > div:first-child { display: none; }
    .ceramic-table > div { grid-template-columns: 1fr 1fr; padding: 1rem 0; }
    .ceramic-table span { padding: .25rem 1rem; }
    .ceramic-table span:first-child { grid-column: 1 / -1; margin-bottom: .45rem; color: #fff; font-size: 1rem; }
    .ceramic-table span:nth-child(2),
    .ceramic-table span:nth-child(3) { display: block; }
    .ceramic-table > div > :nth-child(2) { border-block: 0; border-left: 1px solid rgba(240,0,24,.55); border-right: 0; }
    .ceramic-table span i { margin-right: .45rem; }
    .ceramic-table span:nth-child(2)::before,
    .ceramic-table span:nth-child(3)::before {
        color: #747a82;
        font-family: Oswald, sans-serif;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        display: block;
        margin-bottom: .35rem;
    }
    .ceramic-table span:nth-child(2)::before { content: "Keramikversiegelung"; color: #f00018; }
    .ceramic-table span:nth-child(3)::before { content: "Wachs"; }
    .ceramic-step-list { grid-template-columns: 1fr; }
    .exterior-package-grid { gap: 1rem; }
    .exterior-package-grid,
    .exterior-gallery-grid { margin-top: 1.65rem; }
    .exterior-package-grid article { width: 100%; min-width: 0; padding: 1.65rem 1.05rem 1.35rem; overflow: hidden; }
    .exterior-package-grid article.is-featured { padding-top: 2.35rem; }
    .exterior-package-grid h3 { font-size: clamp(1.2rem, 8vw, 2rem); overflow-wrap: anywhere; text-align: left; }
    .exterior-package-grid li { font-size: .92rem; overflow-wrap: anywhere; }
    .exterior-price { font-size: clamp(2rem, 13vw, 3.1rem); overflow-wrap: anywhere; }
    .exterior-package-grid ul { min-height: auto; }
    .exterior-gallery::after { width: 75vw; bottom: 8rem; }
    .exterior-gallery figure { min-height: 15rem; }
    .appointment-dialog { width: calc(100% - .8rem); max-height: calc(100vh - .8rem); margin: .4rem auto; padding: 1rem; }
    .appointment-head { gap: 1rem; }
    .appointment-grid { grid-template-columns: 1fr; }
    .appointment-actions { flex-direction: column; align-items: stretch; }
    .appointment-submit,
    .appointment-cancel { width: 100%; }
    .appointment-success { right: .5rem; bottom: .5rem; max-width: calc(100vw - 1rem); }
    .package-hero { min-height: auto; padding: 6.4rem 0 3rem; }
    .package-hero-grid { width: min(100% - 1.2rem, 104rem); gap: 1.35rem; }
    .sales-package-page .package-hero-grid { width: min(100% - 2rem, 104rem); }
    .sales-package-page .exterior-copy h1 {
        max-width: 100%;
        font-size: clamp(2.45rem, 13vw, 3.55rem);
        line-height: .95;
        overflow-wrap: anywhere;
        word-break: normal;
    }
    .sales-package-page .exterior-lead {
        max-width: 100%;
        font-size: .98rem;
        overflow-wrap: break-word;
    }
    .sales-package-page .exterior-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }
    .sales-package-page .exterior-actions .exterior-btn {
        width: 100%;
        min-width: 0;
    }
    .basic-summary-card {
        width: 100%;
        min-width: 0;
        padding: 1.4rem 1rem;
        overflow: hidden;
    }
    .basic-summary-card h2 {
        font-size: clamp(1.35rem, 8vw, 2rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }
    .basic-summary-card li {
        font-size: .95rem;
        overflow-wrap: anywhere;
    }
    .package-feature-grid,
    .premium-feature-grid,
    .package-ideal-grid,
    .sales-value-grid { gap: 1rem; }
    .package-feature-grid article,
    .premium-feature-grid article,
    .package-ideal-grid article,
    .sales-value-grid article,
    .about-card-grid article {
        width: 100%;
        min-width: 0;
        padding: 1.45rem 1rem;
        overflow: hidden;
    }
    .package-feature-grid h3,
    .premium-feature-grid h3,
    .package-ideal-grid h3,
    .sales-value-grid h3,
    .about-card-grid h3 {
        overflow-wrap: anywhere;
    }
    .package-feature-grid p,
    .premium-feature-grid p,
    .package-ideal-grid p,
    .sales-value-grid p,
    .about-card-grid p {
        overflow-wrap: break-word;
    }
    .package-compare-table {
        margin-top: 2rem;
        overflow: hidden;
    }
    .package-compare-table > div:first-child { display: none; }
    .package-compare-table > div { grid-template-columns: repeat(3, 1fr); padding: 1rem 0; }
    .package-compare-table span {
        min-width: 0;
        padding: .3rem .55rem;
        font-size: .8rem;
        overflow-wrap: anywhere;
    }
    .package-compare-table span:first-child {
        grid-column: 1 / -1;
        margin-bottom: .45rem;
        color: #fff;
        font-size: .95rem;
    }
    .package-compare-table span:nth-child(2)::before,
    .package-compare-table span:nth-child(3)::before,
    .package-compare-table span:nth-child(4)::before {
        display: block;
        margin-bottom: .25rem;
        color: #747a82;
        font-family: Oswald, sans-serif;
        font-size: .64rem;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .package-compare-table span:nth-child(2)::before { content: "Basic"; color: #f00018; }
    .package-compare-table span:nth-child(3)::before { content: "Premium"; }
    .package-compare-table span:nth-child(4)::before { content: "Verkauf"; }
    .package-ideal-grid { margin-top: 2rem; }
    .about-hero {
        min-height: auto;
        padding: 9.4rem 0 2.6rem;
        text-align: left;
        background:
            linear-gradient(90deg, rgba(0,0,0,.98), rgba(0,0,0,.86)),
            url('../images/hero_11.webp') 72% top / cover no-repeat,
            #030303;
    }
    .about-hero-copy { max-width: 100%; padding-left: clamp(1.45rem, 6vw, 2.4rem); padding-right: clamp(1rem, 5vw, 1.8rem); }
    .about-hero h1 { font-size: clamp(2.7rem, 14vw, 4.25rem); line-height: .9; }
    .about-hero p:not(.exterior-kicker) { font-size: .98rem; line-height: 1.55; }
    .about-hero .exterior-actions { display: grid; grid-template-columns: 1fr; gap: .8rem; }
    .about-hero .exterior-btn { width: 100%; justify-content: center; }
    .about-hero .exterior-actions { justify-content: flex-start; }
    .about-hero-stats { grid-template-columns: 1fr 1fr; gap: 1.2rem 0; margin-top: 2.2rem; }
    .about-hero-stats p { padding: 0 .8rem; }
    .about-hero-stats p:nth-child(odd) { padding-left: 0; }
    .about-hero-stats p:nth-child(even) { border-right: 0; }
    .about-hero-stats strong { font-size: 1.45rem; }
    .about-hero-stats span { font-size: .62rem; }
    .about-stats-grid,
    .about-story-grid,
    .about-value-grid,
    .about-service-grid,
    .about-owner-grid { grid-template-columns: 1fr; }
    .about-story .exterior-hero-mark { min-height: auto; }
    .about-owner-copy h2 { font-size: clamp(2.3rem, 12vw, 3.6rem); }
    .about-owner { min-height: auto; }
    .about-owner-grid { min-height: auto; gap: 1.5rem; }
    .about-owner-card { width: 100%; min-height: clamp(18rem, 72vw, 25rem); order: -1; }
    .about-owner-card img { min-height: clamp(18rem, 72vw, 25rem); object-position: center center; transform: none; }
    .about-owner-proof blockquote { padding-left: 2.5rem; font-size: 1rem; }
    .about-owner-proof blockquote::before { font-size: 4rem; }
    .about-owner-proof-list p { grid-template-columns: 2.75rem 1fr; }
    .about-stats p { min-height: 5.5rem; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
    .about-stats p:last-child { border-bottom: 0; }
    .about-card-grid { border-inline-width: .7rem; margin-top: 2rem; }
    .about-service-grid { border-inline: 0; }
    .imprint-sidebar,
    .imprint-location-card,
    .imprint-contact-card {
        width: 100%;
        min-width: 0;
        overflow: hidden;
    }
    .legal-main {
        padding-top: 5rem;
        overflow: hidden;
    }
    .legal-hero {
        padding: 1.7rem .85rem 1.2rem;
    }
    .legal-hero .section-title h1 {
        font-size: clamp(2.5rem, 12vw, 3.6rem);
        overflow-wrap: anywhere;
    }
    .legal-layout {
        width: min(100% - 1rem, 86rem);
        padding-bottom: 2.5rem;
        overflow: hidden;
    }
    .legal-page .legal-content {
        max-width: none;
        width: 100%;
        margin-top: 1.2rem;
        margin-bottom: 2rem;
        padding: 1.2rem .9rem;
        overflow: hidden;
    }
    .legal-content,
    .imprint-section,
    .imprint-section p,
    .imprint-box,
    .legal-list li,
    .legal-split-box > div,
    .legal-service-table span {
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }
    .imprint-section { margin-bottom: 1.8rem; }
    .imprint-section h2 {
        align-items: flex-start;
        gap: .55rem;
        font-size: clamp(1.35rem, 7.6vw, 2rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }
    .imprint-section h2 span {
        flex: 0 0 auto;
        margin-top: .12rem;
    }
    .imprint-section h3 {
        font-size: clamp(1rem, 5.4vw, 1.35rem);
        overflow-wrap: anywhere;
    }
    .imprint-section p {
        font-size: .98rem;
        line-height: 1.62;
    }
    .imprint-box { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-card-bg {
        transition: none;
    }
}

.test-service-page .site-footer { margin-top: 0; }
.services-overview {
    padding-top: 6.8rem;
    background: #030404;
}
.services-overview-hero {
    min-height: 28rem;
    padding: 1.25rem clamp(1.25rem, 3.5vw, 4rem) 3rem;
    border-top: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(90deg, rgba(3,4,4,.98) 0%, rgba(3,4,4,.88) 34%, rgba(3,4,4,.16) 76%, rgba(3,4,4,.9) 100%),
        url('../images/hero_4.webp') right center / min(78rem, 72%) auto no-repeat,
        #050607;
}
.services-overview-breadcrumb a {
    color: #d9d9d9;
    text-decoration: none;
}
.services-overview-breadcrumb a:hover,
.services-overview-breadcrumb a:focus-visible { color: var(--red); }
.services-overview-copy {
    width: min(100%, 40rem);
    margin-top: 3.2rem;
}
.services-overview-copy h1 {
    position: relative;
    margin: 0;
    padding-bottom: 1rem;
    font-family: Oswald, sans-serif;
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 1;
    text-transform: uppercase;
}
.services-overview-copy h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4.5rem;
    height: 3px;
    background: var(--red);
}
.services-overview-copy > p {
    max-width: 33rem;
    margin: 1.5rem 0 1.8rem;
    color: #f0f0f0;
    font-size: 1.05rem;
    line-height: 1.7;
}
.services-category-section {
    padding: 0 clamp(1.25rem, 3.5vw, 4rem) 3rem;
}
.services-category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}
.services-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 28rem;
    overflow: hidden;
    padding: 12.7rem 1.25rem 1.15rem;
    border: 1px solid rgba(255,255,255,.18);
    background: #060707;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.services-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(4,5,6,.82) 42%, rgba(4,5,6,.98) 100%),
        linear-gradient(90deg, rgba(0,0,0,.45), transparent 50%, rgba(0,0,0,.35));
}
.services-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    border: 1px solid rgba(225,19,24,.95);
    box-shadow:
        0 0 0 1px rgba(225,19,24,.28) inset,
        0 0 26px rgba(225,19,24,.34);
    transition: opacity .18s ease;
}
.services-category-card:hover,
.services-category-card:focus-within {
    border-color: rgba(225,19,24,.95);
    box-shadow: 0 0 28px rgba(225,19,24,.26);
    transform: translateY(-2px);
}
.services-category-card:hover::after,
.services-category-card:focus-within::after {
    opacity: 1;
    animation: service-card-border-flash .72s ease both;
}
.services-category-bg {
    position: absolute;
    inset: 0 0 auto;
    width: 100%;
    height: 13rem;
    object-fit: cover;
    filter: grayscale(.45) contrast(1.22) brightness(.82);
}
.services-category-icon {
    position: absolute;
    top: 10.4rem;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 4.3rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #f41f27, #a0000a);
    box-shadow: 0 0 24px rgba(225,19,24,.38);
    transform: translateX(-50%);
}
.services-category-icon img {
    width: 2.35rem;
    height: 2.35rem;
    object-fit: contain;
}
.services-category-card h3,
.services-category-card p,
.services-category-card ul,
.services-category-card a {
    position: relative;
    z-index: 2;
}
.services-category-card h3 {
    margin: 0 0 .85rem;
    font-family: Oswald, sans-serif;
    font-size: 1.55rem;
    line-height: 1.08;
    text-align: center;
    text-transform: uppercase;
}
.services-category-card p {
    margin: 0 0 .95rem;
    color: #d8d8d8;
    line-height: 1.45;
}
.services-category-card ul {
    flex: 1 1 auto;
    min-height: 5.8rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}
.services-category-card li {
    position: relative;
    margin: .35rem 0;
    padding-left: 1.2rem;
    color: #eeeeee;
    font-size: .9rem;
}
.services-category-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}
.services-category-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    min-height: 2.8rem;
    padding: 0 1rem;
    border: 1px solid rgba(225,19,24,.75);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
.services-category-card a:hover,
.services-category-card a:focus-visible {
    background: var(--red);
}
@keyframes service-card-border-flash {
    0% { opacity: .25; filter: brightness(2.2); }
    38% { opacity: 1; filter: brightness(1.45); }
    100% { opacity: .9; filter: brightness(1); }
}
.services-overview-advice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1.35rem 1.6rem;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
}
.services-overview-advice > div {
    display: grid;
    grid-template-columns: 3.8rem minmax(0, 1fr);
    gap: 1.3rem;
    align-items: center;
}
.services-overview-advice span {
    color: var(--red);
    font-size: 2.7rem;
}
.services-overview-advice h2 {
    margin: 0 0 .35rem;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.services-overview-advice p {
    margin: 0;
    color: #cfcfcf;
}
.services-overview-advice button {
    min-width: 18rem;
    min-height: 3.1rem;
    border: 1px solid var(--red);
    background: transparent;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}
.test-service-shell {
    padding-top: 6.8rem;
    background:
        radial-gradient(circle at 76% 14%, rgba(225,19,24,.09), transparent 26rem),
        linear-gradient(180deg, #050607, #020303 72%, #030303);
}
.test-service-layout {
    display: grid;
    grid-template-columns: 25rem minmax(0, 1fr);
    min-height: calc(100svh - 6.8rem);
    border-top: 1px solid rgba(255,255,255,.08);
}
.test-service-sidebar {
    padding: 1.35rem clamp(1rem, 3vw, 3rem) 2.5rem;
    border-right: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(180deg, rgba(7,10,12,.96), rgba(2,3,3,.98));
}
.test-sidebar-sticky {
    position: sticky;
    top: 7.6rem;
    width: 100%;
    box-sizing: border-box;
    max-height: none;
    overflow: visible;
    padding: 0;
}
.test-breadcrumb {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 0 0 2.2rem;
    color: #c7c7c7;
    font-size: .78rem;
}
.test-breadcrumb span {
    width: .32rem;
    aspect-ratio: 1;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}
.test-breadcrumb a {
    color: #d9d9d9;
    text-decoration: none;
}
.test-breadcrumb a:hover,
.test-breadcrumb a:focus-visible { color: var(--red); }
.test-service-nav h1,
.test-hero h2,
.test-panel h3,
.test-before-after h3,
.test-faq h3 {
    margin: 0;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.test-service-nav h1 {
    margin-bottom: 1.15rem;
    max-width: 100%;
    font-size: clamp(1.18rem, 1.25vw, 1.42rem);
    line-height: 1.12;
    letter-spacing: .01em;
    white-space: normal;
    overflow-wrap: break-word;
}
.test-service-nav a {
    display: grid;
    grid-template-columns: 2.15rem minmax(0, 1fr) 1.15rem;
    align-items: center;
    gap: .85rem;
    min-height: 4rem;
    padding: .75rem 1rem;
    border: 1px solid rgba(255,255,255,.14);
    border-bottom: 0;
    background: rgba(255,255,255,.015);
    color: #fff;
}
.test-service-nav a span {
    min-width: 0;
    line-height: 1.18;
    overflow-wrap: anywhere;
    hyphens: auto;
}
.test-service-nav a:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.test-service-nav a.is-active {
    border-color: rgba(225,19,24,.88);
    background: linear-gradient(135deg, #b6000e, #650006);
    box-shadow: 0 16px 35px rgba(225,19,24,.18);
}
.test-service-nav img {
    width: 1.8rem;
    aspect-ratio: 1;
    object-fit: contain;
    filter: brightness(1.8);
}
.test-service-nav b {
    justify-self: end;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
}
.test-advice {
    margin-top: 2rem;
    padding: 1.8rem;
    border: 1px solid rgba(255,255,255,.18);
    background: radial-gradient(circle at 20% 0, rgba(225,19,24,.18), transparent 11rem), rgba(255,255,255,.02);
}
.test-advice > span {
    display: grid;
    place-items: center;
    width: 3.2rem;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    color: var(--red);
    font-size: 2.1rem;
}
.test-advice h2 {
    margin: 0 0 1.2rem;
    font-family: Oswald, sans-serif;
    font-size: 1.3rem;
    line-height: 1.25;
}
.test-advice p { margin: 0 0 1.6rem; color: #d7d7d7; line-height: 1.7; }
.test-advice button,
.test-details button {
    width: 100%;
    min-height: 3.05rem;
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}
.test-advice button {
    background: transparent;
    color: var(--red);
}
.test-service-main { min-width: 0; }
.test-service-main,
.test-service-main * {
    min-width: 0;
}
.test-hero {
    min-height: 17.5rem;
    padding: 3rem clamp(1.25rem, 3vw, 3rem);
    background:
        linear-gradient(90deg, rgba(3,5,6,.98) 0%, rgba(3,5,6,.86) 38%, rgba(3,5,6,.16) 72%, rgba(3,5,6,.94) 100%),
        var(--test-hero-image) right center / min(70rem, 68%) auto no-repeat,
        #050607;
}
.test-hero > div { width: min(100%, 46rem); }
.test-hero h2 {
    position: relative;
    padding-bottom: .9rem;
    font-size: clamp(2.3rem, 4vw, 3.2rem);
}
.test-hero h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 3px;
    background: var(--red);
}
.test-hero p {
    max-width: 42rem;
    margin: 1.25rem 0 2rem;
    color: #ececec;
    font-size: 1.05rem;
    line-height: 1.65;
}
.test-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.test-facts p {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    align-items: center;
    gap: .75rem;
    margin: 0;
    color: #fff;
    font-size: .86rem;
    line-height: 1.25;
}
.test-facts img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}
.test-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, .8fr);
    gap: 1.2rem;
    padding: 1.25rem clamp(1.25rem, 3vw, 3rem) 2.5rem;
}
.test-package-section {
    padding: 0 clamp(1.25rem, 3vw, 3rem) 2.6rem;
}
.test-package-section > h3 {
    margin: 0 0 .8rem;
    font-family: Oswald, sans-serif;
    font-size: 1.18rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.test-package-section > h3 span { color: var(--red); }
.test-package-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .9rem;
}
.related-categories {
    padding: 0 clamp(1.25rem, 3vw, 3rem) 2.4rem;
}
.related-categories h3 {
    margin: 0 0 .9rem;
    font-family: Oswald, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.related-categories h3 span { color: var(--red); }
.related-categories > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}
.related-category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 15rem;
    overflow: hidden;
    padding: 1.15rem;
    border: 1px solid rgba(255,255,255,.16);
    background: #050607;
    color: #fff;
    text-decoration: none;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.related-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.88)),
        radial-gradient(circle at 50% 46%, rgba(225,19,24,.18), transparent 7rem);
}
.related-category-card:hover,
.related-category-card:focus-visible {
    border-color: rgba(225,19,24,.95);
    box-shadow: 0 0 28px rgba(225,19,24,.28), inset 0 0 0 1px rgba(225,19,24,.28);
    transform: translateY(-2px);
}
.related-category-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 54%;
    object-fit: cover;
    opacity: .72;
    filter: grayscale(.35) brightness(.6) contrast(1.15);
}
.related-category-card > span,
.related-category-card strong,
.related-category-card small,
.related-category-card b {
    position: relative;
    z-index: 2;
}
.related-category-card > span {
    display: grid;
    place-items: center;
    width: 3.2rem;
    aspect-ratio: 1;
    margin: 0 auto 1rem;
    background: transparent;
    box-shadow: none;
}
.related-category-card > span img {
    width: 1.75rem;
    aspect-ratio: 1;
    object-fit: contain;
    filter: brightness(1.6) drop-shadow(0 0 12px rgba(225,19,24,.35));
}
.related-category-card strong {
    min-height: 3.1rem;
    font-family: Oswald, sans-serif;
    font-size: clamp(1.15rem, 1.5vw, 1.55rem);
    line-height: 1.02;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.related-category-card small {
    min-height: 3.2rem;
    margin-top: .75rem;
    color: #d2d2d2;
    font-size: .9rem;
    line-height: 1.45;
}
.related-category-card b {
    margin-top: 1rem;
    padding-top: .9rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.test-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 15.3rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    background: #050607;
}
.test-package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.78) 48%, rgba(5,6,7,.3) 100%),
        linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72));
}
.test-package-card-bg {
    position: absolute;
    inset: 0 0 0 auto;
    width: 64%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    filter: grayscale(.35) contrast(1.2) brightness(.72);
}
.test-package-card-head,
.test-package-card ul,
.test-package-card-foot {
    position: relative;
    z-index: 2;
}
.test-package-card-head {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1fr);
    gap: .9rem;
    align-items: start;
    padding: 1rem 1rem .3rem;
}
.test-package-card-head > div {
    display: contents;
}
.test-package-card-head > img {
    width: 2.9rem;
    height: 2.9rem;
    object-fit: contain;
}
.test-package-card h4 {
    margin: 0;
    font-family: Oswald, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.test-package-card-head p {
    grid-column: 1 / -1;
    width: 100%;
    margin: .3rem 0 0;
    color: #e7e7e7;
    font-size: .78rem;
    line-height: 1.35;
}
.test-package-card ul {
    flex: 1 1 auto;
    min-height: 5.7rem;
    margin: .35rem 0 0;
    padding: 0 1rem 0 1.25rem;
    list-style: none;
}
.test-package-card li {
    position: relative;
    margin: .18rem 0;
    padding-left: .9rem;
    color: #e9e9e9;
    font-size: .78rem;
}
.test-package-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}
.test-package-card-foot {
    display: grid;
    grid-template-columns: auto minmax(8rem, 1fr);
    align-items: center;
    gap: .8rem;
    margin-top: auto;
    padding: .7rem 1rem 1rem;
    border-top: 1px solid rgba(255,255,255,.14);
}
.test-package-card-foot p {
    margin: 0;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}
.test-package-card-foot small {
    color: #fff;
    font-size: .8rem;
    font-weight: 400;
}
.test-package-card-foot button {
    min-height: 2.25rem;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(0,0,0,.2);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}
.test-package-card-foot button:hover,
.test-package-card-foot button:focus-visible {
    border-color: var(--red);
    color: var(--red);
}
.test-package-modal {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: grid;
    place-items: center;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}
.test-package-modal.is-open {
    visibility: visible;
    opacity: 1;
}
.test-package-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(10px);
    cursor: pointer;
}
.test-package-dialog {
    position: relative;
    z-index: 1;
    display: none;
    width: min(100%, 68rem);
    max-height: min(46rem, calc(100vh - 2rem));
    overflow: auto;
    padding: 1.4rem;
    border: 1px solid rgba(225,19,24,.55);
    background:
        radial-gradient(circle at 20% 0, rgba(225,19,24,.22), transparent 18rem),
        linear-gradient(145deg, #090b0d, #030303);
    box-shadow: 0 24px 80px rgba(0,0,0,.72);
}
.test-package-dialog.is-active { display: block; }
.test-package-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.4rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.22);
    background: #070707;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}
.test-package-dialog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
    gap: 1.4rem;
}
.test-package-kicker {
    margin: 0 0 .45rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    letter-spacing: .14em;
}
.test-package-dialog h2,
.test-package-dialog h3 {
    margin: 0;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.test-package-dialog h2 {
    padding-right: 2.8rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
}
.test-package-dialog h2 span {
    display: block;
    margin-top: .45rem;
    color: var(--red);
    font-size: .72em;
}
.test-package-ideal {
    margin: 1.2rem 0 1.2rem;
    color: #d6d6d6;
    line-height: 1.65;
}
.test-package-ideal strong {
    display: block;
    margin-bottom: .35rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.test-package-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    gap: .6rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: .45rem;
    scroll-snap-type: x mandatory;
}
.test-package-slider img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.16);
    scroll-snap-align: start;
}
.test-package-modal-list,
.test-package-options {
    display: grid;
    gap: .45rem;
    margin: .9rem 0 1.2rem;
    padding: 0;
    list-style: none;
}
.test-package-modal-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.test-package-modal-list li,
.test-package-options li {
    position: relative;
    padding-left: 1.45rem;
    color: #e5e5e5;
    line-height: 1.35;
}
.test-package-modal-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}
.test-package-options li::before {
    content: "+";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}
.test-package-duration {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .8rem;
    margin: 0 0 1.2rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
}
.test-package-duration strong {
    color: var(--red);
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
}
.test-package-modal-actions {
    display: grid;
    grid-template-columns: auto minmax(12rem, 1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 1.3rem;
}
.test-package-modal-actions strong {
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: 2rem;
}
.test-package-modal-actions button {
    min-height: 3rem;
    border: 0;
    background: var(--red);
    color: #fff;
    font-family: Oswald, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}
.test-panel,
.test-before-after,
.test-faq {
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}
.test-panel { padding: 1.55rem; }
.test-details {
    display: flex;
    flex-direction: column;
    min-height: 15.9rem;
}
.test-panel h3,
.test-before-after h3,
.test-faq h3 {
    margin-bottom: 1.35rem;
    font-size: 1.35rem;
}
.test-scope ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.test-scope li {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: .75rem;
    color: #ededed;
    line-height: 1.4;
}
.test-scope li::before {
    content: "\2713";
    color: var(--red);
    font-weight: 900;
}
.test-details p {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1rem;
    margin: 0 0 1.3rem;
    color: #d9d9d9;
}
.test-details strong { color: #fff; font-weight: 500; }
.test-details .is-red {
    color: var(--red);
    font-size: 1.55rem;
    font-weight: 800;
}
.test-details button { margin-top: auto; }
.test-details button.is-ghost { background: transparent; border-color: rgba(255,255,255,.45); }
.test-before-after,
.test-faq { padding: 1.2rem; }
.test-before-after h3 span { color: var(--red); }
.test-before-after > div {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 12rem;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
}
.test-before-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.8) contrast(1.15);
}
.test-before-after b {
    position: absolute;
    inset: 0 auto 0 50%;
    width: 2px;
    background: rgba(255,255,255,.75);
}
.test-faq details {
    border: 1px solid rgba(255,255,255,.12);
    border-bottom: 0;
    background: rgba(255,255,255,.018);
}
.test-faq details:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.test-faq summary {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1.1rem;
    cursor: pointer;
}
.test-faq summary::after { content: "+"; color: #fff; }
.test-faq details[open] summary::after { content: "-"; }
.test-faq details p { margin: 0; padding: 0 1.1rem 1rem; color: #cfcfcf; }
.test-process {
    margin: 0 clamp(1.25rem, 3vw, 3rem) 2.6rem;
    padding: 3.3rem clamp(1.25rem, 3vw, 3rem) 3rem;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
    text-align: center;
}
.location-process {
    margin-top: 0;
    margin-bottom: 0;
}
.test-process > p {
    margin: 0 0 .7rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.test-process h3 {
    max-width: 34rem;
    margin: 0 auto 3.3rem;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    line-height: .96;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.test-process > div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    max-width: 82rem;
    margin: 0 auto;
    text-align: left;
}
.test-process > div::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: rgba(255,255,255,.24);
}
.test-process > div::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: var(--test-process-progress, 0%);
    height: 2px;
    background: var(--red);
    box-shadow: 0 0 14px rgba(225,19,24,.35);
    transition: width .12s linear;
}
.test-process article {
    position: relative;
    min-height: 8rem;
    padding: 1.55rem .9rem 0;
}
.test-process article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: .75rem;
    background: rgba(255,255,255,.28);
}
.test-process article.is-filled::before {
    background: var(--red);
}
.test-process span {
    display: block;
    margin-bottom: 1rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: 1rem;
    font-weight: 800;
}
.test-process strong {
    display: block;
    margin-bottom: .55rem;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: .92rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.test-process article p {
    margin: 0;
    color: #858585;
    font-size: .9rem;
    line-height: 1.45;
}
.service-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    margin: 0 clamp(1.25rem, 3vw, 3rem) 2.8rem;
    padding: 3.4rem clamp(1.25rem, 3vw, 3rem);
    border: 1px solid rgba(255,255,255,.12);
    background:
        radial-gradient(circle at 58% 35%, rgba(225,19,24,.09), transparent 24rem),
        linear-gradient(135deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
}
.service-comparison-copy p {
    position: relative;
    margin: 0 0 2.7rem;
    padding-left: 2.2rem;
    color: var(--red);
    font-family: Oswald, sans-serif;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.service-comparison-copy {
    min-width: 0;
    max-width: 52rem;
}
.service-comparison-copy p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.55rem;
    height: 2px;
    background: var(--red);
    transform: translateY(-50%);
}
.service-comparison-copy h3 {
    margin: 0;
    color: #fff;
    font-family: Oswald, sans-serif;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .015em;
    overflow-wrap: anywhere;
}
.service-comparison-copy span {
    display: block;
    margin-top: 2.2rem;
    max-width: 42rem;
    color: #aeb4bb;
    font-size: 1.02rem;
    line-height: 1.7;
}
.service-comparison-table {
    min-width: 0;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.22);
    box-shadow: 0 26px 80px rgba(0,0,0,.35);
}
.service-comparison-table > div {
    display: grid;
    grid-template-columns: minmax(10rem, .85fr) minmax(13rem, 1.05fr) minmax(10rem, .85fr);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.service-comparison-table > div:last-child { border-bottom: 0; }
.service-comparison-table strong,
.service-comparison-table span {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
    min-height: 3.4rem;
    padding: .9rem 1.15rem;
    color: #d9d9d9;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.service-comparison-table strong {
    color: #6f7780;
    font-family: Oswald, sans-serif;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.service-comparison-table > div > :nth-child(2) {
    border-left: 1px solid rgba(225,19,24,.65);
    border-right: 1px solid rgba(225,19,24,.65);
    background: linear-gradient(90deg, rgba(225,19,24,.38), rgba(95,0,8,.7));
    color: #fff;
    font-weight: 800;
}
.service-comparison-table > div:first-child > :nth-child(2) {
    border-top: 2px solid var(--red);
    color: #fff;
}
.service-comparison-table i {
    display: inline-grid;
    flex: 0 0 1.25rem;
    place-items: center;
    width: 1.25rem;
    aspect-ratio: 1;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: var(--red);
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}
.service-comparison-table > div > :nth-child(3) {
    color: #8e949c;
}
.test-benefits {
    display: none;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
    margin: 0 clamp(1.25rem, 3vw, 3rem) 2.6rem;
    padding: 2rem 0;
    border: 1px solid rgba(255,255,255,.15);
    background: #040606;
}
.test-benefits article {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1rem;
    min-width: 0;
    min-height: 5rem;
    padding: .6rem 1.4rem;
    border-right: 1px solid rgba(255,255,255,.16);
}
.test-benefits article:last-child { border-right: 0; }
.test-benefits img {
    width: 2.6rem;
    height: 2.6rem;
    object-fit: contain;
}
.test-benefits h3 {
    margin: 0 0 .35rem;
    min-width: 0;
    font-family: Oswald, sans-serif;
    font-size: .9rem;
    text-transform: uppercase;
}
.test-benefits p {
    min-width: 0;
    margin: 0;
    color: #c8c8c8;
    font-size: .86rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
    .services-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-overview-advice { align-items: stretch; flex-direction: column; }
    .services-overview-advice button { width: 100%; }
    .test-service-layout { grid-template-columns: 1fr; }
    .test-service-sidebar { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .test-sidebar-sticky {
        position: static;
        max-height: none;
        overflow: visible;
        padding-bottom: 0;
    }
    .test-service-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
    .test-breadcrumb,
    .test-service-nav h1 { grid-column: 1 / -1; }
    .test-service-nav a,
    .test-service-nav a:last-child { border: 1px solid rgba(255,255,255,.14); }
    .test-advice { display: none; }
    .test-benefits { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .test-package-cards { grid-template-columns: 1fr; }
    .test-package-card { min-height: 14rem; }
    .test-process > div { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 1.2rem; }
    .test-process > div::before,
    .test-process > div::after { display: none; }
    .test-process article { border-top: 2px solid rgba(255,255,255,.22); }
    .test-process article.is-filled { border-top-color: var(--red); }
}

@media (max-width: 760px) {
    .services-overview { padding-top: 4.9rem; }
    .services-overview-hero {
        min-height: auto;
        padding: 1rem .85rem 2rem;
        background:
            linear-gradient(180deg, rgba(3,4,4,.78), rgba(3,4,4,.96)),
            url('../images/hero_4.webp') center / cover no-repeat,
            #050607;
    }
    .services-overview-copy { margin-top: 2rem; }
    .services-overview-copy h1 { font-size: clamp(2.6rem, 13vw, 3.8rem); }
    .services-category-section { padding: 0 .85rem 2rem; }
    .services-category-grid { grid-template-columns: 1fr; }
    .services-category-card { min-height: 0; }
    .services-overview-advice { padding: 1rem; }
    .services-overview-advice > div { grid-template-columns: 1fr; gap: .6rem; }
    .test-service-shell { padding-top: 4.9rem; }
    .test-service-sidebar { padding: 1rem .85rem; }
    .test-service-nav { grid-template-columns: 1fr; }
    .test-service-nav a { min-height: 3.4rem; }
    .test-hero {
        padding: 2rem .95rem;
        background:
            linear-gradient(180deg, rgba(3,5,6,.88), rgba(3,5,6,.96)),
            var(--test-hero-image) center / cover no-repeat,
            #050607;
    }
    .test-facts,
    .test-content-grid,
    .test-scope ul,
    .test-benefits { grid-template-columns: 1fr; }
    .test-content-grid { padding: 1rem .85rem 2rem; }
    .test-before-after > div { height: 10rem; }
    .test-process {
        margin: 0 .85rem 2rem;
        padding: 2.4rem .85rem 2rem;
    }
    .test-process h3 {
        margin-bottom: 2rem;
        font-size: clamp(2.1rem, 12vw, 3.1rem);
    }
    .test-process > div {
        grid-template-columns: 1fr;
    }
    .test-process article {
        display: grid;
        grid-template-columns: 3.4rem minmax(0, 1fr);
        align-items: center;
        gap: .35rem .75rem;
        min-height: 0;
        padding: 1.1rem .3rem 1rem;
    }
    .test-process article::before {
        display: none;
    }
    .test-process span {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }
    .test-process strong {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }
    .test-process article p {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: .35rem 0 0;
    }
    .test-package-section { padding: 0 .85rem 2rem; }
    .related-categories {
        padding: 0 .85rem 2rem;
    }
    .related-categories > div {
        grid-template-columns: 1fr;
    }
    .related-category-card {
        min-height: 12rem;
    }
    .service-comparison {
        grid-template-columns: 1fr;
        margin: 0 .85rem 2rem;
        padding: 2rem .95rem;
    }
    .service-comparison-copy p {
        margin-bottom: 1.4rem;
    }
    .service-comparison-copy h3 {
        font-size: clamp(2.2rem, 12vw, 3.4rem);
    }
    .service-comparison-table {
        overflow: visible;
    }
    .service-comparison-table > div {
        grid-template-columns: 1fr;
        min-width: 0;
    }
    .service-comparison-table > div:first-child {
        display: none;
    }
    .service-comparison-table > div {
        padding: 1rem;
        gap: .65rem;
    }
    .service-comparison-table strong,
    .service-comparison-table span {
        min-height: 0;
        padding: 0;
    }
    .service-comparison-table > div > :first-child {
        color: #fff;
        font-family: Oswald, sans-serif;
        font-size: 1rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
    .service-comparison-table > div > :nth-child(2),
    .service-comparison-table > div > :nth-child(3) {
        border: 1px solid rgba(255,255,255,.12);
        padding: .8rem .9rem;
    }
    .service-comparison-table > div > :nth-child(2)::before,
    .service-comparison-table > div > :nth-child(3)::before {
        content: attr(data-label);
        min-width: 4.8rem;
        color: #7f8790;
        font-family: Oswald, sans-serif;
        font-size: .72rem;
        text-transform: uppercase;
        letter-spacing: .08em;
    }
    .service-comparison-table > div > :nth-child(2)::before {
        content: "Pro";
    }
    .service-comparison-table > div > :nth-child(3)::before {
        content: "Kontra";
    }
    .test-benefits { margin: 0 .85rem 2rem; }
    .test-package-section > h3 { font-size: 1rem; line-height: 1.35; }
    .test-package-card-foot,
    .test-package-dialog-grid,
    .test-package-modal-list,
    .test-package-modal-actions {
        grid-template-columns: 1fr;
    }
    .test-package-card-bg { width: 70%; }
    .test-package-modal { padding: .55rem; }
    .test-package-dialog {
        max-height: calc(100vh - 1.1rem);
        padding: 1rem;
    }
    .test-package-dialog h2 { padding-right: 2.5rem; }
    .test-package-slider { grid-auto-columns: 92%; }
    .test-benefits article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .test-benefits article:last-child { border-bottom: 0; }
}

.test-breadcrumb,
.services-overview-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    align-items: center;
    gap: .55rem;
    margin: 0 0 2.1rem;
    color: #aeb4b8;
    font-size: .78rem;
    line-height: 1.25;
}
.test-breadcrumb a,
.services-overview-breadcrumb a {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #d9d9d9;
    font-family: Inter, system-ui, sans-serif;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    text-decoration: none;
    text-transform: none;
}
.test-breadcrumb a:hover,
.test-breadcrumb a:focus-visible,
.services-overview-breadcrumb a:hover,
.services-overview-breadcrumb a:focus-visible {
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--red);
}
.test-breadcrumb span,
.services-overview-breadcrumb span {
    flex: 0 0 auto;
    width: .28rem;
    aspect-ratio: 1;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    opacity: .72;
    transform: rotate(45deg);
}

@media (max-width: 1180px) {
    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-advantage-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 1.4rem;
    }
    .home-advantage-grid article:nth-child(3) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .home-categories {
        padding: 2.4rem .85rem 2rem;
    }
    .home-category-grid,
    .home-advantage-grid {
        grid-template-columns: 1fr;
    }
    .home-category-card {
        min-height: 0;
    }
    .home-quality-panel {
        min-height: auto;
        padding: 1.3rem;
        background:
            linear-gradient(180deg, rgba(2,3,3,.88), rgba(3,3,3,.96)),
            url('../images/hero_4.webp') center / cover no-repeat,
            #050607;
    }
    .home-advantage-grid article,
    .home-advantage-grid article:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
    }
    .home-advantage-grid article:last-child {
        border-bottom: 0;
    }
    .home-appointment-cta {
        align-items: stretch;
        flex-direction: column;
        padding: 1rem;
    }
    .home-appointment-cta > div {
        grid-template-columns: 1fr;
        gap: .55rem;
    }
    .home-appointment-cta .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 760px) {
    .test-process {
        padding-inline: .95rem;
    }
    .test-process h3 {
        max-width: 100%;
        font-size: clamp(2.05rem, 11vw, 3.05rem);
        overflow-wrap: break-word;
    }
    .test-process > div {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 100%;
        padding-left: 1.8rem;
        text-align: left;
    }
    .test-process > div::before,
    .test-process > div::after {
        display: block;
        left: 0;
        right: auto;
        top: 0;
        width: 2px;
    }
    .test-process > div::before {
        height: 100%;
    }
    .test-process > div::after {
        height: var(--test-process-progress, 0%);
    }
    .test-process article {
        display: grid;
        grid-template-columns: 3.2rem minmax(0, 1fr);
        gap: .35rem 1rem;
        min-height: 0;
        padding: 0 0 2.1rem;
        border-top: 0;
    }
    .test-process article:last-child {
        padding-bottom: 0;
    }
    .test-process article::before {
        display: block;
        top: .55rem;
        left: -1.8rem;
        width: 1rem;
        height: 2px;
    }
    .test-process article.is-filled {
        border-top-color: transparent;
    }
    .test-process span {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
    }
    .test-process strong {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }
    .test-process article p {
        grid-column: 2;
        grid-row: 2;
        margin: .35rem 0 0;
    }
}
