/* =========================================
   VARIABLES & BASE
========================================= */
:root {
    --bg: #0a0a1a;
    --card: #16213e;
    --text: #e0e0ff;
    --accent: #00d4ff;
    --mint: #00ffbb;
    --glow: rgba(0, 212, 255, 0.4);
    --glow-mint: rgba(0, 255, 187, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#particle-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0d1b2a, #000814);
}

/* Einzelne Partikel */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d4ff, 0 0 15px #0099cc;
    opacity: 0.7;
}


body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    position: relative;
    background: #0a0a1a;
    color: white;
    font-family: "Nunito Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   NAVIGATION – NEU & SAUBER
========================================= */

/* =========================================
   LOGO – RUND MIT GLOW (2025 Style)
========================================= */

.logo {
    height: 70px;
    /* deine gewünschte Größe */
    width: 70px;
    border-radius: 50%;
    /* macht es rund */
    overflow: hidden;
    /* damit das Bild nicht rausguckt */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.15);
    /* leichter Cyan-Hintergrund */
    border: 2px solid rgba(0, 212, 255, 0.4);
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.2),
        inset 0 0 30px rgba(0, 212, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    padding: 8px;
    /* damit das Bild nicht am Rand klebt */
}

.logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* Bild bleibt proportional */
    border-radius: 50%;
    /* auch das Bild selbst rund */
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover-Effekt – wird lebendig */
.logo:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 0 50px rgba(0, 212, 255, 0.7),
        0 0 90px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 255, 187, 0.6);
}

.logo:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

/* Beim Scrollen etwas kleiner & dezenter (optional, aber mega edel) */
nav.scrolled .logo {
    height: 68px;
    width: 68px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Hover-Effekt – edel, aber dezent */
.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-img {
    filter: brightness(1.4) drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

/* Optional: bei Scroll kleiner machen (wie bei modernen Sites) */
nav.scrolled .logo {
    height: 40px;
}

nav.scrolled .logo-img {
    filter: brightness(1.2);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    backdrop-filter: blur(12px);
    transition: background 0.3s;
}

nav.scrolled {
    background: rgba(10, 10, 26, 0.95);
}

/* WICHTIG: Container mit seitlichem Abstand */
.nav-content {
    max-width: 1400px;
    /* gleiche Breite wie dein .container */
    margin: 0 auto;
    /* zentriert den Inhalt */
    padding: 0 5vw;
    /* ca. 10–15% Abstand links/rechts (responsive!) */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Links */
.nav-links {
    display: flex;
    gap: 2.5rem;
    /* statt margin-left auf jedem a */
}

.nav-links a {
    text-decoration: none;
    color: #9da0b7;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent);
}

/* =========================================
   HERO SECTION
========================================= */

/* ===========================
   HERO TITLE – FIX + GLOW + ELECTRIC IMPULSE
   =========================== */


.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 20rem;
    padding-bottom: 8rem;
    overflow: visible !important;
    /* WICHTIG → sonst verschwindet Bild */
}

/* HERO CONTENT muss VOR dem Bild liegen */
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 48vw;
    height: 90vh;

    background-image: url("./background1.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;

    opacity: 0.58;
    pointer-events: none;
    z-index: 1;

    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.25));
}


.hero-title {
    font-size: 6rem;
    line-height: 1.05;
    font-weight: 700;
    margin-top: 0rem;
    margin-bottom: 1rem;
    position: relative;
    color: transparent;

    /* Smooth Gradient Flow */
    background: linear-gradient(90deg,
            #34cfff,
            #0ebaff,
            #34cfff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;

    animation: heroFlow 12s linear infinite;
}

/* Slow & smooth color flow */
@keyframes heroFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===========================
   ELECTRIC IMPULSE (Subtil!)
   =========================== */

.hero-title::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%),
            rgba(0, 200, 255, 0.45),
            transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.35;
    animation: electricPulse 6s ease-in-out infinite;
    pointer-events: none;
}

