/*
Theme Name: Code Center Solingen
Version: 3.0.0
*/

/* =========================================================
   GRUNDLAGEN
========================================================= */

:root {
    --blue: #23a8ef;
    --orange: #f6ad16;

    --background: #02060b;
    --card-background: rgba(7, 18, 29, .82);
    --card-border: rgba(255,255,255,.11);

    --text: #ffffff;
    --text-secondary: #aebdca;

    --page-padding: clamp(24px, 6vw, 110px);
    --max-width: 1700px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;

    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(35,168,239,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 87% 38%,
            rgba(246,173,22,.055),
            transparent 27%
        ),
        #02060b;

    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}


/* =========================================================
   HINTERGRUNDRASTER
========================================================= */

.background-grid {
    position: fixed;
    inset: 0;
    z-index: -5;
    pointer-events: none;

    opacity: .11;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 48px 48px;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;

    padding:
        12px
        var(--page-padding)
        0;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    position: relative;
    z-index: 20;
}

.logo {
    display: block;
    width: clamp(150px, 15vw, 200px);
    height: auto;
}

.services > .service-row:first-child {
    border-top: none;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-top: 17px;
}

.navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 21px;

    border-radius: 999px;

    border:
        1px solid
        rgba(255,255,255,.15);

    background:
        rgba(255,255,255,.025);

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.navigation a:hover {
    transform: translateY(-1px);

    border-color:
        rgba(35,168,239,.55);

    background:
        rgba(35,168,239,.07);
}

.navigation .contact-link {
    border-color:
        rgba(35,168,239,.52);

    color: #ccefff;
}

/* =========================================================
   NAVIGATION LINKS + BURGER
========================================================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;

    /* Hero deutlich näher an den Header */
    padding:
        15px
        var(--page-padding)
        55px;
}

.hero-inner {
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    margin-bottom: 18px;
    text-align: center;
}

.hero h1 {
    margin: 0 auto;
    max-width: 950px;

    font-size:
        clamp(
            68px,
            7vw,
            112px
        );

    line-height: .90;
    letter-spacing: -.06em;
}

.hero-blue {
    color: var(--blue);
}

.hero-orange {
    color: var(--orange);
}

.hero p {
    max-width: 700px;

    margin:
        24px
        auto
        0;

    text-align: center;

    color: var(--text-secondary);

    font-size:
        clamp(
            16px,
            1.2vw,
            19px
        );

    line-height: 1.65;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;

    position: relative;
    z-index: 5;
}

.button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 23px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 900;

    transition:
        transform .2s ease,
        filter .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.button-primary {
    background: var(--blue);
    color: #00131e;
}

.button-secondary {
    border:
        1px solid
        rgba(246,173,22,.55);

    color: #ffc74f;
}


/* =========================================================
   LEISTUNGEN
========================================================= */

.services {
    width: 100%;
    max-width: var(--max-width);

    margin: 0 auto;

    padding:
        0
        var(--page-padding)
        110px;
}


/* =========================================================
   SERVICE-ZEILEN

   KOMPAKTER ALS VORHER
========================================================= */

.service-row {
    position: relative;

    width: 100%;

    min-height:
        clamp(
            440px,
            38vw,
            570px
        );

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    /*
       Absichtlich KEIN großer Abstand.
       Karte und Bild dürfen ineinander laufen.
    */
    column-gap: 0;

    border-top:
        1px solid
        rgba(255,255,255,.055);
}


/* =========================================================
   LINKS / RECHTS
========================================================= */

.service-row:nth-child(odd) .service-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.service-row:nth-child(odd) .scene {
    grid-column: 2;
    grid-row: 1;
}

.service-row:nth-child(even) .scene {
    grid-column: 1;
    grid-row: 1;
}

.service-row:nth-child(even) .service-card {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
}


/* =========================================================
   TEXTBOXEN
========================================================= */

