/* ========== NÄCHSTER SCHRITT – CONVERSION BOOST ========== */
.highlight {
    background: rgba(0, 255, 187, 0.15);
    border: 1px solid rgba(0, 255, 187, 0.4);
}

.highlight-text {
    background: linear-gradient(135deg, #00ffbb, #00d4ff);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: black;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.pain-solution {
    margin: 4rem 0;
    padding: 2.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    text-align: center;
}

.pain-solution h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.final-cta-box {
    text-align: center;
    margin-top: 4rem;
}

.cta-sub {
    font-size: 1.3rem;
    color: var(--mint);
    margin-bottom: 1rem;
}

.mega-cta {
    padding: 1.8rem 3rem !important;
    font-size: 1.5rem !important;
    font-weight: 700;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.6) !important;
    animation: pulse-glow 3s infinite;
}



/* ========== FLOW GRID – GLEICHE GRÖSSE, EINE REIHE ========== */
.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    align-items: stretch;
}

.flow-card {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.25);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.flow-card:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    cursor: pointer;
}

.flow-card.highlight {
    background: rgba(0, 255, 187, 0.12);
    border-color: rgba(0, 255, 187, 0.4);
}

.flow-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: black;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.8);
}

.flow-card h4 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.flow-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e0ff;
    margin: 0;
    flex-grow: 1;
}






/* =========================================
   RESPONSIVE – KOMPLETT ÜBERARBEITET 2025
========================================= */

/* =========================================
   MOBILE NAV → HAMBURGER MENU MIT GLOW
========================================= */
/* --------------------------------------
   MOBILE NAV + LOGO FIX (FINAL CLEAN)
-------------------------------------- */

/* Logo verkleinern auf Mobile */
@media (max-width: 992px) {
    .logo {
        height: 55px !important;
        /* statt 90px */
        width: 55px !important;
    }
}

@media (max-width: 600px) {
    .logo {
        height: 48px !important;
        width: 48px !important;
    }
}

/* Mobile Navigation – NICHT generell sichtbar */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
    }

    .nav-links.open {
        display: flex !important;
        right: 0;
    }
}


/* Hamburger Button anzeigen */
.hamburger {
    display: block !important;
}


/* Desktop: Hamburger ausblenden */
@media (min-width: 993px) {
    .hamburger {
        display: none !important;
    }
}


.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;
    }
}

/* =========================================
   HERO & BACKGROUND – FULL RESPONSIVE
========================================= */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 90%;
        text-align: center;
        padding-top: 4rem !important;
        /* statt margin */
    }

    .hero h1 {
        font-size: 4rem;
    }
}

.hero-content::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    height: calc(100% + 20px);

    /* Nur ein ganz leichter, smarter Kontrast */
    background: linear-gradient(to bottom,
            rgba(4, 10, 26, 0.20) 0%,
            rgba(4, 10, 26, 0.28) 40%,
            rgba(4, 10, 26, 0.18) 100%);

    z-index: -1;

    backdrop-filter: blur(2px);
    /* leichter Blur für Lesbarkeit */
    border-radius: 14px;

    /* GANZ wichtig: viel weniger Deckkraft */
    opacity: 0.65;
}



@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;
    }
}





/* =========================================
   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;
    }

    @media (min-width: 1100px) {
        .services.container {
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
        }
    }

    /* =========================================================
   SERVICES – FIXED DESKTOP GRID (4 COLUMNS)
   ========================================================= */
    @media (min-width: 1100px) {
        .services.container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            padding: 4rem 2rem;
            /* schönerer Rand auf Desktop */
        }
    }

    .services .card {
        transition: all 0.35s ease;
    }

    .services .card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 0 25px rgba(0, 212, 255, 0.25),
            0 0 40px rgba(0, 212, 255, 0.15);
        border-color: rgba(0, 212, 255, 0.35);
        transition: all 0.4s ease-in;
    }

    .services .card:hover .icon-container {
        filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.7));
    }

    /* =========================================
   FLOW GRID – MOBILE (1 Spalte, zentriert)
   ========================================= */
    @media (max-width: 768px) {
        .flow-grid {
            grid-template-columns: 1fr;
            /* statt 3 Spalten */
            gap: 1.5rem;
            margin: 2.5rem 0;
        }

        .flow-card {
            padding: 1.8rem 1.4rem;
            text-align: center;
        }

        .flow-card h4 {
            font-size: 1.3rem;
        }

        .flow-card p {
            font-size: 1rem;
            line-height: 1.5;
        }
    }

    /* =========================================
   MOBILE NAVIGATION – AWE ENTERPRISE
========================================= */

    nav {
        width: 100%;
        padding: 1rem 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        backdrop-filter: blur(12px);
    }

    .nav-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Hamburger Button */
    .hamburger {
        display: none;
        cursor: pointer;
        width: 32px;
        height: 24px;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        border-radius: 3px;
        background: var(--accent);
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
        transition: all 0.3s ease;
    }

    /* Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* Mobile Nav */
    @media (max-width: 900px) {
        .hamburger {
            display: flex;
        }

        nav .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 75%;
            max-width: 340px;
            background: rgba(10, 15, 25, 0.92);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 10rem;
            gap: 2rem;
            transition: 0.35s ease;
        }

        nav .nav-links.open {
            right: 0;
        }

        nav .nav-links a {
            font-size: 1.4rem;
            color: var(--accent);
            text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
        }

        nav .nav-links a:hover {
            color: white;
            transform: translateY(-3px);
        }
    }

    /* =========================================
   CLOSE BUTTON (X) – STANDARD: KOMPLETT VERSTECKT
========================================= */
    .close-menu {
        display: none !important;
        /* WICHTIG: Desktop immer unsichtbar */
        opacity: 0 !important;
        pointer-events: none !important;
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        font-size: 3rem;
        font-weight: 300;
        cursor: pointer;
        color: var(--accent);
        z-index: 2000;
        line-height: 1;
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
    }

    /* =========================================
   MOBILE: CLOSE-X AKTIVIEREN
========================================= */
    @media (max-width: 900px) {
        .close-menu {
            display: block !important;
            opacity: 0;
            pointer-events: none;
        }

        /* Nur wenn Menü geöffnet → sichtbar */
        .nav-open .close-menu {
            opacity: 1 !important;
            pointer-events: auto !important;
        }
    }

    /* =========================================
   HAMBURGER AUF DESKTOP VERSTECKEN
========================================= */
    @media (min-width: 900px) {
        .hamburger {
            display: none !important;
        }
    }

    /* Hamburger-X unsichtbar machen, wenn Menü offen ist */
    .nav-open .hamburger span {
        background: transparent !important;
        box-shadow: none !important;
    }

    @media (min-width: 900px) {
        .hamburger {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }
    }

    @media (min-width: 900px) {

        .hamburger span,
        .hamburger.active span {
            background: transparent !important;
            box-shadow: none !important;
        }
    }

    @media (min-width: 900px) {
        #hamburger {
            display: none !important;
        }
    }

    @media (min-width: 993px) {

        .hamburger,
        .hamburger span {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }
    }



    /* ============================================
   FIX: HERO SPACING UNTER DER NAVIGATION
============================================ */

    /* Desktop */
    .hero {
        padding-top: 11rem !important;
        /* war 17–19rem */
    }

    /* Tablet */
    @media (max-width: 992px) {
        .hero {
            padding-top: 9rem !important;
        }
    }

    /* Mobile */
    @media (max-width: 768px) {
        .hero {
            padding-top: 7rem !important;
            /* Perfekt für mobile Navbar */
        }
    }

    /* Kleine Phones */
    @media (max-width: 480px) {
        .hero {
            padding-top: 6rem !important;
        }
    }

}

