/* ════════════════════════════════
   À PROPOS — Page styles
   Cohérence totale avec la home
════════════════════════════════ */

/* ─── Shared (repris de la home) ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: var(--ncp-primary);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(28, 42, 58, 0.2);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(28, 42, 58, 0.25);
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-outline:hover {
    background: rgba(28, 42, 58, 0.04);
    border-color: rgba(28, 42, 58, 0.4);
}

.btn-primary--large {
    padding: 12px 28px;
    font-size: 15px;
}
.btn-primary--large:hover {
    box-shadow: 0 6px 20px rgba(28, 42, 58, 0.25);
}

.btn-outline--light {
    border-color: rgba(28, 42, 58, 0.2);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ncp-primary);
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    position: relative;
    background: #fff;
    z-index: 0;
}
.section-label::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 100px;
    background: conic-gradient(
        from var(--label-angle, 0deg),
        var(--ncp-secondary),
        var(--ncp-primary),
        var(--ncp-secondary),
        var(--ncp-primary),
        var(--ncp-secondary)
    );
    z-index: -2;
    animation: labelGlow 4s linear infinite;
}
.section-label::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 100px;
    background: #fff;
    z-index: -1;
}
@property --label-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes labelGlow {
    to { --label-angle: 360deg; }
}

.section-label svg {
    width: 14px;
    height: 14px;
    stroke: var(--ncp-primary);
    fill: none;
    stroke-width: 2;
}

/* Scroll reveal initial state */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

/* Bold accent color */
.text-accent {
    color: var(--ncp-primary);
    font-weight: 700;
}

/* ════════════════════════════════
   SECTION 1 — HERO
════════════════════════════════ */
.about-hero {
    position: relative;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

/* ─── Mesh gradient animé ─── */
.about-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(216, 225, 234, 0.7), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(28, 42, 58, 0.12), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(216, 225, 234, 0.4), transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(201, 183, 156, 0.08), transparent 40%),
        #F7F8FA;
    animation: aboutMeshMove 16s ease infinite;
}

@keyframes aboutMeshMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 70% 20%; }
    25% { background-position: 10% 20%, 90% 80%, 40% 60%, 60% 30%; }
    50% { background-position: 5% 10%, 95% 90%, 55% 45%, 75% 15%; }
    75% { background-position: 15% 5%, 85% 85%, 45% 55%, 65% 25%; }
}

/* ─── Glows décoratifs ─── */
.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}
.about-hero-glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.5), transparent 70%);
    top: -120px;
    left: -150px;
}
.about-hero-glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 42, 58, 0.08), transparent 70%);
    bottom: -80px;
    right: -80px;
}
.about-hero-glow--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 183, 156, 0.1), transparent 70%);
    top: 30%;
    right: 15%;
}

/* ─── Éléments décoratifs flottants ─── */
.about-hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(28, 42, 58, 0.06);
}
.decor-circle--1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -60px;
    animation: decorFloat 20s ease-in-out infinite;
}
.decor-circle--2 {
    width: 180px;
    height: 180px;
    bottom: 15%;
    left: 5%;
    border-color: rgba(216, 225, 234, 0.4);
    animation: decorFloat 16s ease-in-out infinite reverse;
}
.decor-circle--3 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 12%;
    border-color: rgba(28, 42, 58, 0.04);
    animation: decorFloat 12s ease-in-out infinite 2s;
}

.decor-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(28, 42, 58, 0.06), transparent);
}
.decor-line--1 {
    height: 200px;
    top: 8%;
    left: 20%;
    animation: decorFloat 14s ease-in-out infinite;
}
.decor-line--2 {
    height: 140px;
    bottom: 12%;
    right: 22%;
    animation: decorFloat 18s ease-in-out infinite reverse;
}

.decor-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(28, 42, 58, 0.08);
    animation: decorPulse 6s ease-in-out infinite;
}
.decor-dot--1 { width: 5px; height: 5px; top: 18%; left: 30%; animation-delay: 0s; }
.decor-dot--2 { width: 4px; height: 4px; top: 65%; right: 28%; animation-delay: -1.5s; }
.decor-dot--3 { width: 6px; height: 6px; bottom: 25%; left: 18%; animation-delay: -3s; }
.decor-dot--4 { width: 3px; height: 3px; top: 35%; right: 12%; animation-delay: -4.5s; }

@keyframes decorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes decorPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.5); }
}

/* ─── Contenu ─── */
.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.about-hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(36px, calc(28px + 2.5vw), 60px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.about-hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
}

.about-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(17px, calc(15px + 0.3vw), 20px);
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
    opacity: 0;
    transform: translateY(20px);
}

/* ─── CTAs ─── */
.about-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
}

/* ─── Preuve sociale ─── */
.about-hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(28, 42, 58, 0.03);
    border: 1px solid rgba(28, 42, 58, 0.06);
    border-radius: 100px;
    opacity: 0;
    transform: translateY(16px);
}

