/* =========================================================
   0. HOLM – Reset & Design Tokens
   ========================================================= */

:root {
    /* Grundfarben */
    --bg: #f5f7fa;
    --panel: #ffffff;
    --text: #1b2230;
    --muted: #6b7280;
    --line: #e6e8ec;
    --red: #c10f17;
    --red-700: #a70d13;

    /* Layout */
    --wrap: 1400px;
    --wrap-hero: 1680px;
    --gutter: 24px;

    /* Header / Navigation */
    --nav-height: 72px;
    --nav-font: 16px;
    --nav-gap: 14px;

    /* Schatten-Token */
    --shadow: 0 12px 24px rgba(13, 16, 23, 0.06);

    /* Footer-Design */
    --foot-bg: #0f1217;
    --foot-grad: linear-gradient(180deg, #12161d 0%, #0f1217 100%);
    --foot-fg: #f5f5f5;
    --foot-muted: rgba(255, 255, 255, 0.7);
    --foot-line: rgba(255, 255, 255, 0.1);
    --foot-accent: #c10f17;
    --tech-fg: #93a2b8;
    --foot-link: #d8dee9;
    --foot-link-hover: #ffffff;
    --foot-wrap: 1400px;
    --foot-gap: 24px;
    --foot-pad-y: 32px;

    /* Elevation-Defaults (für Schatten-Utilities) */
    --elev-y: 22px;
    --elev-blur: 28px;
    --elev-spread: -18px;
    --elev-top: rgba(13, 16, 23, 0.2);
    --elev-bot: rgba(13, 16, 23, 0.24);
}

/* Reset / Grundtypografie */
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
}
body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font: 18px/1.55 "Roboto", system-ui, -apple-system, Segoe UI, Arial,
        sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   1. Layout-Grundgerüst (Container, Grids, Sections, H2)
   ========================================================= */

.wrap {
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.wrap-hero {
    max-width: var(--wrap-hero);
    margin-inline: auto;
    padding-inline: clamp(20px, 2.5vw, 32px);
}

.grid {
    display: grid;
    gap: 24px;
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Standard-Section-Abstand */
.section {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 8.5vw, 128px) 0;
}

/* Standard-H2 */
.h2 {
    font-size: clamp(26px, 2.8vw, 38px);
    margin: 0 0 18px;
    position: relative;
}

/* Scroll-Offset für Anker (wegen Fixed-Header) */
main {
    padding-top: calc(var(--nav-height) + 1px);
}
.hero,
.page-head,
.section {
    scroll-margin-top: calc(var(--nav-height) + 16px);
}
[id] {
    scroll-margin-top: calc(var(--nav-height) + 18px);
}
@media (max-width: 980px) {
    main {
        padding-top: calc(var(--nav-height) + 8px);
    }
    .hero,
    .page-head,
    .section,
    [id] {
        scroll-margin-top: calc(var(--nav-height) + 12px);
    }
}

/* =========================================================
   2. Header – Fixed Glass, Menü, Holm-Tech Link
   ========================================================= */

/* Header-Layout */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    z-index: 1100;
    -webkit-backdrop-filter: saturate(160%) blur(10px);
    backdrop-filter: saturate(160%) blur(10px);
    background: rgba(255, 255, 255, 0.66);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.header.is-scrolled {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.header .wrap.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--nav-height);
    gap: 22px;
}

/* Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand-logo {
    height: clamp(36px, 4.2vw, 56px);
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    -webkit-user-drag: none;
    user-select: none;
}
.brand .logo {
    display: flex;
    align-items: center;
    gap: 0.3em;
    line-height: 1;
    white-space: nowrap;
}
.brand .logo .holm {
    color: var(--red);
    font-size: clamp(18px, 1.8vw, 18px);
    font-weight: 600;
}
.brand .logo .dash {
    display: inline-block;
    width: 10px;
    height: 2px;
    background: var(--text);
    opacity: 0.25;
    margin: 0 4px;
    transform: translateY(-1px);
}
.brand .logo .dienst {
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 600;
    color: var(--text);
}
.brand .logo:hover {
    opacity: 0.9;
}
@media (max-width: 480px) {
    .brand .logo {
        display: none;
    }
}

/* Menü-Container */
.menu {
    display: flex;
    align-items: center;
    gap: var(--nav-gap);
}
.header .menu a,
.header .menu .btn {
    font-size: var(--nav-font);
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Top-Level-Links */
.menu .menu-item {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.menu .menu-item > a {
    padding: 0 16px;
}

/* Normaler Link-Hover */
.header .menu a:not(.btn):not(.nav-tech):hover {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Rote Unterstreichung (nicht für Buttons / Holm-Tech) */
.header .menu a:not(.btn):not(.nav-tech) {
    position: relative;
    padding: 12px 10px;
}
.header .menu a:not(.btn):not(.nav-tech)::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(
                90deg,
                rgba(193, 15, 23, 0) 0%,
                rgba(193, 15, 23, 1) 22%,
                rgba(193, 15, 23, 1) 78%,
                rgba(193, 15, 23, 0) 100%
            )
            no-repeat 0 100%/100% 2px,
        radial-gradient(
                60% 8px at 50% 120%,
                rgba(193, 15, 23, 0.85) 0%,
                rgba(193, 15, 23, 0) 70%
            )
            no-repeat 0 100%/100% 8px;
    border-radius: 2px;
    box-shadow: 0 0 9px rgba(193, 15, 23, 0.35);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
    pointer-events: none;
}
.header .menu a:not(.btn):not(.nav-tech):hover::after,
.header .menu a:not(.btn):not(.nav-tech).active::after {
    transform: scaleX(1);
}

/* Kontakt-Button */
.header .menu .btn.btn-contact {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(193, 15, 23, 0.22);
}
.header .menu .btn.btn-contact:hover,
.header .menu .btn.btn-contact:focus-visible {
    background: var(--red-700);
    border-color: var(--red-700);
    box-shadow: 0 8px 18px rgba(193, 15, 23, 0.28);
    transform: translateY(-1px);
}
.header .menu .btn:not(.btn-contact):hover {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Holm-Tech Pille */
.header .menu a.nav-tech {
    background: #0f1217;
    color: #e6eef7;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) inset,
        0 1px 0 rgba(255, 255, 255, 0.04);
}
.header .menu a.nav-tech:hover,
.header .menu a.nav-tech:focus-visible {
    background: #131821;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22) inset,
        0 2px 10px rgba(0, 0, 0, 0.14);
}
.header .menu a.nav-tech::after {
    display: none;
}
body.page-tech .header .menu a.nav-tech {
    background: #0b0e13;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26) inset,
        0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Dropdown-Menü (hell) */
.menu .menu-sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 50;
}
.menu .menu-sub a {
    display: block;
    padding: 8px 16px;
    font-size: 0.95rem;
    white-space: nowrap;
    color: var(--text);
}
.menu .menu-sub a:hover {
    background: rgba(0, 0, 0, 0.04);
    color: var(--text);
}
.menu .menu-sub hr {
    border: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    margin: 6px 0;
}
.menu .has-submenu:hover .menu-sub,
.menu .has-submenu:focus-within .menu-sub {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Holm-Tech: dunkles Dropdown */
body.page-tech .menu .menu-sub {
    background: #0b0f16;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
body.page-tech .menu .menu-sub a {
    color: #f9fafb;
}
body.page-tech .menu .menu-sub a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}
body.page-tech .menu .menu-sub hr {
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* Mobile-Menü */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
}
@media (max-width: 980px) {
    .header .menu {
        position: fixed;
        inset: var(--nav-height) 0 auto 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--line);
        flex-direction: column;
        gap: 10px;
        padding: 18px var(--gutter);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: 0.22s ease;
    }
    .header .menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .burger {
        display: inline-grid;
        place-items: center;
    }
    .header .menu .btn.btn-contact,
    .header .menu a.nav-tech {
        width: 100%;
        text-align: center;
    }
    .header .menu a:not(.btn):not(.nav-tech):hover {
        background: rgba(0, 0, 0, 0.08);
        transform: none;
        box-shadow: none;
    }
    body.no-scroll {
        overflow: hidden;
    }

    .menu .menu-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .menu .menu-sub {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 4px 0 0;
    }
    .menu .menu-sub a {
        padding-left: 26px;
        font-size: 0.95rem;
        color: var(--text);
    }
}
.header .menu a:focus-visible,
.header .menu .btn:focus-visible {
    outline: 2px solid rgba(193, 15, 23, 0.6);
    outline-offset: 2px;
}

/* =========================================================
   FIX: Mobile Menü volle Breite + Burger auf TECH dunkel
   ========================================================= */

/* 1) Burger: Icon sauber zentriert + richtige Größe */
.burger {
    display: none; /* bleibt wie gehabt */
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.06); /* Standard (hell) */
    color: var(--text);
    cursor: pointer;

    /* damit das ☰ nicht "klein" wirkt */
    /* display: grid; */
    place-items: center;
    font-size: 24px;
    line-height: 1;
}

/* NUR Holm-Tech: dunkle Pille + helles Icon */
body.page-tech .burger {
    background: rgba(11, 15, 22, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* 2) Mobile-Menü: NICHT begrenzen -> volle Viewport-Breite */
@media (max-width: 980px) {
    /* Burger sichtbar */
    .burger {
        display: grid;
    }

    /* Menü-Container wirklich full width */
    nav#mainMenu.menu {
        position: fixed;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: none;
        margin: 0;

        top: var(--nav-height);
        padding: 18px 16px;

        border-radius: 0 0 16px 16px;

        /* dein Overlay-Verhalten */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.22s ease, transform 0.22s ease;

        z-index: 5000;
        background: rgba(255, 255, 255, 0.96); /* Standard bleibt hell */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    nav#mainMenu.menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Menü-Items dürfen jetzt auch die volle Breite nutzen */
    nav#mainMenu.menu .menu-item,
    nav#mainMenu.menu a {
        width: 100%;
    }

    /* NUR Holm-Tech: Menü-Overlay dunkel lassen (falls du es so willst) */
    body.page-tech nav#mainMenu.menu {
        background: rgba(11, 15, 22, 0.96);
        color: #fff;
    }
    body.page-tech nav#mainMenu.menu a {
        color: #fff;
    }
    body.page-tech nav#mainMenu.menu a:hover {
        background: rgba(255, 255, 255, 0.06);
    }
}
@media (max-width: 980px) {
    /* Holm-Tech: Submenu auf Mobile NICHT als Box */
    body.page-tech .menu .menu-sub {
        background: transparent;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        min-width: 0;
        width: 100%;
        padding: 6px 0 0;
    }

    /* Links im Submenu: keine eigene “Kachel” */
    body.page-tech .menu .menu-sub a {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    /* optional: dezenter Hover nur als Zeile */
    body.page-tech .menu .menu-sub a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    /* optional: die Trennlinie im Submenu weg (wenn sie nervt) */
    body.page-tech .menu .menu-sub hr {
        display: none;
    }
}

/* =========================================================
   3. Buttons, Cards & kleine Utilities
   ========================================================= */

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #fff;
    transition: transform 0.08s, box-shadow 0.12s;
}
.btn:hover {
    border-color: #d7dbe0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}
.btn-primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-700);
}
.btn-ghost {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn--lg {
    padding: 12px 18px;
    font-size: 1.05rem;
}
.muted {
    color: var(--muted);
}
.pad {
    padding: 20px;
}
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.card--lift {
    transition: transform 0.18s, box-shadow 0.18s;
}
.card--lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(13, 16, 23, 0.1);
}

