/* =========================================================
   Why Choose Us Section — [mci_why_choose_us]
   Design: Stitch "Visual Design Optimization" — Redesign Pourquoi Nous Choisir
   ========================================================= */

/* ── Font import ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
.mci-wcu-section {
    --wcu-primary:          #1363DF;
    --wcu-primary-dark:     #0037b0;
    --wcu-navy:             #082A5E;
    --wcu-card-bg:          #F9FAFB;           /* White-grey card background */
    --wcu-card-border:      #e5e7eb;
    --wcu-icon-bg:          #E0F2FE;           /* Light blue icon circle */
    --wcu-text:             #082A5E;           /* Dark navy for titles */
    --wcu-text-body:        #667085;           /* Medium grey for descriptions */
    --wcu-badge-bg:         #EFF8FF;
    --wcu-badge-color:      #1363DF;
    --wcu-badge-border:     #B8DEFF;
    --wcu-radius:           16px;
    --wcu-shadow:           0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --wcu-shadow-hover:     0 10px 30px rgba(19, 99, 223, 0.12);
    font-family: 'Inter', 'Poppins', system-ui, sans-serif;
}

/* ── Section wrapper ───────────────────────────────────── */
.mci-wcu-section {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Subtle blue blob top-right */
.mci-wcu-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 99, 223, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Subtle blue blob bottom-left */
.mci-wcu-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 99, 223, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mci-wcu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

/* ── Header zone ────────────────────────────────────── */
.mci-wcu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 64px;
}

.mci-wcu-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mci-wcu-header-left::before {
    display: none;
}

/* Badge — eyebrow label */
.mci-wcu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--wcu-primary);
    font-size: 0.7rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0;
    border-radius: 0;
    border: none;
    text-transform: uppercase;
    position: relative;
}

/* Dot accent before badge */
.mci-wcu-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wcu-primary);
    flex-shrink: 0;
    opacity: 0.8;
}

/* Short line after badge */
.mci-wcu-badge::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: var(--wcu-primary);
    opacity: 0.45;
    margin-left: 2px;
}

/* Title */
.mci-wcu-title {
    font-family: 'Lexend', 'Inter', sans-serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: var(--wcu-navy) !important;
    margin: 0 !important;
    letter-spacing: -0.025em;
    max-width: 640px;
    text-transform: capitalize;
}

/* Highlight the last word(s) in blue — wrap them in a <mark> in PHP */
.mci-wcu-title mark {
    background: none;
    color: var(--wcu-primary);
    -webkit-background-clip: unset;
    background-clip: unset;
    padding: 0;
}

.mci-wcu-header-right {
    max-width: 650px;
    position: relative;
    padding-top: 4px;
}

/* Thin separator line above description - désactivé */
.mci-wcu-header-right::before {
    display: none;
}

/* Description */
.mci-wcu-description {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: var(--wcu-text-body) !important;
    margin: 0 !important;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    
}

/* ── Cards grid — 4 colonnes (proportions cartes préservées) ─ */
.mci-wcu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

/* ════════════════════════════════════════════════════════
   CARD BASE
   ════════════════════════════════════════════════════════ */
.mci-wcu-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 60px;   /* extra bottom space for the arrow */
    border-radius: var(--wcu-radius);
    background: var(--wcu-card-bg);
    border: 1px solid var(--wcu-card-border);
    box-shadow: var(--wcu-shadow);
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
    transition: transform 0.28s cubic-bezier(.22,.68,0,1.15), box-shadow 0.28s ease;
    position: relative;
    overflow: hidden;
}

/* ── Decorative circles (CSS pseudo) ── */
.mci-wcu-card::before {
    content: '';
    position: absolute;
    top: -48px;
    right: -48px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(224, 242, 254, 0.6);   /* #E0F2FE very light */
    pointer-events: none;
    transition: transform 0.4s ease;
}

.mci-wcu-card::after {
    content: '';
    position: absolute;
    bottom: -28px;
    left: -28px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(224, 242, 254, 0.4);
    pointer-events: none;
    transition: transform 0.4s ease;
}

/* Dot grid decorative span */
.mci-wcu-card .mci-wcu-dots {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    background-image: radial-gradient(circle, rgba(19, 99, 223, 0.14) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    border-radius: 4px;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Hover — all cards respond */
.mci-wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wcu-shadow-hover);
}

.mci-wcu-card:hover::before { transform: scale(1.1) translate(4px, -4px); }
.mci-wcu-card:hover::after  { transform: scale(1.15) translate(-3px, 3px); }
.mci-wcu-card:hover .mci-wcu-dots { opacity: 1; }

/* ── Icon circle — compact ─────────────────────────────── */
.mci-wcu-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}

.mci-wcu-card:hover .mci-wcu-icon {
    transform: scale(1.06);
}

