/* --- 1. CORE SYSTEM --- */
:root {
    --bg-void: #050a14;
    --bg-panel: #0b1121;
    --accent: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.6);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-light: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    background-color: var(--bg-void);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 18px;
    max-width: 100vw;
    position: relative;
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: var(--font-head);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
}

p {
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-weight: 300;
}

.section-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.accent-text {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

strong {
    color: #fff;
    font-weight: 600;
}

/* --- PRELOADER & NAV --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-void);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

#preloader img {
    height: 200px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px var(--accent));
}

.preloader-slogan {
    font-family: var(--font-head);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: #333;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    animation: load 1.5s ease-in-out forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    height: 90px;
    box-sizing: border-box;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: 0.3s;
}

.nav-logo:hover {
    filter: drop-shadow(0 0 8px var(--accent));
}

#nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-solid {
    padding: 15px 40px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

.btn-solid:hover {
    box-shadow: 0 0 30px var(--accent-glow);
    background: var(--accent);
    color: #000;
}

.btn-solid.active {
    color: #fbbf24;
    border-color: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

/* Cart Badge */
.cart-badge-nav {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 65vh;
    /* AGGRESSIV reduziert */
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 100px 5% 15px;
    /* Kompakter */
    align-items: start;
    /* Content nach oben */
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-text {
    z-index: 10;
    padding-right: 50px;
    pointer-events: none;
}

.hero-text * {
    pointer-events: auto;
}

.hero h1 {
    font-size: clamp(3.5rem, 6vw, 7rem);
    /* Etwas kleiner */
    margin-bottom: 15px;
    /* Reduziert von 30px */
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.5s;
}

.hero-sub {
    font-size: 1.1rem;
    /* Etwas kleiner */
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 25px;
    /* Reduziert von 50px */
    max-width: 550px;
    background: linear-gradient(90deg, rgba(56, 189, 248, 0.05), transparent);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.7s;
}

.hero-btn {
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.9s;
}

/* Hero Eyebrow */
.hero-eyebrow {
    font-family: var(--font-head);
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 8px;
    /* Reduziert von 15px */
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 0.3s;
}

/* Button Variants */
.btn-primary {
    background: var(--accent) !important;
    color: #000 !important;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-primary:hover {
    background: #fff !important;
    color: #000 !important;
    box-shadow: 0 0 50px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: #94a3b8 !important;
    border-color: #94a3b8 !important;
}

.btn-secondary:hover {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease-out forwards 1.1s;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-family: var(--font-body);
}

.hero-badge span {
    font-size: 1.1rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================== */
/* ===   3D CARD FAN + BOOMERANG ANIMATION === */
/* ========================================== */
.hero-anim-stage {
    position: relative;
    height: 650px;
    display: flex;
    align-items: flex-start;
    /* Nach oben ausrichten */
    justify-content: center;
    perspective: 2000px;
    z-index: 5;
    margin-top: 20px;
    /* Etwas Abstand von oben */
}

/* ========================================= */
/* MASTER ANIMATION SYSTEM (Redesigned)      */
/* ========================================= */

/* Wrapper - Der 3D Raum */
.card-fan-wrapper {
    position: relative;
    width: 700px;
    height: 500px;
    transform-style: preserve-3d;
    perspective: 2000px;
    /* Disable all mouse interactions */
    pointer-events: none;

    /* Responsive Skalierung - passt sich dem Viewport an */
    /* Bei 1920px Breite: scale(1.25), bei kleineren: weniger, bei größeren: bis 1.4 */
    --responsive-scale: clamp(1.1, calc(0.8 + 0.025 * (100vw / 1px - 1200) / 100), 1.4);
    transform: scale(var(--responsive-scale));
    transform-origin: center center;

    /* Intro Animation */
    opacity: 0;
    animation: introFade 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.5s;
}

/* AMBIENT LIGHT (Hintergrund-Atmosphäre) */
.card-fan-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    animation: ambientPulse 8s ease-in-out infinite alternate;
}

@keyframes introFade {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(calc(var(--responsive-scale, 1.25) * 0.9));
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(var(--responsive-scale, 1.25));
    }
}

@keyframes ambientPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* FOKUS KARTE (Statisch im Zentrum) */
.focal-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 250px;
    transform: translate(-50%, -50%) translateZ(100px);
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a, #0f0f0f);
    /* Metal Noise Overlay */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E"), linear-gradient(145deg, #0f0f0f, #1a1a1a, #0f0f0f);
    background-blend-mode: overlay;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(56, 189, 248, 0.15);
    z-index: 200;
    /* Immer ganz vorne */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backface-visibility: visible;
    will-change: transform;

    /* Subtiles aber lebendiges Schweben */
    animation: focalFloat 8s ease-in-out infinite;
}

@keyframes focalFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateZ(120px) rotateX(2deg) rotateY(-3deg) translateX(-5px);
    }

    50% {
        transform: translate(-50%, -50%) translateZ(135px) rotateX(-2deg) rotateY(3deg) translateX(5px);
    }
}

.focal-card .card-logo {
    width: 160px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* BOOMERANG KARTEN (Master Class) */
.boomerang-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 175px;
    border-radius: 14px;
    background: var(--card-bg);

    /* Metal Noise Overlay via Pseudo not needed if we use blend mode on main, 
       but boomerang cards uses var(--card-bg). 
       We will add noise to the ::after or a new pseudo. 
       Let's reuse ::after which is currently shine. 
       We simply add the noise to the main background using comma syntax.
    */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"), var(--card-bg);
    background-blend-mode: soft-light;

    /* Transform Origin ist wichtig für den Bogen */
    transform-origin: center center;
    transform-style: preserve-3d;
    backface-visibility: visible;
    will-change: transform;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);

    /* MASTER ANIMATION */
    /* delay basiert auf index (--i) */
    animation: boomerangMaster 10s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    animation-delay: calc(var(--i) * 0.15s);

    /* Initiale Position (verhindert FOUC) */
    opacity: 0;
}

/* Glanz Effekt */
.boomerang-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    background-size: 200% 100%;
    animation: shineMaster 10s linear infinite;
    animation-delay: calc(var(--i) * 0.15s);
}

/* DEFINITION DER VARIABLEN PRO KARTE */
/* Wir nutzen nth-child um Variablen zu setzen */

/* 1: Gold */
.boomerang-card:nth-child(2) {
    --i: 1;
    --card-bg: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    --fan-x: -180px;
    --fan-y: -40px;
    --fan-r: -25deg;
    --fly-x: -80vw;
    --fly-y: -20vh;
}