/* =========================================================
   4. Hero – Tech & allgemeine Hero-Elemente
   ========================================================= */

.hero {
    border-bottom: 1px solid var(--line);
}
.hero.hero--panel.hero-tech {
    position: relative;
    isolation: isolate;
    min-height: clamp(420px, 58vh, 720px);
    display: grid;
    place-items: center;
    padding-block: clamp(28px, 6vh, 72px);
    background: linear-gradient(180deg, #fff, #fafbfc);
    overflow: hidden;
}
.hero.hero--panel.hero-tech::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.045) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.03) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 78% 18%,
            rgba(0, 0, 0, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.hero.hero--panel.hero-tech::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: min(1280px, 92vw);
    height: 3px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.25) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.25) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(211, 29, 29, 0.35);
    opacity: 0.92;
}
.hero-inner {
    position: relative;
    z-index: 2;
}
.hero-grid {
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
}
.hero-media {
    justify-self: center;
    align-self: center;
    text-align: center;
    transform: translateX(var(--logo-shift, 0px));
}
.hero-copy h1 {
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.08;
    margin: 0 0 0.6rem;
}
.hero-copy .lead {
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--muted);
    margin: 0.8rem 0 1.4rem;
    max-width: 68ch;
}
.accent {
    color: var(--red);
}
.logo-hero {
    width: clamp(240px, 28vw, 560px);
    height: auto;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.1));
}
@media (max-width: 980px) {
    .grid.grid-2.hero-grid {
        grid-template-columns: 1fr;
    }
    .hero.hero--panel.hero-tech {
        min-height: auto;
        padding-block: 40px;
    }
    .logo-hero {
        width: min(70vw, 400px);
        margin-top: 12px;
    }
}

/* Eyebrow global (kleiner Titel über H1) */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted);
    margin: 0 0 8px;
    opacity: 0.9;
}

/* Hero-CTAs & Facts (global) */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}
.hero-ctas .btn {
    font-weight: 700;
}
.hero-lead {
    font-size: clamp(17px, 1.8vw, 20px);
    max-width: 72ch;
    margin: 12px 0 6px;
}
.hero-facts {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}
.hero-facts li {
    font-size: 0.92rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--muted);
}
@media (max-width: 640px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-facts {
        gap: 8px;
    }
}

/* Hero-Flex mit Bild (z.B. Über mich) */
.hero-flex {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    align-items: center;
}
.hero-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
    object-fit: cover;
}
@media (max-width: 900px) {
    .hero-flex {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   5. Marquee / Strip
   ========================================================= */

.strip {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.strip--muted {
    background: linear-gradient(180deg, #fafbfd, #f7f9fc);
}
.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marquee 35s linear infinite;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px; /* Abstand zwischen Wiederholungen */
    padding-right: 80px; /* kleiner Puffer */
}

.marquee-track > span {
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.marquee-track .holm-color {
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    margin-right: 0.15em;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    } /* wichtig: nur bis zur Hälfte */
}

@media (prefers-reduced-motion: reduce) {
    .marquee-inner {
        animation: none;
    }
}

/* =========================================================
   6. Karten & Grid-Layouts
   ========================================================= */

.grid-cards {
    gap: 24px;
}
/* Bild: einheitlich + grau */
.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;

    /* Filter für Einheitlichkeit */
    filter: saturate(0.25) contrast(1.08) brightness(1.02);
    transition: filter 0.25s ease, transform 0.25s ease;
}

/* Card muss clippen können */
.card {
    overflow: hidden;
    border-radius: 16px; /* oder dein Wert */
}

/* Hover: Farbe zurück + leichtes Zoom */
.card:hover .card-img {
    filter: grayscale(0%) contrast(1.05) brightness(1);
    transform: scale(1.03);
}

/* =========================================================
   7. Tech-Linien-Sections (Holm-Tech Look)
   ========================================================= */

.section--tech-lines {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, #fff, #fafbfc);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding-block: clamp(28px, 6vh, 48px);
}
.section--tech-lines::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.045) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.03) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 92% 12%,
            rgba(0, 0, 0, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.section--tech-lines .wrap,
.section--tech-lines .hl-row,
.section--tech-lines .hl-wide {
    position: relative;
    z-index: 2;
}
.hl-head--center {
    text-align: center;
    margin-bottom: 12px;
}
.hl-sub {
    margin: 6px auto 0;
    max-width: 68ch;
    color: var(--muted);
    font-size: clamp(16px, 1.8vw, 19px);
}
.hl-row {
    display: grid;
    gap: clamp(18px, 3.6vw, 28px);
}
.hl-row--two {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
}
@media (max-width: 980px) {
    .hl-row--two {
        grid-template-columns: 1fr;
    }
}
.hl-wide {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    padding: 22px;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #fffafa);
    border: 1px solid rgba(193, 15, 23, 0.06);
    box-shadow: 0 10px 28px rgba(13, 16, 23, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hl-wide:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(13, 16, 23, 0.1);
}
.hl-head h3 {
    margin: 0 0 6px;
    font-size: clamp(20px, 2.4vw, 24px);
    color: var(--text);
}
.hl-body p {
    margin: 0;
    color: var(--muted);
    max-width: 56ch;
}
.hl-ctas {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.hl-ctas .box {
    width: min(420px, 86%);
    padding: 12px;
    background: linear-gradient(180deg, #fff, #fff7f7);
    box-shadow: 0 8px 20px rgba(193, 15, 23, 0.04);
    display: flex;
    justify-content: center;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--red);
    background: linear-gradient(
        180deg,
        rgba(193, 15, 23, 0.06),
        rgba(193, 15, 23, 0.02)
    );
    border: 1px solid rgba(193, 15, 23, 0.14);
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(13, 16, 23, 0.04);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13, 16, 23, 0.06);
}
.hl-ctas .btn {
    min-width: 160px;
    padding: 15px 110px;
    border-radius: 10px;
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 18px rgba(193, 15, 23, 0.12);
    transition: transform 0.12s, box-shadow 0.12s, filter 0.12s;
}
.hl-ctas .btn:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
}
@media (max-width: 980px) {
    .hl-wide {
        padding: 16px;
        border-radius: 12px;
    }
    .hl-ctas .box {
        width: 92%;
        padding: 10px;
    }
    .hl-ctas .btn {
        min-width: 220px;
    }
}

/* =========================================================
   8. Vertrauen & Nachweise – Full-Width Section
   ========================================================= */

.section--trust {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-inline: clamp(12px, 2vw, 24px);
    box-sizing: border-box;
}
.section--trust .wrap {
    max-width: min(1600px, 98vw);
    margin: 0 auto;
    padding-inline: 16px;
}
.section--trust .trust-head {
    text-align: center;
    margin-bottom: 40px;
}
.section--trust .trust-head .h2 {
    font-size: clamp(32px, 3.6vw, 44px);
    margin-bottom: 14px;
    position: relative;
}
.section--trust .trust-head .h2::after {
    content: "";
    display: block;
    height: 2px;
    width: min(240px, 30vw);
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 8px rgba(193, 15, 23, 0.15);
}
.section--trust .trust-head .muted {
    font-size: clamp(16px, 1.8vw, 20px);
    max-width: 64ch;
    margin: 0 auto;
}
.red-edges::before,
.red-edges::after {
    content: "";
    position: absolute;
    height: 2px;
    width: min(960px, 60vw);
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0),
        rgba(211, 29, 29, 0.8),
        rgba(211, 29, 29, 0)
    );
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(211, 29, 29, 0.3);
}
.red-edges::before {
    top: 0;
    left: 1%;
}
.red-edges::after {
    bottom: 0;
    right: 1%;
}
.section--trust .trust-grid {
    list-style: none;
    margin: 48px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(32px, 4.5vw, 44px);
    align-items: start;
}
.trust-item {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.97),
        rgba(245, 245, 245, 0.9)
    );
    border: 1px solid rgba(193, 15, 23, 0.12);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 18px 40px rgba(13, 16, 23, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease,
        border-color 0.2s ease, background 0.2s ease;
    min-width: 360px;
}
.trust-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 26px 52px rgba(13, 16, 23, 0.16);
    border-color: rgba(193, 15, 23, 0.4);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1),
        rgba(245, 245, 245, 0.94)
    );
}
.trust-item .label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s ease;
}
.trust-item:hover .label {
    color: var(--red);
}
.trust-item .muted {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.5;
    max-width: 48ch;
}
.trust-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(193, 15, 23, 0.14);
    border: 1px solid rgba(193, 15, 23, 0.22);
    color: var(--red);
    transition: background 0.2s ease, transform 0.2s ease;
}
.trust-item:hover .trust-badge {
    background: rgba(193, 15, 23, 0.32);
    transform: scale(1.08);
}
@media (max-width: 980px) {
    .section--trust {
        left: 0;
        right: 0;
        width: 100%;
        margin: 0;
        padding-inline: 12px;
    }
    .section--trust .wrap {
        max-width: 94%;
        padding-inline: 10px;
    }
    .section--trust .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .trust-item {
        padding: 28px 24px;
        min-width: 0;
    }
    .trust-badge {
        font-size: 14px;
        padding: 7px 14px;
    }
    .red-edges::before,
    .red-edges::after {
        width: min(560px, 80vw);
        height: 1.5px;
    }
}
@media (max-width: 640px) {
    .section--trust {
        padding-inline: 10px;
    }
    .section--trust .wrap {
        max-width: 94%;
        padding-inline: 8px;
    }
    .section--trust .trust-grid {
        gap: 28px;
    }
    .trust-item {
        padding: 24px 20px;
    }
    .trust-item .label {
        font-size: 1.2rem;
    }
    .trust-item .muted {
        font-size: clamp(13px, 1.5vw, 15px);
    }
    .trust-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .trust-item {
        transition: none;
    }
}

