/*
Theme Name: Suppan IT
Author: Lukas Suppan
Description: Individuelles WordPress Theme für Suppan IT
Version: 1.0
*/

/* =========================================================
   GRUNDLAGEN
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* =========================================================
   ABOUT IMAGE – LIGHTBOX
========================================================= */

.about-photo-button {
    display: inline-block;

    width: auto;
    height: auto;

    padding: 0;
    margin: 0;

    border: 0;
    outline: none;

    background: transparent;

    cursor: zoom-in;

    font: inherit;
    line-height: 0;
}

.about-photo-button img {
    display: block;
    width: auto;
    height: auto;
}

@media (max-width: 800px) {

    .about-photo-button {
        display: block;
        width: 100%;
    }

    .about-photo-button img {
        display: block;
        width: 100%;
        height: auto;
    }

}


/* =========================================================
   LIGHTBOX
========================================================= */

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}


/* Hintergrund */

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(7, 12, 22, .82);

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


/* Großes Bild */

.image-lightbox-content {
    position: relative;
    z-index: 2;

    max-width: min(1000px, 90vw);
    max-height: 85vh;

    transform: scale(.92);
    opacity: 0;

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1),
        opacity .3s ease;
}

.image-lightbox.is-open .image-lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.image-lightbox-content img {
    display: block;

    max-width: 100%;
    max-height: 85vh;

    width: auto;
    height: auto;

    border-radius: 14px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .4);
}


/* Schließen */

.image-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    z-index: 3;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;

    color: #fff;
    background: rgba(255,255,255,.08);

    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease;
}

.image-lightbox-close:hover {
    background: rgba(255,255,255,.15);
    transform: rotate(90deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .image-lightbox {
        padding: 20px;
    }

    .image-lightbox-content {
        max-width: 94vw;
        max-height: 80vh;
    }

    .image-lightbox-content img {
        max-height: 80vh;
        border-radius: 10px;
    }

    .image-lightbox-close {
        top: 16px;
        right: 16px;

        width: 42px;
        height: 42px;

        font-size: 27px;
    }

}




/* =========================================================
   ABOUT PORTRAIT
========================================================= */


/* About – persönliches Portrait */
.about-photo {
    display: flex;
    justify-content: flex-end;
    margin-top: -55px;
    padding-right: 55px;
}

.about-photo img {
    display: block;
    width: 190px;
    height: 190px;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 50%;
    transform: rotate(6deg);
    border: 6px solid #fff;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
}

@media (max-width: 800px) {

    .about-photo {
        width: 100%;
        margin-top: 45px;
        padding: 0;
    }

    .about-photo img {
        display: block;
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: center 15%;
        border-radius: 14px;
        transform: none;
        border: 0;
        box-shadow: none;
    }

}


/* =========================================================
   HEADER
========================================================= */



.site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
    height: 78px;

    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(17, 24, 39, 0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}


.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.site-logo img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.2s ease;
}

.site-logo:hover img {
    transform: translateY(-1px);
}

@media (max-width: 600px) {

    .site-logo img {
        width: 100%;
    }

}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 8px 0;

    color: #4b5563;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: -0.1px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


/* Hover */

.main-nav a:hover {
    color: #111827;
}


/* Blauer Unterstrich */

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #1597ff;

    border-radius: 2px;

    transition: width 0.22s ease;
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   KONTAKT CTA
========================================================= */

.main-nav .nav-contact {
    color: #111827;
    font-weight: 800;
}

.main-nav .nav-contact span {
    color: #1597ff;
    font-size: 16px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.main-nav .nav-contact:hover span {
    transform: translate(2px, -2px);
}


/* Kontakt bekommt keinen normalen Unterstrich */

.main-nav .nav-contact::after {
    display: none;
}

/* =========================================================
   HEADER CONTAINER ALIGNMENT
========================================================= */

.header-inner {
    width: 100%;
    max-width: 1170px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    
    /* Menü an die rechte Containerkante */
    margin-left: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 20px;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.btn-primary {
    background: #111827;
    color: #ffffff;

    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.btn-primary:hover {
    background: #1f2937;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.btn-secondary {
    background: #ffffff;
    color: #111827;

    border: 1px solid #dfe3e9;
}

.btn-secondary:hover {
    border-color: #bfc6d1;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 82% 45%,
            rgba(148, 163, 184, 0.12),
            transparent 32%
        ),
        #f5f7fa;

    padding: 115px 0 120px;
}



.hero-inner {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(380px, 0.85fr);

    align-items: center;

    gap: 100px;
}


/* ---------------------------------------------------------
   HERO TEXT
--------------------------------------------------------- */

.hero .eyebrow {
    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.2px;

    color: #667085;
}

.hero h1 {
    max-width: 720px;

    margin-bottom: 28px;

    color: #111827;

    font-size: clamp(52px, 5.4vw, 78px);

    line-height: 0.96;

    letter-spacing: -4px;

    font-weight: 800;
}


/* Die beiden Textabsätze */

.hero-text {
    max-width: 620px;

    color: #667085;

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 12px;
}


/* Buttons */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;
}


/* =========================================================
   HERO FEATURE CARDS
========================================================= */

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;

    width: 100%;
    max-width: 540px;
}

