/* 
   MOT DU PRÉSIDENT - DESIGN SIMPLE & ÉPURÉ
 */
:root {
    --bleu: #173F8A;
    --bleu-dark: #0F2D5E;
    --orange: #F39C12;
    --noir: #101828;
    --gris: #667085;
    --off: #F7F9FB;
    --border: #E4E7EC;
    --font-titres: 'Sora', sans-serif;  
    --font-corps: 'Inter', sans-serif;
}

.mot-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; }

/* 
   OUVERTURE
 */
.mot-hero {
    background: var(--off);
    text-align: center;
    padding: 100px 24px 80px;
    border-bottom: 1px solid var(--border);
}

.mot-label {
    display: inline-block;
    font-family: var(--font-titres);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 20px;
}

.mot-hero h1 {
    font-family: var(--font-titres);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--noir);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.mot-hero h1 span { color: var(--bleu); }

.mot-subtitle {
    font-family: var(--font-corps);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gris);
    max-width: 640px;
    margin: 0 auto;
}

/* 
   SECTIONS
 */
.mot-section { padding: 80px 0; background: #FFFFFF; }
.mot-alt { background: var(--off); }

/* 
   MESSAGE : PHOTO + INTRO
 */
.mot-message-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

/* Photo du président */
.mot-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(23, 63, 138, 0.18);
}

.mot-photo img {
    width: 100%;
    display: block;
}

.mot-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 45, 94, 0.94), transparent);
    padding: 70px 20px 18px;
    color: #FFFFFF;
}

.mot-photo-caption strong {
    display: block;
    font-family: var(--font-titres);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.mot-photo-caption span {
    display: block;
    font-family: var(--font-titres);
    font-size: 0.72rem;
    line-height: 1.5;
    opacity: 0.85;
}

/* Intro */
.mot-intro .mot-label { margin-bottom: 14px; }

.mot-intro h2 {
    font-family: var(--font-titres);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 18px;
}

.mot-quote {
    border-left: 3px solid var(--orange);
    background: rgba(23, 63, 138, 0.04);
    border-radius: 0 10px 10px 0;
    padding: 16px 22px;
    margin: 20px 0;
    font-family: var(--font-corps);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--bleu);
    line-height: 1.7;
}

.mot-intro p,
.mot-content p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    color: var(--gris);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* Suite du message + signature */
.mot-content {
    max-width: 820px;
    margin: 0 auto;
}

.mot-signature {
    margin-top: 45px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: right;
}

.mot-signature-text {
    display: block;
    font-family: var(--font-corps);
    font-style: italic;
    color: var(--gris);
    margin-bottom: 6px;
}

.mot-signature strong {
    display: block;
    font-family: var(--font-titres);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--bleu);
    margin-bottom: 4px;
}

.mot-signature span:last-child {
    display: block;
    font-family: var(--font-titres);
    font-size: 0.78rem;
    color: var(--gris);
}

/* 
   VISION
 */
.mot-head { text-align: center; margin-bottom: 50px; }

.mot-head h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 10px;
}

.mot-head h2 span { color: var(--bleu); }

.mot-head p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
}

.mot-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mot-vision-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 38px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.mot-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(23, 63, 138, 0.12);
    border-color: transparent;
}

.mot-vision-icon {
    width: 62px;
    height: 62px;
    background: var(--off);
    color: var(--bleu);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.mot-vision-card:hover .mot-vision-icon {
    background: var(--bleu);
    color: #FFFFFF;
    border-color: var(--bleu);
}

.mot-vision-card h3 {
    font-family: var(--font-titres);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 12px;
}

.mot-vision-card p {
    font-family: var(--font-corps);
    font-size: 0.98rem;
    color: var(--gris);
    line-height: 1.75;
}

/* 
   ENGAGEMENT
 */
.mot-cta { text-align: center; }

.mot-cta h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 12px;
}

.mot-cta > p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
    max-width: 680px;
    margin: 0 auto;
}

.mot-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 45px 0;
}

.mot-stat strong {
    display: block;
    font-family: var(--font-titres);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--bleu);
    line-height: 1.1;
    margin-bottom: 6px;
}

.mot-stat span {
    font-family: var(--font-titres);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gris);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mot-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--bleu);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 26px rgba(23, 63, 138, 0.25);
}

.mot-btn:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(243, 156, 18, 0.4);
}

.mot-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: #FFFFFF;
    color: var(--bleu);
    border: 1px solid var(--border);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.mot-btn-ghost:hover {
    border-color: var(--bleu);
    transform: translateY(-3px);
}

/* 
   RESPONSIVE
 */
@media (max-width: 900px) {
    .mot-message-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mot-photo {
        max-width: 380px;
        margin: 0 auto;
    }
    .mot-vision-grid { grid-template-columns: 1fr; gap: 22px; }
    .mot-stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 640px) {
    .mot-hero { padding: 80px 20px 60px; }
    .mot-section { padding: 60px 0; }
    .mot-signature { text-align: center; }
    .mot-cta-buttons { flex-direction: column; }
    .mot-btn, .mot-btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .mot-hero h1 { font-size: 1.9rem; }
    .mot-stat strong { font-size: 1.8rem; }
    .mot-btn, .mot-btn-ghost { padding: 13px 20px; font-size: 0.88rem; }
}