/* 2: Silber */
.boomerang-card:nth-child(3) {
    --i: 2;
    --card-bg: linear-gradient(135deg, #c0c0c0, #ffffff, #a0a0a0);
    --fan-x: -120px;
    --fan-y: -50px;
    --fan-r: -15deg;
    --fly-x: -60vw;
    --fly-y: -40vh;
}

/* 3: Schwarz */
.boomerang-card:nth-child(4) {
    --i: 3;
    --card-bg: linear-gradient(135deg, #1a1a1a, #333, #1a1a1a);
    --fan-x: -60px;
    --fan-y: -55px;
    --fan-r: -5deg;
    --fly-x: -40vw;
    --fly-y: -30vh;
}

/* 4: Blau */
.boomerang-card:nth-child(5) {
    --i: 4;
    --card-bg: linear-gradient(135deg, #1e3a5f, #3b82f6, #1e3a5f);
    --fan-x: 60px;
    --fan-y: -55px;
    --fan-r: 5deg;
    --fly-x: 40vw;
    --fly-y: -30vh;
}

/* 5: Rot */
.boomerang-card:nth-child(6) {
    --i: 5;
    --card-bg: linear-gradient(135deg, #7f1d1d, #dc2626, #7f1d1d);
    --fan-x: 120px;
    --fan-y: -50px;
    --fan-r: 15deg;
    --fly-x: 60vw;
    --fly-y: -40vh;
}

/* 6: Grün */
.boomerang-card:nth-child(7) {
    --i: 6;
    --card-bg: linear-gradient(135deg, #14532d, #22c55e, #14532d);
    --fan-x: 180px;
    --fan-y: -40px;
    --fan-r: 25deg;
    --fly-x: 80vw;
    --fly-y: -20vh;
}

/* 7: Lila */
.boomerang-card:nth-child(8) {
    --i: 7;
    --card-bg: linear-gradient(135deg, #581c87, #a855f7, #581c87);
    --fan-x: -220px;
    --fan-y: -20px;
    --fan-r: -35deg;
    --fly-x: -90vw;
    --fly-y: 10vh;
}

/* 8: Cyan */
.boomerang-card:nth-child(9) {
    --i: 8;
    --card-bg: linear-gradient(135deg, #0e7490, #22d3ee, #0e7490);
    --fan-x: 220px;
    --fan-y: -20px;
    --fan-r: 35deg;
    --fly-x: 90vw;
    --fly-y: 10vh;
}

/* 9: Bronze */
.boomerang-card:nth-child(10) {
    --i: 9;
    --card-bg: linear-gradient(135deg, #78350f, #d97706, #92400e);
    --fan-x: -150px;
    --fan-y: -60px;
    --fan-r: -20deg;
    --fly-x: -50vw;
    --fly-y: 20vh;
}

/* 10: Rosegold */
.boomerang-card:nth-child(11) {
    --i: 10;
    --card-bg: linear-gradient(135deg, #be185d, #f472b6, #db2777);
    --fan-x: 150px;
    --fan-y: -60px;
    --fan-r: 20deg;
    --fly-x: 50vw;
    --fly-y: 20vh;
}

/* THE MASTER ANIMATION KEYFRAMES */
@keyframes boomerangMaster {

    /* 0% - 20%: Fächer Formation (Halten) */
    0%,
    20% {
        opacity: 1;
        /* Z-Abstand VERGRÖSSERT: 130px Start, 15px Schritt -> 135px Range */
        transform:
            translate(-50%, -50%) translate(var(--fan-x), var(--fan-y)) translateZ(calc(130px - (var(--i) * 15px))) rotate(var(--fan-r)) rotateY(0deg);
    }

    /* 45%: Wegfliegen (Explosion) */
    45% {
        opacity: 0.8;
        transform:
            translate(-50%, -50%) translate(var(--fly-x), var(--fly-y)) translateZ(-100px) rotate(calc(var(--fan-r) * 10)) rotateY(180deg);
    }

    /* 60%: Maximaler Spin am Rand */
    60% {
        opacity: 0.6;
        transform:
            translate(-50%, -50%) translate(calc(var(--fly-x) * 1.1), calc(var(--fly-y) * 1.1)) translateZ(-200px) rotate(calc(var(--fan-r) * 20)) rotateY(360deg);
    }

    /* 85% - 100%: Zurück zur Formation */
    85%,
    100% {
        opacity: 1;
        transform:
            translate(-50%, -50%) translate(var(--fan-x), var(--fan-y)) translateZ(calc(130px - (var(--i) * 15px))) rotate(var(--fan-r)) rotateY(0deg);
    }
}

@keyframes focalFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) translateZ(120px) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translate(-50%, -50%) translateZ(125px) rotateX(1.5deg) rotateY(-1.5deg);
    }

    50% {
        transform: translate(-50%, -50%) translateZ(120px) rotateX(-1deg) rotateY(1.5deg);
    }

    75% {
        transform: translate(-50%, -50%) translateZ(125px) rotateX(1deg) rotateY(-1deg);
    }
}

@keyframes shineMaster {

    0%,
    40% {
        background-position: 200% 0;
    }

    50% {
        background-position: -200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* GOLD DUST PARTICLES (Magic Atmosphere) */
.particles {
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    pointer-events: none;
    z-index: 210;
    /* Vor allem */
    transform-style: preserve-3d;
}

.p {
    position: absolute;
    background: radial-gradient(circle, #fff, #ffd700 30%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    animation: floatP 6s ease-in-out infinite;
}

@keyframes floatP {
    0% {
        transform: translate3d(0, 0, 0) scale(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translate3d(0, -60px, 40px) scale(1);
        opacity: 0;
    }
}

/* Particle Randomization */
.p:nth-child(1) {
    top: 20%;
    left: 20%;
    width: 6px;
    height: 6px;
    animation-delay: 0s;
}

.p:nth-child(2) {
    top: 80%;
    left: 80%;
    width: 8px;
    height: 8px;
    animation-delay: 1.5s;
}

.p:nth-child(3) {
    top: 40%;
    left: 40%;
    width: 4px;
    height: 4px;
    animation-delay: 3s;
}

.p:nth-child(4) {
    top: 60%;
    left: 10%;
    width: 7px;
    height: 7px;
    animation-delay: 2.2s;
}

.p:nth-child(5) {
    top: 30%;
    left: 70%;
    width: 5px;
    height: 5px;
    animation-delay: 0.5s;
}

.p:nth-child(6) {
    top: 90%;
    left: 30%;
    width: 9px;
    height: 9px;
    animation-delay: 4.1s;
}

.p:nth-child(7) {
    top: 10%;
    left: 50%;
    width: 6px;
    height: 6px;
    animation-delay: 1.8s;
}

.p:nth-child(8) {
    top: 50%;
    left: 90%;
    width: 4px;
    height: 4px;
    animation-delay: 3.5s;
}

.p:nth-child(9) {
    top: 70%;
    left: 15%;
    width: 8px;
    height: 8px;
    animation-delay: 2.9s;
}

.p:nth-child(10) {
    top: 25%;
    left: 60%;
    width: 5px;
    height: 5px;
    animation-delay: 0.9s;
}

.p:nth-child(11) {
    top: 85%;
    left: 45%;
    width: 7px;
    height: 7px;
    animation-delay: 3.8s;
}

.p:nth-child(12) {
    top: 15%;
    left: 85%;
    width: 6px;
    height: 6px;
    animation-delay: 1.2s;
}

/* LOGO SHIMMER (Bling Animation) */
.logo-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Goldener Lichtstreifen */
    background: linear-gradient(120deg, transparent 40%, rgba(255, 223, 0, 0.6) 50%, transparent 60%);
    transform: translateX(-150%);
    filter: blur(8px);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: shimmerSweep 5s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes shimmerSweep {

    0%,
    85% {
        transform: translateX(-150%) skewX(-20deg);
        opacity: 0;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateX(150%) skewX(-20deg);
        opacity: 0;
    }
}

/* MOBILE OPTIMIZATION */

/* Desktop/Mobile Visibility */
.mobile-card-anim {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {

    /* GLOBAL: Kill all horizontal scroll */
    html,
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }

    /* Box-sizing für alle - aber OHNE max-width Beschränkung */
    *,
    *::before,
    *::after {
        box-sizing: border-box !important;
    }

    /* AUSNAHME: Navigation nicht abschneiden */
    .strobel-nav,
    .strobel-nav *,
    .strobel-nav-links,
    .strobel-nav-links * {
        max-width: none !important;
        overflow: visible !important;
    }

    /* AUSNAHME: Animation nicht abschneiden */
    main,
    .hero,
    .hero-anim-stage,
    .card-fan-wrapper,
    .focal-card {
        max-width: none !important;
        overflow: visible !important;
    }

    .hero-anim-stage {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
        width: 100% !important;
        height: 280px !important;
        position: relative !important;
        z-index: 5 !important;
        pointer-events: none !important;
        margin-top: -30px !important;
        margin-bottom: -20px !important;
    }

    /* Desktop Animation auf Mobile */
    .card-fan-wrapper {
        display: block !important;
        /* Container riesig machen (2x Screen Width) */
        width: 200vw !important;
        height: 1000px !important;

        /* Runterskalieren damit der INHALT passt */
        transform: scale(0.52) !important;
        transform-origin: center center !important;

        perspective: 1200px !important;
        transform-style: preserve-3d !important;
        overflow: visible !important;

        margin: 0 !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .focal-card {
        overflow: visible !important;
    }

    .desktop-only {
        display: block !important;
    }

    .mobile-card-anim {
        display: none !important;
    }

    .card-fan-wrapper::before {
        display: none !important;
        /* Kein Blur Hintergrund auf Mobile */
    }

    /* Hero area adjustments */
    .hero {
        overflow: visible !important;
        display: flex !important;
        flex-direction: column-reverse !important;
        grid-template-columns: 1fr !important;
        text-align: center !important;
        padding-top: 70px !important;
        padding-bottom: 10px !important;
        gap: 0 !important;
    }

    .hero-anim-stage {
        overflow: visible !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 250px !important;
    }

    /* Stack hero buttons on mobile */
    .hero-btn {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .hero-btn a {
        margin: 0 !important;
        width: 100% !important;
        max-width: 280px !important;
        text-align: center !important;
    }

    /* Prevent particles from causing overflow */
    .particles {
        display: none !important;
    }

    /* NUCLEAR: Kill ALL scrollbars and overflow */
    section,
    div,
    article,
    aside,
    header,
    footer,
    main,
    nav {
        overflow: visible !important;
    }

    /* Hide horizontal scrollbar visually but allow vertical scroll */
    html,
    body {
        scrollbar-width: thin !important;
        -ms-overflow-style: none !important;
    }

    /* Webkit scrollbar hiding for horizontal only */
    ::-webkit-scrollbar {
        height: 0 !important;
        width: 8px !important;
    }

    ::-webkit-scrollbar:horizontal {
        display: none !important;
    }

    /* Ensure nothing extends past viewport */
    .social-proof-bar,
    .problem-section,
    .solution-section,
    .pricing-section,
    .process-section,
    .faq-section,
    .guarantee-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* ANIMATION AUSNAHME: Diese Container dürfen NICHT geclippt werden */
    .hero,
    .hero>*,
    .hero-anim-stage,
    .hero-anim-stage>*,
    .card-fan-wrapper,
    .card-fan-wrapper *,
    .focal-card,
    .boomerang-card {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem !important;
    }

    .hero-anim-stage {
        min-height: 280px !important;
        height: 280px !important;
    }
}

/* ================================== */
/* MOBILE CARD STACK ANIMATION        */
/* ================================== */
.mobile-card-anim {
    position: relative;
    width: 320px;
    height: 200px;
    margin: 20px auto;
    perspective: 800px;
    overflow: visible;
}

.mobile-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
}

/* Card Colors - Beeindruckende Animationen */
.mc-gold {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    animation: cardFanGold 6s ease-in-out infinite;
    box-shadow:
        0 20px 60px rgba(191, 149, 63, 0.4),
        0 0 30px rgba(191, 149, 63, 0.2);
}

.mc-silver {
    background: linear-gradient(135deg, #c0c0c0, #ffffff, #a0a0a0);
    animation: cardFanSilver 6s ease-in-out infinite;
    box-shadow:
        0 20px 60px rgba(192, 192, 192, 0.4),
        0 0 30px rgba(255, 255, 255, 0.2);
}

.mc-black {
    background: linear-gradient(145deg, #0f0f0f, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: cardFanBlack 6s ease-in-out infinite;
    z-index: 10;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Shimmer Effekt auf schwarzer Karte */
.mc-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.mobile-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.3));
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        filter: drop-shadow(0 4px 20px rgba(56, 189, 248, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 8px 30px rgba(56, 189, 248, 0.5));
        transform: scale(1.02);
    }
}

/* Dramatische Fächer-Animationen */
@keyframes cardFanGold {

    0%,
    100% {
        transform: rotate(-15deg) translateX(-60px) translateY(30px) translateZ(-40px);
        opacity: 0.85;
    }

    25% {
        transform: rotate(-25deg) translateX(-80px) translateY(20px) translateZ(-30px);
        opacity: 0.9;
    }

    50% {
        transform: rotate(-5deg) translateX(-40px) translateY(40px) translateZ(-50px);
        opacity: 0.95;
    }

    75% {
        transform: rotate(-20deg) translateX(-70px) translateY(25px) translateZ(-35px);
        opacity: 0.88;
    }
}

@keyframes cardFanSilver {

    0%,
    100% {
        transform: rotate(12deg) translateX(50px) translateY(25px) translateZ(-35px);
        opacity: 0.85;
    }

    25% {
        transform: rotate(5deg) translateX(60px) translateY(35px) translateZ(-45px);
        opacity: 0.92;
    }

    50% {
        transform: rotate(20deg) translateX(70px) translateY(15px) translateZ(-25px);
        opacity: 0.95;
    }

    75% {
        transform: rotate(8deg) translateX(55px) translateY(30px) translateZ(-40px);
        opacity: 0.88;
    }
}

@keyframes cardFanBlack {

    0%,
    100% {
        transform: rotate(0deg) translateY(0) translateZ(0) scale(1);
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(56, 189, 248, 0.15);
    }

    50% {
        transform: rotate(2deg) translateY(-8px) translateZ(20px) scale(1.03);
        box-shadow:
            0 40px 100px rgba(0, 0, 0, 0.7),
            0 0 60px rgba(56, 189, 248, 0.25);
    }
}

/* Old hover effects removed */

/* Ambient Glow hinter der Karte */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0;
    animation: glowFadeIn 2s ease-out forwards 1s;
    pointer-events: none;
    z-index: -1;
}

@keyframes glowFadeIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Rand-Glanz Effekt */
.showcase-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 50%,
            rgba(255, 255, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Deaktiviert - keine Animation mehr */
@keyframes cardPulseGlow {

    0%,
    100% {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }
}

/* Holografischer Rainbow-Shimmer Effekt */
.holo-layer {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(255, 0, 128, 0.1) 20%,
            rgba(0, 255, 255, 0.15) 40%,
            rgba(255, 255, 0, 0.1) 60%,
            rgba(128, 0, 255, 0.1) 80%,
            transparent 100%);
    background-size: 400% 400%;
    animation: holoShimmer 6s ease-in-out infinite;
    opacity: 0;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.holo-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 70%);
    background-size: 200% 200%;
    animation: holoGlint 4s ease-in-out infinite 1s;
}

@keyframes holoShimmer {

    0%,
    100% {
        background-position: 0% 50%;
        opacity: 0;
    }

    25% {
        opacity: 0.6;
    }

    50% {
        background-position: 100% 50%;
        opacity: 0.8;
    }

    75% {
        opacity: 0.6;
    }
}

@keyframes holoGlint {

    0%,
    100% {
        background-position: -100% -100%;
    }

    50% {
        background-position: 200% 200%;
    }
}

/* LASER mit 3D Strahl-Effekt - außerhalb der Karte */
.laser-beam {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 10px 5px rgba(255, 255, 255, 0.95),
        0 0 25px 10px rgba(56, 189, 248, 0.8),
        0 0 40px 15px rgba(56, 189, 248, 0.4);
    opacity: 0;
    z-index: 100;
    animation: laserMove 4s ease-in-out infinite 0.5s;
    pointer-events: none;
}

/* 3D Laserstrahl - diagonal von oben rechts */
.laser-beam::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 600px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(56, 189, 248, 0.03) 10%,
            rgba(56, 189, 248, 0.15) 40%,
            rgba(56, 189, 248, 0.5) 70%,
            rgba(56, 189, 248, 0.9) 90%,
            #fff 100%);
    bottom: 4px;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotateZ(-35deg);
}

/* Outer Glow für 3D Effekt */
.laser-beam::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 600px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(56, 189, 248, 0.01) 20%,
            rgba(56, 189, 248, 0.05) 50%,
            rgba(56, 189, 248, 0.15) 80%,
            rgba(56, 189, 248, 0.3) 100%);
    bottom: 4px;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotateZ(-35deg);
    filter: blur(8px);
}

/* Laser Animation - graviert das Logo in der Mitte */

@keyframes laserMove {

    /* Start: außen, spirale nach innen zum Logo (Mitte: ~240px, ~150px) */
    0% {
        opacity: 0;
        left: 100px;
        top: 80px;
    }

    3% {
        opacity: 1;
    }

    /* Erste große Runde um das Logo */
    10% {
        left: 380px;
        top: 80px;
    }

    20% {
        left: 380px;
        top: 220px;
    }

    30% {
        left: 100px;
        top: 220px;
    }

    40% {
        left: 100px;
        top: 100px;
    }

    /* Engere Spirale zum Zentrum */
    50% {
        left: 340px;
        top: 100px;
    }

    58% {
        left: 340px;
        top: 200px;
    }

    66% {
        left: 140px;
        top: 200px;
    }

    74% {
        left: 140px;
        top: 120px;
    }

    /* Finale Gravur im Zentrum (Logo-Bereich) */
    80% {
        left: 200px;
        top: 130px;
    }

    85% {
        left: 280px;
        top: 130px;
    }

    90% {
        left: 280px;
        top: 170px;
    }

    93% {
        left: 200px;
        top: 170px;
    }

    95% {
        opacity: 1;
        left: 240px;
        top: 150px;
    }

    /* Exakt Mitte */

    97% {
        opacity: 0;
        left: 240px;
        top: 150px;
    }

    100% {
        opacity: 0;
        left: 100px;
        top: 80px;
    }
}

/* Laser-Funken die beim Gravieren entstehen */
.laser-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.laser-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px #fff, 0 0 12px #38bdf8;
}

/* Kontinuierliche Funken während Laser sich bewegt */
.laser-spark:nth-child(1) {
    animation: laserSparkContinuous 4s ease-in-out infinite 0.5s;
}

.laser-spark:nth-child(2) {
    animation: laserSparkContinuous 4s ease-in-out infinite 0.7s;
}

.laser-spark:nth-child(3) {
    animation: laserSparkContinuous 4s ease-in-out infinite 0.9s;
}

.laser-spark:nth-child(4) {
    animation: laserSparkContinuous 4s ease-in-out infinite 1.1s;
}

.laser-spark:nth-child(5) {
    animation: laserSparkContinuous 4s ease-in-out infinite 1.3s;
}

.laser-spark:nth-child(6) {
    animation: laserSparkContinuous 4s ease-in-out infinite 1.5s;
}

@keyframes laserSparkContinuous {

    0%,
    100% {
        opacity: 0;
        transform: translate(40px, 50px) scale(0);
    }

    5% {
        opacity: 1;
        transform: translate(40px, 50px) scale(1);
    }

    8% {
        opacity: 0;
        transform: translate(20px, 30px) scale(0);
    }

    15% {
        opacity: 1;
        transform: translate(200px, 50px) scale(1.2);
    }

    18% {
        opacity: 0;
        transform: translate(220px, 70px) scale(0);
    }

    25% {
        opacity: 1;
        transform: translate(280px, 80px) scale(0.8);
    }

    28% {
        opacity: 0;
        transform: translate(260px, 100px) scale(0);
    }

    40% {
        opacity: 1;
        transform: translate(100px, 110px) scale(1);
    }

    43% {
        opacity: 0;
        transform: translate(80px, 130px) scale(0);
    }

    60% {
        opacity: 1;
        transform: translate(320px, 140px) scale(1.1);
    }

    63% {
        opacity: 0;
        transform: translate(340px, 160px) scale(0);
    }

    80% {
        opacity: 0;
    }
}

/* Smoke/Rauch Effekt beim Gravieren */
.laser-smoke {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
    filter: blur(8px);
    opacity: 0;
    pointer-events: none;
}

.laser-smoke:nth-child(1) {
    animation: smokeRise 4s ease-out infinite 0.6s;
}

.laser-smoke:nth-child(2) {
    animation: smokeRise 4s ease-out infinite 1.2s;
}

.laser-smoke:nth-child(3) {
    animation: smokeRise 4s ease-out infinite 1.8s;
}

@keyframes smokeRise {
    0% {
        opacity: 0;
        transform: translate(150px, 100px) scale(0.5);
    }

    10% {
        opacity: 0.6;
        transform: translate(150px, 100px) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translate(140px, 20px) scale(2);
    }

    100% {
        opacity: 0;
        transform: translate(130px, -50px) scale(2.5);
    }
}

/* LOGO BILD - Eingravier-Reveal (synced mit Laser) */
.card-logo-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    z-index: 15;
    /* Start erst wenn Laser in die Mitte kommt (80% von 4s = 3.2s) */
    animation: logoEngrave 1.5s ease-out forwards 3s;
    filter:
        drop-shadow(0 0 0px rgba(255, 255, 255, 0)) brightness(1);
}

@keyframes logoEngrave {

    /* Logo erscheint langsam während der Laser darüber fährt */
    0% {
        opacity: 0;
        clip-path: inset(50% 50% 50% 50%);
        filter:
            drop-shadow(0 0 20px rgba(56, 189, 248, 1)) brightness(2);
    }

    20% {
        opacity: 0.3;
        clip-path: inset(40% 40% 40% 40%);
    }

    40% {
        opacity: 0.6;
        clip-path: inset(25% 25% 25% 25%);
    }

    60% {
        opacity: 0.8;
        clip-path: inset(10% 10% 10% 10%);
    }

    80% {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
        filter:
            drop-shadow(0 0 25px rgba(56, 189, 248, 0.8)) brightness(1.5);
    }

    100% {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
        filter:
            drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)) brightness(1);
    }
}

/* Premium Glanz-Sweep - subtiler */
.card-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    transform: skewX(-25deg);
    animation: ultraShine 8s ease-in-out infinite 6s;
}

@keyframes ultraShine {
    0% {
        left: -150%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* Rotierende Connection Beams - wie auf Corporate Seite */
.connection-beams {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.connection-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), rgba(56, 189, 248, 0.6), transparent);
    transform-origin: left center;
    opacity: 0.5;
    filter: blur(0.5px);
    animation: beamRotate 10s linear infinite;
}

.connection-beam::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}

