.home-hero-light {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 25%, #f5f3ff 50%, #fff7ed 75%, #f0fdf4 100%);
    overflow: hidden;
}

.home-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.home-hero-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.2));
    top: -100px;
    right: 10%;
    animation: floatShape 8s ease-in-out infinite;
}

.home-hero-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 191, 36, 0.15));
    bottom: -50px;
    left: 5%;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.home-hero-shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.15));
    top: 50%;
    left: 30%;
    animation: floatShape 12s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.home-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.8;
}

.home-hero-light .home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.home-hero-light .home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--home-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

.home-hero-light .home-hero-badge i {
    color: #f59e0b;
    animation: starSpin 3s linear infinite;
}

@keyframes starSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(99, 102, 241, 0.1); }
}

.home-hero-light .home-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-hero-light .home-hero-title span {
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.home-hero-light .home-hero-desc {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.home-hero-light .home-hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.home-hero-light .home-hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.9375rem;
    font-weight: 500;
}

.home-hero-light .home-hero-feature i {
    color: var(--home-success);
}

.home-hero-light .home-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.home-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.home-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.home-btn-primary:hover::before {
    left: 100%;
}

.home-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--home-primary) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.home-btn-secondary:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--home-primary);
    color: var(--home-primary) !important;
}

.home-stats-section {
    background: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #f1f5f9;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.home-stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.home-stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.home-stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--home-primary);
}

.home-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 4px;
}

.home-stat-label {
    font-size: 0.9375rem;
    color: #64748b;
}

.home-section {
    padding: 80px 0;
    background: #fff;
}

.home-section-alt {
    background: #f8fafc;
}

.home-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--home-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.home-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.home-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.home-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.home-product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.home-product-item img {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 12px;
    object-fit: cover;
}

.home-product-item p {
    color: #475569;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.home-section-footer {
    text-align: center;
}

.home-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.home-view-all-btn:hover {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--home-primary);
}

.home-solution-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.home-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.home-solution-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateY(30px);
    text-align: left;
}

.home-solution-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.home-solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.home-solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.home-solution-body {
    flex: 1;
    min-width: 0;
}

.home-solution-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.home-solution-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.home-solution-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--home-primary);
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.home-solution-link:hover {
    gap: 14px;
    color: var(--home-primary-dark);
}

.home-solution-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.home-solution-link:hover i {
    transform: translateX(4px);
}

.home-bundle-section {
    padding: 80px 0;
    background: #fff;
}

.home-bundle-card-light {
    background: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 50%, #fff7ed 100%);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.home-bundle-card-light::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.home-bundle-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home-bundle-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.home-bundle-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.home-bundle-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.7;
}

.home-bundle-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-bundle-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.9375rem;
}

.home-bundle-list li i {
    color: var(--home-success);
}

.home-bundle-action {
    text-align: center;
    flex-shrink: 0;
}

.home-bundle-price-box {
    background: #fff;
    border-radius: 16px;
    padding: 24px 40px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.home-bundle-price-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 4px;
}

.home-bundle-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--home-primary);
}

.home-bundle-price-note {
    font-size: 0.8125rem;
    color: var(--home-success);
    font-weight: 600;
}

.home-bundle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.home-bundle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.home-features-section {
    padding: 80px 0;
    background: #f8fafc;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateY(20px);
}

.home-feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.home-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.home-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--home-primary);
}

.home-feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.home-feature-card p {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.home-testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-testimonial-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateY(20px);
}

.home-testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.home-testimonial-card:hover {
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.home-testimonial-rating {
    margin-bottom: 16px;
}

.home-testimonial-rating i {
    color: #f59e0b;
    font-size: 1rem;
    margin-right: 2px;
}

.home-testimonial-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.home-testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--home-primary), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
}

.home-testimonial-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9375rem;
}

.home-testimonial-role {
    font-size: 0.8125rem;
    color: #94a3b8;
}

.home-tutorial-section {
    padding: 80px 0;
    background: #f8fafc;
}

.home-tutorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.home-tutorial-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.home-tutorial-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.home-tutorial-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.home-tutorial-content h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #475569;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-faq-section {
    padding: 80px 0;
    background: #fff;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.home-faq-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.home-faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.home-faq-item:hover {
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.home-faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.home-faq-question i {
    color: var(--home-primary);
    font-size: 1.25rem;
}

.home-faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.home-faq-answer {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.7;
    padding-left: 36px;
}

.home-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 25%, #f5f3ff 50%, #fff7ed 75%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.home-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
}

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

.home-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
}

.home-cta-desc {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
}

.home-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .home-hero-light .home-hero-title {
        font-size: 2.5rem;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .home-solution-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .home-solution-card {
        padding: 32px 28px;
    }

    .home-solution-icon {
        width: 72px;
        height: 72px;
        font-size: 2rem;
    }

    .home-solution-title {
        font-size: 1.375rem;
    }

    .home-bundle-content {
        flex-direction: column;
        text-align: center;
    }

    .home-bundle-info {
        margin-bottom: 32px;
    }

    .home-bundle-desc {
        max-width: 100%;
    }

    .home-bundle-list {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .home-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .home-hero-light {
        min-height: 500px;
    }

    .home-hero-light .home-hero-title {
        font-size: 2rem;
    }

    .home-hero-light .home-hero-desc {
        font-size: 1rem;
    }

    .home-hero-light .home-hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .home-hero-light .home-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .home-btn-primary,
    .home-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .home-stat-number {
        font-size: 1.75rem;
    }

    .home-section {
        padding: 60px 0;
    }

    .home-section-title {
        font-size: 1.75rem;
    }

    .home-solution-grid {
        grid-template-columns: 1fr;
    }

    .home-bundle-card-light {
        padding: 32px 24px;
    }

    .home-bundle-title {
        font-size: 1.5rem;
    }

    .home-bundle-list {
        grid-template-columns: 1fr;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-title {
        font-size: 1.75rem;
    }

    .home-cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