/* =========================================================
   9. Dunkle Sections & Steps (Ablauf / Projekt)
   ========================================================= */

.section--dark {
    background: linear-gradient(180deg, #12161d, #0e1319);
    color: #e6ebf2;
    position: relative;
    overflow: hidden;
}
.section--dark p,
.section--dark .muted {
    color: #cfd6e0;
}
.section--dark.red-edges .h2,
.section--dark.red-edges .h2 + p {
    text-align: center;
}
.section--dark.red-edges .h2 {
    color: #ffffff;
    margin: 0 0 14px;
    position: relative;
}
.section--dark.red-edges .h2::after {
    content: "";
    display: block;
    height: 3px;
    width: min(320px, 40vw);
    margin: 10px auto 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.35) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.35) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 10px rgba(193, 15, 23, 0.35);
}
.section--dark.red-edges .h2 + p {
    max-width: 760px;
    margin: 4px auto 32px;
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
}

/* Steps-Grid */
.steps {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    margin: 24px 0 32px;
    padding: 0;
}
.section--dark.red-edges .steps li {
    position: relative;
    overflow: hidden;
    background: #0b0f16;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 22px 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    color: #e5e7eb;
    font-size: 0.97rem;
    line-height: 1.55;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
        border-color 0.25s ease, background 0.25s ease;
}
.section--dark.red-edges .steps li:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.9);
    background: #0f151f;
}
.section--dark.red-edges .steps li strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: #f9fafb;
    letter-spacing: 0.01em;
}
.section--dark.red-edges .steps li p {
    margin: 0;
    color: #cfd6e0;
}
.cta-row.center {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.btn--pulse {
    animation: pulse 2.2s infinite ease-in-out;
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(193, 15, 23, 0.22);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 12px 22px rgba(193, 15, 23, 0.28);
    }
}
@media (max-width: 960px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .section--dark.red-edges .steps li {
        padding: 18px;
    }
    .h2 {
        font-size: clamp(24px, 6vw, 32px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .section--dark.red-edges .steps li,
    .btn--pulse {
        transition: none;
        animation: none;
    }
}

/* =========================================================
   10. Über mich – Teaser & Seite
   ========================================================= */

.about-teaser {
    background: linear-gradient(180deg, #fff, #fafbfc);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.about-inner {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    padding: clamp(60px, 8vh, 100px) 0;
}

.about-photo {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;

    /* tief wie deine Elevation-Utilities */
    --elev-y: 28px;
    --elev-blur: 42px;
    --elev-spread: -16px;
    --elev-top: rgba(13, 16, 23, 0.26);
    --elev-bot: rgba(13, 16, 23, 0.3);

    box-shadow: 0 calc(var(--elev-y) * -1) var(--elev-blur) var(--elev-spread)
            var(--elev-top),
        0 var(--elev-y) var(--elev-blur) var(--elev-spread) var(--elev-bot);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo-wrap {
    width: 100%;
    aspect-ratio: 16 / 10; /* oder 4 / 3, je nachdem was dir besser gefällt */
    overflow: hidden;
    border-radius: 20px;

    --elev-y: 28px;
    --elev-blur: 42px;
    --elev-spread: -16px;
    --elev-top: rgba(13, 16, 23, 0.26);
    --elev-bot: rgba(13, 16, 23, 0.3);

    box-shadow: 0 calc(var(--elev-y) * -1) var(--elev-blur) var(--elev-spread)
            var(--elev-top),
        0 var(--elev-y) var(--elev-blur) var(--elev-spread) var(--elev-bot);
}

.about-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 20%; /* HIER entscheidest du den Crop: X% Y% */
}

.about-photo:hover {
    transform: translateY(-3px);
    --elev-y: 34px;
    --elev-blur: 54px;
    --elev-spread: -14px;
    --elev-top: rgba(13, 16, 23, 0.3);
    --elev-bot: rgba(13, 16, 23, 0.34);
}
.about-content {
    position: relative;
    padding: 24px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.9),
        rgba(245, 245, 245, 0.8)
    );
    border-radius: 16px;
    border: 1px solid rgba(193, 15, 23, 0.1);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
    box-shadow: 0 12px 28px rgba(13, 16, 23, 0.06);
}

.about-content .h2 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 16px;
    position: relative;
}

.about-content .h2::after {
    content: "";
    display: block;
    height: 3px;
    width: min(200px, 30vw);
    margin-top: 10px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 10px rgba(193, 15, 23, 0.2);
}
.about-content p {
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 64ch;
}
.bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
}
.bullets li {
    position: relative;
    padding-left: 28px;
    font-size: clamp(15px, 1.7vw, 18px);
    color: var(--text);
}
.bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
    font-size: 18px;
}
.cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* .about-content .cta-row .btn {
    padding: 12px 80px;
    font-weight: 800;
    border-radius: 12px;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    white-space: nowrap;
} */
.about-page {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-page .about-photo.about-large {
    height: 480px;
}
.about-name {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
}
.about-name span {
    color: var(--red);
}
.about-name::after {
    content: "";
    display: block;
    height: 3px;
    width: min(220px, 40vw);
    margin-top: 10px;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 10px rgba(193, 15, 23, 0.2);
}
@media (max-width: 980px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: clamp(40px, 6vh, 80px) 0;
    }
    .about-photo {
        height: 340px;
    }
    .about-page .about-photo.about-large {
        height: 340px;
    }
    .about-content {
        padding: 20px;
        border-radius: 14px;
    }
    .about-content .h2 {
        font-size: clamp(24px, 6vw, 34px);
    }
    .about-content .h2::after {
        width: min(160px, 50vw);
    }
    .about-content p {
        font-size: clamp(15px, 2vw, 18px);
    }
    .bullets li {
        font-size: clamp(14px, 2vw, 17px);
    }
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .about-photo {
        transition: none;
    }
}

