﻿.hero {
    padding: 4.25rem 0 2.4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 2.4rem;
    min-height: calc(100vh - 170px);
}

.hero-left {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: #f0d778;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
}

.hero-left h1 {
    margin: 0;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--text);
    max-width: 12ch;
}


    .hero-left h1 span {
        display: block; /* IMPORTANT → force la ligne propre */
        color: var(--gold);
    }


.hero-description {
    margin: 1.35rem 0 0;
    max-width: 58ch;
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin: 2rem 0 2.15rem;
}

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        padding: 0 1.35rem;
        border-radius: 16px;
        font-weight: 800;
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .hero-actions .btn-primary {
        background: var(--gold);
        color: #0a1020;
        box-shadow: 0 16px 35px rgba(212, 175, 55, 0.20);
    }

    .hero-actions .btn-secondary {
        background: rgba(255,255,255,0.04);
        color: var(--text);
        border: 1px solid rgba(255,255,255,0.12);
    }

        .hero-actions .btn-primary:hover,
        .hero-actions .btn-secondary:hover {
            transform: translateY(-2px);
        }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    max-width: 720px;
}

    .hero-stats > div {
        border: 1px solid var(--line);
        background: var(--panel);
        backdrop-filter: blur(14px);
        box-shadow: var(--shadow);
        border-radius: 18px;
        padding: 1rem 1rem 0.95rem;
    }

    .hero-stats strong {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 1;
        color: var(--text);
    }

    .hero-stats span {
        display: block;
        margin-top: 0.38rem;
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.45;
    }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-panel {
    position: relative;
    width: min(100%, 500px);
    min-height: 500px;
    padding: 2rem;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--line);
    background: radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.16), transparent 35%), rgba(11, 18, 32, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.hero-logo {
    width: min(84%, 410px);
    filter: drop-shadow(0 22px 34px rgba(0,0,0,0.35));
}

.glow-line {
    width: 72%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.2rem 0 1.6rem;
}

.glass-panel p {
    margin: 0;
    max-width: 30ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

