/* ===== CSS RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --yellow: #FFD93D;
            --yellow-light: #FFF4CC;
            --yellow-soft: #FFF9E6;
            --green: #6BCB77;
            --green-light: #D4F5D9;
            --green-soft: #EAFBEF;
            --blue: #4D96FF;
            --blue-light: #CCE5FF;
            --blue-soft: #E8F3FF;
            --pink: #FF6B9D;
            --pink-light: #FFD6E5;
            --pink-soft: #FFF0F5;
            --purple: #C084FC;
            --purple-light: #EDE4FF;
            --orange: #FFA94D;
            --orange-light: #FFE0C0;
            --dark: #2D3436;
            --gray: #636E72;
            --gray-light: #B2BEC3;
            --white: #FFFFFF;
            --bg-cream: #FFFCF5;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 12px 60px rgba(0,0,0,0.15);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --radius-xl: 40px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--dark);
            background: var(--bg-cream);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Baloo 2', cursive;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--yellow), var(--pink), var(--blue));
        }

        .section-header p {
            font-size: 1.15rem;
            color: var(--gray);
            max-width: 600px;
            margin: 20px auto 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
            box-shadow: 0 4px 20px rgba(255, 107, 157, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 107, 157, 0.5);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--pink);
            border: 2px solid var(--pink);
        }

        .btn-secondary:hover {
            background: var(--pink);
            color: var(--white);
            transform: translateY(-3px);
        }

        .btn-yellow {
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            color: var(--dark);
            box-shadow: 0 4px 20px rgba(255, 217, 61, 0.4);
        }

        .btn-yellow:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 217, 61, 0.5);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Baloo 2', cursive;
            font-size: 1.8rem;
            font-weight: 800;
        }

        .nav-logo .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--yellow), var(--green));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .nav-logo span:nth-child(2) {
            color: var(--pink);
        }

        .nav-logo span:nth-child(3) {
            color: var(--blue);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--gray);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            border-radius: 10px;
            background: linear-gradient(90deg, var(--pink), var(--purple));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--pink);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 24px !important;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white) !important;
            border-radius: 50px;
            font-size: 0.9rem;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--dark);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--pink-soft) 50%, var(--blue-soft) 100%);
            padding-top: 80px;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--pink);
            box-shadow: var(--shadow-sm);
            margin-bottom: 25px;
            animation: fadeInUp 0.8s ease;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.15;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero h1 .highlight-yellow {
            color: var(--orange);
            position: relative;
        }

        .hero h1 .highlight-pink {
            color: var(--pink);
            position: relative;
        }

        .hero h1 .highlight-blue {
            color: var(--blue);
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--gray);
            margin-bottom: 35px;
            max-width: 500px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 0.8s ease 0.8s both;
        }

        .hero-stat h3 {
            font-size: 1.8rem;
            color: var(--pink);
        }

        .hero-stat p {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 600;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.4s both;
        }

        .hero-image-main {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
        }

        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 15px 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 3s ease-in-out infinite;
        }

        .hero-float-card.card-1 {
            top: 20px;
            left: -30px;
        }

        .hero-float-card.card-2 {
            bottom: 40px;
            right: -20px;
            animation-delay: 1s;
        }

        .hero-float-card.card-3 {
            bottom: -10px;
            left: 20px;
            animation-delay: 2s;
        }

        .float-icon {
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .float-icon.yellow { background: var(--yellow-light); }
        .float-icon.green { background: var(--green-light); }
        .float-icon.pink { background: var(--pink-light); }

        .float-text h4 {
            font-size: 0.85rem;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
        }

        .float-text p {
            font-size: 0.75rem;
            color: var(--gray);
        }

        /* Decorative shapes */
        .hero-shapes .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
        }

        .hero-shapes .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--yellow);
            top: -50px;
            right: -50px;
        }

        .hero-shapes .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--pink);
            bottom: 50px;
            left: -80px;
        }

        .hero-shapes .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--blue);
            top: 40%;
            right: 30%;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
        }

        .about-image-accent {
            position: absolute;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--yellow), var(--green));
            border-radius: var(--radius-md);
            bottom: -20px;
            right: -20px;
            z-index: -1;
        }

        .about-experience-badge {
            position: absolute;
            top: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
            width: 110px;
            height: 110px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
        }

        .about-experience-badge h3 {
            font-size: 2rem;
            line-height: 1;
        }

        .about-experience-badge p {
            font-size: 0.7rem;
            font-weight: 700;
            text-align: center;
        }

        .about-content .section-header {
            text-align: left;
            margin-bottom: 30px;
        }

        .about-content .section-header h2::after {
            left: 0;
            transform: none;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 15px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            background: var(--yellow-soft);
        }

        .about-feature-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .about-feature h4 {
            font-size: 0.95rem;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
            margin-bottom: 3px;
        }

        .about-feature p {
            font-size: 0.82rem;
            color: var(--gray);
        }

        /* ===== WHAT THEY LEARN ===== */
        .learn {
            background: linear-gradient(135deg, var(--blue-soft), var(--green-soft));
            position: relative;
        }

        .learn-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .learn-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 35px 25px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .learn-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            border-radius: 10px 10px 0 0;
        }

        .learn-card:nth-child(1)::before { background: var(--yellow); }
        .learn-card:nth-child(2)::before { background: var(--green); }
        .learn-card:nth-child(3)::before { background: var(--blue); }
        .learn-card:nth-child(4)::before { background: var(--pink); }

        .learn-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .learn-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }

        .learn-card:nth-child(1) .learn-icon { background: var(--yellow-light); }
        .learn-card:nth-child(2) .learn-icon { background: var(--green-light); }
        .learn-card:nth-child(3) .learn-icon { background: var(--blue-light); }
        .learn-card:nth-child(4) .learn-icon { background: var(--pink-light); }

        .learn-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .learn-card p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* ===== WHAT WE OFFER ===== */
        .offer {
            background: var(--white);
        }

        .offer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .offer-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            background: var(--white);
        }

        .offer-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .offer-card-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .offer-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .offer-card:hover .offer-card-image img {
            transform: scale(1.05);
        }

        .offer-card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--white);
        }

        .offer-card:nth-child(1) .offer-card-badge { background: var(--green); }
        .offer-card:nth-child(2) .offer-card-badge { background: var(--blue); }
        .offer-card:nth-child(3) .offer-card-badge { background: var(--pink); }

        .offer-card-body {
            padding: 30px;
        }

        .offer-card-body h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .offer-card-body p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .offer-card-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .offer-card-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 0;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .offer-card-features li::before {
            content: '\2713';
            color: var(--green);
            font-weight: 800;
        }

        .offer-card-price {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 20px;
        }

        .offer-card-price .amount {
            font-family: 'Baloo 2', cursive;
            font-size: 2rem;
            font-weight: 800;
        }

        .offer-card:nth-child(1) .amount { color: var(--green); }
        .offer-card:nth-child(2) .amount { color: var(--blue); }
        .offer-card:nth-child(3) .amount { color: var(--pink); }

        .offer-card-price .period {
            font-size: 0.85rem;
            color: var(--gray-light);
            font-weight: 600;
        }

        /* ===== PRICING SECTION ===== */
        .pricing {
            background: linear-gradient(135deg, var(--pink-soft), var(--yellow-soft), var(--blue-soft));
            position: relative;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: center;
        }

        .pricing-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 45px 35px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
            transform: scale(1.08);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-8px);
        }

        .pricing-popular {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            color: var(--dark);
            padding: 6px 24px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.8rem;
            white-space: nowrap;
        }

        .pricing-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }

        .pricing-card:nth-child(1) .pricing-icon { background: var(--yellow-light); }
        .pricing-card:nth-child(2) .pricing-icon { background: rgba(255,255,255,0.2); }
        .pricing-card:nth-child(3) .pricing-icon { background: var(--blue-light); }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .pricing-card .pricing-desc {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .pricing-card.featured .pricing-desc {
            color: rgba(255,255,255,0.8);
        }

        .pricing-amount {
            margin-bottom: 25px;
        }

        .pricing-amount .currency {
            font-size: 1.5rem;
            font-weight: 800;
            vertical-align: top;
        }

        .pricing-amount .price {
            font-family: 'Baloo 2', cursive;
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1;
        }

        .pricing-amount .period {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .pricing-card.featured .pricing-amount .period {
            color: rgba(255,255,255,0.7);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .pricing-card.featured .pricing-features li {
            border-bottom-color: rgba(255,255,255,0.15);
        }

        .pricing-features li .check {
            width: 22px;
            height: 22px;
            min-width: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
        }

        .pricing-card:nth-child(1) .check { background: var(--green-light); color: var(--green); }
        .pricing-card:nth-child(2) .check { background: rgba(255,255,255,0.2); color: var(--white); }
        .pricing-card:nth-child(3) .check { background: var(--blue-light); color: var(--blue); }

        .pricing-features li.disabled {
            opacity: 0.4;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        .pricing-card.featured .btn {
            background: var(--white);
            color: var(--pink);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .pricing-card.featured .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.2);
        }

        /* ===== STATS SECTION ===== */
        .stats {
            background: linear-gradient(135deg, var(--blue), var(--purple));
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            color: var(--white);
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-family: 'Baloo 2', cursive;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
            opacity: 0.9;
        }

        /* ===== HOW IT WORKS ===== */
        .how-it-works {
            background: var(--white);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 20%;
            right: 20%;
            height: 3px;
            background: linear-gradient(90deg, var(--yellow), var(--green), var(--blue));
            border-radius: 10px;
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
        }

        .step-card:nth-child(1) .step-number { background: var(--yellow-light); }
        .step-card:nth-child(2) .step-number { background: var(--green-light); }
        .step-card:nth-child(3) .step-number { background: var(--blue-light); }

        .step-number span {
            font-family: 'Baloo 2', cursive;
            font-size: 2.5rem;
            font-weight: 800;
        }

        .step-card:nth-child(1) .step-number span { color: var(--orange); }
        .step-card:nth-child(2) .step-number span { color: var(--green); }
        .step-card:nth-child(3) .step-number span { color: var(--blue); }

        .step-number .step-emoji {
            position: absolute;
            top: -5px;
            right: -5px;
            font-size: 1.5rem;
        }

        .step-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--gray);
            max-width: 280px;
            margin: 0 auto;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            background: linear-gradient(135deg, var(--yellow-soft), var(--pink-soft));
            position: relative;
            overflow: hidden;
        }

        .testimonials-slider {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 50px;
            text-align: center;
            box-shadow: var(--shadow-md);
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 25px;
            font-size: 1.3rem;
            color: var(--yellow);
        }

        .testimonial-text {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 30px;
            font-style: italic;
            position: relative;
        }

        .testimonial-text::before {
            content: '\201C';
            font-size: 4rem;
            color: var(--pink-light);
            position: absolute;
            top: -30px;
            left: -10px;
            font-family: serif;
            line-height: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--pink-light);
        }

        .testimonial-author-info h4 {
            font-size: 1.1rem;
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
        }

        .testimonial-author-info p {
            font-size: 0.85rem;
            color: var(--gray);
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .testimonial-nav button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: none;
            background: var(--white);
            color: var(--pink);
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-nav button:hover {
            background: var(--pink);
            color: var(--white);
            transform: scale(1.1);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--gray-light);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--pink);
            width: 30px;
            border-radius: 10px;
        }

        /* ===== BLOG SECTION ===== */
        .blog {
            background: var(--white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .blog-card {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            background: var(--white);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .blog-card-image {
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.08);
        }

        .blog-card-body {
            padding: 25px;
        }

        .blog-card-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .blog-card-tag {
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .blog-card:nth-child(1) .blog-card-tag { background: var(--yellow-light); color: var(--orange); }
        .blog-card:nth-child(2) .blog-card-tag { background: var(--green-light); color: var(--green); }
        .blog-card:nth-child(3) .blog-card-tag { background: var(--pink-light); color: var(--pink); }

        .blog-card-date {
            font-size: 0.8rem;
            color: var(--gray-light);
            font-weight: 600;
        }

        .blog-card-body h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .blog-card:hover .blog-card-body h3 {
            color: var(--pink);
        }

        .blog-card-body p {
            font-size: 0.9rem;
            color: var(--gray);
            margin-bottom: 15px;
        }

        .blog-card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--pink);
            transition: gap 0.3s ease;
        }

        .blog-card-link:hover {
            gap: 12px;
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: linear-gradient(135deg, var(--yellow), var(--orange));
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before,
        .cta-section::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
        }

        .cta-section::before {
            width: 300px;
            height: 300px;
            background: var(--white);
            top: -100px;
            left: -100px;
        }

        .cta-section::after {
            width: 200px;
            height: 200px;
            background: var(--white);
            bottom: -80px;
            right: -60px;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .cta-section p {
            font-size: 1.15rem;
            color: rgba(0,0,0,0.6);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .cta-section .btn {
            position: relative;
            z-index: 1;
            background: var(--dark);
            color: var(--white);
        }

        .cta-section .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--yellow), var(--green), var(--blue), var(--pink), var(--purple));
        }

        .footer-top {
            padding: 80px 0 50px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
        }

        .footer-brand .nav-logo {
            margin-bottom: 20px;
        }

        .footer-brand p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .footer-socials a:nth-child(1) { background: rgba(255,217,61,0.15); color: var(--yellow); }
        .footer-socials a:nth-child(2) { background: rgba(107,203,119,0.15); color: var(--green); }
        .footer-socials a:nth-child(3) { background: rgba(77,150,255,0.15); color: var(--blue); }
        .footer-socials a:nth-child(4) { background: rgba(255,107,157,0.15); color: var(--pink); }

        .footer-socials a:hover {
            transform: translateY(-3px);
        }

        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            border-radius: 10px;
        }

        .footer-col:nth-child(2) h4::after { background: var(--yellow); }
        .footer-col:nth-child(3) h4::after { background: var(--green); }
        .footer-col:nth-child(4) h4::after { background: var(--pink); }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }

        .footer-contact li .contact-icon {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .footer-contact li:nth-child(1) .contact-icon { background: rgba(255,217,61,0.15); color: var(--yellow); }
        .footer-contact li:nth-child(2) .contact-icon { background: rgba(107,203,119,0.15); color: var(--green); }
        .footer-contact li:nth-child(3) .contact-icon { background: rgba(77,150,255,0.15); color: var(--blue); }

        .footer-newsletter {
            margin-top: 20px;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 8px;
        }

        .footer-newsletter-form input {
            flex: 1;
            padding: 12px 18px;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.08);
            color: var(--white);
            font-family: 'Nunito', sans-serif;
            font-size: 0.9rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .footer-newsletter-form input::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .footer-newsletter-form input:focus {
            border-color: var(--pink);
        }

        .footer-newsletter-form button {
            padding: 12px 20px;
            border-radius: 12px;
            border: none;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer-newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255,107,157,0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 25px 0;
        }

        .footer-bottom .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-bottom p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
            list-style: none;
        }

        .footer-bottom-links a {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--white);
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--pink), var(--purple));
            color: var(--white);
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                order: 1;
            }

            .hero-image {
                order: 0;
                max-width: 500px;
                margin: 0 auto;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-desc {
                margin: 0 auto 35px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-float-card.card-1 {
                left: 10px;
            }

            .hero-float-card.card-2 {
                right: 10px;
            }

            .about .container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-content .section-header {
                text-align: center;
            }

            .about-content .section-header h2::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .learn-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .offer-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin: 0 auto;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }

            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }

            .steps-grid::before {
                display: none;
            }

            .blog-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                box-shadow: var(--shadow-lg);
                transform: translateY(-120%);
                transition: transform 0.3s ease;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .hamburger {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-image-main {
                height: 350px;
            }

            .hero-float-card {
                display: none;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-padding {
                padding: 70px 0;
            }

            .learn-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .steps-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }

            .testimonial-card {
                padding: 30px 20px;
            }

            .testimonial-text {
                font-size: 1rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom .container {
                flex-direction: column;
                text-align: center;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .pricing-card {
                padding: 30px 20px;
            }
        }