/* =========================================================
   11. Kontaktseite – Form, Aside, Icons
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: start;
    padding-top: 70px;
}
@media (max-width: 980px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
form.card {
    padding: 24px;
    background: var(--panel);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
form.card h3.accent {
    color: var(--foot-bg);
    font-size: clamp(20px, 2.2vw, 24px);
    margin-bottom: 16px;
    position: relative;
}
form.card h3.accent::after {
    content: "";
    display: block;
    height: 2px;
    width: 120px;
    margin-top: 8px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 8px rgba(193, 15, 23, 0.15);
}
form.card label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--text);
}
form.card input,
form.card textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
form.card input:focus,
form.card textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(193, 15, 23, 0.15);
}
form.card input:invalid:focus,
form.card textarea:invalid:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(193, 15, 23, 0.2);
}
form.card textarea {
    resize: vertical;
    min-height: 120px;
}
form.card .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1.05rem;
    margin-top: 10px;
}
form.card .muted.small {
    margin-top: 16px;
    font-size: 14px;
}
form.card .muted a {
    color: var(--red);
    font-weight: 600;
}
form.card .muted a:hover {
    text-decoration: underline;
}
.contact-aside h3.accent {
    color: var(--foot-bg);
    font-size: clamp(18px, 2vw, 22px);
    margin-bottom: 12px;
    position: relative;
}
.contact-aside h3.accent::after {
    content: "";
    display: block;
    height: 2px;
    width: 100px;
    margin-top: 6px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 8px rgba(193, 15, 23, 0.15);
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.contact-list li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-list li a:hover {
    color: var(--red);
}
.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--red);
    transition: transform 0.18s ease, color 0.18s ease;
}
.contact-list li:hover .contact-icon {
    transform: scale(1.1);
    color: var(--red-700);
}
.contact-aside p {
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 17px);
    margin: 0;
}
.contact-aside p a.link-more {
    display: block;
    margin-top: 8px;
    color: var(--red);
    font-weight: 600;
    transition: transform 0.18s ease;
}
.contact-aside p a.link-more:hover {
    transform: translateX(4px);
}
@media (max-width: 640px) {
    .contact-icon {
        width: 20px;
        height: 20px;
    }
    .contact-aside h3.accent {
        font-size: clamp(16px, 4vw, 20px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .btn,
    .card--lift,
    .marquee-inner,
    .contact-icon {
        transition: none;
    }
}

/* =========================================================
   12. Parallax & Schatten-Utilities
   ========================================================= */

.parallax {
    --px-img: url("/assets/images/hex-red-glass.png");
    --px-size: cover;
    --px-pos: center;
    --px-tint: rgba(255, 255, 255, 0);
    --px-blur: 0px;
    --px-shift: 16%;
    --px-inset: -20%;
    position: relative;
    isolation: isolate;
    background: transparent;
}
.parallax > * {
    position: relative;
    z-index: 1;
}
.parallax::before {
    content: "";
    position: absolute;
    inset: var(--px-inset) 0;
    z-index: 0;
    background-image: linear-gradient(var(--px-tint), var(--px-tint)),
        var(--px-img);
    background-size: 100% 100%, var(--px-size);
    background-position: center, var(--px-pos);
    background-repeat: no-repeat, no-repeat;
    filter: blur(var(--px-blur));
    transform: translateY(calc(var(--px-shift) * -0.5));
    will-change: transform, background-position;
}
.parallax--scroll {
    overflow: clip;
}
.parallax--fixed {
    overflow: visible;
    background-image: var(--px-img);
    background-size: var(--px-size);
    background-position: var(--px-pos);
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.parallax--fixed::before {
    content: none !important;
    display: none !important;
    filter: none !important;
    transform: none !important;
}
.parallax--static {
    overflow: clip;
}
.parallax--static::before {
    transform: none !important;
}
@supports (animation-timeline: view()) {
    .parallax--scroll {
        view-timeline-name: --parax;
        view-timeline-axis: block;
    }
    .parallax--scroll::before {
        animation-name: paraxShift;
        animation-timing-function: linear;
        animation-fill-mode: both;
        animation-timeline: --parax;
        animation-range: entry 0% exit 100%;
    }
    .parallax--scroll.parallax--first::before {
        animation-range: entry 0% exit 140%;
    }
    @keyframes paraxShift {
        from {
            transform: translateY(calc(var(--px-shift) * -0.5));
        }
        to {
            transform: translateY(calc(var(--px-shift) * 0.5));
        }
    }
}
@supports not (animation-timeline: view()) {
    .parallax--scroll::before {
        position: fixed;
        inset: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        background-attachment: fixed;
    }
    .parallax--static::before {
        position: absolute;
        inset: var(--px-inset) 0;
        transform: none;
    }
}
.parallax--subtle {
    --px-shift: 10%;
    --px-tint: rgba(255, 255, 255, 0.04);
}
.parallax--strong {
    --px-shift: 24%;
    --px-tint: rgba(255, 255, 255, 0.08);
}
@media (prefers-reduced-motion: reduce) {
    .parallax--scroll::before {
        animation: none !important;
        transform: none !important;
    }
}

/* Schatten-Utilities (Elevation) */
.shadow-top {
    box-shadow: 0 calc(var(--elev-y) * -1) var(--elev-blur) var(--elev-spread)
        var(--elev-top);
}
.shadow-bottom {
    box-shadow: 0 var(--elev-y) var(--elev-blur) var(--elev-spread)
        var(--elev-bot);
}
.shadow-y,
.shadow-both {
    box-shadow: 0 calc(var(--elev-y) * -1) var(--elev-blur) var(--elev-spread)
            var(--elev-top),
        0 var(--elev-y) var(--elev-blur) var(--elev-spread) var(--elev-bot);
}
.is-sm {
    --elev-y: 14px;
    --elev-blur: 22px;
    --elev-spread: -20px;
    --elev-top: rgba(13, 16, 23, 0.14);
    --elev-bot: rgba(13, 16, 23, 0.18);
}
.is-lg {
    --elev-y: 28px;
    --elev-blur: 42px;
    --elev-spread: -16px;
    --elev-top: rgba(13, 16, 23, 0.26);
    --elev-bot: rgba(13, 16, 23, 0.3);
}
.shadow-surface {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
}
.shadow-top,
.shadow-bottom,
.shadow-y,
.shadow-both {
    position: relative;
    z-index: 3;
}
.is-under {
    position: relative;
    z-index: 0 !important;
}

/* =========================================================
   13. Services – gemeinsame Styles (Brandschottung & Kernbohrungen)
   ========================================================= */

.page-services .section--dark.red-edges {
    color: #e5e7eb;
}

.page-services .section--dark.red-edges .card {
    background: #0b0f16;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}
.page-services .section--dark.red-edges .card h2 {
    color: #f9fafb;
}
.page-services .section--dark.red-edges .card .muted {
    color: #d1d5db;
}
.page-services .section--dark.red-edges .card .bullets li {
    color: #e5e7eb;
}
.page-services .section--dark.red-edges .card .bullets li::before {
    color: var(--red);
}

.page-services .card h2 {
    margin: 0 0 8px;
    font-size: clamp(20px, 2.2vw, 26px);
}
.page-services .card h2::after {
    content: "";
    display: block;
    height: 2px;
    width: 160px;
    margin-top: 8px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.35) 20%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.35) 80%,
        rgba(211, 29, 29, 0) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(193, 15, 23, 0.18);
}
.page-services .card .bullets {
    margin: 10px 0 14px;
}
.page-services .card .bullets li {
    color: #303646;
}

/* Abschluss-CTA (Services) */
.svc-ctaimg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #fafbfc);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(40px, 7vw, 72px) 0;
    isolation: isolate;
}
.svc-ctaimg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.045) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.03) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 82% 18%,
            rgba(0, 0, 0, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.svc-ctaimg .ctaimg-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.svc-ctaimg .ctaimg-inner > div {
    max-width: 820px;
    text-align: center;
    padding: clamp(18px, 4.5vw, 36px);
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.88),
        rgba(245, 245, 245, 0.74)
    );
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(193, 15, 23, 0.14);
    box-shadow: 0 22px 44px rgba(13, 16, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.svc-ctaimg h3 {
    margin: 0 0 6px;
    font-size: clamp(22px, 3.6vw, 34px);
}
.svc-ctaimg p {
    margin: 6px 0 16px;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 18px);
}

