  :root {
            --primary-font: 'Chivo', sans-serif;
            --secondary-font: 'Noto Sans', sans-serif;
            --color-primary: #006d77;
            --color-gray-900: #101828;
            --color-gray-500: #667085;
            --color-gray-100: #f2f4f7;
            --color-white: #fff;
        }

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

        body {
            font-family: var(--secondary-font);
            color: var(--color-gray-900);
            background: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Hero Section with 3D Background */
        .hero-admin {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #bee1e6 0%, #dbece5 100%);
            overflow: hidden;
            padding: 120px 0 80px;
        }

        #canvas-3d {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-admin h1 {
            font-family: var(--primary-font);
            font-size: 64px;
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-gray-900);
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-admin .lead-text {
            font-size: 22px;
            line-height: 1.6;
            color: var(--color-gray-500);
            margin-bottom: 40px;
            max-width: 600px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .btn-primary-custom {
            background-color: var(--color-primary);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .btn-primary-custom:hover {
            background-color: #101828;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 109, 119, 0.3);
        }

        .btn-secondary-custom {
            background-color: transparent;
            color: var(--color-gray-900);
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            border: 2px solid var(--color-gray-900);
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
            margin-left: 20px;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .btn-secondary-custom:hover {
            background-color: var(--color-gray-900);
            color: white;
            transform: translateY(-3px);
        }

        /* Stats Section with Parallax */
        .stats-section {
            background: linear-gradient(135deg, #006d77 0%, #004b52 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 150%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: parallaxMove 20s linear infinite;
        }

        @keyframes parallaxMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(40px, 40px); }
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .stat-number {
            font-size: 56px;
            font-weight: 900;
            color: #afeae4;
            margin-bottom: 10px;
            font-family: var(--primary-font);
        }

        .stat-label {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        /* Features Section with 3D Cards */
        .features-section {
            padding: 100px 0;
            background: #fff;
            position: relative;
        }

        .section-title {
            font-family: var(--primary-font);
            font-size: 56px;
            font-weight: 700;
            color: var(--color-gray-900);
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--color-gray-500);
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .feature-card-3d {
            background: #ffffff;
            border-radius: 20px;
            padding: 50px 40px;
            margin-bottom: 30px;
            transition: all 0.5s ease;
            border: 1px solid #e4e7ec;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .feature-card-3d::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 109, 119, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
        }

        .feature-card-3d:hover::before {
            left: 100%;
        }

        .feature-card-3d:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--color-primary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #afeae4 0%, #83c5be 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 36px;
            color: var(--color-primary);
            transition: all 0.3s ease;
        }

        .feature-card-3d:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--color-primary) 0%, #004b52 100%);
            color: white;
        }

        .feature-card-3d h3 {
            font-size: 28px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 15px;
            font-family: var(--primary-font);
        }

        .feature-card-3d p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--color-gray-500);
            margin-bottom: 20px;
        }

        .feature-link {
            color: var(--color-primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .feature-link:hover {
            gap: 15px;
            color: #004b52;
        }

        /* Benefits Timeline */
        .benefits-section {
            background: linear-gradient(180deg, #fff3ea 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
        }

        .timeline {
            position: relative;
            padding: 50px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--color-primary) 0%, #afeae4 100%);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }

        .timeline-content {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            width: 45%;
            transition: all 0.4s ease;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
            margin-right: 55%;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 55%;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 109, 119, 0.15);
        }

        .timeline-badge {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--color-primary) 0%, #004b52 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(-50%);
            border: 5px solid #fff;
            box-shadow: 0 5px 20px rgba(0, 109, 119, 0.3);
            font-size: 24px;
            color: white;
            z-index: 10;
        }

        .timeline-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 15px;
        }

        .timeline-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--color-gray-500);
        }

        /* Testimonials with 3D Effect */
        .testimonials-section {
            background: linear-gradient(135deg, #dbece5 0%, #bee1e6 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            margin: 20px;
            position: relative;
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card:hover {
            transform: translateY(-20px) rotateY(5deg);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
        }

        .quote-icon {
            font-size: 60px;
            color: var(--color-primary);
            opacity: 0.2;
            margin-bottom: 20px;
        }

        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--color-gray-500);
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary) 0%, #afeae4 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            font-weight: 700;
        }

        .author-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--color-gray-500);
            margin: 0;
        }

        /* CTA Section with Parallax */
        .cta-section {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004b52 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: parallaxMove 15s linear infinite;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 48px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            font-family: var(--primary-font);
        }

        .cta-section p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-white {
            background: white;
            color: var(--color-primary);
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-cta-white:hover {
            background: #afeae4;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

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

        /* Scroll Animations */
        .scroll-reveal {
            transform: translateY(50px);
            transition: all 0.8s ease-out;
        }

        .scroll-reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-admin h1 {
                font-size: 48px;
            }

            .section-title {
                font-size: 42px;
            }

            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: 100%;
                margin-left: 80px !important;
                margin-right: 0 !important;
            }

            .timeline-badge {
                left: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero-admin h1 {
                font-size: 36px;
            }

            .hero-admin .lead-text {
                font-size: 18px;
            }

            .btn-secondary-custom {
                margin-left: 0;
                margin-top: 15px;
            }

            .stat-number {
                font-size: 42px;
            }

            .section-title {
                font-size: 32px;
            }

            .feature-card-3d {
                padding: 35px 25px;
            }

            .cta-section h2 {
                font-size: 32px;
            }
        }