.mci-wcu-icon svg {
    width: 22px !important;
    height: 22px !important;
}

/* ── Amélioration des icônes uniquement pour Why Choose ── */
.mci-wcu-section:not(.mci-op-section) .mci-wcu-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

.mci-wcu-section:not(.mci-op-section) .mci-wcu-icon svg {
    width: 25px !important;
    height: 25px !important;
    stroke: currentColor;
    stroke-width: 0.5px;
}

.mci-wcu-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.mci-wcu-icon, 
.mci-op-section .mci-wcu-card.is-featured .mci-wcu-icon svg {
    color: #1363DF;
}

/* Card 1 Icon: Blue */
.wcu__only .mci-wcu-card:nth-child(1) .mci-wcu-icon {
    background: #eff6ff;
    color: #1363DF;
}
.wcu__only .mci-wcu-card:nth-child(1) .mci-wcu-icon svg {
    fill: #1363DF;
    color: #1363DF;
}

/* Card 2 Icon: Orange */
.wcu__only .mci-wcu-card:nth-child(2) .mci-wcu-icon {
    background: #fff7ed;
    color: #ea580c;
}
.wcu__only .mci-wcu-card:nth-child(2) .mci-wcu-icon svg {
    fill: #ea580c;
    color: #ea580c;
}

/* Card 3 Icon: Green */
.wcu__only .mci-wcu-card:nth-child(3) .mci-wcu-icon {
    background: #ecfdf5;
    color: #10b981;
}
.wcu__only .mci-wcu-card:nth-child(3) .mci-wcu-icon svg {
    fill: #10b981;
    color: #10b981;
}

/* ── Card text ─────────────────────────────────────────── */
.mci-wcu-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.mci-wcu-card-title {
    font-family: 'Lexend', 'Inter', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: var(--wcu-navy) !important;
    margin: 0 !important;
    letter-spacing: -0.01em;
}

.mci-wcu-card-desc {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    color: var(--wcu-text-body) !important;
    margin: 0 !important;
    font-family: 'Poppins', sans-serif;
}

/* ── Action Link/Button — Stitch ───────────────────────── */
.mci-wcu-action {
    margin-top: auto;
    padding-top: 16px;
    position: relative;
    z-index: 2;
}

.mci-wcu-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wcu-primary);
    display: inline-flex;
    align-items: center;
    transition: color 0.25s ease, transform 0.25s ease;
}

.mci-wcu-card:hover .mci-wcu-link {
    color: var(--wcu-primary-dark);
    transform: translateX(4px);
}