/* langsame wandernde impulse */
@keyframes electricPulse {
    0% {
        opacity: 0.1;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.1;
        transform: scale(0.9);
    }
}

/* ===========================
   REMOVE accidental background box
   =========================== */




.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background: url('./background1.jpg') center right no-repeat;
    background-size: cover;
    opacity: 0.25;
    z-index: -2;
}


canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.6;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 48vw;
    height: 90vh;
    background-image: url("./background1.jpg");
    /* DEIN BILD */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    pointer-events: none;
    opacity: 0.55;
    filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.25));
    z-index: 1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

.hero-content,
#particles {
    position: relative;
    z-index: 2;
}

    {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 580px;
    margin-left: -80px;
    z-index: 5;

    #particles {
        position: relative;
        z-index: 2;
    }
}


.hero p {
    color: #bfc1d5;
    font-size: 1.35rem;
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.cta {
    padding: 1.1rem 2rem;
    background: var(--accent);
    color: black;
    font-weight: 600;
    border-radius: 55px;
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
    box-shadow: 0 0 50px var(--glow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 70px var(--glow);
}

.cta-secondary {
    padding: 1rem 1.6rem;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid var(--accent);
    color: #ffffff;
    /* <-- WEISSE SCHRIFT */
    border-radius: 55px;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
    transition: 0.3s;
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.20);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.35);
    transform: translateY(-3px);
    color: #ffffff;
    /* Sicherheit, falls Hover überschreibt */
}



.hero-subnote {
    margin-top: 0.8rem;
    font-size: 1rem;
    opacity: 0.75;
}

/* =========================================
   TRUST SECTION
========================================= */
.trust {
    padding: 8rem 0 4rem;
    text-align: center;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 3.1rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.trust-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    color: var(--mint);
    font-family: 'JetBrains Mono';
}

.trust-label {
    color: #9da0b7;
    margin-top: 0.5rem;
    display: block;
}

/* =========================================
   SERVICES
========================================= */
.services {
    padding: 8rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--card);
    padding: 2.8rem 2rem;
    border-radius: 28px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: 0.5s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-14px);
    border-color: var(--accent);
    box-shadow: 0 25px 55px rgba(0, 212, 255, 0.25);
    cursor: pointer;
}

.card h3 {
    color: var(--accent);
    margin-top: 1.2rem;
}

.card p {
    margin-top: 0.8rem;
    color: #c4c6d9;
    line-height: 1.6;
    font-family: 'JetBrains Mono';
}

/* =========================================
   METRICS
========================================= */
/* ============================
   METRICS / KPIs
============================ */

.metrics {
    text-align: center;
    padding: 140px 20px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 4.5rem;
    /* Größer + sichtbar */
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 18px rgba(0, 255, 255, 0.35);
    /* Glow */
}

.stat-label {
    font-size: 1.2rem;
    color: #b7c0d1;
    margin-top: 8px;
}

.metrics-note {
    margin-top: 60px;
    font-size: 1.05rem;
    color: #a3acbd;
}

/* Mobile fix */
@media (max-width: 768px) {
    .stats {
        gap: 60px;
    }

    .stat-number {
        font-size: 3.3rem;
    }
}


/* =========================================
   FLOW SECTION
========================================= */
.flow {
    padding: 8rem 0;
    text-align: center;
}

.flow-title {
    font-size: 2.6rem;
    margin-bottom: 3rem;
}

.flow-items {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.flow-item {
    padding: 1.6rem 3rem;
    border-radius: 60px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent);
    font-size: 1.4rem;
    backdrop-filter: blur(12px);
}

.arrow {
    font-size: 3.5rem;
    color: var(--mint);
}

/* =========================================
   ZENTRIERTE SECTIONS – BALD VERFÜGBAR + NÄCHSTER SCHRITT
========================================= */

.soon-section,
.next-step-section {
    padding: 10rem 0;
    text-align: center;
}

