  /* 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-parents {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #dbece5 0%, #bee1e6 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-parents 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-parents .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-parent {
            background: linear-gradient(135deg, #83c5be 0%, #afeae4 100%);
            color: var(--color-gray-900);
            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);
        }

        /* Features Section */
        .features-parents {
            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;
        }

        .feature-card-parent {
            background: white;
            border-radius: 24px;
            padding: 50px 40px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid #e4e7ec;
            cursor: pointer;
            transform-style: preserve-3d;
            height: 100%;
        }

        .feature-card-parent::before {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: radial-gradient(circle, rgba(0, 109, 119, 0.08) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.7s ease;
        }

        .feature-card-parent:hover::before {
            transform: scale(1);
        }

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

        .feature-icon-parent {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #afeae4 0%, #83c5be 100%);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 42px;
            transition: all 0.4s ease;
            position: relative;
        }

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

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

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

        .feature-highlight {
            background: rgba(0, 109, 119, 0.08);
            border-left: 4px solid var(--color-primary);
            padding: 15px 20px;
            border-radius: 8px;
            margin-top: 20px;
            font-size: 15px;
            color: var(--color-gray-900);
            font-weight: 500;
        }

        /* Dashboard Preview Section */
        .dashboard-section {
            background: linear-gradient(180deg, #f2f4f7 0%, white 100%);
            padding: 100px 0;
            position: relative;
        }

        .dashboard-preview {
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
            position: relative;
            overflow: hidden;
        }

        .dashboard-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary) 0%, #83c5be 100%);
        }

        .preview-card {
            background: linear-gradient(135deg, #afeae4 0%, #bee1e6 100%);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .preview-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 109, 119, 0.2);
        }

        .preview-icon {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 15px;
        }

        .preview-label {
            font-size: 14px;
            color: var(--color-gray-500);
            margin-bottom: 5px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .preview-value {
            font-size: 28px;
            font-weight: 900;
            color: var(--color-gray-900);
            font-family: var(--primary-font);
        }

        /* Communication Section */
        .communication-section {
            background: linear-gradient(135deg, #fff3ea 0%, #fde2e4 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .communication-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(0,109,119,0.1)"/></svg>');
            animation: patternFloat 25s linear infinite;
        }

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

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

        .communication-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .comm-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #fad2e1 0%, #e29578 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .communication-card:hover .comm-icon {
            transform: scale(1.1) rotate(-5deg);
        }

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

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

        /* Benefits Grid */
        .benefits-section {
            background: white;
            padding: 100px 0;
        }

        .benefit-item {
            text-align: center;
            padding: 40px 30px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            transform: translateY(-10px);
        }

        .benefit-number {
            font-size: 72px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--color-primary) 0%, #83c5be 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 15px;
            font-family: var(--primary-font);
        }

        .benefit-item h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--color-gray-900);
            margin-bottom: 10px;
        }

        .benefit-item p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--color-gray-500);
        }

        /* Testimonials */
        .testimonials-parents {
            background: linear-gradient(180deg, #f2f4f7 0%, white 100%);
            padding: 100px 0;
        }

        .testimonial-card-parent {
            background: white;
            border-radius: 24px;
            padding: 45px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card-parent::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 120px;
            color: rgba(0, 109, 119, 0.08);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card-parent:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .parent-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary) 0%, #83c5be 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .testimonial-text-parent {
            font-size: 17px;
            line-height: 1.8;
            color: var(--color-gray-500);
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

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

        .parent-info {
            font-size: 14px;
            color: var(--color-gray-500);
        }

        /* CTA Section */
        .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: -40%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

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

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

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

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

        .cta-section p {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.95);
            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;
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .btn-cta-white:hover {
            background: #afeae4;
            color: var(--color-gray-900);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
        }

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

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

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

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

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

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

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

            .dashboard-preview {
                padding: 30px 20px;
            }

            .communication-card {
                padding: 30px 25px;
            }

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

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