.connection-beam:nth-child(1) {
    animation-delay: 0s;
}

.connection-beam:nth-child(2) {
    animation-delay: -2s;
}

.connection-beam:nth-child(3) {
    animation-delay: -4s;
}

.connection-beam:nth-child(4) {
    animation-delay: -6s;
}

.connection-beam:nth-child(5) {
    animation-delay: -8s;
}

@keyframes beamRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Schwebende Karten mit Trails */
.floating-cards {
    position: absolute;
    inset: -150px;
    pointer-events: none;
    transform-style: preserve-3d;
}

.float-card {
    position: absolute;
    width: 140px;
    height: 88px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: orbitFloat 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.float-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.float-card:nth-child(1) {
    top: 8%;
    left: 2%;
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    animation-delay: 0s;
    animation-duration: 10s;
}

.float-card:nth-child(2) {
    top: 68%;
    left: -5%;
    background: linear-gradient(135deg, #c0c0c0, #fff, #a8a8a8);
    animation-delay: 2s;
    animation-duration: 11s;
}

.float-card:nth-child(3) {
    top: 12%;
    right: -2%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    animation-delay: 4s;
    animation-duration: 9s;
}

.float-card:nth-child(4) {
    bottom: 5%;
    right: 0%;
    background: linear-gradient(135deg, #991b1b, #dc2626, #ef4444);
    animation-delay: 1s;
    animation-duration: 13s;
}

.float-card:nth-child(5) {
    top: 42%;
    left: -8%;
    background: linear-gradient(135deg, #059669, #10b981, #34d399);
    animation-delay: 3s;
    animation-duration: 12s;
}

.float-card:nth-child(6) {
    bottom: 35%;
    right: -5%;
    background: linear-gradient(135deg, #7c3aed, #a78bfa, #c4b5fd);
    animation-delay: 5s;
    animation-duration: 10s;
}

@keyframes orbitFloat {

    0%,
    100% {
        transform: translateY(0) translateZ(0) rotate(-15deg) scale(0.9);
        opacity: 0.4;
    }

    25% {
        transform: translateY(-40px) translateZ(50px) rotate(-10deg) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) translateZ(100px) rotate(-5deg) scale(1.05);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-50px) translateZ(30px) rotate(-12deg) scale(0.95);
        opacity: 0.5;
    }
}

/* Hover enhancement effects removed */

/* Mega Funken-Explosion - HINTER dem Logo */
.spark-container {
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    z-index: 10;
    /* Niedriger als Logo (z-index: 15) */
}

.spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    box-shadow:
        0 0 10px #fff,
        0 0 20px #38bdf8,
        0 0 40px #38bdf8;
}

.spark:nth-child(1) {
    animation: sparkExplode1 0.8s ease-out forwards 3.8s;
}

.spark:nth-child(2) {
    animation: sparkExplode2 0.7s ease-out forwards 3.85s;
}

.spark:nth-child(3) {
    animation: sparkExplode3 0.9s ease-out forwards 3.9s;
}

.spark:nth-child(4) {
    animation: sparkExplode4 0.75s ease-out forwards 3.95s;
}

.spark:nth-child(5) {
    animation: sparkExplode5 0.85s ease-out forwards 4.0s;
}

.spark:nth-child(6) {
    animation: sparkExplode6 0.8s ease-out forwards 4.05s;
}

.spark:nth-child(7) {
    animation: sparkExplode7 0.7s ease-out forwards 4.1s;
}

.spark:nth-child(8) {
    animation: sparkExplode8 0.9s ease-out forwards 4.15s;
}

@keyframes sparkExplode1 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-120px, -80px) scale(0);
    }
}