.soon-content,
.next-step-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glow-title {
    font-size: 4rem;
    background: linear-gradient(135deg, #00d4ff, #00ffbb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.glow-subtitle {
    font-size: 2rem;
    color: var(--accent);
    margin: 2rem 0 1.5rem;
}

.soon-content h3,
.next-step-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.soon-content p,
.next-step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0ff;
    margin-bottom: 1.5rem;
}

.mb-30 {
    margin-bottom: 3rem;
}

/* Flow-Items (der Pfeil-Prozess) */
.flow-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 4rem 0;
}

.flow-item {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    font-weight: 600;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.arrow {
    font-size: 2rem;
    color: var(--accent);
    font-weight: bold;
}

/* CTA größer machen */
.cta.large {
    padding: 1.4rem 3rem;
    font-size: 1.3rem;
    margin-top: 2rem;
    display: inline-block;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .glow-title {
        font-size: 3rem;
    }

    .flow-items {
        flex-direction: column;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .flow-item {
        min-width: 280px;
    }
}

/* =========================================
   QUIZ PLACEHOLDER
========================================= */
.quiz-teaser {
    padding: 8rem 0;
}

.quiz-bullets {
    margin: 1.5rem 0;
    color: #c4c6d9;
    line-height: 1.6;
}

.disabled-cta {
    background: #333;
    border: 1px solid #555;
    color: #777;
}

#next-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #00d4ff;
    color: black;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.quiz-section {
    padding: 4rem 2rem;
}

#quiz-container {
    max-width: 600px;
    margin: auto;
    border: 1px solid #00d4ff;
    padding: 2rem;
    border-radius: 20px;
}

/* ============================
   QUIZ DESIGN
============================ */

#quiz-app {
    padding: 6rem 0 3rem 0;
    display: none;
}


.quiz-box {
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid var(--accent);
    border-radius: 28px;
    padding: 2.8rem 2.4rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 0 45px rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(12px);
    animation: quizFade 0.5s ease;
}

@keyframes quizFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-box h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--accent);
}

.quiz-options {
    margin-top: 1.4rem;
    margin-bottom: 2rem;
}

.quiz-options button {
    width: 100%;
    padding: 1.1rem 1rem;
    margin-bottom: 0.9rem;
    background: rgba(0, 212, 255, 0.08);
    color: white;
    border: 1px solid var(--accent);
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

.quiz-options button.selected {
    background: var(--accent);
    color: black;
    box-shadow: 0 0 25px var(--glow);
    transform: translateY(-3px);
}

.quiz-next-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.quiz-options button:hover {
    background: var(--accent);
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--glow);
}

.quiz-next-btn {
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 50px;
    background: var(--accent);
    color: black;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 40px var(--glow);
}

.quiz-next-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px var(--glow);
}

/* --------------------------------------- */
/* PROGRESS BAR */
/* --------------------------------------- */

#quiz-progress {
    width: 100%;
    height: 12px;
    background: rgba(0, 180, 255, 0.15);
    border-radius: 20px;
    margin: 1.2rem 0 2rem 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

#quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 20px;
    transition: width 0.35s ease;
    box-shadow: 0 0 12px var(--glow);
}


#quiz-progress-text {
    position: absolute;
    top: -28px;
    right: 0;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}


/* Ergebnis-Styling */
.quiz-result {
    text-align: left;
}

.quiz-result h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quiz-result h3 {
    font-size: 1.6rem;
    color: var(--mint);
    margin-bottom: 1rem;
}

.quiz-result a {
    display: inline-block;
    margin-top: 1.2rem;
    color: black;
    background: var(--accent);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 40px var(--glow);
}

.quiz-result a:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 60px var(--glow);
}

/* =========================================
   MODERN LOADING RING + TEXT (2025 Style)
========================================= */

.loader-container {
    text-align: center;
    padding: 3rem 2rem;
}