.hero-feature {
    position: relative;
    overflow: hidden;

    min-height: 210px;
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e1e5eb;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* Dezenter Akzent oben */

.hero-feature::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: #111827;

    opacity: 0.9;
}


/* Hover */

.hero-feature:hover {
    transform: translateY(-7px);

    border-color: #cbd2dc;

    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.12);
}


/* Icon */

.hero-feature-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f3f5f8;

    font-size: 24px;

    line-height: 1;
}


/* Titel */

.hero-feature strong {
    display: block;

    margin-bottom: 6px;

    color: #111827;

    font-size: 18px;
    font-weight: 750;

    line-height: 1.25;

    letter-spacing: -0.3px;
}


/* Untertitel */

.hero-feature span {
    display: block;

    color: #7b8494;

    font-size: 14px;

    line-height: 1.4;
}


/* Unterschiedliche, sehr dezente Akzentfarben */

.hero-feature:nth-child(1)::before {
    background: #3b82f6;
}

.hero-feature:nth-child(2)::before {
    background: #10b981;
}

.hero-feature:nth-child(3)::before {
    background: #f59e0b;
}

.hero-feature:nth-child(4)::before {
    background: #8b5cf6;
}


/* Icon-Hintergründe */

.hero-feature:nth-child(1) .hero-feature-icon {
    background: #eef6ff;
}

.hero-feature:nth-child(2) .hero-feature-icon {
    background: #ecfdf5;
}

.hero-feature:nth-child(3) .hero-feature-icon {
    background: #fff7ed;
}

.hero-feature:nth-child(4) .hero-feature-icon {
    background: #f5f3ff;
}


/* ---------------------------------------------------------
   HERO BUTTONS
--------------------------------------------------------- */

