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

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

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

.help-hero-light .help-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: helpFloatShape 8s ease-in-out infinite;
}

.help-hero-light .help-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: helpFloatShape 10s ease-in-out infinite reverse;
}

.help-hero-light .help-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: helpFloatShape 12s ease-in-out infinite;
}

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

.help-hero-light .help-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;
}

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

.help-hero-light .help-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;
}

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

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

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

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

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

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

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

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

@media (max-width: 575.98px) {
    .help-hero-light .help-hero-title {
        font-size: 1.75rem;
    }
}