/* ===========================
   CLEAN DESIGN OPTIMAL – START
   =========================== */


body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: url("./background1.jpg") center center / cover no-repeat;
    opacity: 0.55;
    pointer-events: none;


}


: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);
}

/* Global Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML & Body */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: "Nunito Sans", sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Partikel-Background */
#particle-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0d1b2a, #000814);
    pointer-events: none;
    /* blockiert keine Klicks */
}

/* 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;
}

/* Standard-Layoutbreite */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Container-Padding auf kleineren Screens etwas reduzieren */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* ============================================
   CLEAN NAVIGATION – PREMIUM VERSION 2025
   ============================================ */

/* NAV WRAPPER */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(10, 10, 26, 0.55);
    transition: all 0.3s ease;
}

/* when scrolling */
nav.scrolled {
    background: rgba(10, 10, 26, 0.92);
    padding: 0.8rem 0;
}

/* layout */
.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ============================================
   LOGO – electric cyan orb
   ============================================ */

.logo {
    height: 82px;
    width: 82px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 212, 255, 0.15);
    border: 2px solid rgba(0, 212, 255, 0.4);

    box-shadow:
        0 0 25px rgba(0, 212, 255, 0.4),
        inset 0 0 25px rgba(0, 212, 255, 0.15);

    transition: all 0.35s ease;
    backdrop-filter: blur(10px);
    padding: 6px;
}

.logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transition: all 0.35s ease;
}

/* hover */
.logo:hover {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(0, 255, 187, 0.5);
    box-shadow:
        0 0 45px rgba(0, 212, 255, 0.7),
        inset 0 0 35px rgba(0, 212, 255, 0.25);
}

.logo:hover .logo-img {
    transform: scale(1.08);
    filter: brightness(1.25);
}

/* scroll shrink */
nav.scrolled .logo {
    height: 58px;
    width: 58px;
    padding: 4px;
}


/* ============================================
   DESKTOP NAV LINKS
   ============================================ */

.nav-links {
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 1rem;
    text-decoration: none;
    color: rgba(230, 235, 255, 0.72);
    transition: 0.2s;
    white-space: nowrap;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent);
}


/* ============================================
   MOBILE HAMBURGER
   ============================================ */

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background: var(--accent);
    border-radius: 6px;
    transition: 0.3s;
}

/* CLOSE BUTTON */
.close-menu {
    display: none;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.4rem;
    color: var(--accent);
    cursor: pointer;
    z-index: 2001;
}


/* ============================================
   MOBILE MENU PANEL
   ============================================ */

@media (max-width: 992px) {

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.97);
        backdrop-filter: blur(14px);
        padding: 6rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
        transition: 0.35s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .close-menu {
        display: block;
    }

    .nav-links a {
        font-size: 1.3rem;
        color: #eaf9ff;
    }
}


/* ============================================
   HERO SPACER FIX
   ============================================ */

/* ============================================
   HERO SPACER – OPTIMIERT FÜR HEAD POSITION
============================================ */

/* Desktop */
.hero {
    padding-top: 6rem !important;
    /* statt 11rem */
}

/* Laptop / Tablet Querformat */
@media (max-width: 992px) {
    .hero {
        padding-top: 5rem !important;
        /* statt 9rem */
    }
}

/* Tablet Hochformat */
@media (max-width: 768px) {
    .hero {
        padding-top: 4rem !important;
        /* statt 7rem */
    }
}