.about-hero-stars {
    display: flex;
    gap: 1px;
}
.about-hero-stars svg {
    width: 14px;
    height: 14px;
    fill: #C9A84C;
}

.about-hero-proof-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.01em;
}
.about-hero-proof-text strong {
    color: var(--text);
    font-weight: 500;
}

/* ════════════════════════════════
   SECTION 2 — NOTRE HISTOIRE
════════════════════════════════ */
.history {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    background: #fff;
    /* No overflow:hidden — required for position:sticky to work */
}

.history-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.25), transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(120px);
}

.history-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

/* ─── Chiffres clés — colonne gauche sticky ─── */
.history-metrics {
    flex: 0 0 38%;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(28, 42, 58, 0.08);
}

.metric-number {
    font-family: var(--font-heading);
    font-size: clamp(36px, calc(30px + 1.5vw), 52px);
    font-weight: 700;
    color: var(--ncp-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric-prefix {
    font-family: var(--font-heading);
    font-size: clamp(28px, calc(24px + 1vw), 40px);
    font-weight: 700;
    color: var(--ncp-primary);
    line-height: 1;
}

.metric-suffix {
    font-family: var(--font-heading);
    font-size: clamp(20px, calc(18px + 0.5vw), 28px);
    font-weight: 600;
    color: var(--ncp-primary);
    line-height: 1;
    display: inline;
}

.metric-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 6px;
}

/* ─── Texte narratif — colonne droite ─── */
.history-text {
    flex: 1;
    min-width: 0;
    padding-bottom: 40px;
}

.history-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, calc(24px + 1.1vw), 40px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
}

.history-block {
    margin-bottom: 48px;
}
.history-block:last-child {
    margin-bottom: 0;
}

.history-block p {
    font-family: var(--font-body);
    font-size: clamp(17px, calc(16px + 0.3vw), 20px);
    color: var(--text);
    line-height: 1.8;
}

/* SplitText words inherit color, accent words keep project color */
.history-block p .text-accent {
    color: var(--ncp-primary);
}

/* ════════════════════════════════
   SECTION 3 — NOS VALEURS
════════════════════════════════ */
.values {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    background: var(--bg-light);
}

.values-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(140px);
    background: radial-gradient(circle, rgba(28, 42, 58, 0.08), transparent 65%);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: top 0.8s ease, background 0.8s ease;
}

.values-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.values-header {
    text-align: center;
    margin-bottom: 64px;
}

.values-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, calc(24px + 1.1vw), 40px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* ─── Layout valeurs ─── */
.values-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

/* ─── Navigation gauche (numéro + ligne) ─── */
.values-nav {
    flex: 0 0 25%;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.values-big-number {
    font-family: var(--font-heading);
    font-size: clamp(120px, calc(100px + 5vw), 200px);
    font-weight: 700;
    color: var(--ncp-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    transition: opacity 0.6s ease, transform 0.6s ease;
    user-select: none;
}

.values-progress-track {
    width: 2px;
    height: 300px;
    background: var(--border-light);
    border-radius: 2px;
    position: relative;
    margin-top: 32px;
}

.values-progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--ncp-primary);
    border-radius: 2px;
    transition: height 0.4s ease;
}

.values-progress-dot {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--ncp-primary);
    border: 3px solid var(--bg-light);
    border-radius: 50%;
    transition: top 0.4s ease;
    box-shadow: 0 0 0 4px rgba(28, 42, 58, 0.1);
}

/* ─── Contenu droite ─── */
.values-content {
    flex: 1;
    min-width: 0;
}

.value-item {
    position: relative;
    padding: 56px 0;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.value-item:last-child {
    border-bottom: none;
}

/* ─── Watermark vertical — dans le nav sticky, bord gauche ─── */
.values-watermark {
    position: absolute;
    left: -45px;
    top: 5%;
    transform-origin: 0 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--ncp-primary);
    opacity: 0.12;
    line-height: 1;
    letter-spacing: 0.08em;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.value-item-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, calc(20px + 0.5vw), 28px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 16px;
}

.value-item-text {
    font-family: var(--font-body);
    font-size: clamp(16px, calc(15px + 0.2vw), 18px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
}

.value-item-card {
    padding: 20px 24px;
    border-radius: 16px;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(216, 225, 234, 0.3), transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(28, 42, 58, 0.04), transparent 60%),
        #fff;
    border: 1px solid var(--border-light);
    max-width: 480px;
}

.value-item-card p {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
}

/* ════════════════════════════════
   SECTION 4 — CERTIFICATIONS
════════════════════════════════ */
.certifications {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    background: #fff;
    overflow: hidden;
}

.certifications-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 225, 234, 0.3), transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(120px);
}