.service-card {
    position: relative;

    width: 100%;
    max-width: 650px;

    min-height: 360px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding:
        clamp(
            30px,
            3vw,
            46px
        );

    background:
        linear-gradient(
            145deg,
            rgba(9,24,37,.91),
            rgba(3,10,17,.86)
        );

    border:
        1px solid
        var(--card-border);

    border-radius: 28px;

    box-shadow:
        0 30px 90px rgba(0,0,0,.32),
        inset 0 1px 0 rgba(255,255,255,.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    /*
       Karte liegt VOR dem Foto.
    */
    z-index: 5;
}


/* =========================================================
   ÜBERLAPPUNG TEXT + FOTO
========================================================= */

/*
   Bild rechts:
   Die Karte ragt etwas in den Bildbereich hinein.
*/

.service-row:nth-child(odd) .service-card {
    margin-right: -90px;
}


/*
   Bild links:
   Spiegelverkehrt.
*/

.service-row:nth-child(even) .service-card {
    margin-left: -90px;
}


/* =========================================================
   LICHTAKZENT TEXTBOX
========================================================= */

.service-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -190px;
    left: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,168,239,.16),
            transparent 68%
        );

    pointer-events: none;
}

.service-row:nth-child(even) .service-card::before {
    left: auto;
    right: -120px;

    background:
        radial-gradient(
            circle,
            rgba(246,173,22,.12),
            transparent 68%
        );
}


/* =========================================================
   NUMMER
========================================================= */

.service-number {
    position: absolute;

    right: 27px;
    top: 17px;

    color:
        rgba(255,255,255,.045);

    font-size:
        clamp(
            70px,
            6vw,
            105px
        );

    line-height: 1;

    font-weight: 900;
    letter-spacing: -.07em;

    pointer-events: none;
}


/* =========================================================
   KICKER
========================================================= */

.service-kicker {
    position: relative;
    z-index: 2;

    margin-bottom: 20px;

    color: #9eafbd;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: .20em;
    text-transform: uppercase;
}

.service-kicker strong {
    color: var(--orange);
}


/* =========================================================
   HEADLINE
========================================================= */

.service-card h2 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size:
        clamp(
            48px,
            4vw,
            72px
        );

    line-height: .94;

    letter-spacing: -.055em;
}

.text-blue {
    color: var(--blue);
}

.text-orange {
    color: var(--orange);
}


/* =========================================================
   BESCHREIBUNG
========================================================= */

.service-card p {
    position: relative;
    z-index: 2;

    max-width: 520px;

    margin:
        22px
        0
        0;

    color: var(--text-secondary);

    font-size: 16px;
    line-height: 1.65;
}


/* =========================================================
   CHIPS
========================================================= */

.chips {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;
}

.chip {
    display: inline-flex;
    align-items: center;

    min-height: 35px;

    padding: 0 13px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 999px;

    background:
        rgba(255,255,255,.025);

    color: #d0d9e1;

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   FOTO-SZENEN

   NIEDRIGER ALS VORHER
========================================================= */

.scene {
    position: relative;

    width: calc(100% + 90px);

    height:
        clamp(
            350px,
            31vw,
            470px
        );

    min-height: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    overflow: visible;

    isolation: isolate;

    z-index: 1;
}


/*
   Bild rechts:
   Szene wird nach links gezogen.
*/

.service-row:nth-child(odd) .scene {
    margin-left: -90px;
}


/*
   Bild links:
   Szene wird nach rechts gezogen.
*/

.service-row:nth-child(even) .scene {
    margin-right: -90px;
}


/* =========================================================
   FOTO
========================================================= */

.scene-image {
    position: absolute;
    z-index: 1;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    opacity: .96;

    filter:
        brightness(.80)
        contrast(1.08)
        saturate(1.04);

    transform: scale(1.01);

    transition:
        transform .8s ease,
        filter .8s ease,
        opacity .8s ease;
}


/* =========================================================
   HOVER FOTO
========================================================= */

.service-row:hover .scene-image {
    transform: scale(1.035);

    filter:
        brightness(.88)
        contrast(1.10)
        saturate(1.07);

    opacity: 1;
}


/* =========================================================
   Weiche Kanten auf allen 4 Seiten
========================================================= */

.scene-image {

    -webkit-mask-image:
        linear-gradient(to right,
            transparent 0%,
            rgba(0,0,0,.25) 5%,
            rgba(0,0,0,.75) 11%,
            #000 18%,
            #000 82%,
            rgba(0,0,0,.75) 89%,
            rgba(0,0,0,.25) 95%,
            transparent 100%
        ),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(0,0,0,.30) 6%,
            rgba(0,0,0,.80) 12%,
            #000 19%,
            #000 81%,
            rgba(0,0,0,.80) 88%,
            rgba(0,0,0,.30) 94%,
            transparent 100%
        );

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(to right,
            transparent 0%,
            rgba(0,0,0,.25) 5%,
            rgba(0,0,0,.75) 11%,
            #000 18%,
            #000 82%,
            rgba(0,0,0,.75) 89%,
            rgba(0,0,0,.25) 95%,
            transparent 100%
        ),
        linear-gradient(to bottom,
            transparent 0%,
            rgba(0,0,0,.30) 6%,
            rgba(0,0,0,.80) 12%,
            #000 19%,
            #000 81%,
            rgba(0,0,0,.80) 88%,
            rgba(0,0,0,.30) 94%,
            transparent 100%
        );

    mask-composite: intersect;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

/* =========================================================
   BLAUER LICHTSCHEIN
========================================================= */

.scene-blue::before {
    content: "";

    position: absolute;

    z-index: 0;

    width: 78%;
    height: 62%;

    left: 11%;
    top: 19%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(35,168,239,.14),
            rgba(35,168,239,.045) 42%,
            transparent 72%
        );

    filter: blur(65px);

    pointer-events: none;
}