/* Smartphone */
@media (max-width: 480px) {
    .hero {
        padding-top: 3.2rem !important;
        /* statt 6rem */
    }
}


/* ============================================================
   CLEAN HERO SECTION – 2025 PREMIUM VERSION
============================================================ */

/* Section Wrapper */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Abstand zur Navbar (wird später überschrieben durch responsive rules) */
.hero {
    padding-top: 11rem;
}

/* Fix: Auf kleineren Geräten automatisch mehr Platz */
@media (max-width: 992px) {
    .hero {
        padding-top: 9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 7rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 6rem;
    }
}


/* Particle Layer */
canvas {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.55;
}

/* Content Layout */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================
   TITLE – Electric Gradient Flow
============================ */
.hero-title {
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #34cfff, #0ebaff, #34cfff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    color: transparent;
    animation: heroFlow 12s linear infinite;
    position: relative;
}

/* Smooth gradient flow animation */
@keyframes heroFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Electric impulse light overlay */
.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;
}

@keyframes electricPulse {

    0%,
    100% {
        opacity: 0.1;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.45;
        transform: scale(1.1);
    }
}

/* ============================
   SUBTEXT
============================ */
.hero p {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    color: #bfc1d5;
    margin-bottom: 2.2rem;
    font-family: 'JetBrains Mono', monospace;
}

/* ============================
   CTA Buttons
============================ */
.hero-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta {
    padding: 1.05rem 2rem;
    border-radius: 55px;
    background: var(--accent);
    color: #000;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 45px var(--glow);
    transition: 0.3s;
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 60px var(--glow);
    cursor: pointer;
}

.cta-secondary {
    padding: 1rem 1.6rem;
    border: 1px solid var(--accent);
    color: #fff;
    background: rgba(0, 212, 255, 0.12);
    border-radius: 55px;
    transition: 0.3s;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    text-decoration: none;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.18);
    box-shadow: 0 0 26px rgba(0, 212, 255, 0.25);
    transform: translateY(-3px);
}

/* ============================
   SUBNOTE
============================ */
.hero-subnote {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    opacity: 0.75;
    margin-top: 1.5rem;
}

/* ROI SECTION – Awe Enterprise Style */

.roi-section {
    padding: 6rem 1.5rem 8rem;
}

.roi-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.roi-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #34cfff, #0ebaff, #34cfff);
    -webkit-background-clip: text;
    color: transparent;
}

.roi-sub {
    font-size: 1rem;
    color: #bfc1d5;
    margin-bottom: 2.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.roi-form {
    background: rgba(4, 10, 26, 0.9);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 0 45px rgba(0, 212, 255, 0.25);
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.roi-col {
    text-align: left;
}

.roi-step-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e5e7ff;
}

.roi-label {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #cdd1ff;
}

.roi-label input {
    margin-top: 0.4rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(120, 133, 255, 0.4);
    background: rgba(5, 16, 40, 0.9);
    color: #fff;
    outline: none;
}

.roi-label input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.roi-privacy {
    font-size: 0.8rem;
    color: #9fa3c7;
    margin-top: 0.5rem;
}

.roi-submit {
    margin-top: 0.5rem;
}

/* Ergebnis Box */
.roi-result {
    margin-top: 2.5rem;
    text-align: left;
}

.roi-summary {
    font-size: 0.95rem;
    color: #e5e7ff;
    margin-bottom: 1.5rem;
}

.roi-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.roi-card {
    background: rgba(5, 16, 40, 0.95);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    border: 1px solid rgba(0, 212, 255, 0.35);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.roi-card-label {
    font-size: 0.8rem;
    color: #9fa3c7;
}

.roi-card-value {
    display: block;
    margin-top: 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.roi-followup {
    margin-top: 1.8rem;
    font-size: 0.9rem;
    color: #bfc1d5;
}

/* Responsive */
@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }

    .roi-result-grid {
        grid-template-columns: 1fr;
    }

    .roi-form {
        padding: 1.8rem 1.4rem;
    }
}


/* ============================================================
   VIDEO SECTION – FINAL / CLEAN / NON-CROPPING / RESPONSIVE
============================================================ */

.video-section {
    width: 100%;
    margin: 5rem 0;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* WRAPPER */
.video-wrapper {
    width: 100%;
    max-width: 1100px;
    position: relative;
    overflow: visible;
    /* WICHTIG! NICHT SCHNEIDEN */
    border-radius: 20px;
    background: black;
}

/* VIDEO */
.video-bg {
    width: 100%;
    height: auto;
    display: block;

    /* WICHTIG: NICHT CROPPEN! */
    object-fit: contain !important;
    object-position: center !important;
}

/* PLAY BUTTON */
.video-play-btn,
.unmute-btn,
.replay-btn {
    z-index: 20;
    /* ÜBER Video */
}

/* CTA BUTTON */
.video-wrapper h3 {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    /* Höchste Ebene */
}

.video-wrapper h3 a {
    color: #00eaff;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    text-decoration: none;
    backdrop-filter: blur(6px);
}

/* MOBILE — fullscreen feeling */
@media (max-width: 768px) {

    .video-wrapper {
        border-radius: 12px;
        max-height: none;
        /* volle Höhe wieder erlauben */
    }

    .video-bg {
        object-fit: cover !important;
        object-position: center top !important;
        /* Mobile = perfekt wie vorher */
    }

    .video-wrapper h3 a {
        font-size: 1rem;
        padding: 8px 16px;
    }
}


/* Play Button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.85);
    border-radius: 50%;
    font-size: 2.8rem;
    color: #00121a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transition: 0.3s;
    z-index: 25;
    /* ÜBER allem */
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Unmute Button */
.unmute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 212, 255, 0.85);
    padding: 12px 14px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 25;
    /* ÜBER allem */
}

