@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;900&family=JetBrains+Mono:wght@400;500;600&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600;1,700&display=swap');

        /* ============================================================
        CUSTOM THEMED SCROLLBAR
        ============================================================ */
        /* WebKit Browsers (Chrome, Edge, Safari, Opera) */
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #060a15;
            border-left: 1px solid rgba(255, 255, 255, 0.05);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #1b75d0 0%, #00d2ff 100%);
            border-radius: 5px;
            border: 2px solid #060a15;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #00d2ff 0%, #1b75d0 100%);
        }

        /* Firefox Support */
        * {
            scrollbar-width: thin;
            scrollbar-color: #1b75d0 #060a15;
        }

        .fancy-serif {
            font-family: var(--font-serif) !important;
            font-style: italic !important;
        }

        :root {
            --primary: #1b75d0;
            --primary-hover: #12569c;
            --primary-glow: rgba(27, 117, 208, 0.15);
            --accent-pink: #00d2ff;
            --accent-pink-glow: rgba(0, 210, 255, 0.25);
            --accent-cyan: #6366f1;
            --accent-cyan-glow: rgba(99, 102, 241, 0.15);
            --bg-dark-base: #07111e;
            --bg-light-base: #f8fafc;
            --bg-panel: #ffffff;
            --bg-panel-dark: rgba(11, 15, 30, 0.9);
            --bg-panel-light: #f1f5f9;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --text-white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #1b75d0 0%, #12569c 100%);
            --gradient-mixed: linear-gradient(135deg, #1b75d0 0%, #00d2ff 100%);
            --gradient-cyan: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
            --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
            --border-glass: rgba(255, 255, 255, 0.15);
            --border-color: rgba(27, 117, 208, 0.08);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-round: 50px;
            --radius-circle: 50%;
            --font-sans: 'Inter', sans-serif;
            --font-display: 'Outfit', sans-serif;
            --font-serif: 'Cormorant Garamond', Georgia, serif;
            --font-mono: 'JetBrains Mono', monospace;
            --transition-fluid: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

            /* Navbar height token for pixel-perfect layout math */
            --navbar-height: 80px;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .skip-to-content {
            position: absolute;
            left: -9999px;
            top: 0.5rem;
            z-index: 10000;
            padding: 0.65rem 1rem;
            background: var(--gradient-mixed);
            color: #fff !important;
            font-weight: 600;
            font-size: 0.88rem;
            text-decoration: none;
            border-radius: var(--radius-sm);
        }

        .skip-to-content:focus {
            left: max(0.75rem, env(safe-area-inset-left, 0.75rem));
            outline: 2px solid var(--accent-pink);
            outline-offset: 2px;
        }

        body {
            background-color: var(--bg-dark-base);
            color: rgba(255, 255, 255, 0.85);
            font-family: var(--font-sans);
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.65;
            padding-top: calc(var(--navbar-height) + env(safe-area-inset-top, 0px));
        }

        img,
        video,
        canvas,
        iframe {
            max-width: 100%;
        }

        .container {
            padding-left: max(1rem, env(safe-area-inset-left, 0px));
            padding-right: max(1rem, env(safe-area-inset-right, 0px));
        }

        /* ============================================
   MATT WILLIAMS-STYLE DIAGONAL LINES CANVAS
   ============================================ */
        #diagonal-lines-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        #diagonal-lines-bg canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* All sections sit above the fixed background */
        nav,
        main,
        footer {
            position: relative;
            z-index: 1;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: -0.015em;
            color: var(--text-white);
        }

        .text-gradient {
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Same brand gradient as .text-gradient (blue → cyan) */
        .text-gradient-cyan {
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .text-gradient i.bi,
        .text-gradient-cyan i.bi {
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Ambient Blobs */
        .bulkit-blob {
            position: fixed;
            border-radius: var(--radius-circle);
            filter: blur(100px);
            z-index: 0;
            pointer-events: none;
            opacity: 0.3;
            animation: driftBlob 14s ease-in-out infinite alternate;
        }

        .bulkit-blob-1 {
            width: 400px;
            height: 400px;
            background: rgba(27, 117, 208, 0.35);
            top: 0%;
            left: -10%;
        }

        .bulkit-blob-2 {
            width: 450px;
            height: 450px;
            background: rgba(0, 210, 255, 0.25);
            bottom: 10%;
            right: -10%;
            animation-delay: -3s;
            animation-duration: 16s;
        }

        .bulkit-blob-3 {
            width: 300px;
            height: 300px;
            background: rgba(99, 102, 241, 0.2);
            top: 40%;
            left: 35%;
            animation-delay: -6s;
            animation-duration: 18s;
        }

        @keyframes driftBlob {
            0% {
                transform: translate(0px, 0px) scale(1);
            }

            50% {
                transform: translate(50px, -60px) scale(1.15);
            }

            100% {
                transform: translate(-30px, 40px) scale(0.9);
            }
        }

        /* Navbar */
        .navbar-glass {
            background: rgba(7, 17, 30, 0.75) !important;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition-fluid);
            padding: 15px 0;
            z-index: 100;
        }

        .navbar-glass.scrolled {
            padding: 10px 0;
            background: rgba(7, 17, 30, 0.95) !important;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .navbar-logo {
            width: 36px;
            height: 36px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .presentation-modal-content {
            background: #080e1c;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .navbar-brand-text {
            font-family: 'Oswald', sans-serif;
            font-size: 1.55rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            line-height: 1;
            display: inline-block;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: var(--transition-fluid);
        }

        .logo-highlight-blue {
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.8) !important;
            font-weight: 500;
            font-size: 0.92rem;
            padding: 6px 14px !important;
            transition: var(--transition-fluid);
            border-radius: 6px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-pink) !important;
            background: rgba(0, 210, 255, 0.06);
        }

        /* =============================================
   HERO — Properly centered, accounts for sticky navbar
   ============================================= */
        .rounded-hero {
            position: relative;
            /* Fills exactly the visible viewport height, keeping #about below the fold */
            min-height: calc(100vh - var(--navbar-height));
            min-height: calc(100dvh - var(--navbar-height));
            /* Symmetric responsive padding creates a perfect safety boundary on small screens */
            padding-top: clamp(35px, 6vh, 70px);
            padding-bottom: clamp(35px, 6vh, 70px);
            display: flex;
            align-items: center;
            /* Centered vertically for a perfectly balanced layout */
            border-bottom-left-radius: 60px;
            border-bottom-right-radius: 60px;
            overflow-x: clip;
            overflow-y: visible;
        }

        .rounded-hero > .container {
            width: 100%;
        }

        .rounded-hero .row {
            width: 100%;
        }

        .hero-sphere-col {
            text-align: center;
        }

        /* Big animated headline */
        .hero-headline {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: 0.02em;
            color: #fff;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.12em;
            text-wrap: normal;
        }

        .hero-headline-line {
            display: block;
            color: #fff;
            font-weight: 500;
            line-height: 1.05;
        }

        .hero-headline-brand {
            display: block;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            line-height: 1.05;
            white-space: nowrap;
            overflow-wrap: normal;
            word-break: keep-all;
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
        }

        .hero-sub .text-gradient {
            font-family: 'Oswald', sans-serif;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        /* Hero subtitle */
        .hero-sub {
            font-size: clamp(1rem, 2.2vw, 1.2rem);
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.65);
            font-family: var(--font-sans);
            max-width: 36rem;
            margin-bottom: 1.5rem;
        }

        .hero-sub .text-gradient {
            -webkit-text-fill-color: transparent;
        }

        /* Hero stat strip */
        .hero-stats {
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .hero-stat-num {
            font-family: var(--font-display);
            font-size: 1.9rem;
            font-weight: 800;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 4px;
        }

        .hero-stat-label {
            font-family: var(--font-display);
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.45);
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-stat-divider {
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
            align-self: stretch;
        }

        .badge-glass-bulkit {
            display: inline-flex;
            align-items: center;
            background: rgba(27, 117, 208, 0.08);
            border: 1px solid rgba(27, 117, 208, 0.2);
            padding: 6px 16px;
            border-radius: var(--radius-round);
            font-weight: 600;
            font-size: 0.82rem;
            color: var(--accent-pink);
            margin-bottom: 22px;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            font-family: var(--font-display);
        }

        .badge-dot {
            width: 7px;
            height: 7px;
            border-radius: var(--radius-circle);
            background-color: var(--accent-pink);
            margin-right: 8px;
            animation: blink 1.5s infinite;
            flex-shrink: 0;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 1;
            }
        }

        /* Buttons */
        .btn-bulkit {
            background: var(--gradient-mixed);
            color: var(--text-white) !important;
            border: none;
            padding: 12px 30px;
            border-radius: var(--radius-round);
            font-weight: 600;
            letter-spacing: -0.01em;
            box-shadow: 0 8px 24px rgba(0, 210, 255, 0.2);
            transition: var(--transition-fluid);
        }

        .btn-bulkit:hover {
            box-shadow: 0 12px 30px rgba(0, 210, 255, 0.35);
            transform: translateY(-2px) scale(1.02);
        }

        .btn-whatsapp-brand {
            background: #25D366 !important;
            color: var(--text-white) !important;
            border: none;
            padding: 10px 24px;
            border-radius: var(--radius-round);
            font-weight: 600;
            letter-spacing: -0.01em;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
            transition: var(--transition-fluid);
        }

        .btn-whatsapp-brand:hover {
            background: #20ba5a !important;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
            transform: translateY(-1px);
        }

        .btn-bulkit-outline {
            background: transparent;
            color: rgba(255, 255, 255, 0.85) !important;
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            padding: 11px 28px;
            border-radius: var(--radius-round);
            font-weight: 600;
            transition: var(--transition-fluid);
        }

        .btn-bulkit-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.5);
            color: var(--text-white) !important;
            transform: translateY(-2px);
        }

        /* Sections */
        .section-padding {
            padding: 100px 0;
            position: relative;
            width: 100%;
            box-sizing: border-box;
        }

        /* Program Cards */
        .program-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            padding: 36px 28px;
            transition: var(--transition-fluid);
            height: 100%;
            backdrop-filter: blur(4px);
        }

        .program-card:hover {
            transform: translateY(-6px);
            background: rgba(0, 210, 255, 0.04);
            border-color: rgba(0, 210, 255, 0.25);
            box-shadow: 0 20px 50px rgba(0, 210, 255, 0.08);
        }

        .program-icon-box {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-md);
            background: rgba(27, 117, 208, 0.12);
            color: var(--accent-pink);
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 22px;
            transition: var(--transition-fluid);
        }

        .program-card:hover .program-icon-box {
            background: var(--gradient-mixed);
            color: var(--text-white);
            box-shadow: 0 6px 18px rgba(0, 210, 255, 0.25);
        }

        #courses .program-badge {
            font-size: 0.72rem;
            width: fit-content;
            background: rgba(0, 210, 255, 0.12);
            color: var(--accent-pink);
            border: 1px solid rgba(0, 210, 255, 0.18);
        }

        /* Sandbox Terminal */
        .sandbox-terminal {
            background: rgba(11, 15, 25, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
            overflow: hidden;
            backdrop-filter: blur(12px);
        }

        .terminal-header {
            background: rgba(17, 24, 39, 0.9);
            padding: 14px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .terminal-dots span {
            display: inline-block;
            width: 11px;
            height: 11px;
            border-radius: var(--radius-circle);
            margin-right: 7px;
        }

        .terminal-red {
            background: #ef4444;
        }

        .terminal-yellow {
            background: #f59e0b;
        }

        .terminal-green {
            background: #10b981;
        }

        .sandbox-nav-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.09);
            color: #9ca3af;
            padding: 9px 16px;
            border-radius: var(--radius-round);
            font-weight: 500;
            transition: var(--transition-fluid);
            font-size: 0.88rem;
            cursor: pointer;
        }

        .sandbox-nav-btn:hover {
            color: var(--text-white);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .sandbox-nav-btn.active {
            background: var(--gradient-mixed);
            color: var(--text-white);
            border-color: transparent;
            box-shadow: 0 5px 14px rgba(0, 210, 255, 0.2);
        }

        .showcase-canvas {
            min-height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-image:
                radial-gradient(circle at 50% 50%, rgba(27, 117, 208, 0.08) 0%, transparent 70%),
                linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
            background-size: 100% 100%, 28px 28px, 28px 28px;
        }

        /* Clock */
        .clock-widget {
            position: relative;
            width: 220px;
            height: 220px;
            border: 6px solid rgba(255, 255, 255, 0.85);
            border-radius: var(--radius-circle);
            background: #0b1120;
            box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.7), 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .clock-widget::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--accent-pink);
            border-radius: var(--radius-circle);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            box-shadow: 0 0 8px var(--accent-pink);
        }

        .clock-hand {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform-origin: bottom center;
            border-radius: 4px;
            z-index: 5;
        }

        .hour-hand {
            width: 5px;
            height: 52px;
            background-color: var(--text-white);
            margin-left: -2.5px;
        }

        .minute-hand {
            width: 3px;
            height: 72px;
            background-color: var(--accent-pink);
            margin-left: -1.5px;
        }

        .second-hand {
            width: 1.5px;
            height: 84px;
            background-color: #ef4444;
            margin-left: -0.75px;
        }

        .clock-num {
            position: absolute;
            color: rgba(255, 255, 255, 0.35);
            font-weight: 700;
            font-size: 0.9rem;
        }

        .cn-12 {
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .cn-3 {
            right: 11px;
            top: 50%;
            transform: translateY(-50%);
        }

        .cn-6 {
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .cn-9 {
            left: 11px;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Car Game */
        .car-game-wrapper {
            position: relative;
            width: 300px;
            height: 400px;
            background: #0e1420;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 3px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        }

        .game-road-markings {
            position: absolute;
            width: 5px;
            height: 48px;
            background: rgba(255, 255, 255, 0.6);
            left: 50%;
            top: 0;
            transform: translateX(-50%) translateY(-70px);
            animation: scrollRoad 1.1s linear infinite;
            animation-play-state: paused;
            border-radius: 2px;
            will-change: transform;
        }

        .road-mark-1 {
            animation-delay: 0s;
        }

        .road-mark-2 {
            animation-delay: -0.28s;
        }

        .road-mark-3 {
            animation-delay: -0.55s;
        }

        .road-mark-4 {
            animation-delay: -0.82s;
        }

        @keyframes scrollRoad {
            from {
                transform: translateX(-50%) translateY(-70px);
            }

            to {
                transform: translateX(-50%) translateY(430px);
            }
        }

        #widget-game.widget-showcase {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        #widget-game.widget-showcase.d-none {
            display: none !important;
        }

        .game-steer-controls {
            user-select: none;
            touch-action: manipulation;
        }

        .car-player {
            position: absolute;
            width: 36px;
            height: 65px;
            background: var(--gradient-mixed);
            border-radius: var(--radius-sm);
            bottom: 20px;
            left: 132px;
            box-shadow: 0 5px 15px rgba(0, 210, 255, 0.5);
            transition: left 0.12s ease;
            z-index: 4;
        }

        .car-player::before {
            content: '';
            position: absolute;
            width: 28px;
            height: 18px;
            background: #0f172a;
            top: 14px;
            left: 4px;
            border-radius: 3px;
        }

        .car-obstacle {
            position: absolute;
            width: 36px;
            height: 65px;
            background: linear-gradient(135deg, #ef4444, #f97316);
            border-radius: var(--radius-sm);
            top: -80px;
            left: 52px;
            box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
            z-index: 3;
        }

        .car-obstacle::before {
            content: '';
            position: absolute;
            width: 28px;
            height: 18px;
            background: #0f172a;
            top: 32px;
            left: 4px;
            border-radius: 3px;
        }

        .game-overlay-panel {
            position: absolute;
            inset: 0;
            background: rgba(10, 15, 28, 0.92);
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-white);
            z-index: 10;
        }

        .score-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            color: var(--text-white);
            font-family: var(--font-mono);
            font-weight: bold;
            z-index: 5;
            background: rgba(0, 0, 0, 0.6);
            padding: 3px 10px;
            border-radius: var(--radius-sm);
            font-size: 0.82rem;
        }

        /* Counter */
        .counter-widget {
            text-align: center;
            color: var(--text-white);
            padding: 30px;
        }

        .count-num {
            font-size: 6rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 25px;
            background: var(--gradient-mixed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: transform 0.1s ease;
        }

        .count-num.bump {
            transform: scale(1.18);
        }

        /* Todo */
        .todo-widget-panel {
            width: 100%;
            max-width: 380px;
        }

        .todo-item-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.07);
            padding: 11px 16px;
            border-radius: var(--radius-md);
            margin-bottom: 9px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: var(--transition-fluid);
            color: var(--text-white);
            font-size: 0.9rem;
        }

        .todo-item-card.completed {
            opacity: 0.45;
        }

        .todo-item-card.completed span {
            text-decoration: line-through;
            color: #6b7280;
        }

        /* CEO Section */
        .ceo-spotlight-section {
            background: rgba(11, 17, 35, 0.8);
            backdrop-filter: blur(16px);
            color: var(--text-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .ceo-quote {
            font-size: 1.2rem;
            font-style: italic;
            border-left: 3px solid var(--accent-pink);
            padding-left: 20px;
            margin-bottom: 28px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.88);
        }

        /* Contact / Glass Form */
        .glass-form-card {
            background: rgba(10, 16, 32, 0.8);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
        }

        .glass-input {
            background-color: rgba(255, 255, 255, 0.05) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            border-radius: var(--radius-md) !important;
            transition: var(--transition-fluid);
            color: var(--text-white) !important;
        }

        .glass-input:focus {
            background-color: rgba(255, 255, 255, 0.08) !important;
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 3px rgba(27, 117, 208, 0.15) !important;
            color: var(--text-white) !important;
        }

        /* Custom dropdown arrow for select elements */
        select.form-select.glass-input {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
            background-repeat: no-repeat !important;
            background-position: right 1rem center !important;
            background-size: 16px 12px !important;
            padding-right: 2.5rem !important;
            appearance: none !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
        }

        .form-floating>label {
            color: rgba(255, 255, 255, 0.5) !important;
        }

        .form-floating>label::after {
            background-color: transparent !important;
        }

        select.glass-input option {
            background-color: #0d1222;
            color: var(--text-white);
        }

        /* Pulse play ring */
        .pulse-play-ring {
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            border: 2px solid rgba(0, 210, 255, 0.35);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulseRing 2.5s ease-out infinite;
            z-index: 2;
        }

        @keyframes pulseRing {
            0% {
                transform: translate(-50%, -50%) scale(0.85);
                opacity: 0.8;
            }

            100% {
                transform: translate(-50%, -50%) scale(1.6);
                opacity: 0;
            }
        }

        /* Footer */
        .premium-footer {
            background: rgba(5, 8, 16, 0.95);
            color: #94a3b8;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            position: relative;
            z-index: 1;
        }

        .footer-link {
            color: #6b7280;
            text-decoration: none;
            transition: var(--transition-fluid);
        }

        .footer-link:hover {
            color: var(--accent-pink);
        }

        .footer-social-btn {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-circle);
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-white);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
            transition: var(--transition-fluid);
        }

        .footer-social-btn:hover {
            background: var(--gradient-mixed);
            color: var(--text-white);
            transform: translateY(-3px);
        }

        .footer-social-btn.whatsapp-footer-btn:hover {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4) !important;
            border-color: #25D366 !important;
        }

        /* Dark bg overrides */
        .text-white {
            color: var(--text-white) !important;
        }

        .text-secondary opacity-75 {
            color: #94a3b8 !important;
        }

        .bg-glass-dark {
            background-color: rgba(8, 14, 28, 0.7) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .border-top {
            border-color: rgba(255, 255, 255, 0.07) !important;
        }

        .border-end {
            border-color: rgba(255, 255, 255, 0.06) !important;
        }

        .bg-dark {
            background-color: rgba(6, 10, 20, 0.85) !important;
        }

        /* About section layout */
        #about .about-layout {
            --about-media-ratio: 4 / 3;
        }

        #about .about-media {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 280px;
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        #about .about-photo {
            display: block;
            width: 100%;
            height: 100%;
            aspect-ratio: var(--about-media-ratio);
            object-fit: cover;
            object-position: center;
        }

        #about .about-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (min-width: 992px) {
            #about .about-media-col {
                display: flex;
            }

            #about .about-media {
                flex: 1 1 auto;
                min-height: 100%;
            }

            #about .about-photo {
                aspect-ratio: auto;
                min-height: 100%;
            }

            #about .about-content-col {
                padding-left: clamp(0.5rem, 1.5vw, 1.25rem);
            }
        }

        @media (max-width: 991.98px) {
            #about .about-media-col {
                max-width: 560px;
                margin-left: auto;
                margin-right: auto;
            }

            #about .about-content {
                justify-content: flex-start;
            }
        }

        /* ==========================================
   SPHERE
   ========================================== */
        .sphere-wrapper {
            position: relative;
            display: block;
            width: min(100%, 550px);
            max-width: 550px;
            aspect-ratio: 1 / 1;
            margin: 0 auto;
            flex-shrink: 0;
        }

        #skills-sphere-canvas {
            position: relative;
            z-index: 2;
            display: block;
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            cursor: grab;
        }

        #skills-sphere-canvas:active {
            cursor: grabbing;
        }

        .sphere-glow {
            position: absolute;
            border-radius: 50%;
            width: 70%;
            height: 70%;
            background: radial-gradient(circle, rgba(0, 210, 255, 0.22) 0%, rgba(99, 102, 241, 0.18) 100%);
            filter: blur(60px);
            pointer-events: none;
            z-index: 1;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulseGlow 4s ease-in-out infinite alternate;
        }

        @keyframes pulseGlow {
            0% {
                opacity: 0.6;
                transform: translate(-50%, -50%) scale(1);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1.12);
            }
        }

        .game-steer-btn {
            touch-action: manipulation;
        }

        @media (prefers-reduced-motion: reduce) {
            .sphere-glow,
            .pulse-play-ring {
                animation: none !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        @media (min-width: 992px) {
            .sphere-wrapper {
                margin-right: 0;
                margin-left: auto;
            }

            .rounded-hero .hero-content-col {
                display: block;
                min-height: 0;
                padding-top: 0;
                padding-bottom: 0;
                order: unset;
            }

            .rounded-hero .hero-sphere-col {
                order: unset;
                padding-top: 0;
                padding-bottom: 0;
            }

            .rounded-hero .row {
                flex-direction: row;
            }
        }

        /* Map container */
        .ratio-21x9 {
            --bs-aspect-ratio: 42.857143%;
        }

        /* Rounded sections with custom padding and margins */
        .rounded-section {
            border-radius: 40px !important;
            margin: 0 15px !important;
            overflow: hidden;
        }

        /* Section scroll offset */
        section {
            scroll-margin-top: 90px;
            max-width: 100%;
        }

        /* ==========================================
   RESPONSIVE — TABLET & MOBILE (≤991px)
   Desktop layout unchanged above this breakpoint.
   ========================================== */
        @media (max-width: 991.98px) {
            * {
                -ms-overflow-style: none;
                scrollbar-width: none;
            }

            *::-webkit-scrollbar {
                display: none;
                width: 0;
                height: 0;
            }

            main h2,
            main h3,
            main .display-5,
            main .display-6 {
                text-wrap: balance;
            }

            .rounded-hero .hero-headline {
                align-items: center;
                text-wrap: normal;
            }

            .rounded-hero .hero-headline-brand {
                white-space: normal;
            }

            .rounded-hero {
                align-items: stretch;
                min-height: auto;
                padding-top: 0;
                padding-bottom: 0;
                width: 100%;
                max-width: 100%;
                margin-left: 0;
                margin-right: 0;
                overflow-x: clip;
            }

            .rounded-hero > .container {
                margin-left: auto;
                margin-right: auto;
                padding-left: max(1rem, env(safe-area-inset-left, 0px));
                padding-right: max(1rem, env(safe-area-inset-right, 0px));
            }

            .rounded-hero .row {
                margin-left: 0;
                margin-right: 0;
                justify-content: flex-start;
                flex-direction: column;
                align-items: stretch;
                --bs-gutter-y: 0;
            }

            .rounded-hero .hero-content-col {
                order: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-height: calc(100vh - var(--navbar-height));
                min-height: calc(100dvh - var(--navbar-height));
                padding-top: clamp(20px, 4vh, 40px);
                padding-bottom: clamp(20px, 4vh, 40px);
            }

            .rounded-hero .hero-sphere-col {
                order: 2;
                flex: 0 0 auto;
                margin-top: 0;
                padding-top: clamp(28px, 5vh, 48px);
                padding-bottom: clamp(28px, 5vh, 48px);
            }

            .rounded-hero .row > [class*="col-"] {
                padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
                padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
            }

            .rounded-hero .col-lg-7,
            .rounded-hero .hero-headline,
            .rounded-hero .hero-sub {
                text-align: center;
            }

            .rounded-hero .hero-headline {
                font-size: clamp(2.15rem, 8.5vw, 3rem);
                line-height: 1.12;
            }

            .rounded-hero .hero-headline-brand {
                letter-spacing: 0.04em;
            }

            .rounded-hero .hero-sub {
                font-size: clamp(1.05rem, 3.4vw, 1.2rem);
                margin-left: auto;
                margin-right: auto;
            }

            .rounded-hero .hero-stat-num {
                font-size: 2.05rem;
            }

            .rounded-hero .hero-stat-label {
                font-size: 0.82rem;
            }

            .rounded-hero .hero-cta-group,
            .rounded-hero .hero-stats {
                justify-content: center !important;
                width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-sphere-col {
                width: 100%;
                max-width: 100%;
                overflow: hidden;
                justify-content: center !important;
            }

            .sphere-wrapper {
                width: min(85vw, 420px);
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            #skills-sphere-canvas {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .section-padding {
                padding: 72px 0;
            }

            .display-5 {
                font-size: clamp(1.95rem, 5.5vw, 2.75rem);
            }

            .display-6 {
                font-size: clamp(1.65rem, 5vw, 2.25rem);
            }

            main p {
                font-size: clamp(0.95rem, 2.8vw, 1.05rem);
            }

            main .program-card h4,
            main .program-card h5,
            main .program-card h6 {
                font-size: clamp(1rem, 3vw, 1.1rem);
            }

            /* Mobile nav drawer */
            .navbar-glass .navbar-collapse {
                background: rgba(7, 17, 30, 0.98);
                margin-top: 0.75rem;
                padding: 0.85rem 1rem 1rem;
                border-radius: var(--radius-md);
                border: 1px solid rgba(255, 255, 255, 0.08);
                max-height: calc(100dvh - var(--navbar-height) - 2rem);
                overflow-y: auto;
            }

            .navbar-glass .navbar-nav {
                align-items: stretch;
                gap: 0.15rem !important;
                text-align: center;
            }

            .navbar-glass .nav-link {
                padding: 0.65rem 0.75rem !important;
                border-radius: var(--radius-sm);
                text-align: center;
            }

            .navbar-glass .navbar-collapse .d-flex {
                width: 100%;
                margin-top: 0.65rem;
                justify-content: center;
            }

            .navbar-glass .btn-whatsapp-brand {
                width: 100%;
                justify-content: center;
            }

            /* About */
            #about .about-media-col {
                margin-left: auto;
                margin-right: auto;
            }

            #about .about-content,
            #about .about-content p {
                text-align: justify;
            }

            #about .col-md-6.d-flex {
                flex-direction: column;
                align-items: center !important;
                text-align: center;
            }

            /* Course cards */
            #courses .program-card {
                text-align: center;
                align-items: center;
            }

            #courses .program-icon-box {
                margin-left: auto;
                margin-right: auto;
            }

            #courses .program-card .badge {
                margin-left: auto;
                margin-right: auto;
            }

            #courses .program-card > a.d-inline-flex {
                justify-content: center;
            }

            /* Sandbox: stack project list above preview */
            .sandbox-terminal .row > .col-lg-4 {
                border-right: none !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                text-align: center;
            }

            #projects .sandbox-nav-btn {
                justify-content: center;
                text-align: center;
            }

            #projects .col-lg-4 > .mt-4 {
                text-align: center;
            }

            .terminal-header {
                flex-wrap: wrap;
                gap: 0.35rem 0.75rem;
                justify-content: center;
                text-align: center;
            }

            .ceo-spotlight-section .row,
            .ceo-spotlight-section .col-lg-8 {
                text-align: center;
            }

            .ceo-spotlight-section .ceo-quote {
                border-left: none;
                border-top: 3px solid var(--accent-pink);
                padding-left: 0;
                padding-top: 1.25rem;
            }

            .ceo-spotlight-section .col-md-6 .d-flex {
                justify-content: center;
            }

            .ceo-spotlight-section .d-flex.flex-wrap {
                justify-content: center;
            }

            #testimonials .program-card {
                text-align: center;
            }

            #testimonials .program-card > .d-flex.align-items-center {
                justify-content: center;
            }

            .premium-footer .row > [class*="col-"] {
                text-align: center;
            }

            .premium-footer .d-flex {
                justify-content: center;
            }

            .premium-footer ul {
                align-items: center;
            }

            .premium-footer li.d-flex {
                justify-content: center;
            }

            .premium-footer .col-lg-4 > .d-flex {
                justify-content: center;
            }

            .hero-cta-group {
                align-items: center;
            }

            /* Contact */
            #contact .row {
                text-align: center;
            }

            #contact .col-lg-6 .d-flex.align-items-start {
                flex-direction: column;
                align-items: center !important;
                text-align: center;
            }

            #contact .glass-form-card .row {
                justify-content: center;
                text-align: center;
            }

            #contact .glass-form-card .col-sm-9 {
                text-align: center;
            }

            #contact .glass-form-card .d-flex.align-items-center {
                flex-direction: column;
                align-items: center !important;
                text-align: center;
            }

            #contact .glass-form-card .d-flex.justify-content-between {
                justify-content: center !important;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            #contact .btn-bulkit,
            #contact .btn-bulkit-outline {
                margin-left: auto;
                margin-right: auto;
            }

            .todo-widget-panel {
                text-align: center;
            }

            .todo-widget-panel .d-flex.gap-2 {
                justify-content: center;
            }
        }

        /* ==========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================== */
        @media (max-width: 768px) {
            :root {
                --navbar-height: 64px;
            }

            .navbar-glass {
                padding: 8px 0;
            }

            .navbar-logo {
                width: 32px;
                height: 32px;
            }

            .navbar-brand-text {
                font-size: 1.15rem;
            }

            .rounded-hero {
                border-bottom-left-radius: 28px;
                border-bottom-right-radius: 28px;
            }

            .rounded-hero .hero-content-col {
                padding-top: 20px;
                padding-bottom: 20px;
            }

            .rounded-hero .hero-sphere-col {
                padding-top: 24px;
                padding-bottom: 32px;
            }

            .hero-headline {
                font-size: clamp(2.25rem, 9vw, 3.1rem);
            }

            .hero-sub {
                font-size: clamp(1.08rem, 3.6vw, 1.22rem);
                max-width: 100%;
            }

            .hero-cta-group .btn-lg {
                width: 100%;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }

            .sphere-wrapper {
                width: min(92vw, 340px);
            }

            .hero-stats {
                width: 100%;
                max-width: 100%;
                justify-content: center;
                gap: 1rem !important;
            }

            .hero-stat-num {
                font-size: 1.45rem;
            }

            .hero-stat-label {
                font-size: 0.7rem;
            }

            .section-padding {
                padding: 56px 0;
            }

            .program-card {
                padding: 28px 20px;
            }

            h1.display-3 {
                font-size: 2rem !important;
            }

            .glass-form-card {
                padding: 20px 16px;
            }

            .rounded-section {
                margin: 0 6px !important;
                border-radius: 20px !important;
            }

            .showcase-canvas {
                min-height: 320px;
                padding: 16px 12px;
            }

            .car-game-wrapper {
                width: min(100%, 280px);
                height: 360px;
            }

            .clock-widget {
                width: min(220px, 75vw);
                height: min(220px, 75vw);
            }

            .sandbox-nav-btn {
                font-size: 0.82rem;
                padding: 8px 12px;
            }

            .ceo-spotlight-section {
                padding: 1.25rem !important;
            }

            .premium-footer {
                padding: 56px 0 24px;
            }

            .premium-footer .pt-4 {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            #whatsapp-float {
                right: max(12px, env(safe-area-inset-right, 12px));
                bottom: calc(max(16px, env(safe-area-inset-bottom, 16px)) + 66px);
            }

            #back-to-top {
                right: max(12px, env(safe-area-inset-right, 12px));
                bottom: max(16px, env(safe-area-inset-bottom, 16px));
            }

            #contact .rounded-3 {
                min-height: 200px;
            }

            #contact .rounded-3 iframe {
                min-height: 200px;
            }

            .ceo-quote {
                font-size: 0.95rem;
            }
        }

        /* ==========================================
   RESPONSIVE — SMALL PHONES (≤576px)
   ========================================== */
        @media (max-width: 576px) {
            .container {
                padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
                padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
            }

            .rounded-hero .hero-cta-group.flex-sm-row {
                flex-direction: column;
                align-items: center;
            }

            .sandbox-terminal {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-stat-divider {
                display: none;
            }

            .hero-stats > div {
                flex: 1 1 28%;
                min-width: 90px;
                text-align: center;
            }

            .terminal-header .small:last-child {
                display: none;
            }

            #features .stat-counter {
                font-size: 2.2rem !important;
            }

            .count-num {
                font-size: 4.5rem;
            }

            .modal-dialog {
                margin: 0.5rem;
            }
        }

        @media (min-width: 992px) {
            .text-lg-start .hero-headline {
                align-items: flex-start;
            }
        }

        /* Stats cards on dark bg */
        #features .program-card {
            background: rgba(255, 255, 255, 0.025);
            border-color: rgba(255, 255, 255, 0.06);
        }

        #features .program-card:hover {
            background: rgba(0, 210, 255, 0.035);
            border-color: rgba(0, 210, 255, 0.2);
        }

        /* CEO section in light area */
        #ceo {
            position: relative;
        }

        /* Bg-light override for contact section */
        #contact.bg-glass-dark {
            background: rgba(8, 13, 26, 0.65) !important;
        }

        #testimonials.bg-glass-dark {
            background: rgba(8, 13, 26, 0.6) !important;
        }

        section.bg-glass-dark {
            background: rgba(8, 13, 26, 0.6) !important;
        }

        /* Learning resources hover */
        .transition-hover {
            transition: var(--transition-fluid);
        }

        .transition-hover:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 210, 255, 0.3) !important;
            background: rgba(0, 210, 255, 0.04) !important;
        }

        /* Map glass container */
        #contact .rounded-4.border {
            background: rgba(10, 16, 30, 0.7) !important;
            border-color: rgba(255, 255, 255, 0.07) !important;
        }

        /* Form label color fix for dark forms */
        .glass-form-card .text-white {
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .glass-form-card h3 {
            color: rgba(255, 255, 255, 0.95) !important;
        }

        /* Testimonials */
        #testimonials .program-card {
            background: rgba(255, 255, 255, 0.025);
            border-color: rgba(255, 255, 255, 0.06);
        }

        /* ============================================================
        FLOATING WHATSAPP BUTTON
        ============================================================ */
        #whatsapp-float {
            position: fixed;
            bottom: 92px;
            right: 28px;
            z-index: 9999;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
        }

        #whatsapp-float:hover {
            background: #20ba5a;
            color: #fff;
            transform: translateY(-4px) scale(1.06);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
        }

        #whatsapp-float:active {
            transform: translateY(0) scale(0.96);
        }

        /* ============================================================
        BACK TO TOP BUTTON
        ============================================================ */
        #back-to-top {
            position: fixed;
            bottom: 32px;
            right: 28px;
            z-index: 9999;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1b75d0 0%, #00d2ff 100%);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.35);
            opacity: 0;
            transform: translateY(20px) scale(0.85);
            transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                        transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                        box-shadow 0.3s ease;
            pointer-events: none;
        }

        #back-to-top.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        #back-to-top:hover {
            box-shadow: 0 6px 16px rgba(0,0,0,0.45);
            transform: translateY(-4px) scale(1.06);
        }

        #back-to-top:active {
            transform: translateY(0) scale(0.96);
        }

        #back-to-top svg.btt-arrow {
            width: 20px;
            height: 20px;
            stroke: #ffffff;
            stroke-width: 2.5;
            fill: none;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.3s ease;
        }

        #back-to-top:hover svg.btt-arrow {
            transform: translateY(-2px);
        }

        /* Scroll progress ring */
        #back-to-top svg.btt-ring {
            position: absolute;
            inset: 0;
            width: 50px;
            height: 50px;
            transform: rotate(-90deg);
            pointer-events: none;
        }

        #btt-ring-track {
            fill: none;
            stroke: rgba(255,255,255,0.15);
            stroke-width: 3;
        }

        #btt-ring-progress {
            fill: none;
            stroke: rgba(255, 255, 255, 0.85);
            stroke-width: 3;
            stroke-linecap: round;
            transition: stroke-dashoffset 0.2s linear;
        }

        /* FAQ accordion */
        .faq-section {
            position: relative;
            z-index: 1;
        }

        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 16px;
            border-radius: 14px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.035);
            border-color: rgba(0, 210, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 210, 255, 0.04);
            transform: translateY(-2px);
        }

        .faq-item.active {
            background: rgba(255, 255, 255, 0.045);
            border-color: rgba(0, 210, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 210, 255, 0.06);
            transform: none;
        }

        .faq-question {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 32px;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.18rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            outline: none;
            transition: color 0.3s ease;
        }

        .faq-question:hover {
            color: var(--accent-pink);
        }

        .faq-icon {
            font-size: 1.3rem;
            color: var(--accent-pink);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(0, 210, 255, 0.08);
            flex-shrink: 0;
            margin-left: 15px;
        }

        .faq-item:hover .faq-icon {
            background: rgba(0, 210, 255, 0.16);
            color: #ffffff;
        }

        .faq-item.active .faq-icon {
            transform: rotate(135deg);
            background: var(--gradient-mixed);
            color: #ffffff;
        }

        .faq-answer {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.15);
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.35s ease;
            padding: 0 32px;
        }

        .faq-item.active .faq-answer {
            max-height: 520px;
            opacity: 1;
            padding: 24px 32px;
        }

        .faq-answer p {
            margin: 0;
            font-size: 0.98rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.72);
        }

        .faq-answer p strong,
        .faq-answer li strong {
            color: var(--accent-pink);
            font-weight: 600;
        }

        .faq-answer a {
            color: var(--accent-pink);
        }

        @media (max-width: 768px) {
            .faq-question {
                padding: 18px 22px;
                font-size: 1.05rem;
            }

            .faq-item.active .faq-answer {
                padding: 18px 22px;
            }

            .faq-answer p {
                font-size: 0.92rem;
            }

            .faq-icon {
                width: 30px;
                height: 30px;
                font-size: 1.1rem;
            }
        }