/* Split-Layout */
.svc-split {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr;
    gap: clamp(18px, 3vw, 28px);
    align-items: start;
}
.svc-left {
    position: sticky;
    top: calc(var(--nav-height) + 14px);
    align-self: start;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(16px, 2.8vw, 24px);
    box-shadow: var(--shadow);
}
.svc-left .h2 {
    margin: 0 0 8px;
    font-size: clamp(28px, 4vw, 48px);
}
.svc-right {
    display: grid;
    gap: clamp(14px, 2.4vw, 20px);
}
.svc-right .card h3 {
    margin: 0 0 6px;
    font-size: clamp(18px, 2.2vw, 22px);
}
.ticks {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.ticks li {
    position: relative;
    padding-left: 28px;
    color: #303646;
}
.ticks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
    color: var(--red);
    font-weight: 900;
}
.svc-center {
    justify-content: center;
}
.svc-center > article {
    max-width: 720px;
    margin-inline: auto;
}
@media (max-width: 980px) {
    .svc-split {
        grid-template-columns: 1fr;
    }
    .svc-left {
        position: static;
    }
}

/* Pill-Grids (gemeinsam) */
.svc-pill-grid,
.page-brandschottung .svc-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.4vw, 24px);
    margin-top: 26px;
}
.svc-pill {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease,
        border-color 0.18s ease;
}
.svc-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(13, 16, 23, 0.1);
    border-color: rgba(193, 15, 23, 0.3);
}
.svc-pill h3 {
    margin: 0 0 8px;
    font-size: clamp(17px, 2.1vw, 21px);
}
.svc-pill p {
    margin: 0;
    color: var(--muted);
}
@media (max-width: 980px) {
    .svc-pill-grid,
    .page-brandschottung .svc-pill-grid {
        grid-template-columns: 1fr;
    }
}

/* Dunkle/gläserne Variante */
.card--dark {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.03)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e6ebf2;
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    backdrop-filter: blur(8px) saturate(140%);
}
.card--dark .muted {
    color: #cfd6e0;
}
.card--dark .btn {
    background: #fff;
    color: #111;
    border-color: #e6e8ec;
}
.card--dark .btn.btn-primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* Hero-Linien-Utility */
.hero-lines {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff, #fafbfc);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hero-lines::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.045) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.03) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 82% 18%,
            rgba(0, 0, 0, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.hero-lines > * {
    position: relative;
    z-index: 1;
}
.hero-lines.shadow-top {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* =========================================================
   14. Subnavigation – GLOBAL (für alle Leistungsseiten)
   ========================================================= */

.page-subnav {
    position: sticky;
    top: calc(var(--nav-height) + 6px);
    z-index: 90;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.page-subnav .subnav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 0;
}
.page-subnav .btn-subnav {
    font-size: 0.95rem;
    padding: 8px 12px;
}

/* Hilfs-Utilities */
.center {
    text-align: center;
}
.max-60 {
    max-width: 60ch;
    margin-inline: auto;
}

/* =========================================================
   15. Brandschottung – Detailseite
   ========================================================= */

body.page-brandschottung {
    background: var(--bg);
}

/* >>> Gemeinsamer Hero für Brandschottung & Kernbohrungen <<< */
/* (dein gewünschtes Snippet) */

.page-kernbohrungen .page-head--kernbohrungen,
.page-brandschottung .page-head--brandschottung {
    background: linear-gradient(180deg, #fff, #fafbfc);
    border-bottom: 1px solid var(--line);
    padding: clamp(28px, 5vw, 52px) 0 clamp(12px, 2.4vw, 18px);
    position: relative;
    overflow: hidden;
}
.page-kernbohrungen .page-head--kernbohrungen h1,
.page-brandschottung .page-head--brandschottung h1 {
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.06;
}

/* Brandschottung – Linien-Overlay im Hero */
.page-brandschottung .page-head--brandschottung::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.03) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.02) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 78% 18%,
            rgba(193, 15, 23, 0.08),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(193, 15, 23, 0.03), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.page-brandschottung .page-head .wrap {
    position: relative;
    z-index: 1;
}

/* kleines Label über H1 nur für Brandschottung-Seite */
.page-brandschottung .page-head .eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin: 0 0 8px;
}
.page-brandschottung .hero-lead {
    margin-top: 8px;
    max-width: 72ch;
}
.page-brandschottung .hero-facts {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.page-brandschottung .hero-facts li {
    font-size: 0.95rem;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(193, 15, 23, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

/* Section-Abstände */
.page-brandschottung .section.section--brandschottung,
.page-brandschottung .section.section--brandschottung-flow {
    padding: clamp(48px, 7vw, 80px) 0;
}

/* Raster für Schottungssysteme */
.page-brandschottung .grid-systems {
    margin-top: 28px;
    gap: 24px;
}
.page-brandschottung .grid-systems .card {
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(13, 16, 23, 0.08);
}
.page-brandschottung .grid-systems h3 {
    margin: 0 0 6px;
    font-size: clamp(18px, 2.2vw, 22px);
}
.page-brandschottung .grid-systems p {
    margin: 0 0 10px;
}

/* Leistungen-Pills (leicht andere Optik) */
.page-brandschottung .svc-pill {
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, #ffffff, #fff9f9);
    border: 1px solid rgba(193, 15, 23, 0.12);
    box-shadow: 0 18px 40px rgba(13, 16, 23, 0.08);
}

/* Ablauf-Sektion */
.page-brandschottung .section--brandschottung-flow .section-head {
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.page-brandschottung .steps li p {
    font-size: 0.98rem;
    margin: 6px 0 0;
}

/* CTA-Text unten */
.page-brandschottung .svc-ctaimg p {
    max-width: 70ch;
    margin-inline: auto;
}

/* Responsive Brandschottung */
@media (max-width: 980px) {
    .page-brandschottung .svc-pill-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .page-brandschottung .page-head--brandschottung {
        padding-top: 26px;
        padding-bottom: 24px;
    }
    .page-brandschottung .hero-facts {
        gap: 8px;
    }
}

/* =========================================================
   16. Kernbohrungen – Seite / Layout
   ========================================================= */

/* Hinweis: Hero wird bereits durch gemeinsamen Block oben gestylt */

.page-kernbohrungen .page-head--kernbohrungen .wrap {
    position: relative;
    z-index: 1;
}

/* Lead & Chips sind schon global; hier nur ggf. Feintuning */

.section-head {
    margin-bottom: 26px;
}
.section-head.center {
    text-align: center;
}

/* Normale Sections Kernbohrungen */
.section--kernbohrungen {
    background-color: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* H2 unter "Was ich bei Kernbohrungen anbiete" – mittige Linie */
.page-kernbohrungen #leistungen .h2 {
    position: relative;
    text-align: center;
}
.page-kernbohrungen #leistungen .h2::after {
    content: "";
    display: block;
    height: 3px;
    width: min(260px, 40vw);
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.35) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.35) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 10px rgba(193, 15, 23, 0.25);
}

/* Facts-Kugeln Kernbohrungen (eigene Optik) */
.page-kernbohrungen .hero-facts li {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--muted);
}

/* =========================================================
   17. Holm-Tech – Theme & Sections
   ========================================================= */

/* Farb-Theme nur für Seiten mit <html class="tech-theme"> */
.tech-theme {
    --bg: #0f1217;
    --panel: #1b2230;
    --text: #e6ebf2;
    --muted: #cfd6e0;
    --line: rgba(255, 255, 255, 0.1);
    --red: #c10f17;
    --red-700: #a70d13;
}

/* Grundlayout für Tech-Seiten */
body.page-tech {
    background: var(--bg);
    color: var(--text);
}

/* Header dunkel */
.tech-theme .header {
    background: rgba(15, 18, 23, 0.86);
    border-bottom: 1px solid var(--line);
}
.tech-theme .header.is-scrolled {
    background: rgba(15, 18, 23, 0.96);
}
.tech-theme .menu a,
.tech-theme .menu .btn {
    color: var(--text);
}
.tech-theme .menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------------
   Hero – Holm-Tech
   --------------------------------------------------------- */

.tech-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0f1217, #131821);
    padding-block: clamp(56px, 9vh, 104px);
}
.tech-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 78% 18%,
            rgba(255, 255, 255, 0.04),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}
.tech-hero .wrap-hero {
    position: relative;
    z-index: 1;
}
.tech-hero .hero-copy h1,
.tech-hero .hero-copy .lead {
    color: var(--text);
}
.tech-hero .hero-copy .lead {
    max-width: 42rem;
}
.tech-hero .eyebrow {
    color: #cfd6e0;
}

/* ---------------------------------------------------------
   Allgemeiner Dark-Overlay-Stil (nur Hero + letzte CTA)
   --------------------------------------------------------- */

.tech-cta--dark {
    position: relative;
    overflow: hidden;
}
.tech-cta--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.02) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 78% 18%,
            rgba(255, 255, 255, 0.04),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.tech-cta--dark::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: min(1280px, 92vw);
    height: 3px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.25) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.25) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(211, 29, 29, 0.35);
    opacity: 0.92;
}

/* ---------------------------------------------------------
   Vollbreite-CTA (nur die letzte Section mit "Interesse?")
   --------------------------------------------------------- */

