        :root {
            --bg-deep: #020205;
            --electric-blue: #2979FF;
            --electric-purple: #7C4DFF;
            --cyan-glow: #00E5FF;
            --neon-pink: #FF4081;
            --accent-orange: #FF9100;
            --glass-surface: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-highlight: rgba(255, 255, 255, 0.15)
        }

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



        body {
            font-family: 'Inter', sans-serif;
            color: #fff;
            background: var(--bg-deep);
            -webkit-font-smoothing: antialiased
        }

        /* === PCB BACKGROUND === */
        .pcb-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden
        }

        .pcb-bg svg {
            width: 100%;
            height: 100%;
            opacity: .12
        }

        .pcb-trace {
            fill: none;
            stroke: var(--cyan-glow);
            stroke-width: 1.5;
            stroke-linecap: round
        }

        .pcb-node {
            fill: var(--electric-blue);
            opacity: .4
        }

        .pcb-pulse {
            fill: none;
            stroke: var(--cyan-glow);
            stroke-width: 3;
            stroke-linecap: round;
            filter: drop-shadow(0 0 6px var(--cyan-glow));
            stroke-dasharray: 40 500;
            animation: pulsePath 6s linear infinite
        }

        .pcb-pulse-2 {
            animation-delay: -2s;
            stroke: var(--electric-blue);
            filter: drop-shadow(0 0 6px var(--electric-blue))
        }

        .pcb-pulse-3 {
            animation-delay: -4s;
            stroke: var(--electric-purple);
            filter: drop-shadow(0 0 6px var(--electric-purple))
        }

        @keyframes pulsePath {
            to {
                stroke-dashoffset: -540
            }
        }

        /* === BLOBS === */
        .ambient {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: .35;
            animation: moveBlob 25s infinite alternate
        }

        .blob-1 {
            width: 600px;
            height: 600px;
            background: var(--electric-blue);
            top: -150px;
            left: -200px
        }

        .blob-2 {
            width: 500px;
            height: 500px;
            background: var(--electric-purple);
            bottom: -100px;
            right: -150px;
            animation-duration: 30s
        }

        .blob-3 {
            width: 350px;
            height: 350px;
            background: var(--cyan-glow);
            top: 50%;
            left: 60%;
            opacity: .2;
            animation-duration: 20s
        }

        @keyframes moveBlob {
            to {
                transform: translate(80px, 40px) scale(1.1)
            }
        }

        /* === GRID === */
        .grid-overlay {
            position: fixed;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
            pointer-events: none
        }

        /* === LAYOUT === */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 10
        }

        section {
            padding: 120px 0;
            position: relative;
            z-index: 1
        }

        /* === NAV === */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(2, 2, 5, .85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border)
        }

        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px
        }

        .nav-brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: #fff;
            text-decoration: none;
            letter-spacing: -1px;
            position: relative
        }

        .nav-brand-tag {
            font-size: .55em;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--cyan-glow);
            vertical-align: super;
            margin-left: 6px
        }

        .nav-brand::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan-glow), transparent)
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none
        }

        .nav-links a {
            color: rgba(255, 255, 255, .6);
            text-decoration: none;
            font-size: .9rem;
            font-weight: 500;
            transition: color .2s
        }

        .nav-links a:hover {
            color: #fff
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--electric-blue), var(--electric-purple));
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700 !important;
            box-shadow: 0 2px 16px rgba(41, 121, 255, .3);
            transition: all .3s !important
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 24px rgba(41, 121, 255, .5)
        }

        .nav-mobile {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer
        }

        /* === HERO === */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
            align-items: center
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 229, 255, .08);
            border: 1px solid rgba(0, 229, 255, .2);
            color: var(--cyan-glow);
            font-size: .8rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 24px
        }

        .hero-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--cyan-glow);
            animation: pulse 2s infinite
        }

        @keyframes pulse {
            50% {
                opacity: .3
            }
        }

        .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: clamp(2.4rem, 4.5vw, 4.2rem);
            line-height: 1;
            letter-spacing: -2px;
            margin-bottom: 24px
        }

        /* Global utility — Cyan-Gradient-Text. Funktioniert ueberall. */
        .grad {
            background: linear-gradient(135deg, var(--cyan-glow), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Hero h1 bekommt zusaetzlichen Glow */
        .hero h1 .grad {
            filter: drop-shadow(0 0 20px rgba(41, 121, 255, .4));
        }

        .hero-sub {
            font-size: 1.15rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 20px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        /* === BUTTONS === */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all .3s;
            text-decoration: none
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--electric-blue), var(--electric-purple));
            color: #fff;
            box-shadow: 0 4px 20px rgba(41, 121, 255, .3)
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(41, 121, 255, .5)
        }

        .btn-glass {
            background: rgba(255, 255, 255, .08);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .15);
            backdrop-filter: blur(10px)
        }

        .btn-glass:hover {
            background: var(--electric-blue);
            border-color: var(--electric-blue);
            box-shadow: 0 0 30px rgba(41, 121, 255, .3)
        }

        .btn-blue {
            background: linear-gradient(135deg, var(--electric-blue), var(--electric-purple));
            color: #fff;
            box-shadow: 0 4px 20px rgba(41, 121, 255, .3)
        }

        .btn-blue:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(41, 121, 255, .5)
        }

        /* === FLOATING CARDS === */
        .hero-visual {
            position: relative
        }

        .float-card {
            background: rgba(20, 20, 30, .6);
            border: 1px solid var(--glass-border);
            border-top: 1px solid var(--glass-highlight);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
            transition: all .5s
        }

        .float-card-1 {
            width: 300px;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            transform: rotate(-3deg);
            box-sizing: border-box;
        }

        .float-card-2 {
            width: 280px;
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
            transform: rotate(4deg);
            background: linear-gradient(135deg, rgba(41, 121, 255, .08), transparent)
        }

        .float-card h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .float-card p {
            font-size: .85rem;
            color: #aaa
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cyan-glow);
            box-shadow: 0 0 10px var(--cyan-glow)
        }

        .code-block {
            font-family: 'JetBrains Mono', monospace;
            font-size: .75rem;
            color: #aaa;
            background: rgba(0, 0, 0, .3);
            padding: 10px;
            border-radius: 8px;
            margin-top: 8px
        }

        /* === SERVICES === */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 60px
        }

        .service-card {
            background: rgba(10, 15, 30, 0.4);
            border: 1px solid var(--glass-border);
            padding: 36px;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column
        }

        .service-card,
        .agent-card,
        .module-card,
        .problem-card,
        .feature-card,
        .pricing-card,
        .stat-card,
        .form-wrapper {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
            position: relative;
            overflow: hidden;
        }

        .service-card::before,
        .agent-card::before,
        .module-card::before,
        .problem-card::before,
        .feature-card::before,
        .pricing-card::before,
        .stat-card::before,
        .form-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--cyan-glow), transparent);
            opacity: 0;
            transition: opacity 0.3s
        }

        .service-card:hover,
        .agent-card:hover,
        .module-card:hover,
        .problem-card:hover,
        .feature-card:hover,
        .pricing-card:hover,
        .stat-card:hover,
        .form-wrapper:hover {
            transform: translateY(-8px) !important;
            border-color: rgba(0, 229, 255, 0.4);
            background: rgba(10, 15, 30, 0.7);
            box-shadow: 0 15px 35px rgba(0, 229, 255, 0.1);
        }

        .service-card:hover::before,
        .agent-card:hover::before,
        .module-card:hover::before,
        .problem-card:hover::before,
        .feature-card:hover::before,
        .pricing-card:hover::before,
        .stat-card:hover::before,
        .form-wrapper:hover::after {
            opacity: 1
        }

        .service-card .icon {
            font-size: 2rem;
            margin-bottom: 16px;
            position: relative;
            z-index: 1
        }

        .service-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1
        }

        .service-card p {
            font-size: .9rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.6;
            position: relative;
            z-index: 1;
            flex-grow: 1
        }

        .service-card .price-tag {
            display: inline-block;
            margin-top: 16px;
            font-family: 'JetBrains Mono', monospace;
            font-size: .8rem;
            color: var(--cyan-glow);
            background: rgba(0, 229, 255, .08);
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid rgba(0, 229, 255, .15);
            position: relative;
            z-index: 1
        }

        /* === SERVICE VISUALS === */
        .service-visual {
            position: relative;
            z-index: 1;
            height: 180px;
            margin-bottom: 20px;
            border-radius: 16px;
            overflow: hidden;
            background: rgba(0, 0, 0, .25);
            border: 1px solid rgba(255, 255, 255, .05)
        }

        /* -- KI-Audit: Factory + Scanner -- */
        .visual-audit {
            position: relative
        }

        .visual-audit svg {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0
        }

        .audit-scanner {
            position: absolute;
            top: -50px;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            width: 280px;
            height: 180px;
            border-top: 2px solid var(--cyan-glow);
            background: linear-gradient(180deg, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0) 100%);
            animation: auditScan 4s ease-in-out infinite alternate;
            z-index: 10;
            pointer-events: none;
            mix-blend-mode: screen;
            transform-origin: center right;
        }

        .audit-scanner::after {
            display: none;
        }

        @keyframes auditScan {
            0% {
                transform: translateY(-30px);
                opacity: 0;
            }

            20% {
                opacity: 1;
            }

            80% {
                opacity: 1;
            }

            100% {
                transform: translateY(180px);
                opacity: 0;
            }
        }

        .factory-line {
            fill: none;
            stroke: var(--electric-blue);
            stroke-width: 1;
            opacity: .55
        }

        .factory-line-bright {
            fill: none;
            stroke: var(--electric-blue);
            stroke-width: 1.8;
            opacity: .9
        }

        .factory-fill {
            fill: rgba(41, 121, 255, .06)
        }

        /* 3D rotate wrapper */
        .audit-3d-wrap {
            width: 100%;
            height: 100%;
            position: absolute;
            inset: 0;
            perspective: 600px;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .audit-3d-inner {
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            animation: factory3d 8s ease-in-out infinite
        }

        .audit-3d-inner svg {
            width: 100%;
            height: 100%
        }

        @keyframes factory3d {
            0% {
                transform: rotateY(-12deg) rotateX(4deg)
            }

            25% {
                transform: rotateY(4deg) rotateX(2deg)
            }

            50% {
                transform: rotateY(14deg) rotateX(-3deg)
            }

            75% {
                transform: rotateY(2deg) rotateX(3deg)
            }

            100% {
                transform: rotateY(-12deg) rotateX(4deg)
            }
        }

        /* -- Website Transform Animation -- */
        .visual-website {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .web-state {
            position: absolute;
            inset: 12px;
            border-radius: 10px;
            padding: 16px;
            transition: all .8s cubic-bezier(.4, 0, .2, 1);
            display: flex;
            flex-direction: column;
            justify-content: center
        }

        .web-old {
            background: #f0f0f0;
            animation: webMorph 6s ease-in-out infinite
        }

        .web-old .web-nav {
            height: 8px;
            background: #ccc;
            border-radius: 2px;
            margin-bottom: 10px;
            width: 60%
        }

        .web-old .web-title {
            font-family: 'Times New Roman', serif;
            font-size: .72rem;
            color: #333;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.2
        }

        .web-old .web-text-line {
            height: 5px;
            background: #ddd;
            border-radius: 2px;
            margin-bottom: 4px
        }

        .web-old .web-text-line:nth-child(4) {
            width: 80%
        }

        .web-old .web-text-line:nth-child(5) {
            width: 60%
        }

        .web-new {
            background: linear-gradient(135deg, rgba(20, 20, 35, .95), rgba(10, 10, 25, .98));
            border: 1px solid rgba(41, 121, 255, .3);
            opacity: 0;
            animation: webMorphNew 6s ease-in-out infinite
        }

        .web-new .web-badge {
            font-family: 'JetBrains Mono', monospace;
            font-size: .5rem;
            color: var(--cyan-glow);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            opacity: .8
        }

        .web-new .web-title-new {
            font-family: 'Outfit', sans-serif;
            font-size: .78rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 8px
        }

        .web-new .web-title-new span {
            background: linear-gradient(135deg, var(--cyan-glow), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .web-new .web-cta {
            display: inline-block;
            background: linear-gradient(135deg, var(--electric-blue), var(--electric-purple));
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: .55rem;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            width: fit-content
        }

        @keyframes webMorph {

            0%,
            35% {
                opacity: 1;
                transform: scale(1)
            }

            45%,
            85% {
                opacity: 0;
                transform: scale(.96)
            }

            95%,
            100% {
                opacity: 1;
                transform: scale(1)
            }
        }

        @keyframes webMorphNew {

            0%,
            35% {
                opacity: 0;
                transform: scale(1.04)
            }

            45%,
            85% {
                opacity: 1;
                transform: scale(1)
            }

            95%,
            100% {
                opacity: 0;
                transform: scale(1.04)
            }
        }

        /* -- Dashboard Visual -- */
        .visual-dashboard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 8px;
            padding: 14px;
            align-items: stretch
        }

        /* Each mini-card */
        .dash-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 10px
        }

        /* Bar chart card */
        .dash-card-bars {
            grid-column: 1 / 2;
            grid-row: 1 / 3
        }

        .dash-bars {
            display: flex;
            align-items: flex-end;
            gap: 4px;
            width: 100%;
            height: 80px
        }

        .dash-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            animation: barGrow 2s ease-out forwards;
            opacity: 0;
            min-height: 6px
        }

        @keyframes barGrow {
            from {
                height: 0;
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        /* Donut cards */
        .dash-card-donut {
            flex-direction: column;
            gap: 4px
        }

        .dash-donut {
            position: relative;
            width: 44px;
            height: 44px
        }

        .dash-donut svg {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg)
        }

        .dash-donut-track {
            fill: none;
            stroke: rgba(255, 255, 255, .06);
            stroke-width: 6
        }

        .dash-donut-fill {
            fill: none;
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 0 157;
            animation: donutFill 2s ease-out forwards
        }

        @keyframes donutFill {
            to {
                stroke-dasharray: var(--fill) 157
            }
        }

        .dash-donut-label {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'JetBrains Mono', monospace;
            font-size: .48rem;
            color: rgba(255, 255, 255, .6)
        }

        /* Line chart mini-card */
        .dash-card-line {
            grid-column: 2 / 3;
            grid-row: 2 / 3
        }

        .dash-line-svg {
            width: 100%;
            height: 40px;
            overflow: visible
        }

        .dash-line-path {
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: 200;
            stroke-dashoffset: 200;
            animation: lineGrow 2.5s ease-out .5s forwards
        }

        .dash-line-area {
            opacity: .15;
            animation: areaGrow 2.5s ease-out .5s forwards;
            clip-path: inset(100% 0 0 0);
        }

        @keyframes lineGrow {
            to {
                stroke-dashoffset: 0
            }
        }

        @keyframes areaGrow {
            to {
                clip-path: inset(0% 0 0 0)
            }
        }

        /* Removed old dash-metric */
        .dash-metric-row,
        .dash-metric,
        .dash-metric-val,
        .dash-metric-lbl {
            display: none
        }

        /* -- Software & KI Flow -- */
        .visual-software {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            padding: 24px 16px;
            position: relative
        }

        .flow-node {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            z-index: 2
        }

        .flow-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--glass-border);
            background: rgba(0, 0, 0, .4)
        }

        .flow-icon svg {
            width: 22px;
            height: 22px
        }

        .flow-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: .48rem;
            color: rgba(255, 255, 255, .5);
            text-transform: uppercase;
            letter-spacing: .5px
        }

        .flow-ki {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(41, 121, 255, .25) 0%, rgba(41, 121, 255, .08) 60%, transparent 100%);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 1rem;
            color: var(--electric-blue);
            position: relative;
            z-index: 2;
            /* soft blurry edge via filter blur on a pseudo ring */
        }

        /* The blurred glow ring – animates glow only, circle itself stays still */
        .flow-ki::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(41, 121, 255, .5) 0%, rgba(41, 121, 255, .15) 50%, transparent 75%);
            filter: blur(10px);
            animation: kiGlowPulse 2s ease-in-out infinite;
            z-index: -1
        }

        /* Soft outer ring with blurred edge */
        .flow-ki::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1.5px solid rgba(41, 121, 255, .6);
            filter: blur(1.5px);
            box-shadow: 0 0 0 2px rgba(41, 121, 255, .12)
        }

        @keyframes kiGlowPulse {

            0%,
            100% {
                opacity: .55;
                transform: scale(1)
            }

            50% {
                opacity: 1;
                transform: scale(1.3)
            }
        }

        .flow-arrow {
            width: 36px;
            height: 2px;
            position: relative;
            z-index: 1
        }

        .flow-arrow-line {
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, .15)
        }

        .flow-arrow-particle {
            position: absolute;
            top: -2px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--cyan-glow);
            box-shadow: 0 0 8px var(--cyan-glow);
            animation: particleFlow 1.5s linear infinite
        }

        .flow-arrow:nth-child(4) .flow-arrow-particle {
            animation-delay: -.3s
        }

        @keyframes particleFlow {
            0% {
                left: -6px;
                opacity: 0
            }

            20% {
                opacity: 1
            }

            80% {
                opacity: 1
            }

            100% {
                left: 100%;
                opacity: 0
            }
        }

        .flow-result-icon {
            background: rgba(0, 200, 83, .15);
            border-color: rgba(0, 200, 83, .3)
        }

        .flow-result-icon svg {
            stroke: #00C853
        }

        /* === PROCESS === */
        .process-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 60px;
            position: relative
        }

        .process-track::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--electric-blue), var(--cyan-glow), var(--electric-purple), var(--accent-orange))
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 0 16px
        }

        .process-node {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            border-radius: 20px;
            border: 2px solid var(--glass-border);
            background: rgba(20, 20, 30, .8);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            position: relative;
            z-index: 2;
            transition: all .4s
        }

        .process-step:hover .process-node {
            border-color: var(--cyan-glow);
            box-shadow: 0 0 30px rgba(0, 229, 255, .2);
            transform: scale(1.1)
        }

        .process-step h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 8px
        }

        .process-step p {
            font-size: .85rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.5
        }

        .process-num {
            font-family: 'JetBrains Mono', monospace;
            font-size: .7rem;
            color: var(--cyan-glow);
            margin-bottom: 8px;
            letter-spacing: 2px
        }

        /* === ABOUT === */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center
        }

        .about-text h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            line-height: 1.1;
            margin-bottom: 24px
        }

        .about-text .grad {
            background: linear-gradient(135deg, var(--cyan-glow), var(--electric-blue));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .about-text p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, .6);
            line-height: 1.7;
            margin-bottom: 24px
        }

        .project-list {
            display: flex;
            flex-direction: column;
            gap: 16px
        }

        .project-item {
            padding: 20px 24px;
            border-left: 3px solid var(--electric-blue);
            background: rgba(255, 255, 255, .03);
            border-radius: 0 16px 16px 0;
            transition: all .3s
        }

        .project-item:nth-child(2) {
            border-left-color: var(--cyan-glow)
        }

        .project-item:nth-child(3) {
            border-left-color: var(--electric-purple)
        }

        .project-item:hover {
            background: rgba(255, 255, 255, .06);
            transform: translateX(8px)
        }

        .project-item h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1rem;
            margin-bottom: 6px
        }

        .project-item p {
            font-size: .85rem;
            color: rgba(255, 255, 255, .45);
            line-height: 1.5;
            margin: 0
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px
        }

        .stat-card {
            background: rgba(255, 255, 255, .04);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 28px;
            text-align: center;
        }

        .stat-num {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--electric-blue), var(--cyan-glow));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .stat-label {
            font-size: .85rem;
            color: rgba(255, 255, 255, .45);
            margin-top: 4px
        }

        /* === LEAD FORM === */
        .form-section {
            background: linear-gradient(180deg, transparent, rgba(41, 121, 255, .03))
        }

        .form-wrapper {
            max-width: 680px;
            margin: 0 auto;
            background: rgba(20, 20, 30, .6);
            border: 1px solid var(--glass-border);
            border-top: 1px solid var(--glass-highlight);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 48px;
            position: relative;
            overflow: hidden
        }

        .form-wrapper::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 200px;
            height: 200px;
            background: var(--electric-blue);
            filter: blur(100px);
            opacity: .15
        }

        .form-wrapper h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            margin-bottom: 8px;
            text-align: center
        }

        .form-wrapper .form-sub {
            font-size: 1rem;
            color: rgba(255, 255, 255, .5);
            text-align: center;
            margin-bottom: 36px
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .form-group.full {
            grid-column: span 2
        }

        .form-group label {
            font-size: .8rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .6);
            text-transform: uppercase;
            letter-spacing: .05em
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            background: rgba(255, 255, 255, .06);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 14px 16px;
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: .95rem;
            transition: border-color .3s;
            outline: none;
            -webkit-appearance: none;
            appearance: none
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--electric-blue);
            box-shadow: 0 0 0 3px rgba(41, 121, 255, .15)
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, .25)
        }

        .form-group select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center
        }

        .form-group select option {
            background: #1a1a2e;
            color: #fff
        }

        .form-submit {
            width: 100%;
            margin-top: 24px
        }

        /* === FOOTER === */
        footer {
            border-top: 1px solid var(--glass-border);
            padding: 40px 0;
            position: relative;
            z-index: 1
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px
        }

        .footer-brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            letter-spacing: -1px;
            position: relative;
            display: inline-block;
            color: #fff;
            text-decoration: none;
            margin-bottom: 24px
        }

        .footer-brand::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--cyan-glow), transparent)
        }

        .footer-links {
            display: flex;
            gap: 24px;
            list-style: none
        }

        .footer-links a {
            color: rgba(255, 255, 255, .4);
            text-decoration: none;
            font-size: .85rem;
            transition: color .2s
        }

        .footer-links a:hover {
            color: #fff
        }

        .footer-copy {
            width: 100%;
            text-align: center;
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--glass-border);
            font-size: .8rem;
            color: rgba(255, 255, 255, .3)
        }

        /* === SECTION HEADERS === */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: .78rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--cyan-glow);
            margin-bottom: 16px
        }

        .section-label-line {
            width: 24px;
            height: 2px;
            background: var(--cyan-glow);
            border-radius: 1px
        }

        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            line-height: 1.15;
            margin-bottom: 16px
        }

        .section-sub {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, .5);
            max-width: 600px;
            line-height: 1.7
        }

        /* === SCROLL REVEAL === */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .7s ease, transform .7s ease
        }

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

        /* === RESPONSIVE === */
        @media(max-width:1024px) {

            .hero-grid,
            .about-grid {
                grid-template-columns: 1fr
            }

            .hero-visual {
                display: none
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .process-track {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px
            }

            .process-track::before {
                display: none
            }
        }

        @media(max-width:768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(5, 8, 16, 0.98);
                padding: 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
                backdrop-filter: blur(10px);
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-mobile {
                display: block
            }

            .services-grid,
            .about-stats {
                grid-template-columns: 1fr
            }

            .process-track {
                grid-template-columns: 1fr
            }

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

            .form-group.full {
                grid-column: span 1
            }

            section {
                padding: 80px 0
            }

            .promo-grid {
                grid-template-columns: 1fr !important;
            }

            .promo-visual {
                min-height: 250px !important;
                border-left: none !important;
                border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
            }
        }

        /* --- COOKIE CONSENT CUSTOMIZATION --- */
        :root {
            --cc-font-family: 'Inter', sans-serif;
            --cc-bg: rgba(5, 5, 5, 0.95);
            --cc-text: #e0e0e0;
            --cc-btn-primary-bg: var(--electric-blue);
            --cc-btn-primary-text: #fff;
            --cc-btn-primary-hover-bg: var(--electric-purple);
            --cc-btn-secondary-bg: rgba(255, 255, 255, 0.05);
            --cc-btn-secondary-text: #e0e0e0;
            --cc-btn-secondary-hover-bg: rgba(255, 255, 255, 0.1);
            --cc-btn-border-radius: 4px;
            --cc-modal-border-radius: 8px;
            --cc-separator-border-color: rgba(255, 255, 255, 0.1);
            --cc-toggle-bg-on: var(--cyan-glow);
            --cc-toggle-bg-off: rgba(255, 255, 255, 0.2);
            --cc-toggle-bg-readonly: rgba(255, 255, 255, 0.1);
        }

        #cc-main .cm {
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(16px);
        }


        /* ==================== AUTOCUT SPECIFIC SETTINGS ==================== */

        /* ══════════════════════════════════════════════════════════════
   HERO SECTION (AUTOCUT) — gescoped auf body.autocut-page,
   damit globale .hero/.hero-grid/.hero p nicht ueberschrieben werden.
   Die .hero-grid-Definition fuer Index liegt einzig in Zeile ~259.
   ══════════════════════════════════════════════════════════════ */
        .autocut-page .hero {
            position: relative;
            padding-top: 140px;
            padding-bottom: 60px;
            z-index: 10;
        }

        .autocut-page .hero-grid {
            gap: 40px;
        }

        .autocut-page .hero-badge {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(41, 121, 255, 0.1);
            border: 1px solid rgba(41, 121, 255, 0.2);
            border-radius: 30px;
            color: var(--cyan-glow);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .autocut-page .hero h1 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .autocut-page .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            max-width: 500px;
            line-height: 1.6;
        }

        /* ══════════════════════════════════════════════════════════════
   WORKFLOW MOCKUP (AUTOCUT)
   ══════════════════════════════════════════════════════════════ */
        .hero-visual {
            position: relative;
        }

        .workflow-mockup {
            background: rgba(10, 10, 15, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(12px);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .flow-node {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 16px;
            position: relative;
            transition: transform 0.2s, background 0.2s;
        }

        .flow-node:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(4px);
        }

        .flow-node.active {
            background: rgba(41, 121, 255, 0.05);
            border-color: rgba(41, 121, 255, 0.3);
            box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
        }

        .flow-node-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
        }

        .flow-arrow {
            width: 2px;
            height: 16px;
            background: rgba(255, 255, 255, 0.1);
            margin: 0 32px;
        }

        /* ══════════════════════════════════════════════════════════════
   FEATURES & SMART BLOCKS
   ══════════════════════════════════════════════════════════════ */
        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-family: 'Outfit', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
        }

        .section-header p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            margin-top: 16px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-bottom: 80px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 32px;
            border-radius: 12px;
            transition: transform 0.2s, background 0.2s;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-4px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* HOW IT WORKS STEPS */
        .steps-wrapper {
            display: flex;
            flex-direction: column;
            gap: 32px;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .step-item {
            display: flex;
            gap: 24px;
            align-items: flex-start;
        }

        .step-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--cyan-glow);
            background: rgba(0, 229, 255, 0.1);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
            margin-top: 8px;
        }

        .step-content p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* SMART BLOCKS GRID */
        .blocks-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 80px;
        }

        .smart-block {
            background: rgba(20, 20, 25, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 24px;
            display: flex;
            flex-direction: column;
        }

        .sb-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .sb-icon {
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sb-title {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .sb-desc {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .sb-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: var(--cyan-glow);
            font-family: 'JetBrains Mono', monospace;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 16px;
        }

        /* FAQ */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .faq-question {
            padding: 24px 0;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-icon {
            color: var(--cyan-glow);
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .faq-answer {
            padding-bottom: 24px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        @media (max-width: 900px) {

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


        /* ══════════════════════════════════════════════════════════════
   LEGAL PAGES (IMPRESSUM, DATENSCHUTZ, AGB)
   ══════════════════════════════════════════════════════════════ */
        .legal-box {
            background: rgba(10, 15, 30, 0.4);
            border: 1px solid var(--glass-border);
            border-top: 1px solid rgba(0, 229, 255, 0.2);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(24px);
            border-radius: 24px;
            padding: 48px;
            margin-bottom: 40px;
        }

        @media(max-width: 768px) {
            .legal-box {
                padding: 32px 24px;
                border-radius: 16px;
            }
        }

        .legal-box h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            color: #fff;
            margin-top: 32px;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .legal-box h2:first-child {
            margin-top: 0;
        }

        .legal-box h2 span {
            color: var(--cyan-glow);
            font-size: 1.2rem;
            background: rgba(0, 229, 255, 0.1);
            padding: 4px 10px;
            border-radius: 8px;
            border: 1px solid rgba(0, 229, 255, 0.2);
        }

        .legal-box h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            color: #fff;
            margin-top: 24px;
            margin-bottom: 12px;
        }

        .legal-box p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .legal-box p strong {
            color: #fff;
            font-weight: 500;
        }

        .legal-box ul {
            margin-bottom: 24px;
            padding-left: 24px;
        }

        .legal-box li {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .legal-box li strong {
            color: #fff;
            font-weight: 500;
        }

        .legal-box a {
            color: var(--cyan-glow);
            text-decoration: none;
            transition: all 0.2s;
        }

        .legal-box a:hover {
            color: var(--electric-blue);
            text-shadow: 0 0 10px rgba(41, 121, 255, 0.4);
        }

        .stand-date {
            display: inline-block;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.85rem;
            color: var(--cyan-glow);
            background: rgba(0, 229, 255, 0.08);
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid rgba(0, 229, 255, 0.15);
            margin-bottom: 32px;
        }

        .legal-separator {
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
            margin: 60px 0;
        }

        /* ==========================================================================
   TRACKS-GRID — 2 Cards Solo + KMU (nutzt .service-card unveraendert)
   ========================================================================== */
        .tracks-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-top: 48px;
        }

        @media (max-width: 960px) {
            .tracks-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        .tracks-grid .service-visual svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .track-pain {
            font-style: italic;
            margin-bottom: 14px !important;
        }

        .track-tag {
            display: inline-block;
            align-self: flex-start;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--cyan-glow);
            padding: 4px 10px;
            border: 1px solid rgba(0, 229, 255, 0.25);
            border-radius: 999px;
            background: rgba(0, 229, 255, 0.05);
            margin-bottom: 14px;
            position: relative;
            z-index: 1;
        }

        .tracks-grid .price-tag {
            margin-top: 12px;
        }

        #tracks .section-sub {
            max-width: none;
        }

        .track-cta {
            align-self: flex-start;
            margin-top: 18px;
            pointer-events: none;
            position: relative;
            z-index: 1;
        }

        /* ==========================================================================
   HERO RELAUNCH — Sub-Sub, Damaging Admission, Risk Badges, ATF Pricing Card
   ========================================================================== */

        .hero-sub-sub {
            margin-top: 14px;
            font-size: 0.95rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.72);
        }

        .admission-line {
            margin-top: 18px;
            padding: 14px 18px;
            font-size: 0.92rem;
            line-height: 1.55;
            color: rgba(255, 255, 255, 0.6);
            border-left: 2px solid var(--accent-orange);
            background: rgba(255, 145, 0, 0.04);
            border-radius: 0 6px 6px 0;
        }

        .admission-line em {
            font-style: italic;
        }

        .risk-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .risk-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            font-size: 0.82rem;
            line-height: 1.3;
            color: rgba(255, 255, 255, 0.82);
            background: rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(0, 229, 255, 0.15);
            border-radius: 999px;
            backdrop-filter: blur(10px);
        }

        .risk-badge-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--cyan-glow);
            color: #02141a;
            font-weight: 700;
            font-size: 0.65rem;
            flex-shrink: 0;
        }

        /* --- ATF Pricing Card (Hero rechts unten) --- */
        .atf-pricing-card .atf-price-row {
            display: flex;
            align-items: baseline;
            gap: 14px;
            margin-top: 14px;
        }

        .atf-price-strike {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: line-through;
            text-decoration-color: rgba(255, 255, 255, 0.5);
        }

        .atf-price-actual {
            font-family: 'Outfit', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--cyan-glow);
            line-height: 1;
        }

        .atf-bar {
            margin-top: 14px;
            height: 6px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 3px;
            overflow: hidden;
        }

        .atf-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--electric-blue), var(--cyan-glow));
            border-radius: 3px;
        }

        .atf-meta {
            margin-top: 10px;
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.55);
        }

        /* === DA / TRUST STRIP === */
        .da-section {
            padding: 44px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .da-inner {
            display: flex;
            align-items: center;
            gap: 56px;
        }

        .da-text {
            flex: 1;
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.58);
        }

        .da-text strong {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .da-signals {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-shrink: 0;
        }

        .da-signal {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--cyan-glow);
            white-space: nowrap;
        }

        .da-signal-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--cyan-glow);
            color: #02141a;
            font-weight: 700;
            font-size: 0.62rem;
            flex-shrink: 0;
        }

        /* === STAT CARD SUB-LABEL === */
        .stat-sub {
            display: block;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.35);
            margin-top: 5px;
            font-weight: 400;
            line-height: 1.45;
        }

        .stat-mono {
            font-family: 'Courier New', monospace;
            letter-spacing: -1px;
        }

        .stat-card-urgent .stat-num {
            color: #ff9f43;
        }

        /* === FORM RADIO GROUP === */
        .form-radio-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 8px;
        }

        .form-group label.radio-option {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            cursor: pointer;
            transition: border-color 0.2s, background 0.2s;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: none;
            letter-spacing: 0;
            font-weight: 400;
            margin-bottom: 0;
        }

        .form-group label.radio-option:has(input:checked) {
            border-color: var(--cyan-glow);
            background: rgba(0, 229, 255, 0.05);
            color: rgba(255, 255, 255, 0.9);
        }

        .form-group label.radio-option input[type="radio"] {
            display: none;
        }

        .form-group label.radio-option span {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            text-transform: none;
            letter-spacing: 0;
        }

        .form-group label.radio-option span em {
            color: var(--cyan-glow);
            font-style: normal;
            font-size: 0.78rem;
            font-weight: 600;
            background: rgba(0, 229, 255, 0.08);
            padding: 2px 8px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .form-group .form-radio-group {
            margin-bottom: 8px;
        }

        .label-optional {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 400;
            text-transform: none;
            letter-spacing: 0;
        }

        @media (max-width: 768px) {
            .da-inner {
                flex-direction: column;
                gap: 28px;
            }

            .da-signals {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }

            .da-signal {
                white-space: normal;
            }
        }
/* ==========================================================================
   PLAN 03 — KI-STRATEGIEENTWICKLUNG (alle Sektions-Klassen)
   ========================================================================== */

/* --- ATF-Card ROI-Block + Total --- */
.atf-roi-block {
    font-size: 0.78rem !important;
    line-height: 1.6;
}

.atf-roi-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.atf-roi-total-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
}

