.hero-section {
    padding: 4rem 0;
    text-align: center;
}
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}
.feature-icon.icon-primary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: #6366f1;
}
.feature-icon.icon-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    color: #10b981;
}
.feature-icon.icon-info {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: #0ea5e9;
}
.cta-section {
    background: var(--gradient-header);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    color: #fff;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    pointer-events: none;
}
.cta-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}
.cta-section p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
}
.why-section {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.why-section h2 {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}
.why-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-section li {
    padding: 0.75rem 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.why-section li i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.howto-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.howto-section h2 {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}
.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
}
.step-list li {
    counter-increment: step-counter;
    padding: 0.75rem 0 0.75rem 3.5rem;
    position: relative;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}
.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
.seo-footer {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Mobile responsive */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    .cta-section {
        padding: 2rem 1.25rem;
        margin: 2rem 0;
        border-radius: 1rem;
    }
    .cta-section h3 {
        font-size: 1.25rem;
    }
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }
    .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem !important;
    }
    .why-section,
    .howto-section {
        padding: 1.5rem;
    }
}
