.container04 {
            background: #F7FAFC;
            min-height: 100vh;
            padding: 40px 20px;
            font-family: 'Arial', sans-serif;
        }

        .header04 {
            text-align: center;
            margin-bottom: 60px;
        }

        .title04 {
            font-size: 3.5rem;
            font-weight: bold;
            color: #3182CE;
            margin-bottom: 16px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .subtitle04 {
            font-size: 1.25rem;
            color: #4A5568;
            font-weight: 500;
        }

        .steps-grid04 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step-card04 {
            background: white;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .step-card04::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3182CE, #4299E1);
        }

        .step-card04:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(49, 130, 206, 0.15);
            border-color: #EBF8FF;
        }

        .step-number04 {
            font-size: 4rem;
            font-weight: bold;
            color: #4A5568;
            opacity: 0.3;
            margin-bottom: 20px;
            line-height: 1;
        }

        .step-title04 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #3182CE;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .step-description04 {
            color: #4A5568;
            line-height: 1.6;
            font-size: 1rem;
        }

        .highlight04 {
            background: #EBF8FF;
            padding: 20px;
            border-radius: 12px;
            margin-top: 15px;
            border-left: 4px solid #3182CE;
        }

        .cta-button04 {
            background: linear-gradient(135deg, #3182CE, #4299E1);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
        }

        .cta-button04:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
        }

        .special-card04 {
            background: linear-gradient(135deg, #EBF8FF, white);
        }

        @media (max-width: 768px) {
            .title04 {
                font-size: 2.5rem;
            }
            
            .steps-grid04 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .step-card04 {
                padding: 25px;
            }
            
            .step-number04 {
                font-size: 3rem;
            }
        }

        .pulse04 {
            animation: pulse04 2s infinite;
        }

        @keyframes pulse04 {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .fade-in04 {
            animation: fadeIn04 0.8s ease-in;
        }

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

h1.hero-title01 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #FFFFFF, #63B3ED);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: titleGradient 5s infinite alternate;
}

h2.section-title01 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2D3748;
    position: relative;
    display: inline-block;
}

h2.section-title01::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #3182CE;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

p.section-subtitle01 {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

h3.feature-title01, h3.course-title01 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.8rem 0;
    color: #2D3748;
}

a.course-title01 {
    color: #2D3748;
    transition: color 0.3s ease;
}

p.hero-subtitle01 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #A0AEC0;
}