.atf-roi-total-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan-glow);
    line-height: 1;
}

.atf-roi-total-value small {
    font-size: 0.65em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* --- Sektion 2: Damaging Admission V3 --- */
.da-section-v3 {
    padding: 60px 0 !important;
}

.da-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 48px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--accent-orange);
    border-radius: 14px;
}

.da-box .da-headline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.da-box p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 14px;
}

.da-pivot {
    color: rgba(255, 255, 255, 0.92) !important;
}

.da-pivot strong {
    color: var(--cyan-glow);
}

.da-trust {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.da-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.da-trust-icon {
    color: var(--cyan-glow);
    font-weight: 700;
}

/* --- Sektion 3: Need-to-Believes --- */
.ntb-list {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.ntb-item {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: border-color 0.3s, background 0.3s;
}

.ntb-item:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(255, 255, 255, 0.035);
}

.ntb-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--cyan-glow);
    margin-bottom: 14px;
    line-height: 1.3;
}

.ntb-item p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin-bottom: 12px;
}

.ntb-numbers {
    list-style: none;
    padding: 16px 20px;
    margin: 12px 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border-left: 2px solid var(--cyan-glow);
}

.ntb-numbers li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
}

.ntb-numbers strong {
    color: var(--cyan-glow);
}

.ntb-foot {
    font-size: 0.92rem !important;
    color: rgba(255, 255, 255, 0.55) !important;
    font-style: italic;
}

