/* ════════════════════════════════════════════════════════
   CMCI OBILI — STYLES DE LA PAGE D'ACCUEIL (v2.0 Ultra-Modern)
   Hero, sections, publications, valeurs, cultes, CTA, verset
   "Toute la gloire à Dieu" 🙏
   ════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   1. HERO — Immersif, Cinématique, Glassmorphism
   ════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-dark);
    margin-top: calc(var(--nav-h) * -1);
    padding-top: var(--nav-h);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1508739773434-c26b3d09e071?w=2000&q=85')
        center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 22s ease-in-out infinite alternate;
    will-change: transform;
    filter: saturate(1.1) contrast(1.05);
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.14); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.05;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem 1.5rem;
    max-width: 880px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    margin-bottom: 2rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-pill);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-eyebrow i { 
    color: var(--accent-light); 
    text-shadow: 0 0 10px var(--accent-light);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* TITRE MULTICOLORE WAOUH */
.hero-title span {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-family: var(--font-accent);
    font-weight: 600;
    filter: drop-shadow(0 4px 15px rgba(201, 164, 76, 0.4));
}

.hero-verse {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-verse em { 
    color: var(--accent-light); 
    font-style: normal; 
    font-weight: 600; 
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.btn-hero-primary {
    background: var(--gradient-accent);
    color: #1a0f2e;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2.4rem;
    border-radius: var(--r-pill);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(201, 164, 76, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(201, 164, 76, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
    color: #1a0f2e;
}

.btn-hero-primary:hover::before { transform: translateX(100%); }

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1rem 2.3rem;
    border-radius: var(--r-pill);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    font-family: inherit;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(5px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
    animation: fadeUp 1s var(--ease-out) 0.6s both;
}

.hero-scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50%      { opacity: 1; transform: scaleY(1); }
}

/* ════════════════════════════════════════════════════════
   2. STATS BANNER — Bento Glassmorphism sur dégradé
   ════════════════════════════════════════════════════════ */
.stats-banner {
    background: var(--gradient-primary);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-banner > * { position: relative; }
.stat-item { text-align: center; }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 0.2rem;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0.5rem 0;
}

/* ════════════════════════════════════════════════════════
   3. SECTIONS GÉNÉRIQUES — Typographie Magazine
   ════════════════════════════════════════════════════════ */
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-soft { background: var(--bg-soft); }

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-soft), transparent);
    max-width: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

/* TITRE MULTICOLORE WAOUH */
.section-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-family: var(--font-accent);
    font-weight: 600;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 620px;
}

/* ════════════════════════════════════════════════════════
   4. PUBLICATION CARDS — Bento Cards avec Lueur
   ════════════════════════════════════════════════════════ */