.unmute-btn.active {
    opacity: 1;
    pointer-events: auto;
}

/* Replay Button */
.replay-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 212, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    z-index: 25;
    /* ÜBER allem */
}

.replay-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* =========================================
   VIDEO CLICK FIX – BUTTONS WIEDER KLICKBAR
========================================= */

/* Video blockiert standardmäßig KEINE Klicks */
.video-bg {
    pointer-events: none;
}

/* Wenn Video aktiv spielt → darf Klicks annehmen */
.video-playing {
    pointer-events: auto !important;
}

/* ============================================================
   CLEAN TRUST SECTION – AWE ENTERPRISE 2025
============================================================ */

.trust {
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
}

.trust-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

/* EYEBROW HEADER */
.eyebrow {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* MAIN TITLE */
.trust-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

/* ITEMS GRID */
.trust-items {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    flex-wrap: wrap;
    padding: 0 1.5rem;
}

.trust-item {
    text-align: center;
    min-width: 180px;
}

/* NUMBERS */
.trust-number {
    font-size: clamp(2.4rem, 4vw, 3.3rem);
    color: var(--mint);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

/* LABEL */
.trust-label {
    color: #9da0b7;
    display: block;
    margin-top: 0.4rem;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
}


/* ============================================
   RESPONSIVE TUNING
============================================ */

@media (max-width: 768px) {
    .trust {
        padding: 5rem 0 4rem;
    }

    .trust-items {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .trust {
        padding: 4rem 0 3rem;
    }

    .trust-item {
        min-width: 140px;
    }
}

/* ============================================================
   CLEAN METRICS / KPI SECTION – AWE ENTERPRISE 2025
============================================================ */

.metrics {
    position: relative;
    text-align: center;
    padding: 7rem 0 6rem;
    z-index: 5;
}

.metrics-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* GRID SYSTEM */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(3rem, 8vw, 7rem);
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Single Metric */
.stat {
    text-align: center;
    min-width: 160px;
}

/* KPI NUMBER */
.stat-number {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.35);
    margin-bottom: 0.4rem;
}

/* LABEL */
.stat-label {
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: #b7c0d1;
    line-height: 1.4;
}


/* Note unterhalb */
.metrics-note {
    margin-top: 2rem;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #a3acbd;
    opacity: 0.9;
}


/* ============================================
   RESPONSIVE TUNING
============================================ */

@media (max-width: 768px) {
    .metrics {
        padding: 5rem 0 4rem;
    }

    .stat {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .stats {
        gap: 2.5rem;
    }

    .stat-number {
        text-shadow: 0 0 14px rgba(0, 255, 255, 0.3);
    }
}

/* ============================================================
   CLEAN CASES SECTION – AWE ENTERPRISE 2025
============================================================ */

.cases {
    padding: 7rem 0;
    position: relative;
    z-index: 5;
}

.cases-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* GRID LAYOUT */
.case-grid {
    margin-top: 3.5rem;
    display: grid;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* CASE CARD */
.case-card {
    background: rgba(22, 33, 62, 0.7);
    padding: 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    box-shadow:
        0 0 18px rgba(0, 212, 255, 0.12),
        inset 0 0 8px rgba(255, 255, 255, 0.04);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 26px rgba(0, 212, 255, 0.22),
        inset 0 0 12px rgba(255, 255, 255, 0.08);
}

/* TAG */
.case-tag {
    font-size: 0.95rem;
    opacity: 0.75;
    color: var(--accent);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* TITLE */
.case-card h3 {
    font-size: clamp(1.4rem, 2vw, 1.85rem);
    margin-bottom: 1rem;
    color: white;
}

/* DESCRIPTION */
.case-card p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #b7c0d1;
    line-height: 1.55;
    margin-bottom: 2rem;
}

/* CASE STATS (unique name, no collision) */
.case-stats {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* SINGLE KPI */
.case-stat {
    text-align: left;
}

/* KPI NUMBER */
.case-stat-number {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--mint);
    text-shadow: 0 0 15px rgba(0, 255, 187, 0.3);
}

/* KPI LABEL */
.case-stat-label {
    margin-top: 0.3rem;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    color: #9da0b7;
}


/* ============================================
   RESPONSIVE TUNING
============================================ */

@media (max-width: 768px) {
    .cases {
        padding: 5rem 0;
    }

    .case-card {
        padding: 1.8rem;
    }

    .case-stats {
        gap: 1.8rem;
    }
}

@media (max-width: 480px) {
    .case-stat-number {
        text-shadow: 0 0 10px rgba(0, 255, 187, 0.25);
    }

    .case-card {
        border-radius: 14px;
    }
}

/* ============================
   CASES – TITLE WITH GLOW
============================ */

.cases h2 {
    text-align: center;
    margin-bottom: 3rem;

    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;

    /* Gradient Text */
    background: linear-gradient(90deg,
            #34cfff,
            #0ebaff,
            #34cfff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    color: transparent;

    animation: caseTitleFlow 12s linear infinite;

    /* Glow */
    text-shadow:
        0 0 10px rgba(0, 212, 255, 0.5),
        0 0 25px rgba(0, 212, 255, 0.35),
        0 0 45px rgba(0, 212, 255, 0.2);

    /* Interaktiv */
    cursor: pointer;
    transition: 0.35s ease;
}

/* Hover verstärkt Glow */
.cases h2:hover {
    text-shadow:
        0 0 16px rgba(0, 212, 255, 0.85),
        0 0 35px rgba(0, 212, 255, 0.65),
        0 0 55px rgba(0, 212, 255, 0.55);
    transform: translateY(-3px);
}

/* Smooth animated gradient */
@keyframes caseTitleFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =========================================================
   SERVICES – AWE 2025 FINAL VERSION
========================================================= */


.services-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;

    color: #34cfff;
    /* AWE Neon Blau */
    letter-spacing: 1px;

    text-shadow:
        0 0 10px rgba(0, 212, 255, 0.9),
        0 0 25px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 212, 255, 0.35),
        0 0 70px rgba(0, 212, 255, 0.18);

    position: relative;
    z-index: 10;
    /* Sichtbar über Parallax Background */
}

/* MOBILE */
@media (max-width: 768px) {
    .services-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}


/* SECTION WRAPPER */
.services.container {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
    position: relative;
    z-index: 5;
}

/* CARD BASE */
.services .card {
    background: rgba(10, 20, 40, 0.85);
    /* stärkerer Hintergrund */
    border-radius: 22px;
    padding: 2.3rem 1.8rem;
    text-align: center;

    border: 1px solid rgba(0, 212, 255, 0.17);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.15);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-height: 260px;

    transition: 0.35s ease;
    backdrop-filter: blur(12px);
}

/* ICON */
.services .card .icon-container {
    margin-bottom: 1.3rem;
}

.services .card svg {
    width: 65px;
    height: 65px;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
}

/* TITLE */
.services .card h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    transition: 0.3s ease;
}

/* TEXT */
.services .card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c8cfdb;
    margin-top: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

/* HOVER */
.services .card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
    box-shadow: 0 0 55px rgba(0, 212, 255, 0.30);
    cursor: pointer;
}