.ntb-foot a {
    color: var(--cyan-glow);
    text-decoration: none;
    border-bottom: 1px dotted var(--cyan-glow);
}

/* --- Sektion 4: Deliverable --- */
.deliverable-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .deliverable-list {
        grid-template-columns: 1fr;
    }
}

.deliverable-item {
    position: relative;
    padding: 32px 32px 32px 88px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: border-color 0.3s, transform 0.3s;
}

.deliverable-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-4px);
}

.deliverable-num {
    position: absolute;
    left: 28px;
    top: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--cyan-glow);
    opacity: 0.6;
    line-height: 1;
}

.deliverable-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #fff;
}

.deliverable-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Sektion 5: Process Tabelle --- */
.process-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.process-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.process-table thead {
    background: rgba(0, 229, 255, 0.04);
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
}

.process-table th {
    padding: 18px 20px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan-glow);
    font-weight: 700;
}

.process-table td {
    padding: 22px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
    line-height: 1.55;
    vertical-align: top;
}

.process-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.process-phase-sub {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-top: 4px;
}

.process-summary {
    margin-top: 32px;
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.process-summary strong {
    color: var(--cyan-glow);
}

/* --- Sektion 6: Engineering-Anschluss / Next Steps --- */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

.next-step-card {
    position: relative;
    padding: 36px 28px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: border-color 0.3s, transform 0.3s;
}

.next-step-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-4px);
}