.tech-cta {
    position: relative;
    overflow: hidden;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    min-height: clamp(400px, 58vh, 720px);
    padding-block: clamp(32px, 7.5vw, 88px);
    box-sizing: border-box;
    background: linear-gradient(180deg, #0f1217, #131821);
    isolation: isolate;
}
.tech-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}
.tech-cta__content {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    max-width: calc(var(--wrap-hero) + 240px);
    margin: 0 auto;
    padding: clamp(24px, 4vw, 56px) clamp(20px, 6vw, 84px);
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1),
        rgba(245, 245, 245, 0.08)
    );
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(193, 15, 23, 0.14);
    box-shadow: 0 26px 56px rgba(255, 255, 255, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text);
}
.tech-cta__title {
    font-size: clamp(30px, 4.8vw, 58px);
    line-height: 1.05;
    margin: 0 0 12px;
    font-weight: 800;
    color: var(--text);
}
.tech-cta__title::after {
    content: "";
    display: block;
    height: 3px;
    width: min(400px, 38vw);
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 12px rgba(193, 15, 23, 0.2);
}
.tech-cta__lead {
    margin: 16px auto 24px;
    max-width: 68ch;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .tech-cta {
        min-height: 400px;
        padding-block: clamp(28px, 6vh, 64px);
    }
    .tech-cta__content {
        width: calc(100% - 32px);
        max-width: 94%;
        padding: clamp(20px, 3.5vw, 40px);
        border-radius: 14px;
    }
    .tech-cta__title {
        font-size: clamp(24px, 7vw, 38px);
    }
    .tech-cta__title::after {
        width: min(240px, 62vw);
        margin-top: 10px;
    }
    .tech-cta__lead {
        font-size: clamp(16px, 2.2vw, 20px);
        margin: 14px auto 20px;
    }
    .cta-row.center {
        flex-direction: column;
        align-items: center;
    }
}
@media (prefers-reduced-motion: reduce) {
    .btn--pulse {
        animation: none;
    }
}

/* ---------------------------------------------------------
   Heller Streifen unter dem Hero (.tech-band)
   --------------------------------------------------------- */

.tech-band {
    background: #f5f7fa;
    color: #111827;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.page-tech .tech-band {
    color: #111827;
}
.tech-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.8rem;
}
.tech-band__label {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
    white-space: nowrap;
}
.tech-band__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.6rem;
    font-size: 0.95rem;
}
.tech-band__items span {
    position: relative;
    padding-left: 1.2rem;
}
.tech-band__items span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--red);
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .tech-band__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .tech-band__items {
        width: 100%;
    }
}

/* ---------------------------------------------------------
   Vorteile / Leistungen (Section .tech-benefits)
   --------------------------------------------------------- */

.tech-benefits {
    background: radial-gradient(circle at top, #1b2230 0, #0f1217 55%);
    color: var(--text);
}
.tech-benefits .section-head .muted {
    color: var(--muted);
}

/* ---------------------------------------------------------
   Allgemeine Karten (werden mehrfach benutzt)
   --------------------------------------------------------- */

.tech-shop-grid {
    gap: clamp(16px, 2.4vw, 24px);
}
.tech-shop-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tech-shop-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.7);
}
.tech-shop-item h3 {
    margin: 0 0 6px;
    font-size: clamp(17px, 2.1vw, 21px);
}
.tech-shop-item p {
    margin: 0;
}

/* ---------------------------------------------------------
   Leistungen-Überschrift mittig mit rotem Unterstrich
   --------------------------------------------------------- */

.tech-services {
    margin-top: 3rem;
}
.section-head--divider {
    margin-bottom: 2.5rem;
}
.h2--underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
}
.h2--underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 96px;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 14px rgba(193, 15, 23, 0.5);
}

/* ---------------------------------------------------------
   Mikro-Werkstatt Section (.tech-workshop)
   --------------------------------------------------------- */

.tech-workshop {
    background: radial-gradient(circle at top, #181f2b 0, #0f1217 60%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.tech-workshop .section-head .muted {
    color: var(--muted);
}

/* ---------------------------------------------------------
   Varianten der HOLM-Pads – Cards (.tech-padcards)
   --------------------------------------------------------- */

.tech-padcards {
    background: linear-gradient(180deg, #111622, #0f1217);
    color: var(--text);
}
.tech-padcards .section-head .muted {
    color: var(--muted);
}

.pad-card-grid {
    gap: clamp(18px, 2.4vw, 28px);
}
.pad-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.75);
}
.pad-card__img {
    position: relative;
    background: radial-gradient(circle at 30% 20%, #262f42, #111622);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pad-card__body {
    padding: 16px 18px 18px;
}
.pad-card__body h3 {
    margin: 0 0 0.4rem;
}
.pad-card__body .muted {
    color: var(--muted);
}

/* ---------------------------------------------------------
   Helle Parallax-Section mit glasigem Panel (.tech-pads-bg)
   --------------------------------------------------------- */

.tech-pads-bg {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--text);
}
.tech-pads-bg .wrap {
    position: relative;
    z-index: 2;
}

/* Glasiges Panel vorne */
.tech-pads-bg .tech-cta__content {
    background: linear-gradient(
        180deg,
        rgba(15, 18, 23, 0.96),
        rgba(15, 18, 23, 0.9)
    );
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 54px rgba(0, 0, 0, 0.7);
    text-align: left;
}
.tech-pads-panel {
    align-items: center;
    gap: 40px;
}

@media (max-width: 980px) {
    .tech-pads-bg .tech-cta__content {
        border-radius: 14px;
    }
    .tech-pads-panel {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Explosionsgrafik – SVG
   --------------------------------------------------------- */

.tech-split {
    align-items: center;
    gap: 40px;
}
.tech-explode {
    display: flex;
    justify-content: center;
}
.explode-svg {
    width: 100%;
    max-width: 360px;
    height: auto;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.explode-svg circle {
    transition: transform 0.3s ease;
}
.tech-explode:hover .explode-svg {
    transform: translateY(-6px);
    filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.8));
}

@media (max-width: 980px) {
    .tech-split {
        grid-template-columns: 1fr;
    }
    .tech-explode {
        order: -1;
    }
}

/* ---------------------------------------------------------
   Prozess-Section auf Tech-Seite
   --------------------------------------------------------- */

.page-tech .steps strong {
    color: var(--text);
}
.page-tech .steps p {
    color: var(--muted);
}

/* =========================================================
   18. Bottom-CTA (Dienstleistungen, hell)
   ========================================================= */

.cta-bottom {
    position: relative;
    overflow: hidden;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    min-height: clamp(400px, 58vh, 720px);
    padding-block: clamp(32px, 7.5vw, 88px);
    box-sizing: border-box;
    background: linear-gradient(180deg, #fff, #fafbfc);
    isolation: isolate;
}
.cta-bottom.cta-tech::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.045) 0 1.5px,
            transparent 1.5px 8px
        ),
        repeating-linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.03) 0 1px,
            transparent 1px 4px
        ),
        radial-gradient(
            1200px 620px at 78% 18%,
            rgba(0, 0, 0, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 40%);
    background-size: 130% 130%, 160% 160%, 100% 100%, 100% 100%;
}
.cta-bottom.cta-tech::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: min(1280px, 92vw);
    height: 3px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.25) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.25) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(211, 29, 29, 0.35);
    opacity: 0.92;
}
.cta-bottom__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: inherit;
}
.cta-bottom__content {
    width: calc(100% - 40px);
    max-width: calc(var(--wrap-hero) + 240px);
    margin: 0 auto;
    padding: clamp(24px, 4vw, 56px) clamp(20px, 6vw, 84px);
    border-radius: 16px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.84),
        rgba(245, 245, 245, 0.72)
    );
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(193, 15, 23, 0.14);
    box-shadow: 0 26px 56px rgba(13, 16, 23, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-align: center;
    color: var(--text);
}
.cta-bottom__title {
    font-size: clamp(30px, 4.8vw, 58px);
    line-height: 1.05;
    margin: 0 0 12px;
    font-weight: 800;
    color: var(--text);
}
.cta-bottom__title::after {
    content: "";
    display: block;
    height: 3px;
    width: min(400px, 38vw);
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(
        90deg,
        rgba(211, 29, 29, 0) 0%,
        rgba(211, 29, 29, 0.3) 15%,
        rgba(211, 29, 29, 1) 50%,
        rgba(211, 29, 29, 0.3) 85%,
        rgba(211, 29, 29, 0) 100%
    );
    box-shadow: 0 0 12px rgba(193, 15, 23, 0.2);
}
.cta-bottom__lead {
    margin: 16px auto 24px;
    max-width: 68ch;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
}
.cta-bottom__content .btn {
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
}
.cta-bottom__content .btn-primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.trust-badge--cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    background: rgba(193, 15, 23, 0.1);
    border: 1px solid rgba(193, 15, 23, 0.22);
    border-radius: 999px;
    margin-left: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-badge--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 14px rgba(13, 16, 23, 0.12);
}
@media (max-width: 980px) {
    .cta-bottom {
        min-height: 400px;
        padding-block: clamp(28px, 6vh, 64px);
    }
    .cta-bottom__content {
        width: calc(100% - 32px);
        max-width: 94%;
        padding: clamp(20px, 3.5vw, 40px);
        border-radius: 14px;
    }
    .cta-bottom__title {
        font-size: clamp(24px, 7vw, 38px);
    }
    .cta-bottom__title::after {
        width: min(240px, 62vw);
        margin-top: 10px;
    }
    .cta-bottom__lead {
        font-size: clamp(16px, 2.2vw, 20px);
        margin: 14px auto 20px;
    }
    .cta-row.center {
        flex-direction: column;
        align-items: center;
    }
    .trust-badge--cta {
        margin-top: 14px;
        margin-left: 0;
    }
}
@media (prefers-reduced-motion: reduce) {
    .btn--pulse {
        animation: none;
    }
}