/* =========================================================
   ORANGER LICHTSCHEIN
========================================================= */

.scene-orange::before {
    content: "";

    position: absolute;

    z-index: 0;

    width: 78%;
    height: 62%;

    left: 11%;
    top: 19%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(246,173,22,.12),
            rgba(246,173,22,.035) 42%,
            transparent 72%
        );

    filter: blur(65px);

    pointer-events: none;
}


/* =========================================================
   FEHLENDES BILD
========================================================= */

.scene-image[src=""] {
    display: none;
}


/* =========================================================
   MARKEN
========================================================= */

.brand-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 8px;

    margin-top: 28px;
}

.brand-grid div {
    min-height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 14px;

    background:
        rgba(255,255,255,.025);

    color: #ffffff;

    font-size: 13px;
    font-weight: 900;
}

/* =========================================================
   HERSTELLER-LOGOS BEI LEISTUNGEN
========================================================= */

.service-brands-label {
    margin-top: 28px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
}


.service-brands {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 18px;

    margin-top: 26px;
}

.service-brands-label + .service-brands { margin-top: 0; }

.service-brands img {
    display: block;

    width: 72px;
    height: 52px;

    object-fit: contain;
    object-position: center;

    opacity: .88;
}
/* =========================================================
   FOOTER
========================================================= */