@keyframes sparkExplode2 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(100px, -100px) scale(0);
    }
}

@keyframes sparkExplode3 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-80px, 90px) scale(0);
    }
}

@keyframes sparkExplode4 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(130px, 70px) scale(0);
    }
}

@keyframes sparkExplode5 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-150px, 20px) scale(0);
    }
}

@keyframes sparkExplode6 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(90px, -120px) scale(0);
    }
}

@keyframes sparkExplode7 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-60px, -140px) scale(0);
    }
}

@keyframes sparkExplode8 {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(140px, 40px) scale(0);
    }
}

/* Light Rays für Logo-Reveal Effekt */
.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    animation: raysAppear 2s ease-out forwards 4.5s;
}

.ray {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 400px;
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.6), transparent);
    transform-origin: top center;
    opacity: 0.3;
}

.ray:nth-child(1) {
    transform: translateX(-50%) rotate(0deg);
}

.ray:nth-child(2) {
    transform: translateX(-50%) rotate(45deg);
}

.ray:nth-child(3) {
    transform: translateX(-50%) rotate(90deg);
}

.ray:nth-child(4) {
    transform: translateX(-50%) rotate(135deg);
}

.ray:nth-child(5) {
    transform: translateX(-50%) rotate(180deg);
}

.ray:nth-child(6) {
    transform: translateX(-50%) rotate(225deg);
}

.ray:nth-child(7) {
    transform: translateX(-50%) rotate(270deg);
}

.ray:nth-child(8) {
    transform: translateX(-50%) rotate(315deg);
}

@keyframes raysAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5) rotate(45deg);
    }
}

/* Glow Ring */
.glow-ring {
    position: absolute;
    width: 500px;
    height: 320px;
    border: 2px solid transparent;
    border-radius: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(var(--bg-void), var(--bg-void)) padding-box,
        linear-gradient(135deg, transparent 30%, var(--accent) 50%, transparent 70%) border-box;
    opacity: 0;
    animation: glowPulse 3s ease-in-out infinite 3.5s;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Old card fan hover effects removed */

/* Scroll Mouse */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* --- SOCIAL PROOF BAR --- */
.social-proof-bar {
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 40px 5%;
}

.proof-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.proof-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.proof-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
}

/* ============================================
   PROBLEM SECTION (WIE CORPORATE)
============================================ */
.problem-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--bg-void) 0%, #0a0f1a 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1000px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #fff;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.6;
}

.problem-stat {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ef4444;
}

/* Big Statistic Callout */
.problem-callout {
    margin-top: 4rem;
    padding: 3.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 24px;
    text-align: center;
}

.callout-stat {
    font-family: var(--font-head);
    font-size: clamp(4rem, 10vw, 6rem);
    font-weight: 700;
    color: #ef4444;
    line-height: 1;
    text-shadow: 0 0 40px rgba(239, 68, 68, 0.4);
}

.callout-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: #fff;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.callout-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ============================================
   SOLUTION SECTION
============================================ */
.solution-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, #0a0f1a 0%, var(--bg-void) 100%);
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.solution-label {
    background: rgba(56, 189, 248, 0.1) !important;
    border-color: rgba(56, 189, 248, 0.3) !important;
    color: var(--accent) !important;
}

.solution-comparison {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.solution-before,
.solution-after {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    border-radius: 16px;
}

.solution-before {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-after {
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
}

.solution-before h4,
.solution-after h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.solution-before h4 {
    color: #ef4444;
}

.solution-after h4 {
    color: var(--accent);
}

.solution-before ul,
.solution-after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-before li,
.solution-after li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    color: var(--text-muted);
}

.solution-before li:last-child,
.solution-after li:last-child {
    border-bottom: none;
}

.solution-after li {
    color: #fff;
}

.solution-arrow {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: var(--accent);
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .solution-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, var(--bg-void) 0%, #0a0f1a 100%);
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.15);
}

.price-card.popular {
    border-color: var(--accent);
    background: rgba(56, 189, 248, 0.05);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-badge {
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.price-value {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.price-per {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-unit {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.discount {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-btn {
    display: block;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-head);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-btn:hover {
    background: var(--accent);
    color: #000;
}

.price-btn.primary {
    background: var(--accent);
    color: #000;
}

.price-btn.primary:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin: 0;
    color: var(--text-muted);
}

.pricing-note a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================
   PROCESS SECTION
============================================ */
.process-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, #0a0f1a 0%, var(--bg-void) 100%);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

.step-content {
    flex: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent), transparent);
    margin: 0 auto;
}

@media (max-width: 600px) {

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 8rem 5%;
    background: var(--bg-void);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(56, 189, 248, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
}

/* ============================================
   GUARANTEE SECTION
============================================ */
.guarantee-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, var(--bg-void) 0%, #0a0f1a 100%);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(56, 189, 248, 0.02));
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 24px;
    position: relative;
}

.guarantee-badge {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.guarantee-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.guarantee-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.gf-item span {
    font-size: 2rem;
}

.gf-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- STICKY CTA BUTTON --- */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.4);
    transition: 0.3s;
}

.sticky-cta a:hover {
    background: #fff;
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.6);
    transform: scale(1.05);
}

.sticky-cta-icon {
    font-size: 1.3rem;
}

/* --- MID-PAGE CTA --- */
.mid-cta {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08) 0%, rgba(15, 23, 42, 0.5) 100%);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mid-cta-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* --- PAPIER VS METALL (NEUE DRAMATISCHE VERSION) --- */
.comparison-section {
    padding: 150px 5%;
    background: linear-gradient(180deg, var(--bg-void) 0%, #0a0f1a 50%, var(--bg-panel) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    align-items: center;
}

.comp-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    height: 450px;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.comp-box:hover {
    transform: translateY(-10px);
}

.comp-box.paper-box {
    border-color: rgba(239, 68, 68, 0.3);
}

.comp-box.paper-box:hover {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 20px 60px rgba(239, 68, 68, 0.1);
}

.comp-box.metal-box {
    border-color: rgba(56, 189, 248, 0.3);
}

.comp-box.metal-box:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.2);
}

.comp-vs {
    font-family: var(--font-head);
    font-size: 2rem;
    color: #fff;
    background: rgba(15, 23, 42, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-light);
    z-index: 10;
}

.comp-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.comp-title.paper {
    color: #ef4444;
}

.comp-title.metal {
    color: var(--accent);
}

/* Neue Papier Animation - Zerknittert & Mülleimer */
.paper-anim-container {
    position: relative;
    width: 200px;
    height: 280px;
    overflow: visible !important;
}

/* Mobile Override - braucht mehr Höhe */
@media (max-width: 768px) {
    .paper-anim-container {
        height: 280px !important;
        min-height: 280px !important;
        overflow: visible !important;
    }
}

.paper-card-new {
    width: 160px;
    height: 100px;
    background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: paperCrumple 5s ease-in-out infinite;
}

.trash-can-new {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 80px;
    background: linear-gradient(180deg, #374151 0%, #1f2937 100%);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.trash-can-new::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -5px;
    width: 80px;
    height: 12px;
    background: #4b5563;
    border-radius: 3px;
    animation: lidOpen 5s ease-in-out infinite;
    transform-origin: right center;
}

.trash-x {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #ef4444;
    opacity: 0;
    animation: showX 5s ease-in-out infinite;
}

@keyframes paperCrumple {

    0%,
    20% {
        top: 0;
        transform: translateX(-50%) rotate(0deg) scale(1);
        opacity: 1;
    }

    35% {
        transform: translateX(-50%) rotate(15deg) scale(0.8);
    }

    50% {
        top: 100px;
        transform: translateX(-50%) rotate(45deg) scale(0.5);
        opacity: 0.5;
    }

    55%,
    100% {
        top: 100px;
        opacity: 0;
    }
}

@keyframes lidOpen {

    0%,
    30% {
        transform: rotate(0deg);
    }

    40%,
    60% {
        transform: rotate(-45deg);
    }

    70%,
    100% {
        transform: rotate(0deg);
    }
}

@keyframes showX {

    0%,
    50% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }

    60% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }

    70%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Neue Metall Animation - Landet auf Schreibtisch mit Glow */
.metal-anim-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.metal-card-new {
    width: 160px;
    height: 100px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    letter-spacing: 3px;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    animation: metalLand 5s ease-in-out infinite;
    overflow: hidden;
}

.metal-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: metalShine 5s ease-in-out infinite;
}

.desk-surface {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 3px;
    box-shadow: 0 0 30px var(--accent), 0 0 60px rgba(56, 189, 248, 0.3);
}

.desk-glow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    opacity: 0;
    animation: glowAppear 5s ease-in-out infinite;
}

.check-mark {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0;
    animation: showCheck 5s ease-in-out infinite;
}