.certifications-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.certifications-header {
    text-align: center;
    margin-bottom: 56px;
}

.certifications-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, calc(24px + 1.1vw), 40px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.certifications-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, calc(14px + 0.3vw), 18px);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Carrousel logos ─── */
.certifications-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 64px;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
}

.certifications-track {
    display: flex;
    width: max-content;
    animation: certScroll 40s linear infinite;
}

.certifications-track:hover {
    animation-play-state: paused;
}

.certifications-track-inner {
    display: flex;
    gap: 40px;
    padding-right: 40px;
    align-items: center;
}

.cert-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px 16px;
    transition: box-shadow 0.3s var(--ease);
}
.cert-logo:hover {
    box-shadow: 0 4px 16px rgba(28, 42, 58, 0.08);
}

.cert-logo svg {
    width: 100%;
    height: 100%;
}

@keyframes certScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Engagements ─── */
.engagements {
    max-width: 800px;
    margin: 0 auto;
}

.engagement-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}
.engagement-item:last-child {
    border-bottom: none;
}

.engagement-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engagement-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--ncp-primary);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.engagement-title {
    font-family: var(--font-heading);
    font-size: clamp(18px, calc(16px + 0.3vw), 22px);
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 8px;
}

.engagement-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ════════════════════════════════
   SECTION 5 — CTA FINAL
════════════════════════════════ */
.final-cta {
    position: relative;
    padding: clamp(48px, 6vw, 96px) 0;
    overflow: hidden;
    text-align: center;
}

.final-cta-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(216, 225, 234, 0.6), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(28, 42, 58, 0.1), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(216, 225, 234, 0.3), transparent 60%),
        #F7F8FA;
    animation: meshMove 12s ease infinite;
}

@keyframes meshMove {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    33% { background-position: 10% 20%, 90% 80%, 40% 60%; }
    66% { background-position: 5% 10%, 95% 90%, 55% 45%; }
}

.final-cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(28, 42, 58, 0.12);
    animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 9s; }
.particle:nth-child(2) { top: 60%; left: 75%; animation-delay: -2s; animation-duration: 7s; width: 3px; height: 3px; }
.particle:nth-child(3) { top: 35%; left: 85%; animation-delay: -4s; animation-duration: 11s; width: 5px; height: 5px; }
.particle:nth-child(4) { top: 75%; left: 25%; animation-delay: -1s; animation-duration: 8s; }
.particle:nth-child(5) { top: 15%; left: 55%; animation-delay: -3s; animation-duration: 10s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(15px, -20px); opacity: 0.6; }
    50% { transform: translate(-10px, -35px); opacity: 0.4; }
    75% { transform: translate(20px, -15px); opacity: 0.5; }
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, calc(28px + 2.5vw), 56px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, calc(14px + 0.3vw), 20px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.final-cta-reassurance {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
    .history-inner { gap: 40px; }
    .history-metrics { flex: 0 0 35%; }
    .values-layout { gap: 40px; }
    .values-nav { flex: 0 0 20%; }
    .values-big-number { font-size: clamp(80px, calc(60px + 4vw), 140px); }
}

@media (max-width: 768px) {
    /* Hero */
    .about-hero {
        min-height: auto;
        padding: 80px 0 64px;
    }
    .about-hero-glow--1 { width: 300px; height: 300px; top: -80px; left: -100px; }
    .about-hero-glow--2 { width: 250px; height: 250px; }
    .about-hero-glow--3 { display: none; }
    .decor-circle--1 { width: 180px; height: 180px; }
    .decor-circle--2 { width: 100px; height: 100px; }
    .decor-circle--3 { display: none; }
    .decor-line--1, .decor-line--2 { display: none; }
    .about-hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    .about-hero-ctas .btn-primary,
    .about-hero-ctas .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Histoire */
    .history-inner {
        flex-direction: column;
        gap: 40px;
    }
    .history-metrics {
        position: static;
        flex: none;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .metric-card { padding: 20px 16px; }

    /* Valeurs */
    .values-watermark { display: none; }
    .values-layout {
        flex-direction: column;
        gap: 0;
    }
    .values-nav {
        position: static;
        flex: none;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding-top: 0;
        margin-bottom: 24px;
    }
    .values-big-number {
        font-size: 80px;
    }
    .values-progress-track {
        display: none;
    }
    .value-item { padding: 36px 0; }
    .value-watermark { font-size: 50px; }

    /* Certifications */
    .engagement-item { gap: 16px; padding: 24px 0; }
    .engagement-icon { width: 44px; height: 44px; border-radius: 12px; }
    .engagement-icon svg { width: 20px; height: 20px; }

    /* CTA Final */
    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .final-cta-actions .btn-primary--large,
    .final-cta-actions .btn-outline--light {
        width: 100%;
        max-width: 360px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .history-metrics {
        grid-template-columns: 1fr;
    }
}
