/* ==========================================================================
   Composant : Service Hero
   ========================================================================== */

.lm80-service-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 155px 0 var(--lm80-spacing-2xl);
    overflow: hidden;
    background: var(--lm80-bg-primary);
}

.lm80-service-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lm80-service-hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 120%;
    background: radial-gradient(circle, rgba(162, 78, 174, 0.15) 0%, transparent 70%);
    animation: lm80-service-hero-float 20s ease-in-out infinite;
}

@keyframes lm80-service-hero-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.lm80-service-hero > .lm80-container {
    width: 100%;
}

.lm80-service-hero-content {
    position: relative;
    z-index: 1;
}

.lm80-service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--lm80-spacing-xs);
    padding: 10px 20px;
    background: rgba(162, 78, 174, 0.1);
    border-radius: 100px;
    margin-bottom: var(--lm80-spacing-xs);
    font-size: 14px;
    font-weight: 600;
    color: var(--lm80-primary);
}

.lm80-service-hero-badge svg {
    color: var(--lm80-primary);
}

.lm80-service-hero-title {
    font-family: var(--lm80-font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--lm80-text-primary);
    margin: 0 0 var(--lm80-spacing-md);
}

.lm80-service-hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--lm80-text-secondary);
    max-width: 600px;
    margin: 0 0 var(--lm80-spacing-xl);
}

.lm80-service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lm80-spacing-md);
    margin-bottom: var(--lm80-spacing-xl);
}

.lm80-service-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--lm80-spacing-md);
    margin-bottom: var(--lm80-spacing-xl);
}

.lm80-service-hero-feature {
    display: flex;
    align-items: center;
    gap: var(--lm80-spacing-xs);
    color: var(--lm80-text-secondary);
    font-size: 14px;
}

.lm80-service-hero-feature svg {
    color: var(--lm80-success);
    flex-shrink: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .lm80-service-hero {
        padding: 115px 0 var(--lm80-spacing-xl);
    }

    .lm80-service-hero-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .lm80-service-hero-desc {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .lm80-service-hero-actions {
        flex-direction: column;
    }

    .lm80-service-hero-actions .lm80-btn {
        justify-content: center;
        width: 100%;
    }
}
