        /* ===== HERO ===== */
        .page-hero {
            padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 40px);
            padding-bottom: 20px;
            text-align: center;
            background: radial-gradient(circle at center, rgba(204, 255, 0, 0.1) 0%, transparent 60%);
        }

        .page-title {
            font-size: clamp(20px, 4vw, 42px);
            font-weight: 700 !important;
            margin-bottom: 16px;
            color: var(--white);
        }

        .highlight {
            color: var(--lime-green);
        }

        .page-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
        }

        /* Content Sections */
        .section {
            padding: 60px 40px 40px;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .content-title {
            font-size: 32px;
            color: var(--lime-light);
            margin-bottom: 24px;
            font-family: var(--font-display);
        }

        /* Steps Styling */
        .step-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px 40px 40px;
            border-radius: 20px;
            margin-top: 30px;
            margin-bottom: 40px;
        }

        .step-number {
            display: inline-block;
            background: var(--lime-green);
            color: var(--black);
            font-weight: 700 !important;
            font-size: 14px !important;
            padding: 8px 16px;
            border-radius: 50px;
            font-family: var(--font-display);
            width: auto !important;
            height: auto !important;
            border: none !important;
            margin: 0 0 14px 0 !important;
        }

        .step-content h3 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 24px;
        }

        .step-content p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .kyc-note {
            background: rgba(204, 255, 0, 0.05);
            border-left: 3px solid var(--lime-green);
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 24px;
        }

        /* ===== CTA BUTTON (self-contained — does not extend .btn base class) ===== */
        .btn-primary {
            display: inline-block;
            background: var(--lime-green);
            color: var(--black);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700 !important;
            margin-top: 20px;
        }

        .btn-primary:hover {
            background: var(--bright-green);
            transform: translateY(-2px);
            color: var(--black);
        }

        /* ===== VIDEO MODAL ===== */
        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            opacity: 0;
            transition: opacity 0.4s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .video-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .video-container {
            position: relative;
            width: 90%;
            max-width: 1200px;
            max-height: 85vh;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(30, 30, 30, 0.95));
            border-radius: 20px;
            padding: 8px;
            box-shadow:
                0 25px 80px rgba(0, 255, 136, 0.3),
                0 0 0 1px rgba(199, 241, 96, 0.3),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .video-modal.active .video-container {
            transform: scale(1);
            opacity: 1;
        }

        .video-modal.closing .video-container {
            transform: scale(0.8);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.6, 0.04, 0.98, 0.34);
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
        }

        @supports (aspect-ratio: 16 / 9) {
            .video-wrapper {
                aspect-ratio: 16 / 9;
            }
        }

        @media (max-height: 900px) and (min-width: 769px) {
            .video-wrapper {
                padding-bottom: 0;
                height: calc(85vh - 100px);
            }

            @supports (aspect-ratio: 16 / 9) {
                .video-wrapper {
                    aspect-ratio: 16 / 9;
                    height: auto;
                    max-height: calc(85vh - 100px);
                }
            }
        }

        .video-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(199, 241, 96, 0.1) 0%, transparent 50%, rgba(0, 255, 136, 0.1) 100%);
            pointer-events: none;
            z-index: 1;
            opacity: 0.3;
        }

        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
            object-fit: contain;
        }

        .video-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: rgba(199, 241, 96, 0.1);
            border: 2px solid var(--lime-green);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            font-weight: 700 !important;
            transition: all 0.3s ease;
            z-index: 10001;
        }

        .video-close:hover {
            background: var(--lime-green);
            color: var(--black);
            transform: rotate(90deg) scale(1.1);
            box-shadow: 0 5px 20px rgba(199, 241, 96, 0.4);
        }

        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 60px;
            border-radius: 16px;
            border: 2px solid var(--lime-green);
            box-shadow: 0 10px 40px rgba(199, 241, 96, 0.3);
        }

        .video-loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(199, 241, 96, 0.2);
            border-top-color: var(--lime-green);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .video-loading-text {
            color: var(--white);
            font-size: 18px;
            font-weight: 700 !important;
            text-align: center;
            letter-spacing: 0.5px;
        }

        .video-loading.hidden {
            display: none;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Floating Video Button */
        .floating-video-btn {
            position: fixed;
            bottom: 30px;
            left: 30px;
            /* Moved to left */
            z-index: 9990;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid var(--lime-green);
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 10px 30px rgba(204, 255, 0, 0.2);
            text-decoration: none;
        }

        .floating-video-btn:hover {
            transform: translateY(-5px) scale(1.05);
            background: var(--lime-green);
            box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
        }

        .floating-video-btn span {
            font-weight: 700 !important;
            color: var(--lime-green);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        .floating-video-btn:hover span {
            color: black;
        }

        .floating-video-btn .play-icon {
            width: 32px;
            height: 32px;
            background: var(--lime-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 12px;
            transition: all 0.3s;
        }

        .floating-video-btn:hover .play-icon {
            background: black;
            color: var(--lime-green);
            transform: rotate(360deg);
        }

        .footer-section h3 {
            color: var(--lime-green) !important;
        }

        /* Tablet fix — prevent step-card margin collapse */
        @media (max-width: 1023px) {
            .step-card {
                margin-top: 30px !important;
            }
        }

        /* ===== MOBILE OVERRIDES ===== */
        @media (max-width: 768px) {
            .page-hero {
                padding-top: calc(var(--navbar-height) + var(--disclaimer-height) + 40px) !important;
                padding-bottom: 20px !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            .section {
                padding: 30px 20px !important;
            }
            .step-card {
                padding: 20px !important;
                margin-top: 20px !important;
                margin-bottom: 20px !important;
            }
            .step-number {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                display: inline-block;
                background: var(--lime-green);
                color: var(--black);
                font-weight: 700;
                font-size: 14px;
                padding: 6px 20px;
                border-radius: 50px;
                font-family: var(--font-display);
                white-space: nowrap;
                width: auto !important;
                height: auto !important;
                border: none !important;
                margin: 0 0 14px 0 !important;
            }
            .step-content h3 {
                font-size: 20px !important;
            }
            .btn-primary {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                padding: 14px 20px !important;
                box-sizing: border-box !important;
            }
            .footer {
                margin-top: 20px !important;
                padding-top: 30px !important;
                padding-left: 20px !important;
                padding-right: 20px !important;
            }
            .video-container {
                width: 95%;
                padding: 6px;
            }
            .video-close {
                top: -45px;
                width: 36px;
                height: 36px;
            }
            .floating-video-btn {
                bottom: 20px;
                left: 20px;
                padding: 10px 20px;
            }
            .floating-video-btn span { font-size: 12px; }
            .floating-video-btn .play-icon {
                width: 28px;
                height: 28px;
            }
        }