.footer {
    border-top:
        1px solid
        rgba(255,255,255,.07);

    padding:
        40px
        var(--page-padding);

    color: #718392;

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .service-row {
        min-height: 500px;
    }

    .service-card {
        min-height: 340px;
        padding: 30px;
    }

    .scene {
        height: 390px;
    }

    .service-row:nth-child(odd) .service-card {
        margin-right: -60px;
    }

    .service-row:nth-child(even) .service-card {
        margin-left: -60px;
    }

    .service-row:nth-child(odd) .scene {
        margin-left: -60px;
    }

    .service-row:nth-child(even) .scene {
        margin-right: -60px;
    }

    .brand-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .brand-grid div:last-child {
        grid-column:
            1 / -1;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {

.service-brands {
    width: 100%;
    gap: 10px;
    margin-top: 22px;
}

.service-brands img {
    width: 60px;
    height: 44px;
}

/* ---------------------------------------------------------
   HEADER + BURGER MENÜ
--------------------------------------------------------- */

.header {
    padding: 16px 18px 0;
    align-items: flex-start;
}

.logo {
    width: 135px;
    height: auto;
}


/* Navigation */

.navigation {
    position: relative;
    padding-top: 4px;
    gap: 0;
}


/* Burger Button */

.menu-toggle {
    width: 44px;
    height: 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0;

    border: 1px solid rgba(35,168,239,.45);
    border-radius: 14px;

    background: rgba(7,18,29,.88);

    cursor: pointer;

    position: relative;
    z-index: 30;

    -webkit-tap-highlight-color: transparent;
}


/* Die drei Burger-Linien */

.menu-toggle span {
    display: block;

    width: 19px;
    height: 2px;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform .25s ease,
        opacity .25s ease;
}


/* ---------------------------------------------------------
   AUFKLAPPMENÜ
--------------------------------------------------------- */

.nav-links {
    position: absolute;

    top: 54px;
    right: 0;

    width: 205px;

    display: flex;
    flex-direction: column;

    gap: 7px;

    padding: 9px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 17px;

    background: rgba(5,14,23,.97);

    box-shadow:
        0 20px 60px rgba(0,0,0,.55);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;

    z-index: 25;
}


/* Geöffnetes Menü */

.navigation.menu-open .nav-links {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;
}


/* Links innerhalb des Burger-Menüs */

.navigation .nav-links a {
    display: flex;

    width: 100%;
    min-height: 44px;

    padding: 0 14px;

    align-items: center;
    justify-content: flex-start;

    border-radius: 11px;

    font-size: 12px;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   BURGER WIRD BEIM ÖFFNEN ZUM X
--------------------------------------------------------- */

.navigation.menu-open .menu-toggle span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.navigation.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.navigation.menu-open .menu-toggle span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}

    /* ---------------------------------------------------------
       HERO
    --------------------------------------------------------- */

    .hero {
        padding: 60px 20px 55px;
    }

    .hero-inner {
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(52px, 14vw, 68px);

        line-height: .91;
        letter-spacing: -.055em;
    }

    .hero p {
        max-width: 340px;

        margin: 24px auto 0;

        font-size: 15px;
        line-height: 1.55;
    }


    /* ---------------------------------------------------------
       MARKENLOGOS

       3 oben / 2 unten
    --------------------------------------------------------- */

    .hero-brands {
        width: 100%;
        max-width: 390px;

        margin: 34px auto 0;

        display: grid;

        grid-template-columns:
            repeat(6, 1fr);

        align-items: center;

        column-gap: 10px;
        row-gap: 18px;
    }

    .hero-brands img {
        width: 100%;
        max-width: 92px;
        height: 62px;

        margin: 0 auto;

        object-fit: contain;

        opacity: .88;
    }

    /* Audi */
    .hero-brands img:nth-child(1) {
        grid-column: 1 / 3;
    }

    /* Volkswagen */
    .hero-brands img:nth-child(2) {
        grid-column: 3 / 5;
    }

    /* CUPRA */
    .hero-brands img:nth-child(3) {
        grid-column: 5 / 7;
    }

    /* ŠKODA */
    .hero-brands img:nth-child(4) {
        grid-column: 2 / 4;
    }

    /* SEAT */
    .hero-brands img:nth-child(5) {
        grid-column: 4 / 6;
    }

    .hero-brands img:hover {
        transform: none;
    }


    /* ---------------------------------------------------------
       LEISTUNGEN CONTAINER
    --------------------------------------------------------- */

    .services {
        padding: 0 18px 65px;
    }


    /* ---------------------------------------------------------
       EINZELNE SERVICE-BEREICHE
    --------------------------------------------------------- */

    .service-row {
        width: 100%;

        min-height: auto;

        display: flex;
        flex-direction: column;

        padding: 48px 0;

        gap: 0;

        border-top:
            1px solid
            rgba(255,255,255,.055);
    }


    /* ---------------------------------------------------------
       SERVICE-KARTE
    --------------------------------------------------------- */

    .service-card {
        order: 1;

        width: 100%;
        max-width: none;

        min-height: auto;

        margin: 0 !important;

        padding: 27px 24px 29px;

        border-radius: 22px;

        z-index: 5;
    }


    /* ---------------------------------------------------------
       NUMMER IM HINTERGRUND
    --------------------------------------------------------- */

    .service-number {
        right: 19px;
        top: 15px;

        font-size: 64px;
    }


    /* ---------------------------------------------------------
       KLEINE ÜBERSCHRIFT
    --------------------------------------------------------- */

    .service-kicker {
        margin-bottom: 17px;

        padding-right: 50px;

        font-size: 9px;

        letter-spacing: .17em;

        line-height: 1.45;
    }


    /* ---------------------------------------------------------
       SERVICE HEADLINES
    --------------------------------------------------------- */

    .service-card h2 {
        max-width: 100%;

        font-size: clamp(40px, 11vw, 52px);

        line-height: .96;

        letter-spacing: -.05em;
    }


    /* ---------------------------------------------------------
       BESCHREIBUNG
    --------------------------------------------------------- */

    .service-card p {
        max-width: 100%;

        margin-top: 19px;

        font-size: 14px;

        line-height: 1.6;
    }


    /* ---------------------------------------------------------
       CHIPS
    --------------------------------------------------------- */

    .chips {
        gap: 7px;

        margin-top: 21px;
    }

    .chip {
        min-height: 32px;

        padding: 0 11px;

        font-size: 10px;
    }


    /* ---------------------------------------------------------
       BILDER

       Nicht mehr unter die Karte schieben.
       Eigenständiges Bild mit Abstand.
    --------------------------------------------------------- */

    .scene {
        order: 2;

        position: relative;

        width: 100%;

        height: auto;
        min-height: 0;

        aspect-ratio: 16 / 10;

        margin: 18px 0 0 !important;

        overflow: hidden;

        z-index: 1;
    }

.scene-image {
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0 !important;
    right: auto !important;

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);
    opacity: .96;

    /* Weiche Kanten LINKS + RECHTS */
    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.35) 5%,
            #000 12%,
            #000 88%,
            rgba(0,0,0,.35) 95%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,.35) 7%,
            #000 15%,
            #000 85%,
            rgba(0,0,0,.35) 93%,
            transparent 100%
        );

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.35) 5%,
            #000 12%,
            #000 88%,
            rgba(0,0,0,.35) 95%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0,0,0,.35) 7%,
            #000 15%,
            #000 85%,
            rgba(0,0,0,.35) 93%,
            transparent 100%
        );

    mask-composite: intersect;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

    /*
       Auf Touch-Geräten brauchen wir keinen
       starken Desktop-Hover-Zoom.
    */

    .service-row:hover .scene-image {
        transform: scale(1.01);
    }


    /* ---------------------------------------------------------
       MARKEN IN ABSCHNITT 05
    --------------------------------------------------------- */

    .brand-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 7px;

        margin-top: 22px;
    }

    .brand-grid div {
        min-height: 48px;

        font-size: 11px;
    }

    .brand-grid div:last-child {
        grid-column: 1 / -1;
    }


    /* ---------------------------------------------------------
       KONTAKT
    --------------------------------------------------------- */

    #kontakt {
        min-height: auto;
    }

    #kontakt .service-card {
        margin: 0 !important;
    }

    #kontakt .contact-actions {
        margin-top: 24px;
    }

    #kontakt .button {
        min-height: 46px;
    }


    /* ---------------------------------------------------------
       FOOTER
    --------------------------------------------------------- */

    .footer {
        padding: 30px 20px;

        text-align: center;

        font-size: 11px;
    }
}