.services .card:hover h3 {
    color: #00ffea;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .services.container {
        padding: 3rem 1.5rem;
        gap: 1.7rem;
    }

    .services .card {
        padding: 2rem 1.4rem;
        min-height: 230px;
    }
}

@media (max-width: 600px) {
    .services.container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .services .card {
        padding: 1.5rem;
        min-height: 200px;
    }
}

/* ============================================================
   PRICING SECTION – AWE ENTERPRISE PREMIUM 2025
============================================================ */

/* SECTION WRAPPER */
.pricing-section {
    width: 100%;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* TITLE */
.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.6rem;

    text-shadow:
        0 0 12px rgba(0, 212, 255, 0.75),
        0 0 24px rgba(0, 212, 255, 0.35);
}

.pricing-sub,
.pricing-hint {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 0.3rem;
    letter-spacing: 0.2px;
}

.pricing-hint strong {
    color: var(--accent);
}

/* GRID LAYOUT */
.pricing-grid {
    display: grid;
    margin-top: 3.5rem;
    gap: 2.2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* PRICE CARD BASE */
.price-card {
    padding: 2rem 1.8rem;
    border-radius: 20px;

    background: rgba(10, 14, 26, 0.55);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(0, 212, 255, 0.22);
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.15),
        inset 0 0 10px rgba(255, 255, 255, 0.05);

    transition: 0.25s ease-out;
    min-height: 300px;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.45),
        inset 0 0 12px rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

/* HIGHLIGHTED PLAN */
.price-card.highlight {
    border: 1px solid var(--accent);
    box-shadow:
        0 0 35px rgba(0, 212, 255, 0.55),
        0 0 80px rgba(0, 212, 255, 0.25);
}

/* TEXT IN CARD */
.price-setup {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.4rem;
    margin-top: 1rem;
}

.price-month {
    font-size: 1.2rem;
    opacity: 0.85;
}

.bonus {
    margin-top: 0.6rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00ffbb;
}

.price-ideal {
    opacity: 0.8;
    margin-top: 1.4rem;
    font-size: 1rem;
}

/* ============================================================
   DETAIL BOXES UNTER DEN PREISEN
============================================================ */

.price-details {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

/* Einzelauswahltabelle */
.detail-box {
    width: 100%;
    max-width: 650px;

    padding: 2.2rem 2.5rem;
    border-radius: 22px;

    background: rgba(10, 14, 26, 0.55);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(0, 212, 255, 0.32);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.22);

    transition: 0.25s ease-out;
}

.detail-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 28px rgba(0, 212, 255, 0.55),
        0 0 70px rgba(0, 212, 255, 0.25);
}

/* Titel */
.detail-box h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 1.3rem;
    text-shadow: 0 0 14px rgba(0, 212, 255, 0.4);
}

/* UL */
.detail-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* LI */
.detail-box li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;

    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.45;
}

.detail-box li span {
    font-size: 1.3rem;
    min-width: 1.5rem;
    text-align: center;
    color: var(--accent);
}

/* Paragraph */
.detail-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* MOBILE OPTIMIERUNG */
@media (max-width: 550px) {
    .pricing-title {
        font-size: 2.3rem;
    }

    .detail-box {
        padding: 1.6rem 1.3rem;
    }

    .detail-box h3 {
        font-size: 1.5rem;
    }
}

/* CTA – BUCHUNGS BUTTON */
.center-btn {
    margin: 4rem 0;
}

.cta-pricing {
    padding: 16px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;

    background: var(--accent);
    color: #000;
    text-decoration: none;

    border: 1px solid rgba(0, 212, 255, 0.55);
    box-shadow:
        0 0 22px rgba(0, 212, 255, 0.65),
        inset 0 0 10px rgba(255, 255, 255, 0.18);

    transition: 0.25s;
}