.next-step-card-recommended {
    border-color: rgba(0, 229, 255, 0.35);
    background: rgba(0, 229, 255, 0.04);
}

.next-step-card-recommended::before {
    content: 'Empfohlen';
    position: absolute;
    top: -10px;
    right: 24px;
    padding: 4px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--cyan-glow);
    color: #02141a;
    border-radius: 999px;
    font-weight: 700;
}

.next-step-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--cyan-glow);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 18px;
}

.next-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.next-step-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.6;
}

/* --- Sektion 7: Garantie --- */
.guarantee-block {
    max-width: 880px;
    margin: 0 auto;
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(41, 121, 255, 0.03));
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.08);
    text-align: center;
}

.guarantee-block .section-title {
    margin-top: 12px;
    margin-bottom: 32px;
}

.guarantee-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
    margin-bottom: 32px;
}

@media (max-width: 720px) {
    .guarantee-points {
        grid-template-columns: 1fr;
    }
}

.guarantee-point {
    padding: 24px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 12px;
}

.guarantee-num {
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan-glow);
    font-size: 0.85rem;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.guarantee-point h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.guarantee-point p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.6;
}

.guarantee-summary {
    text-align: left;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border-left: 3px solid var(--cyan-glow);
}

.guarantee-summary h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--cyan-glow);
}