/* =========================================================
   INSTAGRAM PROJEKT-LINK
========================================================= */

.project-link {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 26px;
}

.project-link-label {
    color: #8fa1af;

    font-size: 12px;
    font-weight: 700;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;

    padding: 0 15px;

    border:
        1px solid
        rgba(35,168,239,.35);

    border-radius: 999px;

    background:
        rgba(35,168,239,.055);

    color: #ccefff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.instagram-link:hover {
    transform: translateY(-1px);

    background:
        rgba(35,168,239,.11);

    border-color:
        rgba(35,168,239,.65);
}

.call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 16px;

    border: 1px solid rgba(246, 173, 22, .55);
    border-radius: 999px;

    background: rgba(246, 173, 22, .10);
    color: #ffd98a;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.call-link:hover {
    transform: translateY(-1px);
    background: rgba(246, 173, 22, .18);
    border-color: rgba(246, 173, 22, .85);
}

/* =========================================================
   KLEINE HANDYS
========================================================= */

@media (max-width: 430px) {

    .service-brands {
        gap: 8px;
    }

    .service-brands img {
        width: 60px;
        height: 44px;
    }

    .header {
        padding:
            14px
            16px
            0;
    }

    .logo {
        width: 125px;
    }

    .navigation {
        padding-top: 6px;
    }


    /* HERO */

    .hero {
        padding:
            52px
            17px
            48px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 60px);
    }

    .hero p {
        max-width: 320px;

        margin-top: 21px;

        font-size: 14px;
    }


    /* MARKENLOGOS */

    .hero-brands {
        max-width: 350px;

        margin-top: 30px;

        column-gap: 7px;
        row-gap: 14px;
    }

    .hero-brands img {
        max-width: 80px;

        height: 55px;
    }


    /* LEISTUNGEN */

    .services {
        padding:
            0
            16px
            55px;
    }

    .service-row {
        padding:
            42px
            0;
    }


    /* KARTEN */

    .service-card {
        padding:
            24px
            20px
            26px;

        border-radius: 20px;
    }

    .service-number {
        right: 16px;
        top: 14px;

        font-size: 58px;
    }

    .service-kicker {
        font-size: 8.5px;

        margin-bottom: 16px;

        padding-right: 45px;
    }

    .service-card h2 {
        font-size: clamp(38px, 11vw, 47px);
    }

    .service-card p {
        margin-top: 18px;

        font-size: 13.5px;

        line-height: 1.58;
    }


    /* CHIPS */

    .chips {
        margin-top: 19px;
    }

    .chip {
        min-height: 31px;

        padding: 0 10px;

        font-size: 9.5px;
    }


    /* BILDER */

    .scene {
        margin-top: 16px !important;

        aspect-ratio: 16 / 10;
    }


    /* KONTAKT */

    .contact-actions {
        gap: 9px;
    }

    .button {
        min-height: 44px;

        padding: 0 18px;

        font-size: 11px;
    }
}