.cta-pricing:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 35px rgba(0, 212, 255, 0.95),
        0 0 75px rgba(0, 212, 255, 0.45),
        inset 0 0 16px rgba(255, 255, 255, 0.22);
}

@media (max-width: 768px) {
    .cta-pricing {
        width: 100%;
        max-width: 340px;
        padding: 14px 26px;
        display: block;
        margin: 0 auto;
        font-size: 1rem;
    }
}

.tiny {
    opacity: 0.5;
    font-size: 0.85rem;
    text-align: center;
}

/* ============================================================
   FLOW SECTION – PREMIUM AWE VERSION
============================================================ */

.flow {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.flow-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 3rem;
    text-shadow:
        0 0 12px rgba(0, 212, 255, 0.55),
        0 0 24px rgba(0, 212, 255, 0.25);
}

/* Flow Container */
.flow-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    margin-top: 3.5rem;
}

/* Step Item */
.flow-item {
    padding: 1.2rem 2.4rem;
    border-radius: 60px;
    min-width: 220px;

    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.35);
    backdrop-filter: blur(10px);

    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;

    box-shadow: 0 0 18px rgba(0, 212, 255, 0.25);
    transition: 0.25s ease-out;
}

.flow-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.45);
    cursor: pointer;
}

/* Arrow */
.arrow {
    font-size: 2.8rem;
    color: var(--mint);
    text-shadow: 0 0 12px rgba(0, 255, 187, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
    .flow-title {
        font-size: 2.3rem;
    }

    .flow-items {
        flex-direction: column;
        gap: 1.5rem;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 2.4rem;
    }

    .flow-item {
        min-width: 260px;
        font-size: 1.2rem;
    }
}

/* ============================================================
   SOON + NEXT STEP SECTIONS – AWE ENTERPRISE PREMIUM
============================================================ */

.soon-section,
.next-step-section {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.soon-content,
.next-step-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TITLES */
.glow-title {
    font-size: 3.5rem;
    font-weight: 700;

    background: linear-gradient(135deg, #00d4ff, #00ffbb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow:
        0 0 22px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(0, 255, 187, 0.35);

    margin-bottom: 1.8rem;
}

.glow-subtitle {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

/* HEADERS */
.soon-content h3,
.next-step-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;

    color: #e8f8ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.35);
}

/* TEXT */
.soon-content p,
.next-step-content p {
    font-size: 1.15rem;
    color: #e0e0ff;
    line-height: 1.65;

    background: rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(0, 212, 255, 0.25);
    backdrop-filter: blur(10px);

    padding: 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);

    margin: 1.5rem 0;
}

/* Spacing Utility */
.mb-30 {
    margin-bottom: 3rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .glow-title {
        font-size: 2.5rem;
    }

    .glow-subtitle {
        font-size: 1.6rem;
    }

    .soon-content h3,
    .next-step-content h3 {
        font-size: 1.7rem;
    }

    .soon-content p,
    .next-step-content p {
        font-size: 1.05rem;
        padding: 1.2rem 1.4rem;
    }
}

/* ============================================================
   FINAL CTA – AWE ENTERPRISE PREMIUM
============================================================ */

.final-cta {
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.final-cta h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent);

    text-shadow:
        0 0 15px rgba(0, 212, 255, 0.55),
        0 0 35px rgba(0, 212, 255, 0.25);
    margin-bottom: 1.5rem;
}

.final-cta-sub {
    margin-top: 1rem;
    color: #c9d2e8;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.4rem;
    }

    .final-cta-sub {
        font-size: 1.05rem;
    }
}

/* ============================================================
   FOOTER – PERFECT GLOW VERSION
============================================================ */

footer {
    padding: 4rem 0 3rem;
    text-align: center;

    opacity: 0.9;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);

    border-top: 1px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 -8px 25px rgba(0, 212, 255, 0.12);
}

footer p {
    color: #c8d4e5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;

    margin: 0 0.5rem;
    transition: 0.2s;
}

footer a:hover {
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.7);
    color: #00eaff;
}

/* MOBILE */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }

    footer p {
        font-size: 0.85rem;
    }
}

/* ============================================================
   CONTACT SECTION – AWE ENTERPRISE PREMIUM
============================================================ */

.contact-section {
    max-width: 900px;
    margin: 6rem auto 8rem auto;
    padding: 40px 20px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 5;
}

/* TITLE */
.contact-title,
.contact-section h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--accent);
    text-shadow:
        0 0 12px rgba(0, 212, 255, 0.55),
        0 0 28px rgba(0, 212, 255, 0.25);
}

.contact-sub {
    opacity: 0.75;
    font-size: 1.15rem;
    margin-bottom: 2.8rem;
}

/* ============================================================
   FORM WRAPPER (Glassmorphism Box)
============================================================ */

.contact-form {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 40px 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);

    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* TWO-COLUMN ROW */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

/* FORM GROUP */
.form-group {
    text-align: left;
    width: 100%;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================================
   INPUTS & TEXTAREA
============================================================ */

.contact-form input,
.contact-form textarea,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.28);
    color: white;

    font-size: 1rem;
    outline: none;
    transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 14px rgba(0, 212, 255, 0.55);
}

/* TEXTAREA HEIGHT */
.contact-form textarea,
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* ============================================================
   SUBMIT BUTTON (Nutzen deinen CTA Style)
============================================================ */

.contact-btn,
.form-btn {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
}

/* NOTE */
.form-note {
    margin-top: 1.2rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ============================================================
   MOBILE OPTIMIZATION
============================================================ */

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-title {
        font-size: 2.1rem;
    }

    .contact-sub {
        font-size: 1rem;
    }

    .contact-form {
        padding: 30px 22px;
    }
}


