/* CSS Variables from theme */
        :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 */
        .hero-education {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #eae4e9 0%, #f0efeb 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-education 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-education .lead-text {
            font-size: 22px;
            line-height: 1.6;
            color: var(--color-gray-500);
            margin-bottom: 40px;
            max-width: 650px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .badge-universal {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004b52 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out 0.1s 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);
            color: white;
        }

        .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);
        }

        /* Education Systems Grid */
        .systems-section {
            background: white;
            padding: 100px 0;
            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;
        }

        .system-card {
            background: white;
            border-radius: 24px;
            padding: 50px 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 3px solid transparent;
            cursor: pointer;
            transform-style: preserve-3d;
            min-height: 500px;
        }

        .system-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(0, 109, 119, 0.05) 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .system-card:hover::before {
            transform: translateX(0);
        }

        .system-card.bg-1 {
            border-color: #bee1e6;
            background: linear-gradient(180deg, #bee1e6 0%, white 100%);
        }

        .system-card.bg-2 {
            border-color: #fff3ea;
            background: linear-gradient(180deg, #fff3ea 0%, white 100%);
        }

        .system-card.bg-3 {
            border-color: #fde2e4;
            background: linear-gradient(180deg, #fde2e4 0%, white 100%);
        }

        .system-card.bg-4 {
            border-color: #fad2e1;
            background: linear-gradient(180deg, #fad2e1 0%, white 100%);
        }

        .system-card.bg-5 {
            border-color: #dbece5;
            background: linear-gradient(180deg, #dbece5 0%, white 100%);
        }

        .system-card.bg-6 {
            border-color: #dfe7fd;
            background: linear-gradient(180deg, #dfe7fd 0%, white 100%);
        }

        .system-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
        }

        .system-icon {
            width: 100px;
            height: 100px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 48px;
            transition: all 0.4s ease;
            position: relative;
        }

        .system-card.bg-1 .system-icon {
            background: linear-gradient(135deg, #83c5be 0%, #006d77 100%);
        }

        .system-card.bg-2 .system-icon {
            background: linear-gradient(135deg, #e29578 0%, #fad2e1 100%);
        }

        .system-card.bg-3 .system-icon {
            background: linear-gradient(135deg, #fad2e1 0%, #e29578 100%);
        }

        .system-card.bg-4 .system-icon {
            background: linear-gradient(135deg, #83c5be 0%, #afeae4 100%);
        }

        .system-card.bg-5 .system-icon {
            background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
        }

        .system-card.bg-6 .system-icon {
            background: linear-gradient(135deg, #afeae4 0%, #006d77 100%);
        }

        .system-card:hover .system-icon {
            transform: rotateY(360deg) scale(1.1);
        }

        .system-card h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 20px;
            font-family: var(--primary-font);
        }

        .system-card p {
            font-size: 17px;
            line-height: 1.8;
            color: var(--color-gray-500);
            margin-bottom: 25px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .features-list li {
            padding: 10px 0;
            padding-left: 35px;
            position: relative;
            color: var(--color-gray-500);
            font-size: 16px;
            line-height: 1.6;
        }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--color-primary);
            font-weight: 700;
            font-size: 20px;
        }

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

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

        /* Comparison Table Section */
        .comparison-section {
            background: linear-gradient(180deg, #f2f4f7 0%, white 100%);
            padding: 100px 0;
        }

        .comparison-table {
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            overflow-x: auto;
        }

        .comparison-table table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 15px;
        }

        .comparison-table th {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004b52 100%);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 700;
            font-size: 16px;
        }

        .comparison-table th:first-child {
            border-radius: 12px 0 0 12px;
        }

        .comparison-table th:last-child {
            border-radius: 0 12px 12px 0;
        }

        .comparison-table td {
            background: #f2f4f7;
            padding: 20px;
            font-size: 15px;
            color: var(--color-gray-500);
        }

        .comparison-table td:first-child {
            border-radius: 12px 0 0 12px;
            font-weight: 600;
            color: var(--color-gray-900);
        }

        .comparison-table td:last-child {
            border-radius: 0 12px 12px 0;
        }

        .check-icon {
            color: var(--color-primary);
            font-weight: 700;
            font-size: 18px;
        }

        /* Integration Partners */
        .integration-section {
            background: linear-gradient(135deg, #dbece5 0%, #afeae4 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .integration-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>');
            animation: patternSlide 20s linear infinite;
        }

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

        .integration-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            height: 100%;
        }

        .integration-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .integration-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: 0 auto 20px;
            font-size: 36px;
            transition: all 0.3s ease;
        }

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

        .integration-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 15px;
        }

        .integration-card p {
            font-size: 15px;
            line-height: 1.7;
            color: var(--color-gray-500);
        }

        /* Stats Section */
        .stats-education {
            background: linear-gradient(135deg, var(--color-primary) 0%, #004b52 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-education::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-education {
            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-education: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;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #fad2e1 0%, #e29578 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

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

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

        .cta-section p {
            font-size: 22px;
            color: var(--color-gray-500);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta-primary {
            background: var(--color-primary);
            color: white;
            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;
            box-shadow: 0 10px 30px rgba(0, 109, 119, 0.3);
        }

        .btn-cta-primary:hover {
            background: #101828;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(16, 24, 40, 0.4);
            color: white;
        }

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

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

        /* 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-education h1 {
                font-size: 48px;
            }

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

            .system-card {
                min-height: auto;
            }
        }

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

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

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

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

            .system-card {
                padding: 35px 25px;
            }

            .comparison-table {
                padding: 25px 15px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 15px 10px;
                font-size: 13px;
            }

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

            .cta-section p {
                font-size: 18px;
            }
        }