/* =========================================================
   19. Footer – Modern, markenkonsistent
   ========================================================= */

footer.footer {
    background: var(--foot-bg);
    color: var(--foot-fg);
    border-top: 1px solid var(--foot-line);
    position: relative;
    overflow: hidden;
}
.footer .wrap {
    max-width: var(--foot-wrap);
    margin: 0 auto;
    padding: 0 24px;
}

/* CTA-Bar oben */
.footer .foot-cta {
    background: var(--foot-accent);
    border-top: 1px solid var(--foot-line);
    border-bottom: 1px solid var(--foot-line);
}
.footer .foot-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}
.footer .foot-cta p {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
}
.footer .foot-cta .btn {
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    border: 1px solid #fff;
    color: #fff;
    transition: 0.2s;
}
.footer .foot-cta .btn:hover {
    transform: translateY(-2px);
}
.footer .foot-cta .btn-primary {
    background: var(--foot-accent);
    border-color: var(--foot-accent);
}
.footer .foot-cta .btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

/* Hauptbereich */
.footer .foot-main {
    display: grid;
    gap: var(--foot-gap);
    padding: var(--foot-pad-y) 0;
    border-bottom: 1px solid var(--foot-line);
    grid-template-columns: 2fr 1fr 1fr 1fr;
}
@media (max-width: 1180px) {
    .footer .foot-main {
        grid-template-columns: 1.6fr 1fr 1fr;
    }
}
@media (max-width: 860px) {
    .footer .foot-main {
        grid-template-columns: 1fr;
    }
}
.foot-logohead {
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: clamp(28px, 3vw, 32px);
}
.foot-logohead .dot {
    color: var(--foot-accent);
}
.foot-paragraph {
    color: var(--foot-muted);
    margin: 6px 0 0;
    line-height: 1.55;
}
.footer .foot-col h4 {
    margin: 0 0 12px;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.3px;
}
.footer .foot-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

/* Footer-Links */
.footer a {
    color: var(--foot-link);
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.footer a:hover {
    color: var(--foot-link-hover);
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: var(--foot-link-hover);
}

/* Kontaktliste im Footer */
.footer .foot-contact {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}
.footer .foot-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foot-fg);
}

/* Social */
.footer .social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer .social .ico {
    width: 40px;
    height: 40px;
    border: 1px solid var(--foot-line);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--foot-link);
    background: rgba(255, 255, 255, 0.03);
    transition: 0.2s;
}
.footer .social .ico:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.footer .social .ico svg {
    width: 22px;
    height: 22px;
}
.footer .social .ico-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}
.footer .social .badge {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.6px;
    color: #fff;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0)
    );
}

/* Wortmarke-Holm */
.brandline {
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: 0.4px;
    line-height: 1.1;
    font-size: clamp(28px, 3.2vw, 34px);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35ch;
}
.brandline .holm {
    color: var(--foot-accent);
}
.brandline .dienst {
    color: var(--foot-fg);
    font-weight: 800;
}
.brandline .tech {
    color: var(--tech-fg);
    font-weight: 800;
}
.brandline .sep {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 800;
    transform: translateY(-1px);
}
.brandline .amp {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 900;
    letter-spacing: 0.6px;
}
@media (max-width: 600px) {
    .brandline {
        font-size: clamp(24px, 6vw, 28px);
        gap: 0.25ch;
    }
}

/* Wortstreifen (HOLM + Tech) */
.foot-divider {
    height: 1px;
    background: var(--foot-line);
    margin: 8px auto 0;
}
.foot-wordstrip {
    width: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0)
    );
}
.wordstrip-inner {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: clamp(10px, 3vw, 24px);
    padding: clamp(10px, 3vw, 18px) 0 clamp(18px, 4vw, 28px);
}
.wm-left,
.wm-right {
    text-transform: uppercase;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 1.4px;
    font-size: clamp(34px, 7.6vw, 92px);
}
.wm-left {
    color: var(--foot-accent);
}
.wm-right {
    color: var(--tech-fg);
}
.wm-sep {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 800;
    font-size: clamp(28px, 6vw, 72px);
}

/* Legal-Zeile */
.footer .foot-legal {
    background: #0d1218;
    border-top: 1px solid var(--foot-line);
}
.footer .foot-legal-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    flex-wrap: wrap;
}
.footer .foot-legal small {
    color: var(--foot-muted);
    font-size: clamp(13px, 1.5vw, 14px);
}
.footer .foot-legal .legal-links {
    display: flex;
    gap: 16px;
}
.footer .foot-legal a {
    color: var(--foot-link);
    font-size: clamp(13px, 1.5vw, 14px);
    padding: 4px 8px;
    border-radius: 6px;
}
.footer .foot-legal a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.footer .foot-legal .madeby {
    opacity: 0.95;
}

/* Footer Responsive */
@media (max-width: 860px) {
    .footer .foot-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .footer .foot-legal-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .footer .wrap {
        padding: 0 16px;
    }
    .footer .foot-cta .btn {
        width: 100%;
        text-align: center;
    }
    .footer .foot-legal .legal-links {
        flex-direction: column;
        gap: 8px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .footer .foot-cta .btn,
    .footer .social .ico,
    .footer a {
        transition: none;
    }
}

/* =========================================================
   Mobile Fixes (Handy)
   ========================================================= */
@media (max-width: 520px) {
    /* Spezialgebiete: wirklich sauber zentriert + keine Überbreite */
    .section--tech-lines .wrap {
        padding-inline: 16px;
    }
    .hl-head--center {
        text-align: center;
    }
    .hl-sub {
        padding-inline: 6px;
    }

    /* Spezialgebiete Buttons: deine aktuelle padding: 15px 110px ist auf Handy viel zu breit */
    .hl-ctas .box {
        width: 100%;
        padding: 10px;
    }
    .hl-ctas .btn {
        width: 100%;
        min-width: 0;
        padding: 14px 18px;
        white-space: normal;
    }

    /* Expertise/Trust: Badges kollidieren -> Badge auf eigene Zeile */
    .trust-item {
        text-align: center;
    }
    .trust-badge {
        position: static !important;
        display: inline-flex;
        margin: 0 auto 10px;
    }
    .trust-item .label {
        display: block;
    }

    /* Footer: kompakter */
    footer {
        padding: 22px 0;
    }
    footer .wrap {
        padding-inline: 16px;
    }
    footer p {
        margin: 8px 0;
    }
    footer h4 {
        margin: 14px 0 8px;
    }

    /* falls du ein Grid im Footer nutzt (egal wie es heißt) */
    footer .grid,
    footer .footer-grid,
    footer .footer-cols {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* =========================================================
   MOBILE FIXES (nur Handy) – ans ENDE von style.css
   ========================================================= */
@media (max-width: 720px) {
    /* ---------- NAV / HAMBURGER ---------- */
    .burger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: #fff;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        z-index: 2002; /* über Header */
        pointer-events: auto;
    }

    /* Menü im Handy standardmäßig verstecken */
    #mainMenu.menu {
        display: none;
    }

    /* Menü aufklappen */
    #mainMenu.menu.open {
        display: flex;
        flex-direction: column;
        gap: 10px;

        position: fixed;
        top: 70px; /* ggf. 64–80 anpassen, je nach Headerhöhe */
        left: 12px;
        right: 12px;

        padding: 14px;
        border-radius: 14px;

        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);

        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
        z-index: 3001;
    }

    /* Links im geöffneten Menü angenehmer */
    #mainMenu.menu.open > a,
    #mainMenu.menu.open .menu-item > a {
        padding: 10px 12px;
        border-radius: 10px;
    }

    /* Kontakt-Button im Menü: volle Breite */
    #mainMenu.menu.open .btn-contact {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Body Scroll sperren wenn Menü offen */
    body.no-scroll {
        overflow: hidden;
        touch-action: none;
    }

    /* ---------- PARALLAX / HEXA: Mobile-Fallback ---------- */
    /* background-attachment: fixed ist auf Handys oft kaputt/disabled -> Bild verschwindet */
    .parallax--fixed {
        background-attachment: scroll !important;
    }

    /* Falls dein Parallax über CSS-Variablen läuft: erzwinge Bild auf dem Element */
    .parallax {
        background-image: var(--px-img) !important;
        background-size: var(--px-size, cover) !important;
        background-position: var(--px-pos, center) !important;
        background-repeat: no-repeat !important;
    }

    /* ---------- TRUST-BADGES: nicht mehr in die Schrift knallen ---------- */
    .trust-item {
        position: relative;
        padding-top: 14px; /* etwas Luft */
    }

    .trust-badge {
        position: static !important; /* wichtig: raus aus "oben rechts absolut" */
        display: inline-flex;
        align-self: flex-end;
        margin: 0 0 8px auto; /* oben rechts, aber ohne Overlay */
        white-space: nowrap;
    }

    /* ---------- "Unsere Spezialgebiete": wirklich mittig + Button nicht riesig ---------- */
    .hl-head--center {
        text-align: center !important;
    }

    .hl-ctas .btn {
        width: 100%;
        max-width: 420px;
        padding: 14px 18px !important; /* statt 110px links/rechts */
        min-width: 0 !important;
    }

    .hl-ctas .box {
        width: 100% !important;
        max-width: 460px;
        margin: 0 auto;
    }

    /* ---------- FOOTER: deutlich kompakter ---------- */
    footer,
    .footer {
        padding-block: 18px !important;
    }

    footer .wrap,
    .footer .wrap {
        padding-inline: 14px !important;
    }

    /* Falls du ein Grid hast: auf 1 Spalte */
    .footer-grid,
    .footer__grid,
    footer .grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    /* Schriften kleiner */
    footer p,
    footer a,
    footer li,
    .footer p,
    .footer a,
    .footer li {
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    /* ---------- Beliebte Aufträge Bilder: neutraler Look (optional) ---------- */
    .card-img {
        filter: grayscale(1) contrast(1.05) brightness(0.95);
        transition: filter 0.18s ease;
    }
    .card--lift:hover .card-img {
        filter: none;
    }

    /* ---------- Leistungen: Subnav frisst zu viel Platz -> horizontal scroll + kleiner ---------- */
    .page-subnav {
        position: sticky;
        top: 64px; /* ggf. an Headerhöhe anpassen */
        z-index: 1500;
    }

    .subnav-row {
        display: flex;
        flex-wrap: nowrap;
        gap: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
    }

    .subnav-row::-webkit-scrollbar {
        display: none;
    }

    .page-subnav .btn {
        white-space: nowrap;
        padding: 10px 12px;
        font-size: 14px;
    }
}