.guarantee-summary p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.guarantee-summary ul {
    list-style: none;
    padding: 0;
}

.guarantee-summary li {
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
}

.guarantee-summary li::before {
    content: '✓ ';
    color: var(--cyan-glow);
    font-weight: 700;
}

/* --- Sektion 8: Pricing-Hero --- */
.pricing-anchor {
    max-width: 720px;
    margin: 40px auto 56px;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
}

.pricing-anchor-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    text-align: center;
}

.pricing-anchor-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.pricing-anchor-name {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.pricing-anchor-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 64, 129, 0.7);
}

.pricing-anchor-foot {
    margin-top: 10px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

.pricing-anchor-pivot {
    margin-top: 22px;
    padding: 18px 22px;
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    font-size: 0.96rem;
}

.pricing-anchor-pivot strong {
    color: var(--cyan-glow);
}

/* NtB-Accordion: gleiche faq-item-Logik, etwas mehr Spacing oben */
.ntb-accordion {
    margin-top: 40px;
}

/* Hero-Tagline: prominente Zwischenzeile zwischen H1 und Sub */
.hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    margin-bottom: 22px;
}

/* Page-spezifische H1-Reduktion: lange Headline „Dein Team schafft täglich 2 Stunden mehr."
   passt nicht in die Standard-clamp-Range. Kleiner + andere Letter-Spacing. */