.mci-wcu-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wcu-primary);
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mci-wcu-card.is-featured:hover .mci-wcu-btn {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ════════════════════════════════════════════════════════
   FEATURED CARD — solid primary blue (no gradient)
   ════════════════════════════════════════════════════════ */
.mci-wcu-card.is-featured {
    background: var(--wcu-primary);
    border-color: var(--wcu-primary);
    box-shadow: 0 8px 30px rgba(19, 99, 223, 0.35);
}

.mci-wcu-card.is-featured[href]:hover {
    box-shadow: 0 14px 40px rgba(19, 99, 223, 0.48);
}

/* Featured decorative circles — white semi-transparent */
.mci-wcu-card.is-featured::before {
    background: rgba(255, 255, 255, 0.1);
    width: 170px;
    height: 170px;
    top: -55px;
    right: -55px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.mci-wcu-card.is-featured::after {
    background: rgba(255, 255, 255, 0.07);
    width: 110px;
    height: 110px;
    bottom: -35px;
    left: -35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Featured dot grid — white */
.mci-wcu-card.is-featured .mci-wcu-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
    opacity: 0.75;
}

/* Featured icon — vibrant lighter blue circle */
.mci-wcu-card.is-featured .mci-wcu-icon {
    background: rgba(255, 255, 255, 0.2);          /* Lighter vibrant blue container */
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
}

.mci-wcu-card.is-featured .mci-wcu-icon svg {
    fill: #ffffff;
    color: #ffffff;
}

/* Featured text — white */
.mci-wcu-card.is-featured .mci-wcu-card-title {
    color: #ffffff !important;
}

.mci-wcu-card.is-featured .mci-wcu-card-desc {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* ════════════════════════════════════════════════════════
   VARIANTE FOND COLORÉ — [mci_why_choose_us bg="#hex"]
   Toutes les couleurs s'adaptent automatiquement pour
   rester lisibles sur n'importe quelle couleur sombre.
   ════════════════════════════════════════════════════════ */

.mci-wcu-section.has-bg {
    background: var(--wcu-section-bg, #1363DF);
}

/* Blobs décoratifs → version claire sur fond coloré */
.mci-wcu-section.has-bg::before,
.mci-wcu-section.has-bg::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

/* Badge */
.mci-wcu-section.has-bg .mci-wcu-badge {
    color: rgba(255, 255, 255, 0.9);
}
.mci-wcu-section.has-bg .mci-wcu-badge::before {
    background: rgba(255, 255, 255, 0.7);
}
.mci-wcu-section.has-bg .mci-wcu-badge::after {
    background: rgba(255, 255, 255, 0.4);
}

/* Titre */
.mci-wcu-section.has-bg .mci-wcu-title {
    color: #ffffff !important;
}

/* Ligne séparatrice header */
.mci-wcu-section.has-bg .mci-wcu-header-right::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

/* Description */
.mci-wcu-section.has-bg .mci-wcu-description {
    color: rgba(255, 255, 255, 0.82) !important;
}

/* Cards — glassmorphisme */
.mci-wcu-section.has-bg .mci-wcu-card {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mci-wcu-section.has-bg .mci-wcu-card:hover {
    background: rgba(255, 255, 255, 0.17);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Cercles déco des cards */
.mci-wcu-section.has-bg .mci-wcu-card::before {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.mci-wcu-section.has-bg .mci-wcu-card::after {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Dot grid */
.mci-wcu-section.has-bg .mci-wcu-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
}

/* Textes des cards */
.mci-wcu-section.has-bg .mci-wcu-card-title {
    color: #ffffff !important;
}
.mci-wcu-section.has-bg .mci-wcu-card-desc {
    color: rgba(255, 255, 255, 0.78) !important;
}

/* Flèche CTA / Action CTA */
.mci-wcu-section.has-bg .mci-wcu-link {
    color: rgba(255, 255, 255, 0.9);
}
.mci-wcu-section.has-bg .mci-wcu-card:hover .mci-wcu-link {
    color: #ffffff;
}

.mci-wcu-section.has-bg .mci-wcu-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.mci-wcu-section.has-bg .mci-wcu-card.is-featured:hover .mci-wcu-btn {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.50);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Card featured sur fond coloré — plus opaque pour se démarquer */
.mci-wcu-section.has-bg .mci-wcu-card.is-featured {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.mci-wcu-section.has-bg .mci-wcu-card.is-featured:hover {
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

/* ════════════════════════════════════════════════════════
   VARIANTE [our_particularities] — cards non-cliquables,
   icône SVG configurable, sans bouton flèche
   ════════════════════════════════════════════════════════ */

/* Grille : mêmes proportions qu’à 4 cartes (4 col. → lignes suppl.) */
.mci-op-section .mci-wcu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* ── Carte blanche sur fond bleu (style maquette) ─────── */
.mci-op-section.has-bg .mci-wcu-card {
    padding: 32px 26px 28px;
    min-height: 300px;
    cursor: default;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(8, 42, 94, 0.14);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.28s cubic-bezier(.22, .68, 0, 1.15), box-shadow 0.28s ease;
}

.mci-op-section.has-bg .mci-wcu-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(8, 42, 94, 0.18);
    cursor: default;
}

/* Icône — carré bleu clair, trait navy */
.mci-op-section.has-bg .mci-wcu-card .mci-wcu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #E6F0FF;
    border: none;
    margin-bottom: 22px;
    box-shadow: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.mci-op-section.has-bg .mci-wcu-card:hover .mci-wcu-icon {
    background: #dce9fc;
    transform: scale(1.04);
    box-shadow: none;
}

.mci-op-section.has-bg .mci-wcu-card .mci-wcu-icon svg {
    width: 22px !important;
    height: 22px !important;
    stroke: #1363DF;
    color: #1363DF;
}

.mci-op-section.has-bg .mci-wcu-card .mci-wcu-card-title {
    font-family: 'Lexend', 'Inter', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #082A5E !important;
    letter-spacing: -0.015em;
}

.mci-op-section.has-bg .mci-wcu-card .mci-wcu-card-desc {
    font-family: 'Inter', 'Poppins', sans-serif !important;
    font-size: 0.975rem !important;
    line-height: 1.65 !important;
    color: #667085 !important;
}

.bg_pattern {
    background-color: var(--wcu-section-bg, #1363DF) !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px) !important;
    background-size: 28px 28px !important;
    background-position: center !important;
}

/* ── Textes ─────────────────────────────────────────── */
.mci-op-section .mci-wcu-card-body {
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Section Background Pattern (Uniquement Nos Particularités) ── */
.mci-wcu-section.mci-op-section.has-bg {
    background-color: var(--wcu-section-bg, #1363DF) !important;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px) !important;
    background-size: 28px 28px !important;
    background-position: center !important;
}

/* Décors — pastilles & pointillés (maquette) */
.mci-op-section.has-bg .mci-wcu-card::before {
    background: rgba(224, 242, 254, 0.7);
    border: none;
    width: 130px;
    height: 130px;
    top: -44px;
    right: -44px;
}

.mci-op-section.has-bg .mci-wcu-card::after {
    background: rgba(224, 242, 254, 0.45);
    border: none;
    width: 88px;
    height: 88px;
    bottom: -26px;
    left: -26px;
}

.mci-op-section.has-bg .mci-wcu-card .mci-wcu-dots {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    opacity: 0.55;
    background-image: radial-gradient(circle, rgba(19, 99, 223, 0.16) 1.5px, transparent 1.5px);
    background-size: 7px 7px;
}

.mci-op-section.has-bg .mci-wcu-card:hover .mci-wcu-dots {
    opacity: 0.85;
}

/* Carte « featured » : même style blanc (pas de carte bleue) */
.mci-op-section.has-bg .mci-wcu-card.is-featured,
.mci-op-section.has-bg .mci-wcu-card.is-featured:hover {
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 32px rgba(8, 42, 94, 0.16);
    transform: translateY(-5px);
}

.mci-op-section.has-bg .mci-wcu-card.is-featured .mci-wcu-icon {
    background: #E6F0FF;
}

.mci-op-section.has-bg .mci-wcu-card .mci-wcu-action,
.mci-op-section.has-bg .mci-wcu-card.is-featured .mci-wcu-action {
    display: none;
}

/* ── CTA bas de section [mci_why_choose_us] — fond clair ─ */
.mci-wcu-section.wcu__only .mci-wcu-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    padding-top: 8px;
}

.mci-wcu-section.wcu__only .mci-wcu-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 32px;
    background: var(--wcu-primary, #1363DF);
    color: #ffffff;
    font-family: 'Inter', 'Poppins', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 28px rgba(19, 99, 223, 0.28);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.mci-wcu-section.wcu__only .mci-wcu-cta__btn:hover,
.mci-wcu-section.wcu__only .mci-wcu-cta__btn:focus-visible {
    background: var(--wcu-primary-dark, #0037b0);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(19, 99, 223, 0.35);
}

.mci-wcu-section.wcu__only .mci-wcu-cta__btn:focus-visible {
    outline: 2px solid var(--wcu-primary, #1363DF);
    outline-offset: 3px;
}

.mci-wcu-section.wcu__only .mci-wcu-cta__arrow {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.mci-wcu-section.wcu__only .mci-wcu-cta__btn:hover .mci-wcu-cta__arrow,
.mci-wcu-section.wcu__only .mci-wcu-cta__btn:focus-visible .mci-wcu-cta__arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .mci-wcu-section.wcu__only .mci-wcu-cta {
        margin-top: 36px;
    }

    .mci-wcu-section.wcu__only .mci-wcu-cta__btn {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 480px) {
    .mci-wcu-section.wcu__only .mci-wcu-cta__btn {
        max-width: none;
        font-size: 0.9375rem;
    }
}

/* ── CTA bas de section [our_particularities] ─────────── */
.mci-op-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    padding-top: 8px;
}

.mci-op-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--wcu-navy, #082A5E);
    font-family: 'Inter', 'Poppins', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 2px 0 rgba(255, 255, 255, 0.4) inset;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.mci-op-cta__btn:hover,
.mci-op-cta__btn:focus-visible {
    background: #f8fbff;
    color: var(--wcu-primary, #1363DF);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.mci-op-cta__btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.mci-op-cta__arrow {
    flex-shrink: 0;
    transition: transform 0.22s ease;
}

.mci-op-cta__btn:hover .mci-op-cta__arrow,
.mci-op-cta__btn:focus-visible .mci-op-cta__arrow {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .mci-op-cta {
        margin-top: 36px;
    }

    .mci-op-cta__btn {
        width: 100%;
        max-width: 360px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 480px) {
    .mci-op-cta__btn {
        max-width: none;
        font-size: 0.9375rem;
    }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
    .mci-op-section .mci-wcu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .mci-wcu-grid,
    .mci-op-section .mci-wcu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mci-op-section.has-bg .mci-wcu-card {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .mci-wcu-section {
        padding: 56px 0;
    }

    .mci-wcu-header {
        margin-bottom: 40px;
    }

    .mci-wcu-header-left {
        gap: 14px;
        margin-bottom: 12px;
    }

    .mci-wcu-title {
        font-size: clamp(1.55rem, 5vw, 2rem) !important;
    }

    .mci-wcu-header-right::before {
        margin: 0 auto 14px;
    }
}

@media (max-width: 540px) {
    .mci-wcu-grid,
    .mci-op-section .mci-wcu-grid {
        grid-template-columns: 1fr;
    }

    .mci-wcu-section:not(.mci-op-section) .mci-wcu-card {
        padding: 26px 22px 58px;
    }

    .mci-op-section.has-bg .mci-wcu-card {
        min-height: 0;
        padding: 28px 22px 26px;
    }
}