@keyframes metalLand {

    0%,
    30% {
        top: -100px;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    50% {
        top: 50px;
        transform: translateX(-50%) scale(1.05);
    }

    55% {
        top: 60px;
        transform: translateX(-50%) scale(1);
    }

    100% {
        top: 60px;
    }
}

@keyframes metalShine {

    0%,
    55% {
        left: -100%;
    }

    75% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes glowAppear {

    0%,
    45% {
        opacity: 0;
    }

    55%,
    100% {
        opacity: 1;
    }
}

@keyframes showCheck {

    0%,
    50% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }

    60% {
        opacity: 1;
        transform: translateX(-50%) scale(1.3);
    }

    70%,
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.comp-label {
    position: absolute;
    bottom: 25px;
    font-size: 0.9rem;
    font-family: var(--font-head);
    letter-spacing: 2px;
}

.comp-label.bad {
    color: #ef4444;
}

.comp-label.good {
    color: var(--accent);
}

.text-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-left: 4px solid var(--accent);
}

/* --- NFC VS METALL --- */
.nfc-section {
    padding: 120px 5%;
    background: var(--bg-void);
}

.nfc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.phone-container {
    width: 200px;
    height: 350px;
    border: 4px solid #555;
    border-radius: 20px;
    background: #000;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    padding: 20px;
}

.contact-item {
    height: 30px;
    background: #333;
    margin-bottom: 10px;
    border-radius: 4px;
    opacity: 0;
    animation: contactFade 3s infinite;
}

.contact-item:nth-child(1) {
    animation-delay: 0s;
}

.contact-item:nth-child(2) {
    animation-delay: 1s;
}

.contact-item:nth-child(3) {
    animation-delay: 2s;
}

@keyframes contactFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    20% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.card-stack {
    position: relative;
    height: 300px;
    width: 300px;
    margin: 0 auto;
}

.stack-card {
    width: 200px;
    height: 120px;
    background: #111;
    border: 1px solid var(--accent);
    position: absolute;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.stack-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
}

.stack-card:nth-child(2) {
    top: 20px;
    left: 20px;
    z-index: 2;
}

.stack-card:nth-child(3) {
    top: 40px;
    left: 40px;
    z-index: 3;
    background: #1a1a1a;
}

.stack-card:nth-child(4) {
    top: 60px;
    left: 60px;
    z-index: 4;
    background: #222;
    border-color: #fff;
}

/* --- HAPTIK --- */
.haptics-section {
    padding: 120px 5%;
    background: #02040a;
    text-align: center;
    position: relative;
}

.haptics-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.haptics-icon {
    width: 150px;
    height: 150px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    box-shadow: 0 0 50px var(--accent-glow);
    background: #000;
    animation: pulseShield 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulseShield {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(56, 189, 248, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* --- PERFORMANCE SECTION STYLES --- */
.perf-section {
    padding: 120px 5%;
    background: #02040a;
    position: relative;
}

.perf-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#334155 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    pointer-events: none;
}

.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.perf-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.perf-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.perf-content {
    padding: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.perf-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.perf-content p {
    margin: 0;
    font-size: 1rem;
}

/* Rain Shield Anim */
.rain-stage {
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1e293b 0%, #020617 100%);
    overflow: hidden;
}

.metal-shield {
    width: 160px;
    height: 100px;
    background: #111;
    border: 1px solid #555;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oswald';
    border-radius: 6px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.2);
}

.metal-shield::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -20px;
    right: -20px;
    height: 60px;
    border-top: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: shieldFlash 2s infinite;
}

.rain-drop {
    position: absolute;
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    top: -50px;
}

.r1 {
    left: 35%;
    animation: dropFall 1.5s infinite linear;
}

.r2 {
    left: 45%;
    animation: dropFall 1.5s infinite linear 0.4s;
}

.r3 {
    left: 55%;
    animation: dropFall 1.5s infinite linear 0.8s;
}

.r4 {
    left: 65%;
    animation: dropFall 1.5s infinite linear 1.2s;
}

.splash {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0;
    top: 80px;
}

.s1 {
    left: 40%;
    animation: splashEffect 1.5s infinite 0.35s;
}

.s2 {
    left: 60%;
    animation: splashEffect 1.5s infinite 1.15s;
}

@keyframes dropFall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(130px);
        opacity: 1;
    }

    71% {
        opacity: 0;
    }

    100% {
        transform: translateY(300px);
        opacity: 0;
    }
}

@keyframes shieldFlash {

    0%,
    65% {
        opacity: 0;
        box-shadow: none;
    }

    70% {
        opacity: 1;
        box-shadow: 0 -10px 20px var(--accent-glow);
    }

    75% {
        opacity: 0;
    }
}

@keyframes splashEffect {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    1% {
        opacity: 1;
    }

    20% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Sound Drop Anim */
.sound-stage {
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1e293b 0%, #020617 100%);
    overflow: hidden;
}

.sound-card {
    width: 160px;
    height: 100px;
    background: #fff;
    color: #000;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Oswald';
    border-radius: 6px;
    position: relative;
    z-index: 5;
    animation: cardHit 3s infinite ease-out;
}

.sound-floor {
    position: absolute;
    bottom: 100px;
    width: 60%;
    height: 2px;
    background: #334155;
}

.wave {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) scaleX(1) scaleY(0.2);
    border: 2px solid var(--accent);
    border-radius: 50%;
    opacity: 0;
    width: 50px;
    height: 50px;
}

.w1 {
    animation: shockwave 3s infinite 0.8s;
}

.w2 {
    animation: shockwave 3s infinite 0.9s;
}

.w3 {
    animation: shockwave 3s infinite 1.0s;
}

@keyframes cardHit {
    0% {
        transform: translateY(-150px) rotate(10deg);
    }

    20% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px);
    }

    30% {
        transform: translateY(0);
    }

    80% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes shockwave {
    0% {
        width: 10px;
        height: 5px;
        opacity: 0;
        border-width: 5px;
    }

    1% {
        opacity: 1;
    }

    50% {
        width: 300px;
        height: 100px;
        opacity: 0;
        border-width: 0px;
    }

    100% {
        opacity: 0;
    }
}

/* --- ADVANCED BENEFITS --- */
.advanced-benefits {
    padding: 120px 5%;
    background: #050a14;
    position: relative;
    overflow: hidden;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 150px;
}

.benefit-row.reverse {
    direction: rtl;
}

.benefit-row.reverse .benefit-text {
    direction: ltr;
}

.benefit-text h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.benefit-text p {
    font-size: 1.1rem;
}

.anim-stage {
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Icebreaker Anim */
.ice-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1e293b 0%, #000 100%);
    transition: 0.3s;
}

.ice-stage:hover {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.ice-block {
    width: 200px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: iceShake 4s infinite ease-in-out;
}

.frozen-text {
    font-family: 'Oswald';
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 5px;
}

.breaker-card {
    width: 120px;
    height: 70px;
    background: #111;
    border: 1px solid var(--accent);
    position: absolute;
    top: -100px;
    z-index: 5;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 30px var(--accent);
    border-radius: 4px;
    animation: breakIce 4s infinite ease-in-out;
}

.crack {
    position: absolute;
    background: #fff;
    height: 2px;
    width: 0;
    top: 50%;
    left: 50%;
    transform-origin: left;
    opacity: 0;
}

@keyframes breakIce {

    0%,
    30% {
        top: -100px;
        transform: rotate(20deg);
    }

    35% {
        top: 140px;
        transform: rotate(0deg) scale(1.2);
    }

    40% {
        top: 100px;
        transform: rotate(5deg);
    }

    100% {
        top: 100px;
        transform: rotate(5deg);
    }
}

@keyframes iceShake {

    0%,
    34% {
        transform: translate(0, 0);
        opacity: 1;
    }

    35% {
        transform: translate(2px, -2px);
        opacity: 0.8;
    }

    36% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: scale(1.1);
        border-color: var(--accent);
        background: rgba(56, 189, 248, 0.1);
    }

    80% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Forever Sharp Anim */
.compare-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: 0.3s;
}