body.page-strategieentwicklung .hero h1 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    letter-spacing: -1px;
    line-height: 1.05;
}

/* Hero-Grid auf der Strategieentwicklungs-Page minimal mehr Platz fuer Text */
body.page-strategieentwicklung .hero-grid {
    grid-template-columns: 1.65fr 1fr;
}

/* Section-Subtexte in Plan-03-Sektionen voll breit (Override des globalen max-width: 600px) */
#deliverable .section-sub,
#process .section-sub,
#next-steps .section-sub,
#roi .section-sub,
#trust .section-sub,
#faq .section-sub,
#pricing .section-sub,
#guarantee .section-sub,
#need-to-believe .section-sub {
    max-width: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 880px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    padding: 36px 32px;
    background: rgba(10, 15, 30, 0.55);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 18px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    border-color: rgba(0, 229, 255, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.pricing-region {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan-glow);
    margin-bottom: 18px;
}

.pricing-strike {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    margin-bottom: 6px;
    text-decoration: line-through;
}

.pricing-eigenanteil {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    line-height: 1;
    color: var(--cyan-glow);
    margin-bottom: 6px;
}

.pricing-eigenanteil-label {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 18px;
}

.pricing-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.pricing-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--electric-blue), var(--cyan-glow));
    border-radius: 4px;
}