/* ================================================
   AWE Enterprise – Styled Select Dropdowns
   ================================================ */

.roi-label select {
    margin-top: 0.4rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(120, 133, 255, 0.4);
    background: rgba(5, 16, 40, 0.9);
    color: #fff;
    font-size: 0.95rem;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 14px;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' height='20' width='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,12'/></svg>");
}

.roi-label select:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25);
}

.roi-label select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.45);
    animation: dropdownGlow 0.35s ease-out;
}

@keyframes dropdownGlow {
    from {
        box-shadow: 0 0 2px rgba(0, 212, 255, 0.1);
    }

    to {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.45);
    }
}

.roi-label input,
.roi-label select {
    background: rgba(5, 16, 40, 0.9);
    backdrop-filter: blur(4px);
    box-shadow: inset 0 0 12px rgba(0, 212, 255, 0.08);
}

/* KI Output Box */
.roi-ai-box {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.35);
    padding: 1.5rem;
    border-radius: 14px;
    margin-top: 2rem;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.15);
}

.roi-ai-text {
    color: #e6f7ff;
    font-size: 1.05rem;
    line-height: 1.55;
    font-family: 'JetBrains Mono', monospace;
}

.roi-disclaimer {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #bfc1d5;
    line-height: 1.55;
    font-family: 'JetBrains Mono', monospace;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

#roi-rechner,
.roi-section {
    position: relative;
    z-index: 5 !important;
}

#roi-rechner * {
    position: relative;
    z-index: 5;
}

.roi-inner {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(6px);
}

/* Extra styling für den kleinen Quiz-Link */
.small-quiz-link {
    margin-top: -0.5rem;
    display: inline-block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.small-quiz-link:hover {
    opacity: 1;
}

/* =========================================
   CASES – CINEMATIC ENTRY + PARALLAX FEEL
========================================= */

.case-card {
    /* Basis aus vorhandenen Styles + Cinematic-Erweiterung */
    position: relative;
    opacity: 0;
    --enter-translateY: 40px;
    --enter-scale: 0.96;
    --tiltX: 0deg;
    --tiltY: 0deg;
    --hover-translateY: 0px;

    transform:
        translate3d(0, var(--enter-translateY), 0) scale(var(--enter-scale)) rotateX(var(--tiltX)) rotateY(var(--tiltY)) translateY(var(--hover-translateY));
    transform-style: preserve-3d;
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
        box-shadow 0.9s ease;
    will-change: transform, opacity;
}

/* Wenn Section sichtbar wird */
.cases.cases-visible .case-card {
    opacity: 1;
    --enter-translateY: 0px;
    --enter-scale: 1;
}

/* Sequenzielles Delay über nth-child */
.cases.cases-visible .case-card:nth-child(1) {
    transition-delay: 0.18s;
}

.cases.cases-visible .case-card:nth-child(2) {
    transition-delay: 0.30s;
}

.cases.cases-visible .case-card:nth-child(3) {
    transition-delay: 0.42s;
}

/* Deutliches, aber sauberes Cyan-Glow beim Einrasten */
.cases.cases-visible .case-card {
    box-shadow:
        0 0 18px rgba(0, 212, 255, 0.20),
        0 0 40px rgba(0, 212, 255, 0.12);
}

.cases.cases-visible .case-card:hover {
    box-shadow:
        0 0 24px rgba(0, 212, 255, 0.35),
        0 0 60px rgba(0, 212, 255, 0.22);
}

/* Minimaler Hover-Effekt (B – wie gewählt) */
.case-card:hover {
    --hover-translateY: -6px;
}

/* Headlines leicht hervorheben */
.case-card h3 {
    margin-bottom: 0.6rem;
}

.case-card p strong {
    display: block;
    margin-top: 0.6rem;
    color: #ffffff;
}

/* ============================================
   CINEMATIC CAROUSEL – OVER CASE CARDS
============================================ */

.case-carousel {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 80vh;
    margin: 3rem auto 4rem auto;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(10, 20, 40, 0.55);
    backdrop-filter: blur(12px);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.20),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.carousel-track {
    display: flex;
    transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.carousel-item {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 22px;
    pointer-events: none;
    user-select: none;
    object-position: 50% 25%;
    /* 25% nach oben verschoben → weniger abgeschnitten */

    /* Cinematic depth */
    transform: scale(0.97);
    opacity: 0.92;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.carousel-item.active {
    transform: scale(1);
    opacity: 1;
}

/* Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.65);
    border: none;
    color: black;
    font-size: 2.4rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.15);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.8rem;
    }

    .case-carousel {
        margin: 2.5rem auto;
    }
}

/* =============================
   AWE VISION SECTION
============================= */

.vision-section {
    padding: 120px 0;
    position: relative;
}

.vision-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    color: #00d4ff;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.85;
}

.vision-title {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 40px;
}

.vision-block,
.vision-subblock,
.vision-tech,
.founder-note {
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Pillars */
.vision-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 60px 0;
}

.pillar {
    padding: 22px;
    background: rgba(10, 20, 40, 0.55);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow:
        0 0 22px rgba(0, 212, 255, 0.18),
        inset 0 0 12px rgba(255, 255, 255, 0.05);
}

.pillar h4 {
    color: #00d4ff;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

/* CTA */
.vision-cta {
    margin-top: 60px;
}

/* Cinematic Fade-In */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 834px) {
    .vision-pillars {
        grid-template-columns: 1fr;
    }
}

/* ================================
   DELUXE OPTICS – AWE ENTERPRISE
================================ */

/* Background Glow Wrapper */
.vision-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

/* Glowing floating circles (Parallax style) */
.glow-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: floatGlow 18s infinite ease-in-out alternate;
}

/* Cyan left top */
.glow-1 {
    background: rgba(0, 212, 255, 0.55);
    top: -120px;
    left: -160px;
    animation-delay: 0s;
}

/* Blue right middle */
.glow-2 {
    background: rgba(0, 128, 255, 0.45);
    bottom: -140px;
    right: -180px;
    animation-delay: 2s;
}

/* Soft white center glow */
.glow-3 {
    background: rgba(255, 255, 255, 0.12);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-40px) scale(1.15);
    }
}

