/* ───────────── HERO ───────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 100px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: rgb(72, 99, 118, 70%);
    z-index: 1;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

/* Texture géométrique en fond */
.hero-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(42, 167, 201, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(111, 68, 194, 0.12) 0%, transparent 40%);
    z-index: 1;
}

/* Image de fond simulée avec un dégradé photo-like */
.hero-photo {
    position: absolute;
    inset: 0;
    background: url('/assets/img/home/hero-regar.webp') center/cover no-repeat;
    z-index: 0;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 60px 40px 48px;
    max-width: 100%;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

/* ───────────── ARGUMENTS ───────────── */
.arguments {
    position: absolute;
    bottom: -25px;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 300px));
    justify-content: center;
    gap: 14px;
    padding: 0 40px;
    width: 100%;
}

.arg-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 9999px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s ease;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.arg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--couleur-principale);
}

.arg-text {
    font-size: 12.5px;
    color: #333;
    font-weight: 500;
    line-height: 1.45;
}

/* TABLETTE */
@media (max-width: 1024px) {
    .arguments {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0 20px;
    }
}

/* MOBILE */
@media (max-width: 640px) {
    .arguments {
        position: static; /* 🔥 très important */
        margin-top: 20px;

        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}

/* MOBILE optimisation */
@media (max-width: 640px) {
    .arg-card {
        padding: 12px 14px;
        gap: 10px;
    }

    .arg-text {
        font-size: 12px;
    }
}

/* ───────────── SVG ANIMATIONS ───────────── */
@keyframes pin-breathe {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

.pin-path, .pin-path-cta {
    animation: pin-breathe 2.8s ease-in-out infinite;
}