.pricing-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-foot {
    text-align: center;
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
}

.bafa-urgency {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 720px;
    margin: 40px auto 0;
    padding: 22px 28px;
    background: rgba(255, 145, 0, 0.06);
    border: 1px solid rgba(255, 145, 0, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

.bafa-urgency-icon {
    font-size: 1.8rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.bafa-urgency strong {
    color: var(--accent-orange);
}

.pricing-cta {
    display: block;
    max-width: 420px;
    margin: 32px auto 0;
    text-align: center;
    justify-content: center;
}

/* --- Sektion 9: ROI Tabelle --- */
.roi-table-wrap {
    margin-top: 48px;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
}

.roi-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.roi-table thead {
    background: rgba(0, 229, 255, 0.05);
    border-bottom: 1px solid rgba(0, 229, 255, 0.18);
}

.roi-table th {
    padding: 18px 20px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan-glow);
    font-weight: 700;
}

.roi-table td {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.94rem;
}

.roi-table tbody tr:hover {
    background: rgba(0, 229, 255, 0.025);
}

.roi-table strong {
    color: var(--cyan-glow);
}

.roi-table small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.roi-foot {
    margin-top: 32px;
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}

.roi-foot strong {
    color: var(--cyan-glow);
}

/* --- Sektion 10: Trust Stats --- */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .trust-stats {
        grid-template-columns: 1fr;
    }
}

/* .stat-num-text fuer nicht-animierte Stat-Werte (z.B. 227858, 9+, 0 €) */
.stat-num-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--cyan-glow);
    margin-bottom: 10px;
}

.stat-card-bafa {
    border-color: rgba(0, 229, 255, 0.25) !important;
}

.stat-card-bafa .stat-num-text {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
}