/* Navbar */
.navbar01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 0 2rem;
    background-color: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar01.scrolled {
    background-color: rgba(26, 32, 44, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logo-area01 {
    display: flex;
    align-items: center;
}

.logo01 {
    margin-right: 0.8rem;
}

.crypto-logo01 {
    font-size: 1.8rem;
    color: #3182CE;
    animation: float 5s ease-in-out infinite;
}

.platform-name01 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-links01 {
    display: flex;
    gap: 1.5rem;
}

.nav-link01 {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link01::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #3182CE;
    transition: width 0.3s ease;
}

.nav-link01:hover, .nav-link01.active01 {
    color: #63B3ED;
}

.nav-link01:hover::after, .nav-link01.active01::after {
    width: 100%;
}

.auth-buttons01 {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn01 {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid #4A5568;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn01:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #63B3ED;
}

.register-btn01 {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background-color: #3182CE;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(49, 130, 206, 0.3);
}

.register-btn01:hover {
    background-color: #2C5282;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(49, 130, 206, 0.4);
}

.mobile-menu-btn01 {
    display: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu01 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #1A202C;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu01.active {
    right: 0;
}

.mobile-menu-header01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #2D3748;
}

.close-menu-btn01 {
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
}

.mobile-nav-links01 {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.mobile-nav-link01 {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #2D3748;
    transition: color 0.3s ease;
}

.mobile-nav-link01:hover, .mobile-nav-link01.active01 {
    color: #63B3ED;
}

.mobile-auth-buttons01 {
    margin-top: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-login-btn01, .mobile-register-btn01 {
    display: block;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-login-btn01 {
    border: 1px solid #4A5568;
}

.mobile-login-btn01:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #63B3ED;
}

.mobile-register-btn01 {
    background-color: #3182CE;
}

.mobile-register-btn01:hover {
    background-color: #2C5282;
}

/* Hero Section */
.hero-section01 {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-section01::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
}

.hero-content01 {
    width: 50%;
    z-index: 2;
    padding-right: 2rem;
}

.hero-buttons01 {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-primary01, .btn-secondary01 {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary01 {
    background-color: #3182CE;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.btn-primary01:hover {
    background-color: #2C5282;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

.btn-secondary01 {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #4A5568;
}

.btn-secondary01:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #63B3ED;
}

.hero-stats01 {
    display: flex;
    gap: 2.5rem;
}

.stat-item01 {
    display: flex;
    flex-direction: column;
}

.stat-number01 {
    color: #3182CE;
    font-size: 2rem;
    font-weight: 700;
}

.stat-label01 {
    color: #A0AEC0;
    font-size: 0.9rem;
}

.hero-image01 {
    width: 50%;
    position: relative;
    z-index: 1;
}

.image-container01 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.image-container01:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.image-container01 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.glow-effect01 {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(49, 130, 206, 0.3) 0%, rgba(26, 32, 44, 0) 70%);
    pointer-events: none;
    animation: glow 5s ease-in-out infinite alternate;
}

.floating-crypto01 {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

.btc01 {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background-color: rgba(247, 147, 26, 0.2);
    backdrop-filter: blur(5px);
    animation-delay: 0.5s;
}

.btc01 i {
    font-size: 2rem;
    color: #F7931A;
}

.eth01 {
    bottom: 15%;
    right: 15%;
    width: 60px;
    height: 60px;
    background-color: rgba(98, 126, 234, 0.2);
    backdrop-filter: blur(5px);
    animation-delay: 1.5s;
}

.eth01 i {
    font-size: 2rem;
    color: #627EEA;
}

/* Features Section */
.features-section01 {
    padding: 5rem 5%;
    background-color: #F7FAFC;
    text-align: center;
}

.section-header01 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid01 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card01 {
    background-color: #FFFFFF;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card01:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon01 {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3182CE 0%, #63B3ED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.feature-icon01::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.4;
    transform: scale(1.2);
    filter: blur(10px);
}

.feature-description01 {
    color: #4A5568;
    line-height: 1.6;
}

/* Courses Section */
.courses-section01 {
    padding: 5rem 5%;
    background-color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.courses-grid01 {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.courses-grid01::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.course-card01 {
    min-width: 340px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.course-card01:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.course-image01 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card01:hover .course-image01 img {
    transform: scale(1.05);
}

.course-card01 a {
    text-decoration: none;
    color: #2D3748;
    transition: color 0.3s ease;
}

.course-card01 a, .course-card01 button {
    cursor: pointer;
    color: #FFFFFF;
}

.course-level01 {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #3182CE;
    color: #FFFFFF;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-level01.intermediate01 {
    background-color: #805AD5;
}

.course-level01.advanced01 {
    background-color: #DD6B20;
}

.course-content01 {
    padding: 1.5rem;
    text-align: left;
}

.course-info01 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #4A5568;
    font-size: 0.9rem;
}

.course-info01 i {
    margin-right: 0.4rem;
    color: #3182CE;
}

.course-instructor01 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.course-instructor01 img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 0.8rem;
}

.course-instructor01 span {
    color: #2D3748;
    font-weight: 500;
}

.course-price01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price01 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
}

.btn-course01 {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #3182CE;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-course01:hover {
    background-color: #2C5282;
}

.courses-navigation01 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn01 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #2D3748;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn01:hover {
    background-color: #3182CE;
    color: #FFFFFF;
    border-color: #3182CE;
}

/* Testimonials Section */
.testimonials-section01 {
    padding: 5rem 5%;
    background-color: #2D3748;
    position: relative;
    overflow: hidden;
}

.section-header01.light01 h2.section-title01,
.section-header01.light01 p.section-subtitle01 {
    color: #FFFFFF;
}

.section-header01.light01 h2.section-title01::after {
    background: #63B3ED;
}

.testimonials-container01 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card01 {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card01:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.testimonial-content01 {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon01 {
    color: rgba(255, 255, 255, 0.1);
    font-size: 2.5rem;
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-content01 p {
    color: #E2E8F0;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author01 {
    display: flex;
    align-items: center;
}

.testimonial-author01 img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #3182CE;
}

.author-info01 h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-info01 p {
    color: #A0AEC0;
    font-size: 0.9rem;
}

/* Learning Path Section */
.learning-path-section01 {
    padding: 5rem 5%;
    background-color: #F7FAFC;
    text-align: center;
}

.path-container01 {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
}

.path-step01 {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.step-number01 {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3182CE 0%, #63B3ED 100%);
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.3);
    position: relative;
    z-index: 10;
}

.path-connector01 {
    width: 4px;
    height: 50px;
    background-color: #3182CE;
    margin-left: 28px;
    margin-bottom: 0.5rem;
}

.step-content01 {
    background-color: #FFFFFF;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    text-align: left;
    transition: all 0.3s ease;
}

.step-content01:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-content01 h3 {
    font-size: 1.3rem;
    color: #2D3748;
    margin-bottom: 0.5rem;
}

.step-content01 p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.5;
}

/* Plans Section */
.plans-section01 {
    padding: 5rem 5%;
    background-color: #FFFFFF;
    text-align: center;
}

.plans-container01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card01 {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.plan-card01:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.plan-card01.featured01 {
    transform: scale(1.05);
    border-color: #3182CE;
    z-index: 1;
}

.plan-card01.featured01:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge01 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3182CE;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header01 {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
    text-align: center;
}

.plan-title01 {
    font-size: 1.8rem;
    color: #2D3748;
    margin-bottom: 1rem;
}

.plan-price01 {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency01 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3182CE;
}

.amount01 {
    font-size: 3rem;
    font-weight: 700;
    color: #2D3748;
    line-height: 1;
    margin: 0 0.2rem;
}

.period01 {
    font-size: 1rem;
    color: #718096;
}

.plan-features01 {
    text-align: left;
    margin-bottom: 2rem;
    list-style: none;
}

.plan-features01 li {
    padding: 0.8rem 0;
    color: #2D3748;
    display: flex;
    align-items: center;
}

.plan-features01 li i {
    color: #3182CE;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.plan-features01 li.not-included01 {
    color: #A0AEC0;
}

.plan-features01 li.not-included01 i {
    color: #CBD5E0;
}

.plan-button01 {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    border-radius: 5px;
    background-color: #3182CE;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-button01:hover {
    background-color: #2C5282;
}

/* Partners Section */
.partners-section01 {
    padding: 5rem 5%;
    background-color: #F7FAFC;
    text-align: center;
}

.partners-logos01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.partner-logo01 {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo01:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo01 img {
    max-height: 100%;
    max-width: 120px;
}

/* CTA Section */
.cta-section01 {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-section01::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    pointer-events: none;
}

.cta-content01 {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
    z-index: 1;
}

.cta-title01 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.cta-description01 {
    font-size: 1.2rem;
    color: #A0AEC0;
    margin-bottom: 2rem;
}

.cta-buttons01 {
    display: flex;
    gap: 1rem;
}

.btn-outline01 {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    border: 2px solid #4A5568;
    color: #FFFFFF;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline01:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #63B3ED;
}

.cta-image01 {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.cta-image01 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: translate(-5%, -5%);
    }
    100% {
        opacity: 0.7;
        transform: translate(5%, 5%);
    }
}

@keyframes titleGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    h1.hero-title01 {
        font-size: 2.8rem;
    }
    
    h2.section-title01 {
        font-size: 2.2rem;
    }
    
    .hero-section01 {
        flex-direction: column;
        height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }
    
    .hero-content01, .hero-image01 {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-content01 {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-buttons01, .hero-stats01 {
        justify-content: center;
    }
    
    .features-grid01 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links01 {
        display: none;
    }
    
    .mobile-menu-btn01 {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn01 {
        display: block !important;
    }
    h1.hero-title01 {
        font-size: 2.3rem;
    }
    
    h2.section-title01 {
        font-size: 1.8rem;
    }
    
    p.hero-subtitle01 {
        font-size: 1.2rem;
    }
    
    .features-grid01 {
        grid-template-columns: 1fr;
    }
    
    .path-step01 {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number01 {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .path-connector01 {
        display: none;
    }
    
    .step-content01 {
        text-align: center;
    }
    
    .step-content01:hover {
        transform: translateY(-10px);
    }
    
    .auth-buttons01 {
        display: none;
    }
    
    .platform-name01 {
        font-size: 1.1rem;
    }
    
    .testimonials-container01 {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    h1.hero-title01 {
        font-size: 2rem;
    }
    
    .hero-stats01 {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .btn-primary01, .btn-secondary01 {
        padding: 0.7rem 1.4rem;
    }
    
    .cta-title01 {
        font-size: 2rem;
    }
    
    .cta-buttons01 {
        flex-direction: column;
    }
}

/* Footer Styles */
.footer-42 {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    color: #FFFFFF;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.footer-42::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3182CE, transparent);
    animation: shimmer-42 3s ease-in-out infinite;
}

@keyframes shimmer-42 {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.footer-container-42 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer-top-42 {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand-42 {
    max-width: 400px;
}

.footer-logo-42 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-icon-42 {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3182CE, #63B3ED);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    box-shadow: 0 8px 32px rgba(49, 130, 206, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-42:hover .footer-logo-icon-42 {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 40px rgba(49, 130, 206, 0.5);
}

.footer-brand-text-42 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.025em;
}

.footer-description-42 {
    color: #A0AEC0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.footer-social-42 {
    display: flex;
    gap: 1.2rem;
}

.social-link-42 {
    width: 52px;
    height: 52px;
    background: rgba(45, 55, 72, 0.8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link-42::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.social-link-42:hover::before {
    left: 100%;
}

.social-link-42:hover {
    background: linear-gradient(135deg, #3182CE, #63B3ED);
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(49, 130, 206, 0.4);
    border-color: #63B3ED;
}

.footer-links-42 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column-42 {
    display: flex;
    flex-direction: column;
}

.footer-title-42 {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title-42::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3182CE, #63B3ED);
    border-radius: 2px;
    animation: glow-42 2s ease-in-out infinite alternate;
}

@keyframes glow-42 {
    0% { box-shadow: 0 0 5px #3182CE; }
    100% { box-shadow: 0 0 15px #63B3ED; }
}

.footer-list-42 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-42 {
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    font-weight: 400;
    display: inline-block;
}

.footer-link-42::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0.3rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3182CE, #63B3ED);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link-42:hover {
    color: #FFFFFF;
    transform: translateX(8px);
    font-weight: 500;
}

.footer-link-42:hover::before {
    width: 100%;
}

.footer-bottom-42 {
    border-top: 1px solid rgba(45, 55, 72, 0.8);
    padding-top: 2.5rem;
    position: relative;
}

.footer-bottom-42::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3182CE, transparent);
}

.footer-bottom-content-42 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright-42 {
    color: #A0AEC0;
    margin: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-legal-42 {
    display: flex;
    gap: 2.5rem;
}

.legal-link-42 {
    color: #A0AEC0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    padding: 0.3rem 0;
}

.legal-link-42::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3182CE;
    transition: width 0.3s ease;
}

.legal-link-42:hover {
    color: #3182CE;
    font-weight: 500;
}

.legal-link-42:hover::after {
    width: 100%;
}

.main-content-42 {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container-42 {
        padding: 1rem;
    }
    
    .nav-menu-42 {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(45, 55, 72, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
    
    .nav-menu-42.active-42 {
        top: 100%;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links-42 {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-auth-42 {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .login-btn-42,
    .signup-btn-42 {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-toggle-42 {
        display: flex;
    }
    
    .footer-container-42 {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-top-42 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-42 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content-42 {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal-42 {
        gap: 1.5rem;
    }
    
    .social-link-42 {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .footer-links-42 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-social-42 {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-legal-42 {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-container-42 {
        padding: 2.5rem 1rem 1.5rem;
    }
}