/* =========================================================
   PAGE INTRO – FINAL
========================================================= */

body .page-intro {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 45px var(--page-padding) 35px;
    text-align: center;
}

body .page-intro h1 {
    margin: 0 auto;
    padding: 0;

    font-size: clamp(48px, 4vw, 68px);
    font-weight: 800;
    line-height: .94;
    letter-spacing: -.055em;

    color: #ffffff;
    text-align: center;
}

body .page-intro h1 span {
    color: var(--orange);
}


/* MOBILE */
@media (max-width: 750px) {

    body .page-intro {
        padding: 38px 18px 25px;
    }

    body .page-intro h1 {
        font-size: clamp(34px, 9vw, 42px);
        line-height: .94;
    }
    body .page-intro h1 span {
        display: block;
    }
}


/* KLEINE HANDYS */
@media (max-width: 430px) {

    body .page-intro {
        padding: 32px 16px 20px;
    }

    body .page-intro h1 {
        font-size: clamp(32px, 9vw, 40px);
    }
    body .page-intro h1 span {
        display: block;
    }
}

/* =========================================================
   IMPRESSUM + DATENSCHUTZ
========================================================= */

.legal-section {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;

    padding:
        0
        var(--page-padding)
        100px;
}


/* BOX – GLEICHER LOOK WIE PROJEKTKARTEN */

.legal-card {
    position: relative;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding:
        clamp(40px, 5vw, 70px);

    background:
        linear-gradient(
            145deg,
            rgba(9,24,37,.91),
            rgba(3,10,17,.86)
        );

    border:
        1px solid
        var(--card-border);

    border-radius: 28px;

    box-shadow:
        0 30px 90px rgba(0,0,0,.32),
        inset 0 1px 0 rgba(255,255,255,.025);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;
}


/* LICHTAKZENT WIE PROJEKTKARTEN */

.legal-card::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -190px;
    left: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(35,168,239,.16),
            transparent 68%
        );

    pointer-events: none;
}


/* ÜBERSCHRIFTEN */

.legal-card h2 {
    position: relative;
    z-index: 2;

    margin:
        45px
        0
        15px;

    color: #ffffff;

    font-size:
        clamp(25px, 2.5vw, 34px);

    line-height: 1.1;
    letter-spacing: -.035em;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card h3 {
    position: relative;
    z-index: 2;

    margin:
        30px
        0
        12px;

    color: var(--blue);

    font-size: 20px;
}


/* TEXT */

.legal-card p,
.legal-card li {
    position: relative;
    z-index: 2;

    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.75;
}

.legal-card p {
    margin:
        0
        0
        18px;
}


/* LISTEN */

.legal-card ul,
.legal-card ol {
    position: relative;
    z-index: 2;

    padding-left: 22px;
}


/* LINKS */

.legal-card a {
    position: relative;
    z-index: 2;

    color: var(--blue);
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}