
        /* --- VARIABLES Y RESET CSS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        :root {
            --deep-space: #0a0a0f;
            --cosmic-purple: #1a0b2e;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --void: #000000;
            --stardust: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
            --card-height: 380px;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            position: relative;
            line-height: 1.6;
        }

        /* --- ESTRUCTURA PRINCIPAL Y FONDO --- */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
            width: 100%;
        }

        /* --- HERO SECTION (HEADER) --- */
        .hero-section {
            padding: 6rem 2rem 3rem;
            text-align: center;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .hero-section .badge {
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid var(--matrix-green);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--matrix-green);
            width: fit-content;
            margin: 0 auto 2rem auto;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
            max-width: 90%;
        }

        .hero-section .main-title {
            font-family: 'Poiret One', sans-serif; 
            font-size: 3.8rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .hero-section .description-text {
            font-size: 1.3rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            width: 100%;
            padding: 0 1rem;
        }

        /* --- INDICADOR DE PROGRESO MEJORADO --- */
        .progress-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin: 2rem 0 3rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
            flex-wrap: wrap;
        }

        .progress-step {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            flex: 1;
            justify-content: center;
            max-width: 200px;
            min-width: 0;
        }

        .progress-step.active {
            color: var(--neon-blue);
        }

        .progress-step .step-number {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .progress-step.active .step-number {
            background: var(--neon-blue);
            color: var(--deep-space);
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        .progress-connector {
            flex: 1;
            max-width: 60px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            position: relative;
        }

        .progress-connector::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid rgba(255, 255, 255, 0.2);
            border-top: 4px solid transparent;
            border-bottom: 4px solid transparent;
        }

        /* --- BADGE DE ASESORÍA MEJORADO --- */
        .consultation-badge {
            background: linear-gradient(135deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.7rem;
            margin: 1rem auto;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(0, 255, 157, 0.4);
            white-space: nowrap;
            max-width: 300px;
            justify-content: center;
            width: auto;
        }

        .consultation-badge-mobile {
            display: none;
            background: linear-gradient(135deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 0.7rem 1rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.6rem;
            margin: 1rem auto;
            align-items: center;
            gap: 0.4rem;
            box-shadow: 0 4px 15px rgba(0, 255, 157, 0.4);
            white-space: nowrap;
            justify-content: center;
            width: 90%;
            max-width: 280px;
        }

        /* --- SECCIÓN PRINCIPAL CON FORMULARIO Y SERVICIOS --- */
        .main-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            margin: 3rem 0 5rem;
            align-items: start;
            width: 100%;
        }

        /* --- FORMULARIO MEJORADO --- */
        .form-section {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 3rem;
            backdrop-filter: blur(15px);
            box-shadow: 0 0 40px rgba(0, 243, 255, 0.15);
            position: sticky;
            top: 2rem;
            width: 100%;
        }

        .form-header {
            text-align: center;
            margin-bottom: 2.5rem;
            width: 100%;
        }

        .form-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 0.8rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .form-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            line-height: 1.6;
            width: 100%;
        }

        .form-instructions {
            background: rgba(0, 243, 255, 0.05);
            border: 1px solid rgba(0, 243, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            width: 100%;
        }

        .instructions-title {
            color: var(--neon-blue);
            font-weight: 600;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .instructions-list {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
            padding-left: 1.2rem;
        }

        .instructions-list li {
            margin-bottom: 0.5rem;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            width: 100%;
        }

        .form-group {
            margin-bottom: 1.5rem;
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            display: block;
            margin-bottom: 0.7rem;
            color: var(--neon-blue);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            width: 100%;
        }

        .required::after {
            content: " *";
            color: var(--matrix-green);
        }

        .form-input, .form-textarea, .form-select, .form-date {
            width: 100%;
            padding: 1.1rem 1.2rem;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 10px;
            color: var(--stardust);
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 400;
            box-sizing: border-box;
        }

        .form-date {
            color-scheme: dark;
        }

        .form-input:focus, .form-textarea:focus, .form-select:focus, .form-date:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .form-textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.5;
        }

        .form-select {
            color: #000000 !important;
            background-color: rgba(255, 255, 255, 0.95) !important;
            cursor: pointer;
        }

        .form-select option {
            color: #000000;
            background-color: #ffffff;
            padding: 12px;
            font-size: 0.95rem;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            color: white;
            border: none;
            padding: 1.3rem 2rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 1rem;
            box-shadow: 0 6px 25px rgba(0, 243, 255, 0.4);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.6);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn:disabled {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.5);
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .submit-btn:disabled::before {
            display: none;
        }

        /* --- SERVICIOS MEJORADOS --- */
        .services-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            height: fit-content;
            width: 100%;
        }

        .service-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 2.5rem 2rem;
            backdrop-filter: blur(15px);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            min-height: var(--card-height);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.03), rgba(185, 103, 255, 0.03));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            border-color: var(--neon-blue);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.25);
        }

        .service-icon-container {
            margin-bottom: 1.8rem;
            text-align: left;
            z-index: 2;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.07);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
        }

        .service-card:hover .service-icon::after {
            opacity: 1;
        }

        .service-content {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            z-index: 2;
            width: 100%;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--stardust);
            line-height: 1.3;
            letter-spacing: 0.5px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 2rem;
            flex-grow: 1;
            font-weight: 400;
            width: 100%;
        }

        .service-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            padding: 1rem 1.8rem;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            font-size: 0.95rem;
            width: 100%;
            margin-top: auto;
            position: relative;
            overflow: hidden;
            min-height: 50px;
            box-sizing: border-box;
        }

        .service-button.type-1 {
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            box-shadow: 0 4px 15px rgba(0, 255, 157, 0.4);
        }

        .service-button.type-2 {
            background: linear-gradient(45deg, var(--neon-purple), #9a4dff);
            color: white;
            box-shadow: 0 4px 15px rgba(185, 103, 255, 0.4);
        }

        .service-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 255, 157, 0.6);
        }

        /* --- GARANTÍAS MEJORADAS --- */
        .guarantees-section {
            margin: 6rem 0 4rem;
            text-align: center;
            width: 100%;
        }

        .section-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 3rem;
            margin-bottom: 1.2rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 4rem;
            font-size: 1.2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            font-weight: 400;
            width: 100%;
            padding: 0 1rem;
        }

        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            width: 100%;
        }

        .guarantee-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .guarantee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.03), rgba(185, 103, 255, 0.03));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .guarantee-card:hover::before {
            opacity: 1;
        }

        .guarantee-card:hover {
            border-color: var(--neon-blue);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.2);
        }

        .guarantee-icon {
            font-size: 3.5rem;
            color: var(--neon-blue);
            margin-bottom: 2rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .guarantee-card:hover .guarantee-icon {
            transform: scale(1.15);
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
        }

        .guarantee-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--stardust);
            position: relative;
            z-index: 2;
            letter-spacing: 0.5px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .guarantee-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 1rem;
            position: relative;
            z-index: 2;
            width: 100%;
        }
        /* Reseñas Google → assets/css/components/google-reviews.css */
        /* --- SECCIÓN DE CONTACTO ALTERNATIVO MEJORADA --- */
        .alternative-contact {
            margin: 5rem 0;
            text-align: center;
            width: 100%;
        }

        .contact-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3.5rem;
            width: 100%;
        }

        .contact-option {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 18px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.4s ease;
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .contact-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 243, 255, 0.03), rgba(185, 103, 255, 0.03));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-option:hover::before {
            opacity: 1;
        }

        .contact-option:hover {
            border-color: var(--neon-blue);
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 243, 255, 0.2);
        }

        .contact-icon {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .contact-option:nth-child(1) .contact-icon {
            color: var(--matrix-green);
        }

        .contact-option:nth-child(2) .contact-icon {
            color: var(--neon-blue);
        }

        .contact-option:nth-child(3) .contact-icon {
            color: var(--neon-purple);
        }

        .contact-option:hover .contact-icon {
            transform: scale(1.15);
        }

        .contact-option-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--stardust);
            position: relative;
            z-index: 2;
            letter-spacing: 0.5px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .contact-option-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 1rem;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.7rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--stardust);
            padding: 1rem 1.8rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            font-size: 0.95rem;
            box-sizing: border-box;
            max-width: 100%;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .contact-link:hover {
            background: var(--neon-blue);
            color: var(--deep-space);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 243, 255, 0.4);
        }

        /* --- RESPONSIVE MEJORADO --- */
        @media (max-width: 1200px) {
            .container {
                max-width: 1100px;
            }
            
            .main-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .form-section {
                position: static;
            }
            
            .services-section {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 968px) {
            .hero-section {
                padding: 5rem 1.5rem 2rem;
            }
            
            .hero-section .main-title {
                font-size: 3rem;
            }
            
            .services-section {
                grid-template-columns: 1fr;
            }
            
            .form-section {
                padding: 2.5rem;
            }
            
            .guarantees-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-options {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                min-height: auto;
            }

            .progress-indicator {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem 1rem;
            }

            .progress-step {
                max-width: 100%;
                width: 100%;
                justify-content: flex-start;
            }

            .progress-connector {
                display: none;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .consultation-badge {
                display: none;
            }

            .consultation-badge-mobile {
                display: flex;
            }

            .contact-form {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-section .main-title {
                font-size: 2.5rem;
            }
            
            .contact-form {
                grid-template-columns: 1fr;
            }
            
            .form-section {
                padding: 2rem;
            }
            
            .guarantees-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .form-title {
                font-size: 2.2rem;
            }
            .progress-step {
                font-size: 0.85rem;
            }

            .progress-step .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.85rem;
            }

            .container {
                padding: 0 1rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 4rem 1rem 1.5rem;
            }
            
            .hero-section .main-title {
                font-size: 2.2rem;
            }
            
            .hero-section .description-text {
                font-size: 1.1rem;
            }
            
            .container {
                padding: 0 1rem 2rem;
            }
            
            .form-section {
                padding: 1.8rem;
            }
            
            .service-card, .guarantee-card, .contact-option, .review-card {
                padding: 2rem 1.5rem;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .guarantee-icon, .contact-icon {
                font-size: 3rem;
            }
            
            .service-title, .guarantee-title, .contact-option-title {
                font-size: 1.3rem;
            }

            .consultation-badge-mobile {
                font-size: 0.6rem;
                padding: 0.6rem 0.9rem;
                max-width: 260px;
            }

            .progress-step {
                font-size: 0.8rem;
                gap: 0.8rem;
            }

            .progress-step .step-number {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }

            .google-badge {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .consultation-badge-mobile {
                font-size: 0.6rem;
                padding: 0.5rem 0.8rem;
                max-width: 240px;
            }

            .progress-step {
                font-size: 0.75rem;
            }

            .container {
                padding: 0 0.5rem 1.5rem;
            }

            .form-section {
                padding: 1.5rem;
            }
        }

        /* Animaciones adicionales */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }

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