.hero .btn {
    min-height: 48px;

    padding: 0 21px;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1000px) {

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero h1 {
        max-width: 800px;
    }

    .hero-features {
        max-width: 700px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 800px) {

    .hero {
        padding: 80px 0 85px;
    }

    .hero h1 {
        font-size: clamp(44px, 11vw, 62px);

        letter-spacing: -2.5px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 500px) {

    .hero {
        padding: 65px 0 70px;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .btn {
        width: 100%;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-feature {
        min-height: 125px;
        padding: 18px 20px;

        justify-content: flex-start;
        gap: 12px;
    }

    .hero-feature-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .hero-feature strong {
        margin-bottom: 3px;
        font-size: 15px;
    }

    .hero-feature span {
        font-size: 12px;
    }

}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 110px 0;
}

.section-light {
    background: #ffffff;
}

.section-grey {
    background: #f5f7fa;
}

.section-dark {
    background: #111827;
    color: #ffffff;
}


/* =========================================================
   SECTION – SUBTLE BLUE LIGHT
========================================================= */

.about,
.section-grey,
.section-light {
    position: relative;
    overflow: hidden;
}

.about::after,
.section-grey::after,
.section-light::after {
    content: "";

    position: absolute;

    left: -20%;
    bottom: -2px;

    width: 40%;
    height: 9px;

    background: rgba(21, 151, 255, 0.7);

    filter: blur(8px);

    opacity: 0;

    pointer-events: none;

    z-index: 2;

    animation: sectionBlueLight 4s ease-in-out infinite;
}

@keyframes sectionBlueLight {

    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    70% {
        transform: translateX(300%);
        opacity: 0.85;
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translateX(300%);
        opacity: 0;
    }
}

/* =========================================================
   HERO – SUBTLE BLUE LIGHT
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";

    position: absolute;

    left: -20%;
    bottom: -2px;

    width: 40%;
    height: 9px;

    background: rgba(21, 151, 255, 0.7);

    filter: blur(8px);

    opacity: 0;

    pointer-events: none;

    z-index: 5;

    animation: heroBlueLight 4s ease-in-out infinite;
}

@keyframes heroBlueLight {

    0% {
        transform: translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.85;
    }

    70% {
        transform: translateX(300%);
        opacity: 0.85;
    }

    85% {
        opacity: 0;
    }

    100% {
        transform: translateX(300%);
        opacity: 0;
    }
}

/* =========================================================
   SERVICES – NUMBER PULSE
========================================================= */

.service-number {
    animation: serviceNumberPulse 4s ease-in-out infinite;
}

.service-card:nth-child(1) .service-number {
    --pulse-color: #1597ff;
}

.service-card:nth-child(2) .service-number {
    --pulse-color: #22c55e;
}

.service-card:nth-child(3) .service-number {
    --pulse-color: #f97316;
}

.service-card:nth-child(4) .service-number {
    --pulse-color: #8b5cf6;
}

.service-card:nth-child(5) .service-number {
    --pulse-color: #06b6d4;
}

@keyframes serviceNumberPulse {

    0%,
    100% {
        color: #dfe4eb;
        text-shadow: none;
    }

    50% {
        color: var(--pulse-color);
        text-shadow:
            0 0 10px color-mix(
                in srgb,
                var(--pulse-color) 45%,
                transparent
            );
    }
}


/* =========================================================
   MOBILE – FINE TUNING
========================================================= */

@media (max-width: 800px) {

    .services {
        padding: 90px 0;
    }

    .services-header {
        margin-bottom: 35px;
    }

    .services-header .eyebrow {
        margin-bottom: 16px;
    }

    .services-header h2 {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1;
        letter-spacing: -2px;
        margin-bottom: 16px;
    }

    .services-header p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       SERVICE LIST
    ----------------------------------------------------- */

    .services-grid {
        margin-top: 40px;
    }


    /* -----------------------------------------------------
       SERVICE CARD
    ----------------------------------------------------- */

    .service-card {
        grid-template-columns: 48px minmax(0, 1fr);

        column-gap: 16px;

        padding: 32px 0;
    }


    /* -----------------------------------------------------
       NUMBER
    ----------------------------------------------------- */

    .service-number {
        font-size: 32px;
        letter-spacing: -2px;
    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .service-card h3 {
        font-size: 21px;
        line-height: 1.1;
        letter-spacing: -0.6px;

        margin-bottom: 10px;
    }


    /* -----------------------------------------------------
       TEXT
    ----------------------------------------------------- */

    .service-card p {
        max-width: none;

        margin-bottom: 16px;

        font-size: 13px;
        line-height: 1.65;
    }


    /* -----------------------------------------------------
       TAGS
    ----------------------------------------------------- */

    .service-card ul {
        gap: 6px 13px;
    }

    .service-card li {
        padding-left: 10px;

        font-size: 10.5px;
    }

    .service-card li::before {
        width: 3px;
        height: 3px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .service-card a {
        margin-top: 18px;

        font-size: 12px;
    }


    /* -----------------------------------------------------
       MOBILE COLORS
    ----------------------------------------------------- */

    .service-card:nth-child(1) .service-number,
    .service-card:nth-child(1) h3 {
        color: #1597ff;
    }

    .service-card:nth-child(2) .service-number,
    .service-card:nth-child(2) h3 {
        color: #22c55e;
    }

    .service-card:nth-child(3) .service-number,
    .service-card:nth-child(3) h3 {
        color: #f97316;
    }

    .service-card:nth-child(4) .service-number,
    .service-card:nth-child(4) h3 {
        color: #8b5cf6;
    }

    .service-card:nth-child(5) .service-number,
    .service-card:nth-child(5) h3 {
        color: #06b6d4;
    }
}


/* =========================================================
   CONTACT – SUBTLE BLUE GLOW
========================================================= */

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::after {
    content: "";

    position: absolute;

    left: -220px;
    bottom: -100px;

    width: 1200px;
    height: 630px;

    background:
        radial-gradient(
            ellipse at 30% 75%,
            rgba(21, 151, 255, 0.22) 0%,
            rgba(21, 151, 255, 0.13) 28%,
            rgba(21, 151, 255, 0.06) 50%,
            transparent 72%
        );

    filter: blur(18px);

    pointer-events: none;

    z-index: 0;

    transform-origin: left bottom;

    animation: contactBluePulse 5s ease-in-out infinite;
}

@keyframes contactBluePulse {

    0%,
    100% {
        transform: scale(0.92) translate(0, 0);
        opacity: 0.55;
    }

    50% {
        transform: scale(1.08) translate(35px, -15px);
        opacity: 0.9;
    }
}


/* ---------------------------------------------------------
   ABOUT / ÜBER MICH
--------------------------------------------------------- */

.about {
    position: relative;
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}


/* GRID */

.about-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 120px;

    align-items: start;
}


/* LINKER BEREICH */

.about-intro {
    position: relative;
}

.about .eyebrow {
    margin: 0 0 20px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.2px;

    color: #667085;
}

.about h2 {
    max-width: 560px;

    margin: 0;

    color: #111827;

    font-size: clamp(42px, 4.2vw, 62px);
    line-height: 0.98;

    letter-spacing: -3.2px;

    font-weight: 800;
}

.about h2 span {
    display: block;

    color: #7b8494;
}


/* STATS */

.about-stats {
    display: flex;

    gap: 0;

    margin-top: 55px;

    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;

    max-width: 500px;
}

.about-stat {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 22px 30px 22px 0;

    min-width: 185px;
}

.about-stat + .about-stat {
    padding-left: 30px;

    border-left: 1px solid #e5e7eb;
}

.about-stat strong {
    color: #111827;

    font-size: 27px;
    line-height: 1;

    letter-spacing: -1.2px;

    font-weight: 800;
}

.about-stat span {
    color: #7b8494;

    font-size: 11px;
    line-height: 1.35;

    font-weight: 600;
}


/* RECHTE SEITE */

.about-content {
    max-width: 620px;

    padding-top: 4px;
}

.about-content p {
    margin: 0 0 23px;

    color: #667085;

    font-size: 15px;
    line-height: 1.75;
}

.about-content .about-lead {
    margin-bottom: 28px;

    color: #111827;

    font-size: 19px;
    line-height: 1.6;

    letter-spacing: -0.25px;

    font-weight: 500;
}


/* TRENNLINIE */

.about-divider {
    width: 55px;
    height: 3px;

    margin-bottom: 28px;

    background: #111827;
}


/* LINK */

.about-content .text-link {
    display: inline-flex;
    align-items: center;

    margin-top: 5px;

    color: #111827;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    border-bottom: 1px solid #111827;

    padding-bottom: 5px;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.about-content .text-link:hover {
    opacity: 0.65;

    transform: translateX(4px);
}


/* =========================================================
   DIENSTLEISTUNGEN
========================================================= */

.services {
    position: relative;

    padding: 125px 0;

    background: #f5f7fa;

    overflow: hidden;
}

.services::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -430px;
    bottom: -350px;

    border-radius: 50%;

    border: 1px solid rgba(17, 24, 39, 0.045);

    pointer-events: none;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.services-header {
    max-width: 1000px;
    margin-bottom: 55px;
}

.services-header .eyebrow {
    margin-bottom: 20px;

    color: #526581;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

.services-header h2 {
    max-width: 900px;

    margin-bottom: 20px;

    color: #111827;

    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.services-header p {
    max-width: 700px;

    color: #526581;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   SERVICES — EDITORIAL
========================================================= */

.services-grid {
    display: flex;
    flex-direction: column;

    margin-top: 65px;
}


/* =========================================================
   SERVICE ROW
========================================================= */

.service-card {
    position: relative;

    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;

    column-gap: 35px;

    padding: 44px 0;

    background: transparent;

    border: 0;
    border-top: 1px solid #dfe4eb;
    border-radius: 0;

    box-shadow: none;

    overflow: hidden;

    transition: background 0.35s ease;
}

.service-card:last-child {
    border-bottom: 1px solid #dfe4eb;
}


/* =========================================================
   BIG NUMBER
========================================================= */

.service-number {
    grid-column: 1;
    grid-row: 1 / 5;

    position: relative;

    padding-top: 2px;

    color: #dfe4eb;

    font-size: 54px;
    line-height: 0.9;
    font-weight: 800;

    letter-spacing: -3px;

    transition:
        color 0.3s ease,
        transform 0.35s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   CONTENT
========================================================= */

.service-card h3 {
    grid-column: 2;
    grid-row: 1;

    margin: 0 0 12px;

    color: #111827;

    font-size: 30px;
    line-height: 1.05;

    letter-spacing: -1.2px;
    font-weight: 800;

    transition:
        color 0.3s ease,
        transform 0.35s cubic-bezier(.22, 1, .36, 1);
}

.service-card p {
    grid-column: 2;
    grid-row: 2;

    max-width: 620px;

    margin: 0 0 18px;

    color: #697386;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   TAGS
========================================================= */

.service-card ul {
    grid-column: 2;
    grid-row: 3;

    display: flex;
    flex-wrap: wrap;

    gap: 7px 22px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.service-card li {
    position: relative;

    padding-left: 12px;

    color: #8992a2;

    font-size: 12px;
    font-weight: 600;
}

.service-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    background: #1597ff;

    border-radius: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   ARROW
========================================================= */


/* =========================================================
   CTA
========================================================= */

.service-card a {
    grid-column: 2;
    grid-row: 4;

    display: inline-flex;
    justify-self: start;

    margin-top: 20px;

    color: #111827;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition: color 0.25s ease;
}

.service-card a:hover {
    color: #1597ff;
}


/* =========================================================
   SERVICE HOVER – KOMPLETT OHNE HARTE KANTE
========================================================= */

.service-card {
    position: relative;
    overflow: visible;
    isolation: isolate;

    /* KEIN Hintergrund auf der Karte */
    background: transparent !important;

    /* Keine seitlichen Kanten */
    border-left: 0 !important;
    border-right: 0 !important;

    transition: none;
}


/* ---------------------------------------------------------
   SOFT COLOR GLOW
--------------------------------------------------------- */

.service-card::before {
    content: "";

    position: absolute;

    left: -50%;
    right: -50%;
    top: -35px;
    bottom: -35px;

    width: auto;
    height: auto;

    opacity: 0;

    pointer-events: none;
    z-index: -1;

    background:
        radial-gradient(
            ellipse at 30% 50%,
            var(--service-color) 0%,
            transparent 68%
        );

    filter: blur(28px);

    transition:
        opacity 0.5s cubic-bezier(.22, 1, .36, 1);
}


/* ---------------------------------------------------------
   COLORS
--------------------------------------------------------- */

.service-card:nth-child(1) {
    --service-color: rgba(21, 151, 255, 0.18);
}

.service-card:nth-child(2) {
    --service-color: rgba(34, 197, 94, 0.18);
}

.service-card:nth-child(3) {
    --service-color: rgba(249, 115, 22, 0.18);
}

.service-card:nth-child(4) {
    --service-color: rgba(139, 92, 246, 0.18);
}

.service-card:nth-child(5) {
    --service-color: rgba(6, 182, 212, 0.18);
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.service-card:hover {
    background: transparent !important;
}

.service-card:hover::before {
    opacity: 1;
}


/* ---------------------------------------------------------
   01 – BLUE
--------------------------------------------------------- */

.service-card:nth-child(1):hover .service-number,
.service-card:nth-child(1):hover h3 {
    color: #1597ff;
}


/* ---------------------------------------------------------
   02 – GREEN
--------------------------------------------------------- */

.service-card:nth-child(2):hover .service-number,
.service-card:nth-child(2):hover h3 {
    color: #22c55e;
}


/* ---------------------------------------------------------
   03 – ORANGE
--------------------------------------------------------- */

.service-card:nth-child(3):hover .service-number,
.service-card:nth-child(3):hover h3 {
    color: #f97316;
}



/* ---------------------------------------------------------
   04 – VIOLET
--------------------------------------------------------- */

.service-card:nth-child(4):hover .service-number,
.service-card:nth-child(4):hover h3 {
    color: #8b5cf6;
}


/* ---------------------------------------------------------
   05 – CYAN
--------------------------------------------------------- */

.service-card:nth-child(5):hover .service-number,
.service-card:nth-child(5):hover h3 {
    color: #06b6d4;
}



/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 800px) {

    .service-card::before {
        display: none;
    }

}


/* =========================================================
   SERVICE NUMBER PULSE
========================================================= */

.service-number {
    animation: serviceNumberPulse 4s ease-in-out infinite;
}

.service-card:nth-child(1) .service-number {
    --pulse-color: #1597ff;
}

.service-card:nth-child(2) .service-number {
    --pulse-color: #22c55e;
}

.service-card:nth-child(3) .service-number {
    --pulse-color: #f97316;
}

.service-card:nth-child(4) .service-number {
    --pulse-color: #8b5cf6;
}

.service-card:nth-child(5) .service-number {
    --pulse-color: #06b6d4;
}

@keyframes serviceNumberPulse {

    0%,
    100% {
        color: #dfe4eb;
        text-shadow: none;
    }

    50% {
        color: var(--pulse-color);
        text-shadow:
            0 0 10px color-mix(
                in srgb,
                var(--pulse-color) 45%,
                transparent
            );
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .services-grid {
        margin-top: 45px;
    }

    .service-card {
        grid-template-columns: 55px minmax(0, 1fr);
        grid-template-rows: auto auto auto auto;

        column-gap: 18px;

        padding: 35px 0;
    }

    .service-number {
        grid-column: 1;
        grid-row: 1 / 5;

        font-size: 34px;
        letter-spacing: -2px;
    }

    .service-card h3 {
        grid-column: 2;
        grid-row: 1;

        font-size: 22px;
        letter-spacing: -0.7px;
    }

    .service-card p {
        grid-column: 2;
        grid-row: 2;

        font-size: 13px;
        line-height: 1.65;
    }

    .service-card ul {
        grid-column: 2;
        grid-row: 3;

        gap: 6px 15px;
    }

    .service-card a {
        grid-column: 2;
        grid-row: 4;
    }

    .service-card li {
        font-size: 11px;
    }


    /* Mobile – Farben dauerhaft sichtbar */

    .service-card:nth-child(1) .service-number,
    .service-card:nth-child(1) h3 {
        color: #1597ff;
    }

    .service-card:nth-child(2) .service-number,
    .service-card:nth-child(2) h3 {
        color: #22c55e;
    }

    .service-card:nth-child(3) .service-number,
    .service-card:nth-child(3) h3 {
        color: #f97316;
    }

    .service-card:nth-child(4) .service-number,
    .service-card:nth-child(4) h3 {
        color: #8b5cf6;
    }

    .service-card:nth-child(5) .service-number,
    .service-card:nth-child(5) h3 {
        color: #06b6d4;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-number {
        animation: none;
    }

    .service-card,
    .service-card h3,
    .service-number {
        transition: none;
    }
}


/* =========================
   FAQ
========================= */

.faq-wrapper {
    width: 100%;
    max-width: none;
    counter-reset: faq-counter;
}

.faq-wrapper .eyebrow {
    margin-bottom: 18px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    line-height: 1;
}

.faq-wrapper h2 {
    max-width: 760px;
    margin-bottom: 65px;
    color: #111827;
    font-size: clamp(46px, 5vw, 68px);
    line-height: .95;
    letter-spacing: -3.5px;
    font-weight: 800;
}


/* =========================
   FAQ – Zeilen
========================= */

.faq-item {
    width: 100%;
    border-top: 1px solid #dfe4eb;
}

.faq-item:last-child {
    border-bottom: 1px solid #dfe4eb;
}

.faq-item details {
    position: relative;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100px;
    padding: 0 70px 0 55px;

    color: #111827;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;

    cursor: pointer;
    list-style: none;

    transition:
        color .25s ease,
        padding-left .25s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::marker {
    display: none;
}


/* =========================
   Nummern
========================= */

.faq-item summary::before {
    content: counter(faq-counter, decimal-leading-zero);
    counter-increment: faq-counter;

    position: absolute;
    left: 0;
    top: 50%;

    transform: translateY(-50%);

    color: #cbd1da;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: color .25s ease;
}


/* =========================
   Plus / X
========================= */

.faq-item summary::after {
    content: "+";

    position: absolute;
    right: 5px;
    top: 50%;

    color: #8992a2;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    transform: translateY(-50%) rotate(0deg);

    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1),
        color .25s ease;
}


/* =========================
   Hover – Grundverhalten
========================= */

.faq-item:hover summary {
    padding-left: 60px;
}

.faq-item:hover summary::after {
    color: #111827;
}


/* =========================
   01 – Blau
========================= */

.faq-item:nth-of-type(1):hover summary,
.faq-item:nth-of-type(1) details[open] summary {
    color: #1597ff;
}

.faq-item:nth-of-type(1):hover summary::before,
.faq-item:nth-of-type(1) details[open] summary::before {
    color: #1597ff;
}

.faq-item:nth-of-type(1):hover summary::after,
.faq-item:nth-of-type(1) details[open] summary::after {
    color: #1597ff;
}


/* =========================
   02 – Grün
========================= */

.faq-item:nth-of-type(2):hover summary,
.faq-item:nth-of-type(2) details[open] summary {
    color: #22c55e;
}

.faq-item:nth-of-type(2):hover summary::before,
.faq-item:nth-of-type(2) details[open] summary::before {
    color: #22c55e;
}

.faq-item:nth-of-type(2):hover summary::after,
.faq-item:nth-of-type(2) details[open] summary::after {
    color: #22c55e;
}


/* =========================
   03 – Orange
========================= */

.faq-item:nth-of-type(3):hover summary,
.faq-item:nth-of-type(3) details[open] summary {
    color: #f97316;
}

.faq-item:nth-of-type(3):hover summary::before,
.faq-item:nth-of-type(3) details[open] summary::before {
    color: #f97316;
}

.faq-item:nth-of-type(3):hover summary::after,
.faq-item:nth-of-type(3) details[open] summary::after {
    color: #f97316;
}


/* =========================
   04 – Violett
========================= */

.faq-item:nth-of-type(4):hover summary,
.faq-item:nth-of-type(4) details[open] summary {
    color: #8b5cf6;
}

.faq-item:nth-of-type(4):hover summary::before,
.faq-item:nth-of-type(4) details[open] summary::before {
    color: #8b5cf6;
}

.faq-item:nth-of-type(4):hover summary::after,
.faq-item:nth-of-type(4) details[open] summary::after {
    color: #8b5cf6;
}


/* =========================
   Antwort
========================= */

.faq-answer {
    width: 100%;
    max-width: 720px;

    padding: 0 70px 0 55px;

    color: #697386;
    font-size: 14px;
    line-height: 1.75;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transition:
        max-height .4s cubic-bezier(.22, 1, .36, 1),
        padding-bottom .4s cubic-bezier(.22, 1, .36, 1),
        opacity .12s ease;
}

.faq-item details[open] .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 45px;

    transition:
        max-height .4s cubic-bezier(.22, 1, .36, 1),
        padding-bottom .4s cubic-bezier(.22, 1, .36, 1),
        opacity .3s ease;
}


/* =========================
   Geöffnet
========================= */

.faq-item details[open] summary::after {
    content: "×";

    font-size: 27px;

    transform: translateY(-50%) rotate(90deg);
}

.faq-item details[open] .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 32px;
}


/* =========================
   Mobile
========================= */

@media (max-width: 800px) {

    .faq-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .faq-wrapper h2 {
        margin-bottom: 40px;
        font-size: 42px;
        line-height: .98;
        letter-spacing: -2.5px;
    }

    .faq-item summary {
        min-height: 78px;
        padding: 0 45px 0 42px;
        font-size: 14px;
    }

    .faq-item summary::before {
        left: 0;
        font-size: 10px;
    }

    .faq-item summary::after {
        right: 2px;
        font-size: 21px;
    }

    .faq-item:hover summary {
        padding-left: 47px;
    }

    .faq-answer {
        width: 100%;
        max-width: none;
        padding: 0 40px 24px 42px;
        font-size: 13px;
        line-height: 1.7;
    }

}


/* =========================================================
   KONTAKT
========================================================= */

.contact-section {
    position: relative;

    overflow: hidden;

    background: #111827;
    color: #ffffff;

    padding: 120px 0;
}



/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.contact-grid {
    position: relative;
    z-index: 1;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(360px, 0.72fr);

    gap: 110px;

    align-items: center;
}


/* ---------------------------------------------------------
   LINKER BEREICH
--------------------------------------------------------- */

.contact-content {
    max-width: 650px;
}

.contact-content .eyebrow {
    margin-bottom: 20px;

    color: #98a1b2;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.contact-content h2 {
    max-width: 600px;

    margin-bottom: 28px;

    color: #ffffff;

    font-size: clamp(48px, 5vw, 72px);

    line-height: 0.96;

    letter-spacing: -3.5px;

    font-weight: 800;
}


.contact-content > p {
    max-width: 560px;

    margin-bottom: 42px;

    color: #aeb7c5;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   KONTAKTDETAILS
========================================================= */

.contact-details {
    display: grid;
    gap: 0;
    max-width: 600px;
}

.contact-detail {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail strong {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-detail span,
.contact-detail a {
    display: inline-block;
    color: #c4cad5;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: #ffffff;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {
    position: relative;
    z-index: 1;

    width: 100%;
    max-width: 620px;

    padding: 42px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;

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


/* ---------------------------------------------------------
   FORM HEADER
--------------------------------------------------------- */

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header span {
    display: block;

    margin-bottom: 12px;

    color: #1597ff;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-form-header h3 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -1px;
    font-weight: 800;
}

.contact-form-header p {
    max-width: 480px;

    margin: 0;

    color: #8791a1;

    font-size: 13px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   FORM ROW
--------------------------------------------------------- */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* ---------------------------------------------------------
   FIELD
--------------------------------------------------------- */

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: #cbd3df;

    font-size: 11px;
    font-weight: 700;
}

.form-field label span {
    color: #667085;
    font-weight: 500;
}


/* ---------------------------------------------------------
   INPUTS
--------------------------------------------------------- */

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 13px 15px;

    color: #fff;

    font-family: inherit;
    font-size: 13px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-field textarea {
    min-height: 125px;

    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #667085;
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;

    width: 100%;
    box-sizing: border-box;

    padding: 13px 15px;

    color: #fff;
    font-family: inherit;
    font-size: 13px;

    background:
        rgba(255, 255, 255, 0.045)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23667085' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right 15px center;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;

    outline: none;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.form-field select:focus {
    background:
        rgba(255, 255, 255, 0.06)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%231597ff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right 15px center;

    border-color: rgba(21, 151, 255, 0.65);

    box-shadow:
        0 0 0 3px rgba(21, 151, 255, 0.08);
}

.form-field select option {
    color: #111827;
    background: #fff;
}

.form-note {
    margin: 12px 0 0;

    color: #667085;

    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* ---------------------------------------------------------
   FOCUS
--------------------------------------------------------- */

.form-field input:focus,
.form-field textarea:focus {
    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(21, 151, 255, 0.65);

    box-shadow:
        0 0 0 3px rgba(21, 151, 255, 0.08);
}


/* ---------------------------------------------------------
   SUBMIT
--------------------------------------------------------- */

.form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    width: 100%;

    margin-top: 4px;

    padding: 15px 18px;

    color: #fff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 800;

    background: #1597ff;

    border: 0;
    border-radius: 9px;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(21, 151, 255, 0.16);

    transition:
        background 0.25s ease,
        box-shadow 0.3s ease,
}

.form-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
}

.form-submit-text {
    display: inline-block;
}

.form-submit-arrow {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 12px;
    flex: 0 0 24px;
}

.form-submit-arrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateY(-50%);
    transition:
        width 0.35s cubic-bezier(.22,1,.36,1);
}

.form-submit-arrow i {
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition:
        transform 0.35s cubic-bezier(.22,1,.36,1);
}

.form-submit:hover .form-submit-arrow::before {
    width: 22px;
}

.form-submit:hover .form-submit-arrow i {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .contact-form {
        padding: 28px 22px;

        border-radius: 15px;
    }

    .contact-form-header {
        margin-bottom: 26px;
    }

    .contact-form-header h3 {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-field {
        margin-bottom: 17px;
    }

    .form-field input,
    .form-field textarea {
        padding: 12px 13px;
    }

    .form-submit {
        padding: 14px 16px;
    }
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;

    background: #0b1120;
    color: #ffffff;

    padding: 75px 0 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {
    display: grid;

    grid-template-columns: 1.5fr 1fr 0.7fr;

    gap: 80px;

    padding-bottom: 60px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-eyebrow {
    margin-bottom: 18px;

    color: #667085;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.footer-brand strong {
    max-width: 430px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.05;

    letter-spacing: -1.2px;
    font-weight: 800;
}

.footer-brand p {
    max-width: 360px;

    margin-top: 18px;

    color: #8791a1;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FOOTER LABELS
========================================================= */

.footer-label {
    display: block;

    margin-bottom: 20px;

    color: #667085;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   FOOTER CONTACT
========================================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact a {
    display: block;

    margin-bottom: 10px;

    color: #d8dee8;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-contact a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    display: block;

    margin-bottom: 10px;

    color: #8791a1;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;

    color: #5f6b7d;

    font-size: 11px;
    line-height: 1.5;
}

/* Footer – Kontrastoptimierung */
.footer-eyebrow,
.footer-label {
    color: #9ca8b8;
}

.footer-brand p {
    color: #9ca8b8;
}

.footer-bottom p,
.footer-bottom span {
    color: #9ca8b8;
}

.footer-contact a,
.footer-links a {
    color: #ffffff;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: #1597ff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .site-footer {
        padding: 60px 0 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;

        gap: 42px;

        padding-bottom: 45px;
    }

    .footer-brand strong {
        font-size: 26px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-label {
        margin-bottom: 14px;
    }

    .footer-contact a,
    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.8s cubic-bezier(.22, 1, .36, 1),
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   SERVICE STAGGER
========================================================= */

.service-card:nth-child(1) {
    transition-delay: 0s;
}

.service-card:nth-child(2) {
    transition-delay: 0.08s;
}

.service-card:nth-child(3) {
    transition-delay: 0.16s;
}

.service-card:nth-child(4) {
    transition-delay: 0.24s;
}

.service-card:nth-child(5) {
    transition-delay: 0.32s;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .container {
        width: min(100% - 40px, 900px);
    }

    .hero-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero h1 {
        max-width: 800px;
    }

    .hero-features {
        max-width: 650px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .contact-card {
        max-width: 500px;
    }
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-toggle {
    display: none;

    position: relative;
    z-index: 1200;

    width: 44px;
    height: 44px;

    padding: 0;
    margin: 0;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.mobile-menu-toggle span {
    position: absolute;

    left: 10px;

    width: 24px;
    height: 2px;

    background: #111827;
    border-radius: 2px;

    transition:
        transform 0.25s ease,
        top 0.25s ease;
}

.mobile-menu-toggle span:first-child {
    top: 17px;
}

.mobile-menu-toggle span:last-child {
    top: 25px;
}


/* X wenn Menü offen */

.mobile-menu-toggle.is-open span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-open span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}


/* =========================================================
   OVERLAY
========================================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 1100;

    background: #f8fafc;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-inner {
    width: 100%;
    max-width: 1170px;

    height: 100%;

    margin: 0 auto;

    padding: 85px 24px 30px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: grid;
    grid-template-columns: 35px 1fr auto;
    align-items: center;

    min-height: 72px;

    color: #111827;

    border-bottom: 1px solid #e2e6ec;

    text-decoration: none;

    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.8px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-nav a:first-child {
    border-top: 1px solid #e2e6ec;
}

.mobile-nav a:hover {
    color: #1597ff;
    padding-left: 6px;
}

.mobile-nav a span {
    color: #9aa3b2;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-nav a strong {
    color: #1597ff;

    font-size: 20px;
    font-weight: 500;

    transition: transform 0.2s ease;
}

.mobile-nav a:hover strong {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding-top: 25px;

    border-top: 1px solid #e2e6ec;
}

.mobile-menu-footer strong {
    color: #111827;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mobile-menu-footer span {
    color: #7b8494;

    font-size: 11px;
}


/* =========================================================
   MOBILE BREAKPOINT
========================================================= */

@media (max-width: 850px) {

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .site-header {
        height: 72px;
    }

}


/* =========================================================
   ANIMATIONS – HERO INTRO
========================================================= */

.hero .eyebrow,
.hero h1,
.hero > .container > .hero-content > p,
.hero-actions,
.hero-features {
    opacity: 0;
    transform: translateY(22px);
    animation: heroFadeUp 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero .eyebrow {
    animation-delay: 0.05s;
}

.hero h1 {
    animation-delay: 0.15s;
}

.hero > .container > .hero-content > p {
    animation-delay: 0.25s;
}

.hero-actions {
    animation-delay: 0.35s;
}

.hero-features {
    animation-delay: 0.45s;
}


@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero .eyebrow,
    .hero h1,
    .hero > .container > .hero-content > p,
    .hero-actions,
    .hero-features {
        opacity: 1;
        transform: none;
        animation: none;
    }

}

#ueber-mich {
    scroll-margin-top: 72px;
}

/* =========================================================
   BACK TO TOP – SUBTLE
========================================================= */

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 1100;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: #004b87;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    box-shadow:
        0 8px 24px rgba(21, 151, 255, 0.22),
        0 4px 12px rgba(17, 24, 39, 0.10);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s cubic-bezier(.22,1,.36,1),
        box-shadow 0.3s ease;
}

.back-to-top span {
    width: 7px;
    height: 7px;

    border-left: 2px solid #fff;
    border-top: 2px solid #fff;

    transform: rotate(45deg);

    margin-top: 4px;

    transition: transform 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow:
        0 12px 30px rgba(21, 151, 255, 0.30),
        0 6px 16px rgba(17, 24, 39, 0.12);

    transform: translateY(-2px);
}

.back-to-top:hover span {
    transform: rotate(45deg) translate(-2px, -2px);
}

@media (max-width: 500px) {

    .back-to-top {
        right: 16px;
        bottom: 16px;

        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .back-to-top {
        transition: none;
    }
}


/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
    min-height: 70vh;

    padding: 50px 0 100px;

    background: #f5f7fa;
}

.legal-page-header {
    max-width: 800px;

    margin-bottom: 55px;
}

.legal-page-header .eyebrow {
    margin-bottom: 18px;

    color: #526581;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.legal-page-header h1 {
    margin: 0;

    color: #111827;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -3px;
    font-weight: 800;
}

.legal-content {
    max-width: 800px;

    color: #697386;

    font-size: 14px;
    line-height: 1.8;
}

.legal-content h2 {
    margin: 45px 0 14px;

    color: #111827;

    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    font-weight: 800;
}

.legal-content h3 {
    margin: 32px 0 10px;

    color: #111827;

    font-size: 17px;
    font-weight: 800;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content ul {
    margin: 0 0 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 7px;
}

.legal-content a {
    color: #1597ff;
    font-weight: 600;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 800px) {

    .legal-page {
        padding: 50px 0 75px;
    }

    .legal-page-header {
        margin-bottom: 40px;
    }

    .legal-page-header h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .legal-content {
        font-size: 13px;
        line-height: 1.75;
    }

    .legal-content h2 {
        margin-top: 35px;

        font-size: 21px;
    }
}