.compare-stage:hover {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.cmp-half {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.paper-half {
    background: #ddd;
    color: #333;
}

.metal-half {
    background: #111;
    color: #fff;
}

.label {
    position: absolute;
    top: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    opacity: 0.7;
}

.fading-text {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: bold;
    animation: fadeOutText 4s infinite;
}

.sharp-text {
    font-family: 'Oswald';
    font-size: 2rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.laser-sweeper {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
    transform: skewX(-20deg);
    animation: sweepSharp 4s infinite linear;
}

@keyframes fadeOutText {
    0% {
        opacity: 1;
        filter: blur(0px);
    }

    50% {
        opacity: 0.2;
        filter: blur(4px);
    }

    100% {
        opacity: 0.2;
        filter: blur(4px);
    }
}

@keyframes sweepSharp {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Scale Anim */
.scale-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
}

.scale-stage:hover {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.1);
}

.scale-base {
    width: 8px;
    height: 160px;
    background: #555;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scale-base::after {
    content: '';
    width: 120px;
    height: 12px;
    background: #555;
    position: absolute;
    bottom: 0;
    left: -56px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.scale-beam {
    width: 260px;
    height: 6px;
    background: #94a3b8;
    position: absolute;
    top: 200px;
    border-radius: 3px;
    z-index: 2;
    transform-origin: center center;
    animation: weighDown 4s infinite ease-in-out;
}

.scale-plate {
    width: 60px;
    height: 60px;
    border: 2px solid #94a3b8;
    border-top: none;
    border-radius: 0 0 30px 30px;
    position: absolute;
    top: 0;
}

.scale-plate::before {
    content: '';
    width: 2px;
    height: 60px;
    background: #64748b;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.scale-plate.left {
    left: 0;
    transform-origin: top center;
    animation: plateLeft 4s infinite ease-in-out;
}

.scale-plate.right {
    right: 0;
    transform-origin: top center;
    animation: plateRight 4s infinite ease-in-out;
}

.paper-stack {
    width: 40px;
    height: 40px;
    background: #fff;
    margin: -30px auto 0;
    box-shadow: 0 5px 0 #e2e8f0, 0 10px 0 #cbd5e1;
}

.heavy-card {
    width: 50px;
    height: 30px;
    background: #111;
    border: 1px solid var(--accent);
    margin: -20px auto 0;
    color: var(--accent);
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--accent);
    animation: cardLand 4s infinite ease-in-out;
    opacity: 0;
}

@keyframes weighDown {

    0%,
    20% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(20deg);
    }

    35% {
        transform: rotate(15deg);
    }

    80% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes plateLeft {

    0%,
    20% {
        transform: translateY(0) rotate(0deg);
    }

    30% {
        transform: translateY(-35px) rotate(-20deg);
    }

    35% {
        transform: translateY(-25px) rotate(-15deg);
    }

    80% {
        transform: translateY(-25px) rotate(-15deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes plateRight {

    0%,
    20% {
        transform: translateY(0) rotate(0deg);
    }

    30% {
        transform: translateY(35px) rotate(-20deg);
    }

    35% {
        transform: translateY(25px) rotate(-15deg);
    }

    80% {
        transform: translateY(25px) rotate(-15deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes cardLand {

    0%,
    20% {
        opacity: 0;
        transform: translateY(-100px);
    }

    25% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- PSYCHOLOGIE --- */
.psycho-section {
    padding: 120px 5%;
    background: linear-gradient(to top, var(--bg-void), var(--bg-panel));
}

.network-anim {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.net-dot {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px var(--accent);
}

.net-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    z-index: 2;
    background: #fff;
}

.net-orbit {
    width: 15px;
    height: 15px;
    background: #fff;
    opacity: 0;
    animation: orbitShoot 3s infinite;
}

.net-1 {
    top: 50%;
    left: 50%;
    animation-delay: 0s;
}

.net-2 {
    top: 50%;
    left: 50%;
    animation-delay: 1s;
}

.net-3 {
    top: 50%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes orbitShoot {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--x, 100px), var(--y, -100px)) scale(1);
        opacity: 0;
    }
}

/* --- SHOWROOM --- */
.showroom-section {
    padding: 100px 5%;
    background: #02040a;
    position: relative;
}

.gallery-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    cursor: crosshair;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    font-family: 'Oswald';
    letter-spacing: 2px;
    color: #fff;
    transform: translateY(100%);
    transition: 0.4s ease;
    text-align: center;
    border-top: 1px solid var(--accent);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* --- REVIEWS --- */
.reviews-section {
    padding: 120px 5%;
    background: linear-gradient(to bottom, #0b1121, #02040a);
    position: relative;
    overflow: visible;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    transition: 0.3s;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.1);
    transform: translateY(-5px);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: bold;
    font-family: 'Oswald';
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.6;
}

.case-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 5px 10px;
    border-radius: 4px;
}

/* --- KONFIGURATOR --- */
.config-section {
    padding: 120px 5%;
    background: radial-gradient(circle at center, #1e293b 0%, #000 80%);
    border-top: 1px solid var(--border-light);
}

.config-box {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.preview-col {
    background: #020617;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-light);
}

.control-col {
    padding: 60px;
    background: rgba(30, 41, 59, 0.2);
}

.card-canvas {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 85/55;
    background: #111;
    border-radius: 12px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

#preview-logo {
    filter: grayscale(100%) invert(1) brightness(1.5);
    width: 60%;
    opacity: 0.9;
}

label {
    font-family: var(--font-head);
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}

select,
input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #334155;
    color: #fff;
    padding: 18px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-size: 1rem;
}

select:focus,
input:focus {
    border-color: var(--accent);
    outline: none;
}

.price-display {
    font-family: var(--font-head);
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(56, 189, 248, 0.3);
}

.c-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #334155;
    cursor: pointer;
    transition: 0.3s;
    margin-right: 10px;
    display: inline-block;
}

.c-btn:hover {
    transform: translateY(-3px);
}

.c-btn.active {
    border-color: #fff;
    box-shadow: 0 0 20px var(--accent);
    transform: scale(1.1);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-box {
    background: #0f172a;
    border: 1px solid var(--accent);
    padding: 50px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-x {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

footer {
    border-top: 1px solid #334155;
    padding: 80px 5%;
    text-align: center;
    color: #64748b;
    margin-top: 50px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 15px;
}

/* Media Queries */
@media (max-width: 1100px) {
    .gallery-grid-3x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {

    .hero,
    .comp-grid,
    .nfc-grid,
    .config-box {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 75px !important;
    }

    .hero-anim-stage {
        height: 300px;
    }

    .card-fan-wrapper {
        width: 280px;
    }

    .perf-grid {
        grid-template-columns: 1fr;
    }

    .benefit-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 100px;
    }

    .benefit-row.reverse {
        direction: ltr;
    }

    .benefit-row.reverse .benefit-text {
        direction: ltr;
    }
}

@media (max-width: 600px) {

    .gallery-grid-3x2,
    .review-grid {
        grid-template-columns: 1fr;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .gallery-item {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Review Grid Mobile Fix */
    .review-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        overflow: visible !important;
        gap: 20px !important;
    }

    .review-card {
        max-width: 100% !important;
        padding: 25px !important;
        box-sizing: border-box !important;
    }

    .reviews-section {
        overflow: visible !important;
        padding: 60px 5% !important;
    }
}

/* subtle cyber background (page) */
#page-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: screen;
}

#page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at 10% 20%, rgba(6, 36, 72, 0.06), transparent 10%), radial-gradient(900px 400px at 90% 80%, rgba(24, 64, 98, 0.04), transparent 12%);
    opacity: 0.9;
    transition: opacity 400ms linear;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 120px 120px, 120px 120px;
    opacity: 0.08;
    transform: translateZ(0);
}

.bg-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(180, 220, 255, 1) 0%, rgba(100, 170, 220, 0.9) 30%, rgba(40, 90, 140, 0.2) 70%);
    box-shadow: 0 0 10px rgba(120, 200, 255, 0.12), 0 0 20px rgba(120, 200, 255, 0.06);
    transform: translate3d(0, 0, 0);
    opacity: 0;
}

@keyframes bgSparkAnim {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    80% {
        transform: translateY(-18px) scale(0.9);
        opacity: 0.9;
    }

    100% {
        transform: translateY(-36px) scale(0.6);
        opacity: 0;
    }
}

@keyframes bgPulse {
    0% {
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }

    50% {
        transform: translateX(12px);
        filter: hue-rotate(6deg);
    }

    100% {
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }
}

.bg-animated-band {
    position: absolute;
    left: -20%;
    top: 20%;
    width: 140%;
    height: 40%;
    background: linear-gradient(90deg, rgba(10, 30, 60, 0.02), rgba(60, 110, 160, 0.06), rgba(10, 20, 40, 0.02));
    transform-origin: center;
    mix-blend-mode: overlay;
    animation: bgPulse 8s ease-in-out infinite;
    opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {

    #page-bg::before,
    .bg-animated-band {
        animation: none !important;
        opacity: 0.5;
    }
}

/* --- The Blueprint Build: wireframe -> metal fill -> laser burn --- */
/* make the blueprint card much larger and responsive */
.blueprint-build {
    position: relative;
    width: min(92vw, 1000px);
    aspect-ratio: 340 / 220;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    margin: 0 auto;
}

.blueprint-svg {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    transform-style: preserve-3d;
    transition: transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

/* wireframe style */
#wireframe {
    stroke: rgba(56, 189, 248, 0.95);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    filter: drop-shadow(0 8px 18px rgba(56, 189, 248, 0.08));
}

/* metal fill initially hidden; opacity toggled by JS */
#metalFill {
    opacity: 0;
    transition: opacity 300ms linear;
    filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.6));
}

/* laser line */
#laserLine {
    opacity: 0;
    transition: opacity 120ms linear;
    box-shadow: 0 0 24px #fff;
    filter: url(#laserGlowFilter);
}

.laser-glow {
    filter: url(#laserGlowFilter);
}

/* smoke element */
.blueprint-smoke {
    position: absolute;
    left: 50%;
    top: 40%;
    width: 160px;
    height: 40px;
    opacity: 0;
    transform: translateX(-50%);
    pointer-events: none;
    filter: url(#smokeBlur);
    background: linear-gradient(90deg, rgba(200, 200, 200, 0.08), rgba(180, 180, 180, 0.18));
    border-radius: 40px;
    mix-blend-mode: screen;
}

.blueprint-smoke.rise {
    animation: smokeRise 1200ms ease-out forwards;
}

@keyframes smokeRise {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.6;
    }

    100% {
        transform: translateX(-50%) translateY(-36px);
        opacity: 0;
    }
}

/* subtle 3D tilt during action */
.blueprint-build.tilt .blueprint-svg {
    transform: rotateX(12deg) rotateY(-6deg) translateZ(20px);
}

/* specular highlight sweep */
#specRect {
    opacity: 0;
    filter: blur(12px);
    transform-origin: center;
    mix-blend-mode: screen;
}

/* --- Mini conveyor + cards (integrated) --- */
.mini-conveyor {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    pointer-events: none;
    z-index: 7;
}

.mini-card {
    width: 110px;
    height: 70px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(180deg, #efefef, #dcdcdc);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transform-origin: center;
    transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 300ms linear;
}

.mini-card .card-face {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card .card-metal {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(120%);
    background: linear-gradient(90deg, #cfcfcf, #eeeeee 60%);
    opacity: 0;
    transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 220ms linear;
}

.mini-card .card-logo {
    position: relative;
    z-index: 2;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.45);
    transition: color 260ms linear, text-shadow 260ms linear;
    font-size: 13px;
}

.mini-card.active {
    transform: translateY(-24px) scale(1.04) rotateX(6deg);
    z-index: 9;
}

.mini-card.engraving .card-metal {
    transform: translateY(0%);
    opacity: 1;
}

.mini-card.engraved .card-logo {
    color: rgba(0, 0, 0, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

/* engraved logo style (after laser) */
#logoText.engraved {
    fill: rgba(10, 10, 10, 0.95);
    paint-order: stroke;
    stroke: rgba(0, 0, 0, 0.12);
    stroke-width: 0.8;
}

#subText.engraved {
    fill: rgba(20, 20, 20, 0.9);
    opacity: 1;
}

#logoImage {
    opacity: 0;
    transition: opacity 320ms linear;
}

#logoGroup.revealed #logoImage {
    opacity: 1;
}

/* engraving layer visibility */
#engraveGroup {
    opacity: 0;
    transition: opacity 420ms linear;
}

#engraveGroup.visible {
    opacity: 1;
}

/* sparks overlay (DOM elements) */
.blueprint-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
    transform: translate3d(0, 0, 0);
}

.blueprint-spark.ignite {
    animation: sparkFly 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes sparkFly {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-40px) translateX(20px) scale(0.2);
        opacity: 0;
    }
}

/* logo reveal */
#logoGroup {
    transform-origin: center center;
}

#logoGroup.revealed {
    transition: opacity 300ms ease-in 120ms;
    opacity: 1;
}

/* responsive */
@media (max-width: 1000px) {
    .blueprint-build {
        width: 320px;
        height: 210px;
    }
}

/* Respect reduced motion: show final card immediately */
@media (prefers-reduced-motion: reduce) {
    #wireframe {
        stroke-dashoffset: 0 !important;
    }

    #maskRect {
        transform: translateX(340px) !important;
    }

    #metalFill {
        opacity: 1 !important;
    }

    #laserLine {
        display: none !important;
    }

    #logoGroup {
        opacity: 1 !important;
    }
}

/* ######################################################################### */
/* #                  HAMBURGER MENU BUTTON (Mobile only)                  # */
/* ######################################################################### */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ######################################################################### */
/* #                       MOBILE POLISH PATCH (max 768px)                 # */
/* #    Dieser Code wird NUR auf Handys/Tablets aktiv. Desktop bleibt.     # */
/* ######################################################################### */