/* Mobile: Subnav als 1-zeilige Scroll-Leiste */
@media (max-width: 520px) {
    .page-subnav {
        padding: 6px 0;
    }

    .page-subnav .subnav-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
        padding: 0 2px 6px;
    }

    .page-subnav .subnav-row::-webkit-scrollbar {
        height: 6px;
    }

    .page-subnav .btn {
        flex: 0 0 auto; /* bleibt in einer Reihe */
        font-size: 13px;
        line-height: 1.1;
        padding: 8px 10px;
        border-radius: 10px;
        min-height: 34px;
        white-space: nowrap; /* kein Umbruch im Button */
    }
}

/* ===== Mobile Menü: über ALLEM + gleiche Ausrichtung ===== */
.header {
    z-index: 6000; /* Header immer oben */
}

@media (max-width: 980px) {
    .header .burger {
        z-index: 7000;
    }

    /* Menü-Overlay immer über Content/Subnav */
    .header .menu {
        position: fixed;
        left: 12px;
        right: 12px;
        top: var(--nav-height, 72px);
        z-index: 6500;

        max-height: calc(100dvh - var(--nav-height, 72px) - 24px);
        overflow: auto;

        text-align: left; /* <- Start nicht mehr zentriert */
        align-items: stretch;
    }

    /* ALLE Links im Menü gleich ausrichten */
    .header .menu > a,
    .header .menu .menu-item > a,
    .header .menu .menu-sub a {
        display: block;
        width: 100%;
        text-align: left;
    }
}

/* Subnav darf NICHT über dem Burger-Menü liegen */
.page-subnav {
    z-index: 500;
}

/* Über mich (eigene Seite): Button darf nicht overflowen */
@media (max-width: 980px) {
    body.page-about .about-content .cta-row .btn {
        width: 100%;
        max-width: 520px;
        padding: 14px 18px; /* statt 80px links/rechts */
        white-space: normal; /* wichtig: kein Abschneiden */
        text-align: center;
    }
}

/* Footer auf Mobile schlanker machen */
@media (max-width: 720px) {
    /* weniger Luft */
    .footer .foot-main {
        padding: 22px 0;
        gap: 16px;
    }

    /* Company + Services komplett ausblenden (2 navs) */
    .footer .foot-main > nav.foot-col:nth-of-type(1),
    .footer .foot-main > nav.foot-col:nth-of-type(2) {
        display: none;
    }

    /* Legal-Spalte oben: Linkliste ausblenden (weil unten nochmal vorhanden) */
    .footer .foot-main > nav.foot-col:nth-of-type(3) ul {
        display: none;
    }

    /* Brandline & Text etwas kleiner */
    .brandline {
        font-size: clamp(22px, 6vw, 26px);
    }
    .foot-paragraph {
        font-size: 14px;
    }

    /* Social etwas kompakter */
    .footer .social {
        margin-top: 10px;
    }
    .footer .social .ico {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .footer .social .ico-img {
        width: 20px;
        height: 20px;
    }

    /* Legal-Zeile unten kompakt & umbrechbar */
    .footer .foot-legal-inner {
        padding: 10px 0;
        gap: 10px;
    }
    .footer .foot-legal .legal-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Optional: auf sehr kleinen Screens "Design & Code" ausblenden */
@media (max-width: 420px) {
    .footer .madeby {
        display: none;
    }
}

/* ==========================================================
   WIP-MODUS (Holm-Tech)
   Aktiv: <body class="... wip">
   Entfernen: "wip" aus dem body löschen
   ========================================================== */

body.wip {
    /* --------- Schnelle Regler (hier stellst du "weniger glasig" ein) --------- */
    --wip-content-blur: 12px; /* wie stark der Inhalt unscharf ist */

    --wip-glass-alpha: 0.1; /* GLAS-Deckkraft -> höher = weniger "glasig", mehr milchig */
    --wip-glass-blur: 14px; /* GLAS-Blur -> höher = weicher/geschmeidiger */
    --wip-glass-sat: 1.15; /* Glas-Sättigung */
}

/* ==========================================================
   1) NUR MAIN verschleiern (Header/Footer bleiben normal)
   ========================================================== */
body.wip main {
    filter: blur(var(--wip-content-blur));
    opacity: var(--wip-content-opacity);
    will-change: filter;
}

/* Header/Footer ausdrücklich NICHT anfassen (falls noch alte Regeln greifen) */
body.wip #include-header,
body.wip #include-footer,
body.wip header,
body.wip footer {
    filter: none !important;
    opacity: 1 !important;
}

/* ==========================================================
   2) GLAS-OVERLAY (liegt UNTER dem Header, damit Nav sichtbar bleibt)
   ========================================================== */
body.wip .wip-glass {
    position: fixed;
    inset: 0;

    /* WICHTIG: unter dem Header, damit Nav sichtbar bleibt */
    z-index: 3000;

    /* Glasoptik */
    background: rgba(255, 255, 255, var(--wip-glass-alpha));
    backdrop-filter: blur(var(--wip-glass-blur)) saturate(var(--wip-glass-sat));
    -webkit-backdrop-filter: blur(var(--wip-glass-blur))
        saturate(var(--wip-glass-sat));

    display: grid;
    place-items: center;

    /* Scroll bleibt möglich, weil Overlay keine Klicks abfängt */
    pointer-events: none;
}

/* Badge auf dem Glas */
body.wip .wip-badge {
    padding: 16px 20px;
    border-radius: 16px;

    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    text-align: center;
}

body.wip .wip-title {
    font-weight: 800;
    letter-spacing: 0.4px;
    font-size: 18px;
}

body.wip .wip-sub {
    margin-top: 4px;
    font-size: 13px;
    opacity: 0.85;
}

/* ==========================================================
   3) Klicks im CONTENT sperren (aber Header/Nav bleibt klickbar!)
   ========================================================== */
body.wip main a,
body.wip main button,
body.wip main input,
body.wip main textarea,
body.wip main select {
    pointer-events: none;
}

/* ==========================================================
   4) Header immer über dem Overlay halten (zur Sicherheit)
   ========================================================== */
body.wip #include-header,
body.wip header {
    position: fixed;
    top: 0;
    z-index: 5000; /* höher als .wip-glass (3000) */
}
/* =========================================================
   FIX: Footer NICHT hinter Glas (Footer über Overlay legen)
   ========================================================= */
body.wip #include-footer,
body.wip footer {
    position: relative; /* z-index greift nur bei position != static */
    z-index: 3000; /* höher als .wip-glass (3000), aber egal zum Header */
}

/* =========================================================
   FIX: link red-700 beliebte aufträge 
   ========================================================= */

.link-more,
.link-more:visited,
.link-more:focus {
    color: var(--red);
}

#mt {
    margin-top: 110px;
}
