* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0a0f1c 0%, #141b2b 100%);
            color: #e2e8f0;
            line-height: 1.5;
            min-height: 100vh;
            color-scheme: dark;
        }

        /* Top Bar */
        .top-bar {
            background: rgba(15, 20, 34, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(30, 38, 56, 0.8);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .top-bar-inner {
            max-width: 1800px;
            margin: 0 auto;
            padding: 0.75rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .brand-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .brand-icon:hover {
            transform: scale(1.05);
        }

        .brand-logo-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
        }

        .brand-title {
            font-weight: 700;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #fff, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #fff;
            letter-spacing: -0.02em;
            line-height: 1.2;
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .brand-subtitle {
            font-size: 0.8rem;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .brand-subtitle i {
            font-size: 0.7rem;
            color: #3b82f6;
        }

        /* Language Switcher */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(26, 35, 50, 0.6);
            border: 1px solid rgba(45, 55, 72, 0.8);
            border-radius: 100px;
            padding: 0.25rem;
        }

        .lang-btn {
            padding: 0.5rem 1rem;
            border: none;
            background: transparent;
            color: #94a3b8;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
        }

        .lang-btn.active {
            background: #3b82f6;
            color: white;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
        }

        .lang-btn:hover:not(.active) {
            background: rgba(59, 130, 246, 0.1);
            color: #cbd5e1;
        }

        .top-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.4rem;
            border-radius: 100px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .nav-link-primary {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .nav-link-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
        }

        .nav-link-ghost {
            background: rgba(255, 255, 255, 0.03);
            color: #cbd5e1;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-link-ghost:hover {
            background: rgba(255, 255, 255, 0.08);
            color: white;
            transform: translateY(-1px);
        }

        .nav-link i {
            font-size: 0.9rem;
        }

        /* Main Content */
        .page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Hero Section */
        .hero-home {
            position: relative;
            min-height: calc(100vh - 200px);
            display: flex;
            align-items: center;
        }

        .hero-layer {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: -1;
        }

        .hero-layer-primary {
            background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 40%);
        }

        .hero-layer-secondary {
            background: radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        /* Project Card */
        .project-card {
            background: rgba(15, 20, 34, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(30, 38, 56, 0.8);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-header {
            padding: 2rem;
            border-bottom: 1px solid rgba(30, 38, 56, 0.8);
        }

        .project-pill {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .project-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .project-location {
            color: #94a3b8;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .project-location i {
            color: #3b82f6;
        }

        .project-image-wrapper {
            position: relative;
            background: #0a0f1c;
            min-height: 400px;
        }

        .project-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }

        .project-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s ease;
        }

        .project-slide.is-active {
            opacity: 1;
            visibility: visible;
        }

        .project-image-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: blur(20px) brightness(0.5);
            transform: scale(1.1);
        }

        .project-image {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            transition: transform 0.3s ease;
            z-index: 1;
        }

        .project-image:hover {
            transform: scale(1.02);
        }

        .project-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(15, 20, 34, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .project-nav:hover {
            background: #2563eb;
            transform: translateY(-50%) scale(1.1);
        }

        .project-nav-prev {
            left: 1rem;
        }

        .project-nav-next {
            right: 1rem;
        }

        /* Info Cards */
        .info-card {
            background: rgba(15, 20, 34, 0.6);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(30, 38, 56, 0.8);
            border-radius: 32px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .info-title {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

        .info-body {
            color: #cbd5e1;
            font-size: 1rem;
            line-height: 1.7;
        }

        .portal-summary-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            margin: 1.5rem 0 1rem;
        }

        /* Checklist */
        .checklist-list {
            list-style: none;
            counter-reset: checklist;
        }

        .checklist-list > li {
            counter-increment: checklist;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            color: #cbd5e1;
        }

        .checklist-list > li::before {
            content: counter(checklist);
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
            color: white;
        }

        .checklist-sublist {
            list-style: none;
            margin-top: 0.5rem;
            margin-left: 1rem;
        }

        .checklist-sublist li {
            margin-bottom: 0.25rem;
            padding-left: 1.5rem;
            position: relative;
            color: #94a3b8;
        }

        .checklist-sublist li::before {
            content: "•";
            position: absolute;
            left: 0.5rem;
            color: #3b82f6;
        }

        /* Download Link */
        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(37, 99, 235, 0.1);
            border: 1px solid rgba(37, 99, 235, 0.3);
            border-radius: 100px;
            color: #60a5fa;
            text-decoration: none;
            font-size: 0.9rem;
            margin-top: 0.25rem;
            transition: all 0.2s;
        }

        .download-link:hover {
            background: rgba(37, 99, 235, 0.2);
            transform: translateY(-2px);
        }

        .download-link i {
            font-size: 0.9rem;
        }

        /* Checklist Card */
        .checklist-card {
            background: rgba(15, 20, 34, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(30, 38, 56, 0.8);
            border-radius: 32px;
            padding: 2rem;
            transition: all 0.3s ease;
            max-height: 2000px;
            opacity: 1;
            overflow: hidden;
        }

        .checklist-card.is-collapsed {
            max-height: 0;
            padding-top: 0;
            padding-bottom: 0;
            opacity: 0;
            margin: 0;
            border-width: 0;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .card-title i {
            color: #3b82f6;
        }

        /* Checkbox */
        .checkbox-group {
            margin: 1rem 0;
        }

        .checkbox-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
        }

        .checkbox-option input[type="checkbox"] {
            width: 1.2rem;
            height: 1.2rem;
            accent-color: #3b82f6;
            cursor: pointer;
        }

        .checkbox-option span {
            color: #cbd5e1;
            font-size: 0.95rem;
        }

        /* CTA Section */
        .apply-cta {
            margin-top: 3rem;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(139, 92, 246, 0.2));
            border: 1px solid rgba(37, 99, 235, 0.3);
            border-radius: 32px;
            padding: 3rem;
            backdrop-filter: blur(12px);
        }

        .apply-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .apply-cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }

        .apply-cta-body {
            color: #94a3b8;
            font-size: 1rem;
        }

        .apply-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            border-radius: 100px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
            transition: all 0.2s;
        }

        .apply-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
        }

        .apply-cta-button i {
            font-size: 1rem;
        }

        /* Modal */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(12px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .modal-backdrop.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .portal-modal {
            background: #0f1422;
            border: 1px solid #1e2638;
            border-radius: 32px;
            padding: 2.5rem;
            width: 90%;
            max-width: 400px;
            position: relative;
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .modal-backdrop.is-open .portal-modal {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #94a3b8;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: #1e2638;
            color: white;
        }

        .portal-logo {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .portal-logo-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
        }

        .portal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-align: center;
            margin-bottom: 0.25rem;
        }

        .portal-subtitle {
            color: #94a3b8;
            text-align: center;
            margin-bottom: 2rem;
        }

        .portal-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .portal-field {
            position: relative;
        }

        .portal-input {
            width: 100%;
            padding: 1rem 1.2rem;
            background: #1a2332;
            border: 1px solid #2d3748;
            border-radius: 16px;
            color: white;
            font-size: 0.95rem;
            transition: all 0.2s;
        }

        .portal-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
        }

        .portal-input::placeholder {
            color: #4b5563;
        }

        .portal-submit {
            padding: 1rem;
            background: linear-gradient(135deg, #2563eb, #1e40af);
            border: none;
            border-radius: 16px;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .portal-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
        }

        .portal-divider {
            text-align: center;
            position: relative;
            margin: 1rem 0;
        }

        .portal-divider::before,
        .portal-divider::after {
            content: "";
            position: absolute;
            top: 50%;
            width: calc(50% - 3rem);
            height: 1px;
            background: #2d3748;
        }

        .portal-divider::before {
            left: 0;
        }

        .portal-divider::after {
            right: 0;
        }

        .portal-divider span {
            background: #0f1422;
            padding: 0 1rem;
            color: #6b7280;
            font-size: 0.9rem;
        }

        .portal-google {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
            background: #1a2332;
            border: 1px solid #2d3748;
            border-radius: 16px;
            color: white;
            text-decoration: none;
            transition: all 0.2s;
        }

        .portal-google:hover {
            background: #2d3748;
            transform: translateY(-2px);
        }

        .portal-google-icon {
            width: 24px;
            height: 24px;
            background: white;
            color: #1a2332;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        /* Image Modal */
        .image-modal {
            position: relative;
            width: 90%;
            max-width: 1200px;
            max-height: 90vh;
        }

        .image-modal-img {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            border-radius: 32px;
        }

        .image-modal-caption {
            text-align: center;
            color: white;
            margin-top: 1rem;
            font-size: 1rem;
        }

        .image-modal-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(15, 20, 34, 0.8);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 1010;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .image-modal-nav:hover {
            background: #2563eb;
        }

        .image-modal-prev {
            left: 1rem;
        }

        .image-modal-next {
            right: 1rem;
        }

        /* Footer */
        .site-footer {
            background: rgba(10, 15, 28, 0.95);
            backdrop-filter: blur(12px);
            border-top: 1px solid #1e2638;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }

        .site-footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-column-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 0.75rem;
        }

        .footer-underline {
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #2563eb, #8b5cf6);
            margin-bottom: 1rem;
        }

        .footer-text {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-links {
            list-style: none;
        }

        .footer-link {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-block;
            padding: 0.25rem 0;
            transition: all 0.2s;
        }

        .footer-link:hover {
            color: white;
            transform: translateX(5px);
        }

        .site-footer-note {
            max-width: 1400px;
            margin: 2rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid #1e2638;
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 1.5rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .project-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .apply-cta {
                padding: 2rem;
                border-radius: 24px;
            }
            
            .apply-cta-inner {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }
            
            .apply-cta-button {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .top-bar-inner {
                padding: 0.75rem 1rem;
            }
            
            .brand-subtitle {
                display: none;
            }
            
            .brand-title {
                font-size: 1.1rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .site-footer-inner {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 2rem 1rem;
            }
            
            .portal-modal {
                width: 95%;
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.75rem;
            }
            
            .brand-icon {
                width: 36px;
                height: 36px;
            }
            
            .nav-link-ghost span {
                display: none;
            }
            
            .nav-link-ghost {
                width: 40px;
                height: 40px;
                padding: 0;
                justify-content: center;
            }
            
            .apply-cta-title {
                font-size: 1.5rem;
            }
        }

        /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Civil Status Requirements Modal Styles */
    .civil-requirements-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .civil-req-item {
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.02);
    }

    .civil-req-trigger {
        width: 100%;
        background: transparent;
        border: none;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        color: #e2e8f0;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: left;
        font-family: inherit;
        font-weight: 500;
        font-size: 0.95rem;
    }

    .civil-req-item:hover {
        background: rgba(59, 130, 246, 0.05);
        border-color: rgba(59, 130, 246, 0.2);
        transform: translateY(-2px);
    }

    .civil-req-trigger i.fa-check-circle {
        color: #3b82f6;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .civil-req-trigger .chevron {
        margin-left: auto;
        font-size: 0.85rem;
        color: #94a3b8;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .civil-req-item.active {
        background: rgba(59, 130, 246, 0.08);
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
        transform: translateY(0);
    }

    .civil-req-item.active .civil-req-trigger {
        color: #fff;
    }

    .civil-req-item.active i.fa-check-circle {
        color: #60a5fa;
        transform: scale(1.1);
    }

    .civil-req-item.active .chevron {
        transform: rotate(180deg);
        color: #3b82f6;
    }

    .civil-req-details {
        display: none;
        padding: 0 1.25rem 1.5rem 3.5rem;
        animation: slideDown 0.3s ease-out;
    }

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

    .civil-req-details ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .civil-req-details li {
        color: #94a3b8;
        font-size: 0.9rem;
        line-height: 1.5;
        position: relative;
    }

    .civil-req-details li::before {
        content: "";
        position: absolute;
        left: -1.25rem;
        top: 0.6rem;
        width: 6px;
        height: 6px;
        background: #3b82f6;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
    }
    
    /* Light mode overrides */
    .light .civil-req-item {
        background: #f8fafc;
        border-color: #e2e8f0;
    }
    .light .civil-req-item:hover {
        background: #f1f5f9;
        border-color: #cbd5e1;
    }
    .light .civil-req-trigger {
        color: #1e293b;
    }
    .light .civil-req-item.active {
        background: #eff6ff;
        border-color: #bfdbfe;
    }
    .light .civil-req-details li {
        color: #64748b;
    }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content > * {
            animation: fadeInUp 0.6s ease forwards;
        }

        .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
        .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
    