@media (max-width: 900px) {

    /* 1. GLOBALE ANPASSUNGEN */
    body {
        font-size: 16px !important;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    /* ALLE SECTIONS innerhalb Viewport halten */
    section,
    div,
    header,
    main {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* Weniger Leerraum auf dem Handy (120px ist zu viel) */
    .hero,
    .comparison-section,
    .nfc-section,
    .perf-section,
    .haptics-section,
    .advanced-benefits,
    .psycho-section,
    .showroom-section,
    .reviews-section,
    .config-section {
        padding: 80px 5% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Überschriften mobil bändigen */
    .section-title {
        font-size: 2.5rem !important;
    }

    h1 {
        font-size: 3rem !important;
        line-height: 1.1 !important;
    }

    h2 {
        font-size: 2.2rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    /* NEUE ELEMENTE MOBILE */
    .hero-eyebrow {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
    }

    .hero-trust-badges {
        justify-content: center !important;
        gap: 15px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-badge {
        font-size: 0.8rem !important;
    }

    .hero-btn {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
    }

    .hero-btn .btn-secondary {
        margin-left: 0 !important;
    }

    /* Social Proof Bar Mobile */
    .social-proof-bar {
        padding: 50px 5% !important;
        overflow: visible !important;
        min-height: 750px !important;
    }

    .proof-container {
        flex-direction: column !important;
        gap: 30px !important;
        height: auto !important;
        min-height: 700px !important;
    }

    /* ULTRA-SPEZIFISCH: Overflow für proof-container ERZWINGEN */
    section.social-proof-bar div.proof-container,
    .social-proof-bar .proof-container {
        overflow: visible !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }

    .proof-divider {
        width: 80px !important;
        height: 1px !important;
    }

    .proof-number {
        font-size: 2rem !important;
    }

    /* KILL ALL UNWANTED SCROLLBARS */
    .problem-grid,
    .callout-stat,
    .comparison-section,
    .comp-grid,
    .paper-anim-container,
    .trash-can-new,
    .nfc-grid,
    .contact-item,
    .card-stack,
    .metal-shield,
    .advanced-benefits,
    .scale-base,
    .scale-beam,
    .gallery-item,
    .review-grid,
    .pricing-grid,
    .price-amount,
    .price-unit,
    .process-timeline,
    .faq-grid,
    .faq-answer,
    .guarantee-content {
        overflow: visible !important;
    }

    /* Mid CTA Mobile */
    .mid-cta {
        padding: 30px 20px !important;
        margin-top: 40px !important;
    }

    .mid-cta-text {
        font-size: 1.2rem !important;
    }

    /* Sticky CTA Mobile - kleiner und unten links */
    .sticky-cta {
        bottom: 20px !important;
        right: 20px !important;
        left: 20px !important;
    }

    .sticky-cta a {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
    }

    /* 2. HERO SECTION OPTIMIERUNG */
    .hero {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding-top: 75px !important;
        /* Platz für Nav */
        height: auto !important;
        /* Keine feste Höhe mehr - KEIN min-height: 100vh! */
    }

    .hero-text {
        padding: 0 !important;
        margin-bottom: 15px !important;
        pointer-events: auto !important;
    }

    .hero-sub {
        margin: 0 auto 20px !important;
        border-left: none !important;
        border-bottom: 2px solid var(--accent);
        padding-bottom: 10px;
        padding-left: 0 !important;
    }

    /* Neue Hero Animation Mobile */
    .hero-anim-stage {
        height: 350px !important;
        margin-top: 0 !important;
    }

    .card-showcase {
        transform: scale(0.7) !important;
    }

    /* Comparison Section Mobile */
    .comp-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .comp-vs {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
        order: 2 !important;
        margin: 0 auto !important;
        align-self: center !important;
    }

    .comp-box.paper-box {
        order: 1 !important;
    }

    .comp-box.metal-box {
        order: 3 !important;
    }

    .comp-box {
        height: 350px !important;
    }

    /* 3. GRID LAYOUTS AUFLÖSEN (Alles untereinander) */
    .nfc-grid,
    .perf-grid,
    .benefit-row,
    .gallery-grid-3x2,
    .review-grid,
    .config-box {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    /* Zig-Zag Layouts normalisieren (Text immer oben, Bild unten oder umgekehrt) */
    .benefit-row.reverse {
        direction: ltr !important;
    }

    .benefit-row.reverse .benefit-text {
        direction: ltr !important;
    }

    /* 4. ANIMATIONEN ANPASSEN */
    /* Container skalieren, damit nichts abgeschnitten wird */
    .anim-stage {
        transform: scale(0.85) !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    /* Speziell: Waage und komplexe Anims etwas kleiner */
    .scale-stage,
    .ice-stage,
    .rain-stage,
    .sound-stage {
        transform: scale(0.75) !important;
    }

    /* NFC SECTION FIX - Phone und Card Stack innerhalb der Grenzen halten */
    .phone-container {
        width: 160px !important;
        height: 280px !important;
        margin: 0 auto !important;
    }

    .card-stack {
        width: 280px !important;
        height: 240px !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }

    .stack-card {
        width: 140px !important;
        height: 90px !important;
    }

    .stack-card:nth-child(2) {
        top: 15px !important;
        left: 15px !important;
    }

    .stack-card:nth-child(3) {
        top: 30px !important;
        left: 30px !important;
    }

    .stack-card:nth-child(4) {
        top: 45px !important;
        left: 45px !important;
    }

    /* 5. KONFIGURATOR UI */
    .config-box {
        display: flex !important;
        flex-direction: column;
    }

    .preview-col {
        padding: 40px 20px !important;
        order: 1;
    }

    /* Vorschau zuerst */
    .control-col {
        padding: 40px 20px !important;
        order: 2;
    }

    /* Dann Buttons */

    /* Karte im Konfigurator anpassen */
    .card-canvas {
        width: 100% !important;
        max-width: 350px !important;
        /* Passt auf Handy */
        height: auto !important;
        aspect-ratio: 85/55;
    }

    #placeholder-text {
        font-size: 1.5rem !important;
    }

    .price-display {
        font-size: 3rem !important;
    }

    /* 6. NAVIGATION - HAMBURGER MENÜ */
    nav {
        height: 70px !important;
        padding: 0 20px !important;
    }

    .nav-logo {
        height: 50px !important;
        width: 50px !important;
        max-width: 50px !important;
        margin-right: auto !important;
        object-fit: contain !important;
    }

    /* Hamburger Button anzeigen */
    .mobile-menu-btn {
        display: flex !important;
    }

    /* Alle Nav-Links verstecken und als Dropdown anzeigen */
    #nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0b1121;
        flex-direction: column !important;
        padding: 20px 0;
        border-bottom: 1px solid var(--accent);
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        z-index: 999;
    }

    #nav-links.mobile-menu-open {
        display: flex !important;
    }

    #nav-links a {
        margin: 10px 0 !important;
        width: 100% !important;
        text-align: center !important;
        padding: 15px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    #nav-links a:hover {
        background: rgba(56, 189, 248, 0.1) !important;
    }

    /* KRITISCH: Horizontales Scrollen verhindern */
    img,
    svg,
    canvas,
    video,
    iframe {
        max-width: 100% !important;
        height: auto !important;
    }

    table,
    pre,
    code {
        max-width: 100% !important;
        overflow-x: auto !important;
    }

    /* Blueprint - große Animationen (NICHT die Hero Animation!) */
    .blueprint-build {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    /* Hero Animation MUSS overflow: visible haben! */
    .hero-anim-stage,
    .card-fan-wrapper {
        overflow: visible !important;
    }

    /* Alle rows und container */
    .row,
    .container,
    [class*="row"],
    [class*="container"] {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* ============================================
       NEUE SECTIONS - MOBILE OPTIMIERUNG
    ============================================ */

    /* PROBLEM SECTION MOBILE */
    .problem-section {
        padding: 60px 5% !important;
    }

    .problem-section .section-title {
        font-size: 2rem !important;
    }

    .problem-section .section-subtitle {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .problem-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
    }

    .problem-card {
        padding: 25px 20px !important;
    }

    .problem-icon {
        font-size: 2.5rem !important;
    }

    .problem-card h3 {
        font-size: 1.1rem !important;
    }

    .problem-card p {
        font-size: 0.9rem !important;
    }

    .stat-callout {
        padding: 30px 20px !important;
        margin-top: 40px !important;
    }

    .stat-number {
        font-size: 4rem !important;
    }

    .stat-text {
        font-size: 1rem !important;
    }

    /* SOLUTION SECTION MOBILE */
    .solution-section {
        padding: 60px 5% !important;
    }

    .solution-section .section-title {
        font-size: 2rem !important;
    }

    .solution-comparison {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .solution-before,
    .solution-after {
        max-width: 100% !important;
        padding: 30px 20px !important;
    }

    .solution-arrow {
        transform: rotate(90deg) !important;
        margin: 10px 0 !important;
    }

    .solution-before h3,
    .solution-after h3 {
        font-size: 1.3rem !important;
    }

    .solution-before li,
    .solution-after li {
        font-size: 0.95rem !important;
        padding: 8px 0 !important;
    }

    /* PRICING SECTION MOBILE */
    .pricing-section {
        padding: 60px 5% !important;
    }

    .pricing-section .section-title {
        font-size: 2rem !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        max-width: 100% !important;
        overflow: visible !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }

    .pricing-section {
        overflow: visible !important;
    }

    /* Fix für section-container in pricing - hat 100px overflow */
    .pricing-section .section-container {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    /* ALLE section-container Mobile Fix */
    .section-container {
        overflow: visible !important;
        height: auto !important;
    }

    .price-card {
        padding: 30px 20px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .price-card.popular {
        transform: scale(1) !important;
        /* Normale Reihenfolge: Beginner, Professional, Business */
        margin-top: 30px !important;
        /* Platz für BELIEBT Badge */
        overflow: visible !important;
    }

    .price-card.popular:hover {
        transform: scale(1) translateY(-5px) !important;
    }

    .price-value {
        font-size: 3.5rem !important;
    }

    .price-per {
        font-size: 1rem !important;
    }

    .price-unit {
        font-size: 0.9rem !important;
    }

    .price-features {
        font-size: 0.9rem !important;
    }

    .price-features li {
        padding: 8px 0 !important;
    }

    .price-btn {
        padding: 14px 30px !important;
        font-size: 0.9rem !important;
    }

    .pricing-note {
        font-size: 0.9rem !important;
        padding: 20px !important;
    }

    /* PROCESS SECTION MOBILE */
    .process-section {
        padding: 60px 5% !important;
    }

    .process-section .section-title {
        font-size: 2rem !important;
    }

    .process-timeline {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .step-number {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 15px !important;
    }

    .step-content {
        padding: 20px !important;
    }

    .step-icon {
        font-size: 2rem !important;
    }

    .step-content h3 {
        font-size: 1.2rem !important;
    }

    .step-content p {
        font-size: 0.9rem !important;
    }

    .process-connector {
        display: none !important;
    }

    /* FAQ SECTION MOBILE */
    .faq-section {
        padding: 60px 5% !important;
        overflow: visible !important;
    }

    .faq-section .section-container {
        overflow: visible !important;
        height: auto !important;
    }

    .faq-section .section-title {
        font-size: 2rem !important;
    }

    .faq-container,
    .faq-grid {
        max-width: 100% !important;
        overflow: visible !important;
        height: auto !important;
    }

    .faq-item {
        margin-bottom: 15px !important;
        /* Scrollbar visuell verstecken ohne Akkordeon zu brechen */
        scrollbar-width: none !important;
        /* Firefox */
        -ms-overflow-style: none !important;
        /* IE/Edge */
    }

    .faq-item::-webkit-scrollbar {
        display: none !important;
        /* Chrome/Safari */
    }

    .faq-answer {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .faq-answer::-webkit-scrollbar {
        display: none !important;
    }

    /* faq-answer NICHT überschreiben - das Akkordeon braucht overflow:hidden! */

    .faq-question {
        padding: 18px 20px !important;
        font-size: 1rem !important;
    }

    .faq-question::after {
        font-size: 1.2rem !important;
    }

    .faq-answer {
        padding: 0 20px 20px !important;
        font-size: 0.9rem !important;
    }

    /* GUARANTEE SECTION MOBILE */
    .guarantee-section {
        padding: 60px 5% !important;
        overflow: visible !important;
    }

    .guarantee-content {
        overflow: visible !important;
        max-width: 100% !important;
        padding: 30px 15px !important;
    }

    .guarantee-section .section-title {
        font-size: 2rem !important;
    }

    .guarantee-title {
        font-size: 1.3rem !important;
        letter-spacing: 1px !important;
        word-break: break-word !important;
        text-align: center !important;
        max-width: 100% !important;
        padding: 0 10px !important;
    }

    .guarantee-badge {
        width: 100px !important;
        height: 100px !important;
        font-size: 0.7rem !important;
    }

    .guarantee-badge span {
        font-size: 2.5rem !important;
    }

    .guarantee-text h3 {
        font-size: 1.5rem !important;
    }

    .guarantee-text p {
        font-size: 0.95rem !important;
        padding: 0 10px !important;
    }

    .trust-elements {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .trust-item {
        padding: 15px 20px !important;
        font-size: 0.9rem !important;
    }

    .final-cta {
        padding: 20px !important;
    }

    .final-cta h3 {
        font-size: 1.3rem !important;
    }

    .final-cta .btn-primary {
        padding: 16px 40px !important;
        font-size: 1rem !important;
        width: 100% !important;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (max 480px)
============================================ */
@media (max-width: 480px) {

    /* Noch kleinere Überschriften */
    .section-title,
    h2 {
        font-size: 1.6rem !important;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    /* Pricing Cards noch kompakter */
    .price-value {
        font-size: 3rem !important;
    }

    .price-card {
        padding: 25px 15px !important;
    }

    /* Problem Cards */
    .problem-card {
        padding: 20px 15px !important;
    }

    .problem-icon {
        font-size: 2rem !important;
    }

    .stat-number {
        font-size: 3rem !important;
    }

    /* Hero Anpassungen */
    .hero-sub {
        font-size: 1rem !important;
    }

    .hero-badge {
        font-size: 0.7rem !important;
        padding: 6px 10px !important;
    }

    /* Buttons */
    .btn-solid,
    .btn-primary,
    .price-btn {
        padding: 12px 25px !important;
        font-size: 0.85rem !important;
    }

    /* FAQ */
    .faq-question {
        padding: 15px !important;
        font-size: 0.9rem !important;
    }

    /* Guarantee */
    .guarantee-badge {
        width: 80px !important;
        height: 80px !important;
    }

    .guarantee-text h3 {
        font-size: 1.3rem !important;
    }

    /* Process Steps */
    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }
}

/* === INLINE STYLES: Trust Badges === */

.trust-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: #94a3b8;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter';
    letter-spacing: 1px;
}

.badge-icon {
    filter: grayscale(1);
    transition: 0.3s;
}

.badge-item:hover .badge-icon {
    filter: grayscale(0);
}

/* === INLINE STYLES: Footer === */

/* Footer Styles */
.site-footer {
    background: #010205;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 5% 40px;
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #38bdf8;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* === INLINE STYLES: Custom Cursor === */

/* --- CUSTOM CURSOR --- */
body {
    cursor: auto;
}

a,
button,
input,
select,
.c-btn {
    cursor: pointer;
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.custom-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor.hovered {
    width: 50px;
    height: 50px;
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* --- PAGE TRANSITION CURTAIN --- */
.page-transition-curtain {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
}

/* --- STICKY HEADER BLUR --- */
nav.scrolled {
    height: 70px !important;
    background: rgba(2, 6, 23, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--accent) !important;
}

/* --- COOKIE BANNER (UPDATED) --- */
.cookie-banner {
    position: fixed;
    bottom: -300px;
    right: 20px;
    width: 380px;
    background: #0f172a;
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 30px;
    z-index: 9990;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
    transition: bottom 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content h3 {
    font-family: 'Oswald';
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.cookie-content p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald';
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.9rem;
}

/* Akzeptieren: Highlight */
.btn-accept {
    background: var(--accent);
    color: #000;
}

.btn-accept:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* Ablehnen: Dezent */
.btn-reject {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #334155;
}

.btn-reject:hover {
    border-color: #fff;
    color: #fff;
}

/* ===========================================
   PERFORMANCE: CONTENT VISIBILITY
   Skip rendering for off-screen sections
   =========================================== */

/* Sections below the fold - skip rendering until visible */
.comparison-section,
.nfc-section,
.perf-section,
.haptics-section,
.advanced-benefits,
.psycho-section,
.showroom-section,
.card-stack-section,
.reviews-section,
.pricing-section,
.faq-section,
.guarantee-section,
.config-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
    /* Estimated height to prevent layout shift */
}

/* Smaller sections with less content */
.social-proof-bar {
    content-visibility: auto;
    contain-intrinsic-size: auto 80px;
}

/* Footer */
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

/* ===========================================
   PERFORMANCE: REDUCE MOTION FOR ACCESSIBILITY
   =========================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================================
   PERFORMANCE: GPU ACCELERATION HINTS
   =========================================== */
.boomerang-card,
.focal-card,
.card-fan-wrapper,
.mobile-card-anim,
.mobile-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: visible;
    /* Changed from hidden - cards should be visible during rotation */
}

/* Disable will-change after animations settle */
.boomerang-card.settled,
.focal-card.settled {
    will-change: auto;
}


/* ===========================================
   MOBILE PERFORMANCE: Ultra-simple animation
   Replaces complex 3D with 2D transforms only
   =========================================== */
@media (max-width: 768px) {

    /* Hide the complex desktop animation completely */
    .card-fan-wrapper,
    .desktop-only {
        display: none !important;
    }

    /* Show simple mobile version */
    .mobile-card-anim {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    /* OVERRIDE: Simple 2D animation only */
    .mobile-card {
        animation: none !important;
        transform: none !important;
    }

    /* Simple float - GPU friendly, no 3D */
    .mc-gold {
        transform: translateX(-30px) rotate(-8deg) !important;
        animation: simpleFloat 4s ease-in-out infinite !important;
        animation-delay: 0s !important;
        z-index: 1;
    }

    .mc-silver {
        transform: translateX(0) rotate(0deg) !important;
        animation: simpleFloat 4s ease-in-out infinite !important;
        animation-delay: 0.5s !important;
        z-index: 2;
    }

    .mc-black {
        transform: translateX(30px) rotate(8deg) !important;
        animation: simpleFloat 4s ease-in-out infinite !important;
        animation-delay: 1s !important;
        z-index: 3;
    }
}

/* Ultra simple animation - only translateY */
@keyframes simpleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===========================================
   CORE WEB VITALS OPTIMIZATIONS
   =========================================== */

/* CLS Prevention: Reserve space for images */
img {
    width: auto;
    height: auto;
}

/* CLS: Prevent layout shift from fonts */
@font-face {
    font-family: 'Oswald';
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-display: swap;
}

/* LCP: Optimize hero area rendering */
.hero {
    contain: layout style;
}

.hero-text h1 {
    contain: layout style;
}

/* INP: Improve touch response */
button,
a,
input,
select {
    touch-action: manipulation;
}

/* Reduce paint complexity on scroll */
.hero-anim-stage {
    /* contain: strict removed - was clipping animation overflow */
    contain: layout;
}

/* ===========================================
   ACCESSIBILITY: Focus States
   =========================================== */

/* Global focus outline for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: 2px solid var(--accent, #38bdf8);
    outline-offset: 3px;
}

/* Remove outline for mouse users, keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent, #38bdf8);
    outline-offset: 3px;
}

/* Enhanced focus for primary CTAs */
.btn-primary:focus-visible,
.hero-btn:focus-visible,
.cta-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}


/* ===========================================
   ACCESSIBILITY: Improved Contrast
   =========================================== */

/* Improve contrast for muted text (was #94a3b8 - WCAG AA requires 4.5:1) */
.text-muted,
.faq-answer p,
.pricing-desc,
.review-text {
    color: #b8c5d3;
    /* Lighter for better contrast on dark bg */
}

/* Ensure sufficient contrast for links */
a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
/* ===========================================
   IMAGE QUALITY: Prevent pixelation on logos
   =========================================== */
.focal-card .card-logo,
.card-logo-image,
.nav-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* For scaled images in 3D context */
.focal-card img,
.boomerang-card img {
    image-rendering: -webkit-optimize-contrast;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Skip Link (hidden until focused) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent, #38bdf8);
    color: #000;
    padding: 12px 24px;
    font-weight: 700;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.2s ease;
    /* Ensure hidden on all devices */
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    clip: auto;
    clip-path: none;
    overflow: visible;
}

/* ===========================================
   PARALLAX EFFECTS
   =========================================== */

/* Parallax container for sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

/* Parallax background layer */
.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    z-index: -1;
}


/* Floating particles parallax layer */



/* Section divider with parallax gradient */
.parallax-divider {
    height: 200px;
    background: linear-gradient(180deg, 
        var(--bg-void, #050a14) 0%, 
        rgba(56, 189, 248, 0.05) 50%, 
        var(--bg-void, #050a14) 100%);
    position: relative;
    overflow: hidden;
}

.parallax-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent, #38bdf8), transparent);
    opacity: 0.5;
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-bg,
