    /* Base styles */
    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    ::selection {
        background: rgba(251, 191, 36, 0.3);
        color: #f5f0f7;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #0f0a0f;
    }

    ::-webkit-scrollbar-thumb {
        background: #4a263f;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #fbbf24;
    }

    /* Navigation */
    #navbar {
        transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    }

    #navbar.scrolled {
        background: rgba(8, 5, 8, 0.9);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(251, 191, 36, 0.1);
    }

    /* Mobile menu animation */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-link {
        position: relative;
    }

    .mobile-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: #fbbf24;
        transition: width 0.3s ease;
    }

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

    /* Hero section */
    #hero {
        position: relative;
    }

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 30% 50%, rgba(138, 77, 120, 0.15) 0%, transparent 60%);
        pointer-events: none;
    }

    /* Section dividers */
    section > .absolute.top-0 {
        background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    }

    /* Card hover effects */
    .group:hover .group-hover\:scale-110 {
        transform: scale(1.1);
    }

    /* Glow effects */
    .glow-amber {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
    }

    /* Testimonial cards */
    .group:hover {
        transform: translateY(-4px);
        transition: transform 0.4s ease, border-color 0.4s ease;
    }

    /* Button focus states */
    button:focus-visible,
    a:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
        outline: 2px solid #fbbf24;
        outline-offset: 2px;
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }
    }

    /* Scroll reveal animations (progressive enhancement) */
    @media (prefers-reduced-motion: no-preference) {
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
        .font-display {
            line-height: 1.1;
        }
    }

    @media (min-width: 641px) and (max-width: 1023px) {
        .hide-tablet {
            display: none;
        }
    }