.stat-card-zero-risk {
    border-color: rgba(0, 229, 255, 0.25) !important;
}

.stat-frame {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

/* --- Sektion 11: FAQ (details/summary-Variante, nicht .faq-question/.faq-answer) --- */
.faq-list {
    max-width: 880px;
    margin: 48px auto 0;
}

details.faq-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

details.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

details.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 48px 24px 0;
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    transition: color 0.3s;
}

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

details.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--cyan-glow);
    font-weight: 300;
    transition: transform 0.3s;
}

details.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

details.faq-item summary:hover {
    color: var(--cyan-glow);
}

details.faq-item .faq-body {
    padding: 0 24px 24px 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 0.96rem;
}

details.faq-item .faq-body p {
    margin: 0;
}

/* --- Sektion 12: Final CTA --- */
.final-cta {
    padding: 100px 0 !important;
}

.final-cta-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(41, 121, 255, 0.04));
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 20px;
}

.final-cta-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.final-cta-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.final-cta-btn {
    display: inline-flex;
    margin-bottom: 28px;
}

.final-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

/* ====================================================================
   PLAN 02 — KI-BOOTCAMP PAGE-SPECIFIC STYLES (body.page-bootcamp)
   ==================================================================== */

/* Hero-Anpassung analog Strategieentwicklung */
body.page-bootcamp .hero h1 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    letter-spacing: -1px;
    line-height: 1.05;
}

body.page-bootcamp .hero-grid {
    grid-template-columns: 1.65fr 1fr;
}

@media (max-width: 900px) {
    body.page-bootcamp .hero-grid {
        grid-template-columns: 1fr;
    }
}

body.page-bootcamp section .section-sub {
    max-width: 720px;
}

/* ====================================================================
   ANDI-STORY SECTION
   ==================================================================== */
.andi-story-section {
    padding: 80px 0 40px;
}

.andi-story-box {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(41, 121, 255, 0.04), rgba(0, 229, 255, 0.02));
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 20px;
    padding: 48px 56px;
}

.andi-story-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 16px 0 28px;
    letter-spacing: -0.5px;
}

.andi-story-body p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.andi-story-pivot {
    padding: 18px 22px;
    border-left: 3px solid var(--cyan-glow);
    background: rgba(0, 229, 255, 0.04);
    border-radius: 0 10px 10px 0;
}

.andi-pain-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
}

@media (max-width: 720px) {
    .andi-pain-points {
        grid-template-columns: 1fr;
    }
    .andi-story-box {
        padding: 32px 24px;
    }
}

.andi-pain-card {
    background: rgba(10, 15, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
}

.andi-pain-icon {
    font-size: 1.8rem;
    color: var(--cyan-glow);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.andi-pain-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 10px;
}

.andi-pain-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* ====================================================================
   CHATGPT vs FOUNDER OS — COMPARE GRID
   ==================================================================== */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 820px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

.compare-col {
    border-radius: 16px;
    padding: 36px 32px;
    background: rgba(10, 15, 30, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-col-bad {
    border-color: rgba(255, 90, 90, 0.18);
}

.compare-col-good {
    border-color: rgba(0, 229, 255, 0.25);
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), rgba(10, 15, 30, 0.5));
    box-shadow: 0 0 0 1px rgba(0, 229, 255, 0.08), 0 20px 60px rgba(0, 229, 255, 0.06);
}

.compare-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.compare-logo {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.compare-logo-chatgpt {
    background: rgba(255, 90, 90, 0.08);
    color: #ff7a7a;
}

.compare-logo-founder {
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan-glow);
}

.compare-head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: white;
    margin: 0;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1px;
}

.compare-icon-bad {
    background: rgba(255, 90, 90, 0.12);
    color: #ff7a7a;
}

.compare-icon-good {
    background: rgba(0, 229, 255, 0.15);
    color: var(--cyan-glow);
}

.compare-foot {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin-top: 32px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

/* ====================================================================
   CURRICULUM — Halbzeit-Highlight + Foot
   ==================================================================== */
.module-card-halftime {
    border-color: rgba(155, 89, 255, 0.35) !important;
    background: linear-gradient(180deg, rgba(155, 89, 255, 0.05), rgba(10, 15, 30, 0.5)) !important;
    box-shadow: 0 0 0 1px rgba(155, 89, 255, 0.12), 0 16px 50px rgba(155, 89, 255, 0.08) !important;
}

.curriculum-foot {
    margin-top: 36px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.98rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ====================================================================
   PRICING — Single Card + Kein-Abo-Pivot
   ==================================================================== */
.pricing-grid-single {
    grid-template-columns: 1fr !important;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-no-abo {
    margin: 32px auto 0;
    max-width: 720px;
    background: rgba(10, 15, 30, 0.45);
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 14px;
    padding: 26px 30px;
    text-align: center;
}

.pricing-no-abo h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--cyan-glow);
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.pricing-no-abo p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ====================================================================
   COHORT / SCARCITY SECTION
   ==================================================================== */
.cohort-section {
    padding: 80px 0;
}

.cohort-box {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 90, 90, 0.04), rgba(155, 89, 255, 0.04));
    border: 1px solid rgba(155, 89, 255, 0.18);
    border-radius: 20px;
    padding: 48px 56px;
    text-align: center;
}

@media (max-width: 720px) {
    .cohort-box {
        padding: 32px 22px;
    }
}

.cohort-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(155, 89, 255, 0.1);
    border: 1px solid rgba(155, 89, 255, 0.25);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.cohort-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c499ff;
    box-shadow: 0 0 10px #c499ff;
}

.cohort-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 18px auto 32px;
    max-width: 720px;
}

.cohort-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 28px;
}

@media (max-width: 600px) {
    .cohort-pills {
        grid-template-columns: 1fr;
    }
}

.cohort-pill {
    background: rgba(10, 15, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 16px;
}

.cohort-pill-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.cohort-pill-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.cohort-foot {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.94rem;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto;
    font-style: italic;
}

/* Pricing-Anchor — detaillierte Rows (mit Erklärung) */
.pricing-anchor-row + .pricing-anchor-row {
    margin-top: 12px;
}

.pricing-anchor-row-detailed {
    display: block;
    padding: 16px 20px;
}

.pricing-anchor-row-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-anchor-explain {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.55;
    font-style: italic;
}
