/* ── HERO ── */
.hero {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    padding: 60px 24px;
}

.hero__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
}

/* ── IMAGE ── */
.hero__image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero__image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    position: relative;
    z-index: 1;
}

.hero__image-glow {
    position: absolute;
    inset: 10% 15%;
    background: radial-gradient(ellipse, rgba(112, 39, 207, 0.25) 0%, transparent 70%);
    z-index: 0;
    filter: blur(40px);
    pointer-events: none;
}

/* ── CONTENU ── */
.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px;
}

.hero__title em {
    font-family: var(--font-heading);
    font-style: normal;
    color: var(--accent2);
}

.hero__desc {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__ref {
    margin-top: 8px;
    opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
    .hero {
        padding: 40px 16px;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }
}
