 
        :root {
            --bs-body-bg: #050505;
            --bs-body-color: #e4e2e1;
            --primary-teal: #57c1b6;
            --surface-color: #131313;
            --surface-variant: #1f2020;
            --border-color: #333333;
            --text-secondary: #BCC9C6;
            --font-display: 'Questrial', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bs-body-bg);
            color: var(--bs-body-color);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        .font-display {
            font-family: var(--font-display);
        }

        /* Glassmorphism */
        .glass-card {
            background: rgba(19, 19, 19, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-color);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            border-radius: 0.25rem;
        }

        .glass-card:hover {
            border-color: var(--primary-teal);
            box-shadow: 0 0 20px rgba(87, 193, 182, 0.1);
        }

        /* Utilities */
        .text-teal {
            color: var(--primary-teal);
        }

        .bg-teal {
            background-color: var(--primary-teal);
        }

        .text-secondary-custom {
            color: var(--text-secondary);
        }

        .btn-teal {
            background-color: var(--primary-teal);
            color: #003733;
            border-radius: 0.125rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 0.75rem 1.5rem;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-teal:hover {
            filter: brightness(1.1);
            color: #003733;
        }

        .btn-outline-custom {
            border: 1px solid var(--border-color);
            background: rgba(31, 32, 32, 0.5);
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.75rem 1.5rem;
            border-radius: 0.125rem;
        }

        .btn-outline-custom:hover {
            background: var(--surface-variant);
            color: white;
            border-color: var(--text-secondary);
        }

        /* Navbar */
        .navbar-custom {
            background: rgba(19, 19, 19, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }

        .nav-link {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-secondary) !important;
            position: relative;
            margin: 0 1rem;
        }

        .nav-link.active,
        .nav-link:hover {
            color: var(--primary-teal) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--primary-teal);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.4;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bs-body-bg), transparent);
        }

        .badge-custom {
            background: rgba(87, 193, 182, 0.1);
            border: 1px solid rgba(87, 193, 182, 0.2);
            color: var(--primary-teal);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 12px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
        }

        /* Workflow */
        .workflow-step {
            position: relative;
            z-index: 1;
        }

        .workflow-line {
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--border-color);
            z-index: 0;
        }

        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 4px solid var(--border-color);
            background: var(--bs-body-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            color: var(--text-secondary);
        }

        .step-number.active {
            border-color: var(--primary-teal);
            color: var(--primary-teal);
        }

        /* Forms */
        .form-control-custom {
            background: #201F1F;
            border: 1px solid var(--border-color);
            color: white;
            padding: 1rem;
            border-radius: 0.125rem;
        }

        .form-control-custom:focus {
            background: #201F1F;
            border-color: var(--primary-teal);
            box-shadow: none;
            color: white;
        }

        .label-caps {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            display: block;
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        .star-fill {
            font-variation-settings: 'FILL' 1;
        }
 