/* Section Pourquoi choisir WebOryon */
.why-choose-weboryon {
    padding: 120px 0 140px; /* plus d’espace au-dessus et en dessous de la section */
}
.why-choose-weboryon .section__header {
    margin-bottom: 150px;   /* plus d’espace entre le titre/sous-titre et la grille (était 64px) */
}
.why-choose-layout {
    display: grid;
    grid-template-columns: 1fr 280px 1fr; /* centre calibré pour le halo (280px) */
    gap: 20px; /* colonnes légèrement rapprochées */
    align-items: center;
    margin-bottom: 40px;
}
.why-choose-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end; /* aligne les cartes vers le centre */
}
.why-choose-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start; /* aligne les cartes vers le centre */
}
.why-choose-argument {
    background: #fff;
    padding: 16px 20px; /* +4px de hauteur sans alourdir visuellement */
    border-radius: 14px;
    border: none;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
    width: clamp(300px, 30vw, 380px); /* un peu moins long qu’avant */
    max-width: 100%;
    min-height: 0;
    height: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-choose-argument:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(124,108,214,0.18);
}
.why-choose-argument .icon,
.why-choose-argument .argument-icon {
    width: 22px;   /* icônes légèrement plus petites */
    height: 22px;
    background: transparent;   /* pas de tuile violette */
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c6cd6;
    flex-shrink: 0;
}
/* Forcer le style outline sur les SVG d'icône */
.why-choose-argument svg {
    width: 22px;
    height: 22px;
    fill: none !important;
    stroke: #7c6cd6 !important;
    stroke-width: 2 !important;
}

/* Styles pour les textes des cartes sur desktop */
.why-choose-argument h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
    line-height: 1.3;
}

.why-choose-argument p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}
.mascot-container {
    position: relative; /* nécessaire pour le halo centré */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}
.mascot-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* Halo identique à la section concept */
    background: radial-gradient(circle,
        rgba(124, 58, 237, 0.15) 0%,
        rgba(124, 58, 237, 0.05) 50%,
        transparent 70%);
    z-index: 1;
}
.mascot-image {
    position: relative;
    z-index: 2;     /* au-dessus du halo */
    width: 320px;  /* aligné sur la section Concept */
    height: auto;
    transition: transform .25s ease;
}
.mascot-image:hover {
    transform: scale(1.03);
}
@media (max-width: 992px) {
    .why-choose-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .why-choose-left,
    .why-choose-right {
        align-items: center;
    }
    .why-choose-argument {
        width: min(92%, 330px); /* légèrement plus court sur tablette */
    }
    .mascot-image {
        width: 280px; /* aligné tablette */
    }
    .why-choose-weboryon .section__header {
        margin-bottom: 72px; /* plus d’air sous le titre sur tablette */
    }
}
@media (max-width: 768px) {
    .why-choose-weboryon {
        padding: 60px 0;
        background: #ffffff;
    }

    .why-choose-weboryon__container {
        padding: 0 20px;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .section__subtitle {
        font-size: 1rem;
        color: #64748b;
        font-weight: 400;
    }

    .why-choose-layout {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .why-choose-left,
    .why-choose-right {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
    }

    .why-choose-center {
        order: -1;
        margin-bottom: 20px;
    }

    .why-choose-argument {
        background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
        padding: 16px 20px;
        border-radius: 12px;
        border: 1px solid rgba(124, 58, 237, 0.08);
        box-shadow: 0 4px 16px rgba(124, 58, 237, 0.06);
        transition: all 0.3s ease;
        width: 100%;
        max-width: 320px;
        display: flex;
        align-items: center;
        gap: 14px;
        position: relative;
        overflow: hidden;
    }

    .why-choose-argument:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
        border-color: rgba(124, 58, 237, 0.15);
    }

    .why-choose-argument .icon,
    .why-choose-argument .argument-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        background: transparent;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .why-choose-argument svg {
        width: 20px !important;
        height: 20px !important;
        stroke: #7c3aed !important;
        fill: none !important;
        stroke-width: 2 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }

    .argument-content {
        flex: 1;
    }

    .argument-content h3 {
        font-size: 0.95rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .argument-content p {
        font-size: 0.85rem;
        color: #64748b;
        line-height: 1.4;
        margin: 0;
    }

    /* Textes optimisés pour mobile */
    .why-choose-argument .mobile-text-1::before {
        content: "Design sur-mesure qui vous ressemble vraiment.";
    }
    
    .why-choose-argument .mobile-text-2::before {
        content: "Sites optimisés pour convertir vos visiteurs.";
    }
    
    .why-choose-argument .mobile-text-3::before {
        content: "Prix transparents, rien de caché.";
    }
    
    .why-choose-argument .mobile-text-4::before {
        content: "Expertise pure dans la création de sites vitrines.";
    }
    
    .why-choose-argument .mobile-text-5::before {
        content: "Référencement naturel boosté par l'IA.";
    }
    
    .why-choose-argument .mobile-text-6::before {
        content: "Accompagnement personnalisé pendant 12 mois.";
    }
    
    .why-choose-argument p[class*="mobile-text"] {
        position: relative;
        color: transparent;
    }
    
    .why-choose-argument p[class*="mobile-text"]::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        color: #64748b;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .mascot-container {
        padding: 20px;
    }

    .mascot-container::before {
        width: 180px;
        height: 180px;
        background: radial-gradient(circle,
            rgba(124, 58, 237, 0.08) 0%,
            rgba(124, 58, 237, 0.03) 50%,
            transparent 70%);
    }

    .mascot-image {
        width: 160px;
        filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.1));
    }

    .mascot-container::before {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .why-choose-weboryon {
        padding: 40px 0;
    }

    .why-choose-weboryon .container {
        padding: 0 15px;
    }

    .why-choose-weboryon .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .why-choose-weboryon .arguments {
        gap: 20px;
    }

    .why-choose-weboryon .argument {
        width: 100%;
        margin-bottom: 0;
        padding: 20px 15px;
        text-align: center;
    }

    .why-choose-weboryon .argument .icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 15px;
    }

    .why-choose-weboryon .argument .icon svg {
        width: 24px;
        height: 24px;
    }

    .why-choose-weboryon .argument h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-choose-weboryon .argument p {
        font-size: 14px;
        line-height: 1.4;
    }
}