/* ================================
   NEON LINE DIVIDER (scrolling)
================================ */
.neon-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
            rgba(0, 212, 255, 0) 0%,
            rgba(0, 212, 255, 0.45) 40%,
            rgba(0, 212, 255, 0.75) 60%,
            rgba(0, 212, 255, 0) 100%);
    opacity: 0.45;
    animation: neonLineScroll 6s infinite ease-in-out;
}

@keyframes neonLineScroll {
    0% {
        transform: translateX(-50%) translateY(-20%);
    }

    100% {
        transform: translateX(-50%) translateY(20%);
    }
}

/* ================================
   CINEMATIC SCROLL ENTRANCE
================================ */
.fade-in.deluxe-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) rotateX(0deg) !important;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.28));
}

/* stronger entrance for Deluxe */
.fade-in {
    opacity: 0;
    transform: translateY(80px) scale(0.97) rotateX(6deg);
    transition: 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ============================================
   AWE VISION – DELUXE OPTIK UPGRADES
============================================ */

/* ----------- GENERAL TEXT CONTRAST ---------- */
.vision-section p {
    color: rgba(240, 248, 255, 0.92);
}

/* ----------- PILLAR BOX (Glass + Strong Glow) ---------- */
.pillar {
    position: relative;
    background: rgba(5, 12, 25, 0.70);
    border-radius: 20px;
    padding: 24px;
    overflow: hidden;
    backdrop-filter: blur(16px);

    border: 1px solid rgba(0, 212, 255, 0.25);

    /* Inner futuristic glow */
    box-shadow:
        inset 0 0 28px rgba(0, 212, 255, 0.25),
        0 0 32px rgba(0, 212, 255, 0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.45s ease;
}

/* ----------- Hover Lift ---------- */
.pillar:hover {
    transform: translateY(-4px);
    box-shadow:
        inset 0 0 30px rgba(0, 212, 255, 0.35),
        0 0 36px rgba(0, 212, 255, 0.40),
        0 0 55px rgba(0, 212, 255, 0.30);
    cursor: pointer;
}

/* ----------- BORDER GLOW ANIMATION (STRONG) ---------- */
/* Animierter Lichtstreifen NUR am Rand */
/* ----------- BORDER LIGHTFLOW (AWE STYLE) ---------- */
.pillar {
    position: relative;
    overflow: hidden;
    /* wichtig für den Rand-Effekt */
}

.pillar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;

    background: linear-gradient(0deg,
            rgba(0, 212, 255, 0) 0%,
            rgba(0, 212, 255, 0.9) 50%,
            rgba(0, 212, 255, 0) 100%);

    background-size: 400% 400%;

    /* Nur die Border leuchten lassen */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
    animation: borderFlow 6s linear infinite;
}

/* Glow läuft rund um die Box */
@keyframes borderFlow {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}









/* ----------- SCROLL REVEAL LIGHT PULSE ---------- */
.fade-in.deluxe-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) rotateX(0deg) !important;

    /* Light pulse once on reveal */
    animation: revealPulse 1.4s ease-out 0.15s forwards;
}

@keyframes revealPulse {
    0% {
        filter: brightness(1) drop-shadow(0 0 0 rgba(0, 212, 255, 0));
    }

    40% {
        filter: brightness(1.6) drop-shadow(0 0 18px rgba(0, 212, 255, 0.45));
    }

    100% {
        filter: brightness(1) drop-shadow(0 0 10px rgba(0, 212, 255, 0.25));
    }
}


/* ----------- HEADLINE LIGHT SWEEP (ENHANCED) ---------- */
.vision-title {
    position: relative;
    display: inline-block;
}



@keyframes sweepDeluxe {
    0% {
        left: -120%;
    }

    100% {
        left: 150%;
    }
}

/* ========== QUIZ SECTION – GLOW & CLEAN ========== */

.quiz-hero-section {
    text-align: center;
    align-items: center;
    padding: 8rem 0px;
    max-width: 1400px;
    margin: 0px auto;
    padding: 0px 2rem;
}

.quiz-section {
    margin-top: 6rem;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
}

.quiz-section h3 {
    font-size: 2rem;
    color: white;
    margin: 1rem 0 1.5rem;
    font-weight: 600;
}

.quiz-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0ff;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}





@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(0, 212, 255, 0.6);
    }

    50% {
        box-shadow: 0 0 90px rgba(0, 212, 255, 0.9);
    }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .pain-solution h3 {
        font-size: 1.8rem;
    }

    .mega-cta {
        font-size: 1.3rem !important;
        padding: 1.5rem 2.5rem !important;
    }
}

/* =========================================
   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;
    }
}

.vision-cta-wrapper {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.vision-cta {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 16px;
    background: linear-gradient(90deg, #00e0ff, #00bfff);
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.35);
    transition: 0.25s ease;
}

.vision-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 26px rgba(0, 212, 255, 0.5);
}