.pub-card {
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.pub-card:hover {
    transform: translateY(-10px);
    border-color: color-mix(in srgb, var(--primary) 30%, transparent);
    box-shadow: 0 25px 50px -15px color-mix(in srgb, var(--primary) 25%, transparent);
}

.pub-img-wrap {
    position: relative;
    padding-top: 58%;
    overflow: hidden;
    background: var(--bg-soft);
}

.pub-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.pub-card:hover .pub-img-wrap img { 
    transform: scale(1.08); 
    filter: brightness(1.05);
}

.pub-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pub-card:hover .pub-img-wrap::after { opacity: 1; }

.pub-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.pub-body {
    padding: 1.8rem 1.75rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pub-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.pub-meta i { color: var(--accent); margin-right: 0.35rem; }

.pub-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.pub-card:hover .pub-title { color: var(--primary); }

.pub-excerpt {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pub-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    margin-top: auto;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.pub-link:hover { 
    gap: 0.9rem; 
    color: var(--accent); 
}

.pub-link i { font-size: 0.8rem; }

.empty-state {
    text-align: center;
    padding: 6rem 2rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-radius: 24px;
    border: 1px dashed var(--border-strong);
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--border-strong);
    margin-bottom: 1.5rem;
}

.empty-state h4 {
    font-family: var(--font-display);
    color: var(--text);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

/* ════════════════════════════════════════════════════════
   5. VALEURS — Cartes Interactives Bento
   ════════════════════════════════════════════════════════ */
.value-card {
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, var(--primary-soft) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px color-mix(in srgb, var(--primary) 20%, transparent);
    border-color: color-mix(in srgb, var(--primary) 30%, transparent);
}

.value-card:hover::before { opacity: 1; }

.value-card > * { position: relative; z-index: 1; transition: all 0.3s ease; }

.value-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px; /* Bento style */
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 50%; /* Devient rond au survol */
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 15px 25px -5px var(--primary);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ════════════════════════════════════════════════════════
   6. CULTES — Glassmorphism Header
   ════════════════════════════════════════════════════════ */
.culte-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.culte-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px color-mix(in srgb, var(--primary) 25%, transparent);
}

.culte-header {
    background: var(--gradient-primary);
    padding: 1.5rem 1.75rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.culte-header::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.culte-header i { 
    font-size: 1.6rem; 
    color: #fff; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.culte-header h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #fff;
    z-index: 1;
}

.culte-header span {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.culte-body {
    padding: 1.75rem 1.75rem 2rem;
    background: var(--surface);
}

.culte-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.culte-time i { 
    color: var(--accent); 
    width: 20px; 
    font-size: 1.1rem;
}

.culte-body p { 
    font-size: 0.92rem; 
    color: var(--text-muted); 
    margin: 0; 
    line-height: 1.75; 
}

.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 2.5rem;
}

.ornament-line { 
    flex: 1; 
    height: 1px; 
    background: linear-gradient(90deg, var(--border), transparent);
    max-width: 100px; 
}

.ornament-cross { 
    color: var(--accent); 
    font-size: 1rem;
    text-shadow: 0 0 8px var(--accent);
}

/* ════════════════════════════════════════════════════════
   7. MAP — Cinematic Placeholder
   ════════════════════════════════════════════════════════ */
.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px -15px color-mix(in srgb, var(--primary) 15%, transparent);
    background: var(--bg-alt);
}

.map-placeholder {
    height: 450px;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, var(--primary-soft) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 50%);
    opacity: 0.8;
}

.map-placeholder > * { position: relative; z-index: 1; }

.map-placeholder i { 
    font-size: 3.5rem; 
    color: var(--primary); 
    opacity: 0.6; 
    filter: drop-shadow(0 10px 20px var(--primary-soft));
}

.map-placeholder h5 {
    font-family: var(--font-display);
    font-weight: 800;
    margin: 0;
    font-size: 1.5rem;
    color: var(--text);
}

.map-placeholder p { 
    font-size: 0.95rem; 
    color: var(--text-muted); 
    margin: 0; 
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.9rem 1.8rem;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: 0 10px 25px -5px var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px var(--primary);
    color: #fff;
}

/* ════════════════════════════════════════════════════════
   8. CTA SECTION — Immersif Glow
   ════════════════════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 7rem 0;
    text-align: center;
    overflow: hidden;
    background:
        url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=2000&q=85')
        center/cover fixed no-repeat;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 45, 142, 0.95) 0%, rgba(61, 27, 102, 0.98) 100%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section > * { position: relative; z-index: 1; }

.cta-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-light);
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 15px rgba(201, 164, 76, 0.4);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

/* TITRE MULTICOLORE WAOUH */
.cta-title span {
    background: linear-gradient(135deg, var(--accent-light) 0%, #fff 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
    font-family: var(--font-accent);
    font-weight: 600;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-accent);
    color: #1a0f2e;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1.1rem 2.5rem;
    border-radius: var(--r-pill);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 35px rgba(201, 164, 76, 0.45);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(201, 164, 76, 0.6);
    color: #1a0f2e;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 2.3rem;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    font-family: inherit;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* ════════════════════════════════════════════════════════
   9. VERSET DU JOUR — Editorial Typographic
   ════════════════════════════════════════════════════════ */
.verse-section {
    background: var(--bg-alt);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.verse-section::before {
    content: '"';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 20rem;
    background: linear-gradient(135deg, var(--primary-soft) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    pointer-events: none;
    font-weight: 700;
}

.verse-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 15px 30px -10px var(--primary);
    position: relative;
    transform: rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.verse-section:hover .verse-icon { transform: rotate(5deg) scale(1.05); }

.verse-text {
    font-family: var(--font-accent);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-style: italic;
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto 1.5rem;
    position: relative;
    font-weight: 500;
}

.verse-ref {
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-soft);
    border-radius: var(--r-pill);
}

/* ════════════════════════════════════════════════════════
   10. RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
    .section { padding: 5rem 0; }
    .cmci-footer { padding: 4rem 0 0; }
}

@media (max-width: 767.98px) {
    .hero { min-height: 90vh; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 1rem; }
    .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
    .stats-banner { padding: 2.5rem 0; }
    .stat-divider { display: none; }
    .stat-item { margin-bottom: 1.5rem; }
    .cta-section { background-attachment: scroll; padding: 5rem 0; }
    .verse-section::before { font-size: 12rem; top: -1rem; }
}

/* ════════════════════════════════════════════════════════
   11. BANNIERE NOTRE VISION — Cinematic Overlay
   ════════════════════════════════════════════════════════ */
.vision-banner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vision-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
    will-change: transform;
}

.vision-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,15,0.65) 0%,
        rgba(10,10,15,0.35) 45%,
        rgba(10,10,15,0.85) 100%);
    backdrop-filter: blur(2px);
}

.vision-banner-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 3rem 1.5rem;
    text-align: center;
    color: #fff;
}

.vision-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin: 1rem 0 1.5rem;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* TITRE MULTICOLORE WAOUH */
.vision-banner-title span {
    background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.vision-banner-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    font-family: var(--font-accent);
    font-style: italic;
}

@media (max-width: 576px) {
    .vision-banner { min-height: 450px; }
    .vision-banner-text { font-size: 1rem; }
}

.vision-banner-portrait .vision-banner-bg {
    background-position: center top;
}

.vision-banner-portrait .vision-banner-overlay {
    background: linear-gradient(180deg,
        rgba(10,10,15,0.45) 0%,
        rgba(10,10,15,0.55) 40%,
        rgba(10,10,15,0.92) 100%);
}
