    /* Custom styles beyond Tailwind */
    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Hero text animation */
    .hero-headline {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .hero-headline-delay-1 {
        animation-delay: 0.2s;
    }

    .hero-headline-delay-2 {
        animation-delay: 0.4s;
    }

    .hero-headline-delay-3 {
        animation-delay: 0.6s;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Scroll reveal animations */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.active {
        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; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }

    /* Navbar scroll state */
    .navbar-scrolled {
        background: rgba(4, 14, 30, 0.95) !important;
        backdrop-filter: blur(20px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

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

    ::-webkit-scrollbar-track {
        background: #081835;
    }

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

    ::-webkit-scrollbar-thumb:hover {
        background: #3fd191;
    }

    /* Selection color */
    ::selection {
        background: #1bb874;
        color: white;
    }

    /* Mobile menu transition */
    #mobileMenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
    }

    #mobileMenu.open {
        max-height: 500px;
    }

    /* Service card hover glow */
    .service-card:hover::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        box-shadow: 0 0 0 1px rgba(27, 184, 116, 0.3);
        pointer-events: none;
    }

    /* Input autofill styling */
    input:-webkit-autofill,
    textarea:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 30px white inset !important;
    }

    /* Smooth image loading */
    img {
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    img.loaded {
        opacity: 1;
    }

    /* Testimonial quote styling */
    .testimonial-blockquote {
        position: relative;
    }

    /* Process step connector line for mobile */
    @media (max-width: 1023px) {
        .step-connector {
            display: none;
        }
    }

    /* 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;
        }
    }