.glow-ring {
    width: 90px;
    height: 90px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1.8s linear infinite;
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 80px rgba(0, 212, 255, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.glow-ring.fade-out {
    animation: pulseFade 2s ease-out forwards;
}

@keyframes pulseFade {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

#loader-text {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 500;
    transition: opacity 0.3s ease;
    margin-top: 1rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Optional: Pulsierender Hintergrund-Effekt */
.loader-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
    border-radius: 20px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}


/* =========================================
   CASES
========================================= */
.cases {
    padding: 8rem 0;
}

.case-grid {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.case-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.case-tag {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    color: var(--mint);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 18px var(--glow);
}



/* =========================================
   FINAL CTA
========================================= */
.final-cta {
    padding: 8rem 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta-sub {
    margin-top: 1rem;
    color: #9da0b7;
}

/* =========================================
   FOOTER
========================================= */
footer {
    padding: 4rem 0;
    text-align: center;
    opacity: 0.7;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    margin: 0 0.4rem;
}

/* =========================================
   RESPONSIVE – KOMPLETT ÜBERARBEITET 2025
========================================= */

/* =========================================
   MOBILE NAV → HAMBURGER MENU MIT GLOW
========================================= */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 120px;
        gap: 3rem;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        box-shadow: -20px 0 60px rgba(0, 212, 255, 0.3);
        border-left: 1px solid rgba(0, 212, 255, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.4rem;
        color: var(--accent);
        font-weight: 600;
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }

    .nav-links a:hover {
        color: white;
        transform: translateY(-3px);
    }

    /* Hamburger Button */
    .hamburger {
        display: block;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--accent);
        border-radius: 3px;
        transition: all 0.4s ease;
        position: relative;
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    }

    .hamburger span:nth-child(2) {
        margin: 8px 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* Hamburger im HTML hinzufügen (nach .logo) */
@media (max-width: 992px) {
    .nav-content {
        justify-content: space-between;
        padding: 0 5vw;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
    }
}

/* =========================================
   HERO & BACKGROUND – FULL RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 90%;
        text-align: center;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
        line-height: 1.1;
    }

    .hero p {
        font-size: 1.1rem;
    }

    /* CTAs untereinander statt nebeneinander */
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .cta {
        width: 90%;
        max-width: 380px;
        text-align: center;
    }
}

/* =========================================
   ALLGEMEINE BUTTONS & FLOW ITEMS
========================================= */
@media (max-width: 768px) {
    .flow-items {
        flex-direction: column;
        align-items: center;
    }

    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .flow-item {
        width: 90%;
        max-width: 320px;
    }

    /* Alle CTA-Buttons untereinander */
    .final-cta .cta,
    .soon-content .cta,
    .next-step-content .cta {
        width: 90%;
        max-width: 400px;
        margin: 1.5rem auto;
        display: block;
    }
}

/* =========================================
   LOGO & NAV BEIM SCROLLEN (kleiner auf Mobile)
========================================= */
@media (max-width: 992px) {
    nav.scrolled .logo {
        height: 60px;
        width: 60px;
    }

    nav.scrolled {
        padding: 0.8rem 0;
    }
}

/* =========================================
   BACKGROUND & PARTICLES – IMMER FULLSCREEN
========================================= */
#particle-bg,
canvas#particles {
    position: fixed !important;
    width: 100vw !important;
    height: 100vh !important;
    top: 0 !important;
    left: 0 !important;
    z-index: -1;
}

/* Sicherstellen, dass Body & HTML immer full sind */
html,
body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* =========================================
   GLOW-TITEL & TEXTE AUF MOBILE ANGEPASST
========================================= */
@media (max-width: 768px) {
    .glow-title {
        font-size: 2.8rem !important;
    }

    .glow-subtitle {
        font-size: 1.6rem !important;
    }

    .soon-content h3,
    .next-step-content h3 {
        font-size: 1.8rem;
    }
}