:root {
            --brand: #0d6efd;
            --brand-dark: #0b5ed7;
            --accent-purple: #6f42c1;
            --text: #e0e0ff;
            --muted: #a0a0cc;
            --success: #4ade80;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #0a001f 0%, #1a0033 50%, #2e0066 100%);
            color: var(--text);
            min-height: 100vh;
            margin: 0;
            padding: 0;
        }

        .glass-card {
            background: rgba(30, 20, 60, 0.4);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(100, 80, 200, 0.2);
            border-radius: 1.5rem;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
            overflow: hidden;
            margin: 2rem 1rem;
        }

        .hero {
            background: linear-gradient(rgba(10, 0, 31, 0.85), rgba(46, 0, 102, 0.85)), url('images/herobg.jpeg') center/cover no-repeat;
            padding: 7rem 1.5rem 5rem;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 70%, rgba(13, 110, 253, 0.18), transparent 65%);
            pointer-events: none;
        }

        .hero img.logo {
            max-height: 90px;
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: white;
            text-shadow: 0 2px 12px rgba(0,0,0,0.7);
        }

        .hero p.lead {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #c3b1ff;
        }

        .section-padding {
            padding: 4rem 1.5rem 3rem;
        }

        .section-title {
            color: var(--brand);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.8rem;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-item {
            background: rgba(40, 30, 80, 0.45);
            border: 1px solid rgba(100, 80, 200, 0.3);
            border-radius: 1rem;
            padding: 1.8rem 1.5rem;
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(13, 110, 253, 0.3);
            border-color: var(--brand);
        }

        .feature-icon {
            color: var(--success);
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-content h6 {
            color: #a8d739;
            font-weight: 600;
            margin-bottom: 0.6rem;
            font-size: 1.35rem;
        }

        .feature-content p {
            color: var(--muted);
            margin: 0;
            font-size: 1.05rem;
            line-height: 1.55;
        }

        .form-section {
            padding: 2rem 1.8rem;
        }

        .form-section:not(:first-child) {
            border-top: 1px solid rgba(100, 80, 200, 0.18);
        }

        .form-control, .form-select {
            background-color: rgba(40, 30, 80, 0.65);
            border: 1px solid rgba(100, 80, 200, 0.45);
            color: white;
            border-radius: 0.85rem;
            padding: 1.1rem 1.2rem;
            transition: all 0.25s ease;
        }

        .form-control:focus, .form-select:focus {
            background-color: rgba(50, 40, 90, 0.85);
            border-color: var(--brand);
            box-shadow: 0 0 0 0.3rem rgba(13, 110, 253, 0.3);
        }

        .btn-brand {
            background: linear-gradient(90deg, var(--brand) 0%, var(--accent-purple) 100%);
            border: none;
            font-weight: 700;
            padding: 1.1rem 2rem;
            border-radius: 0.85rem;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .btn-brand:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(13, 110, 253, 0.45);
        }

        .trust-note {
            font-size: 0.95rem;
            color: #a8d739;
            margin-top: 1.2rem;
            text-align: center;
        }

        @media (max-width: 991px) {
            .form-split-row .col-md-6 { margin-bottom: 1.5rem; }
        }

        @media (max-width: 767px) {
            .hero { padding: 5rem 1rem 4rem; }
            .hero h1 { font-size: 2.2rem; }
            .section-title { font-size: 1.8rem; }
            .feature-item { padding: 1.6rem 1.2rem; }
        }
        
        /* Modal-specific overrides to match theme */
        .modal-content {
            border-radius: 1.5rem;
            overflow: hidden;
        }
        
        .btn-outline-brand {
            color: var(--brand);
            border-color: var(--brand);
        }
        
        .btn-outline-brand:hover,
        .btn-outline-brand.active,
        .btn-check:checked + .btn-outline-brand {
            background: linear-gradient(90deg, var(--brand) 0%, var(--accent-purple) 100%);
            color: white;
            border-color: transparent;
        }
        
        .btn-close-white {
            filter: invert(1) brightness(100);
        }