/* =================================================================
   ABOUT PAGE | VefaConnect
   Page "Notre histoire / Pourquoi VefaConnect existe"
   Respecte le design system : primary #3498db, accent #ff4000
   ================================================================= */

.about-page {
    --about-primary: #3498db;
    --about-primary-dark: #217dbb;
    --about-primary-light: #eaf4fb;
    --about-accent: #ff4000;
    --about-accent-soft: #fff1eb;
    --about-ink: #1a2330;
    --about-ink-soft: #4a5566;
    --about-muted: #8a94a3;
    --about-line: #e4e8ee;
    --about-bg-soft: #f7f9fc;
    --about-radius-lg: 24px;
    --about-radius-md: 16px;
    --about-radius-sm: 10px;
    --about-shadow-sm: 0 2px 8px rgba(20, 30, 50, 0.04);
    --about-shadow-md: 0 8px 24px rgba(20, 30, 50, 0.08);
    --about-shadow-lg: 0 20px 60px rgba(20, 30, 50, 0.12);

    font-family: var(--font-primary, 'Segoe UI', sans-serif);
    color: var(--about-ink);
    line-height: 1.65;
}

.about-page .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* =====================================================
   HERO
   ===================================================== */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 5rem 0 6rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 64, 0, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 15% 80%, rgba(52, 152, 219, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, var(--about-bg-soft) 100%);
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(52, 152, 219, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(52, 152, 219, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 0%, transparent 75%);
    pointer-events: none;
}

.about-hero__container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(52, 152, 219, 0.10);
    color: var(--about-primary-dark);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
}

.about-hero__dot {
    width: 8px;
    height: 8px;
    background: var(--about-accent);
    border-radius: 50%;
    animation: aboutPulse 2s infinite;
}

@keyframes aboutPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.about-hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--about-ink);
    margin-bottom: 1.25rem;
}

.about-hero__title-highlight {
    color: var(--about-primary);
    position: relative;
    white-space: nowrap;
}

.about-hero__title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.18em;
    background: var(--about-accent);
    opacity: 0.25;
    border-radius: 4px;
    z-index: -1;
}

.about-hero__subtitle {
    font-size: 1.3rem;
    color: var(--about-ink-soft);
    margin-bottom: 2rem;
    font-weight: 400;
}

.about-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--about-muted);
}

.about-hero__meta i {
    color: var(--about-primary);
    margin-right: 0.4rem;
}

/* Photo */
.about-hero__photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero__photo-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.25), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.about-hero__photo {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: var(--about-shadow-lg);
    z-index: 1;
    transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
}

.about-hero__photo:hover {
    transform: scale(1.02) translateY(-4px);
}

.about-hero__photo-caption {
    position: absolute;
    bottom: -10px;
    background: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: var(--about-shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    text-align: center;
}

.about-hero__photo-caption strong {
    color: var(--about-ink);
    font-size: 0.95rem;
    line-height: 1.2;
}

.about-hero__photo-caption span {
    color: var(--about-primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   INTRO BOX (citable LLM)
   ===================================================== */
.about-intro {
    padding: 0 0 3rem;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.about-intro__box {
    background: #fff;
    border-radius: var(--about-radius-lg);
    padding: 2.5rem 3rem;
    box-shadow: var(--about-shadow-md);
    border-left: 5px solid var(--about-accent);
    position: relative;
}

.about-intro__box::before {
    content: '“';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 8rem;
    color: var(--about-accent);
    opacity: 0.28;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.about-intro__lead {
    position: relative;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--about-ink);
    margin: 0;
}

.about-intro__lead strong {
    color: var(--about-primary-dark);
}

/* =====================================================
   SECTION HEADER (réutilisable)
   ===================================================== */
.about-section-header {
    margin-bottom: 3rem;
}

.about-section-header--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.about-section-kicker {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--about-accent);
    margin-bottom: 0.8rem;
}

.about-section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--about-ink);
    margin: 0;
    letter-spacing: -0.015em;
}

.about-section-subtitle {
    font-size: 1.1rem;
    color: var(--about-ink-soft);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* =====================================================
   STORY / TIMELINE
   ===================================================== */
.about-story {
    padding: 5rem 0;
}

.about-timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(180deg, var(--about-primary) 0%, var(--about-line) 50%, var(--about-accent) 100%);
    border-radius: 2px;
}

.about-timeline__item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.about-timeline__item:last-child {
    margin-bottom: 0;
}

.about-timeline__marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--about-primary);
    color: var(--about-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 0 0 6px #fff, var(--about-shadow-sm);
    z-index: 1;
}

.about-timeline__marker--alert {
    border-color: var(--about-accent);
    color: var(--about-accent);
    background: var(--about-accent-soft);
}

.about-timeline__marker--win {
    border-color: #1ea968;
    color: #1ea968;
    background: #e8f7ef;
}

.about-timeline__marker--idea {
    border-color: #f5b400;
    color: #f5b400;
    background: #fff8e1;
}

.about-timeline__content {
    background: #fff;
    border: 1px solid var(--about-line);
    border-radius: var(--about-radius-md);
    padding: 1.8rem 2rem;
    box-shadow: var(--about-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-timeline__content:hover {
    transform: translateY(-3px);
    box-shadow: var(--about-shadow-md);
}

.about-timeline__date {
    display: inline-block;
    background: var(--about-primary-light);
    color: var(--about-primary-dark);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.about-timeline__content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--about-ink);
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
}

.about-timeline__content p {
    color: var(--about-ink-soft);
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.about-timeline__content p:last-child {
    margin-bottom: 0;
}

.about-timeline__content strong {
    color: var(--about-ink);
}

.about-timeline__highlight {
    background: linear-gradient(135deg, var(--about-primary-light), #fff);
    border-left: 3px solid var(--about-primary);
    padding: 1rem 1.25rem !important;
    border-radius: 8px;
    font-weight: 500;
    color: var(--about-ink) !important;
    margin-top: 1rem !important;
}

.about-bullets {
    margin: 1rem 0 0 0;
    padding-left: 0;
    list-style: none;
}

.about-bullets li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--about-ink-soft);
    line-height: 1.6;
}

.about-bullets li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.1em;
    color: #1ea968;
    font-size: 0.85rem;
    background: #e8f7ef;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   CONSTAT
   ===================================================== */
.about-constat {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--about-ink) 0%, #2a3548 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-constat::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.15), transparent 70%);
    border-radius: 50%;
}

.about-constat__inner {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-constat__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.about-constat__lead {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-constat__lead strong {
    color: #fff;
    background: linear-gradient(180deg, transparent 60%, rgba(255, 64, 0, 0.4) 60%);
}

.about-constat__list {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-constat__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--about-radius-md);
    padding: 1.2rem 1.5rem;
    backdrop-filter: blur(10px);
}

.about-constat__item i {
    color: var(--about-accent);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.15em;
}

.about-constat__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-constat__outro {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 0;
    opacity: 0.85;
    line-height: 1.7;
}

.about-constat__outro strong {
    color: var(--about-accent);
}

/* =====================================================
   MISSION + FEATURES
   ===================================================== */
.about-mission {
    padding: 6rem 0;
    background: var(--about-bg-soft);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.about-feature {
    background: #fff;
    border-radius: var(--about-radius-md);
    padding: 2rem;
    border: 1px solid var(--about-line);
    transition: all 0.3s cubic-bezier(.2, .8, .2, 1);
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(52, 152, 219, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.about-feature:hover {
    transform: translateY(-6px);
    border-color: var(--about-primary);
    box-shadow: var(--about-shadow-md);
}

.about-feature:hover::before {
    opacity: 1;
}

.about-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    position: relative;
    z-index: 1;
}

.about-feature h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--about-ink);
    margin: 0 0 0.6rem 0;
    position: relative;
    z-index: 1;
}

.about-feature p {
    color: var(--about-ink-soft);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* =====================================================
   ENGAGEMENTS
   ===================================================== */
.about-engagements {
    padding: 6rem 0;
    background: #fff;
}

.about-engagements__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.about-engagement {
    padding: 2rem;
    background: linear-gradient(180deg, var(--about-bg-soft), #fff);
    border-radius: var(--about-radius-md);
    border-top: 4px solid var(--about-primary);
    position: relative;
    transition: transform 0.3s;
}

.about-engagement:nth-child(2) { border-top-color: var(--about-accent); }
.about-engagement:nth-child(3) { border-top-color: #1ea968; }
.about-engagement:nth-child(4) { border-top-color: #f5b400; }

.about-engagement:hover {
    transform: translateY(-4px);
}

.about-engagement__num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--about-primary);
    line-height: 1;
    margin-bottom: 0.8rem;
    opacity: 0.4;
    letter-spacing: -0.05em;
}

.about-engagement:nth-child(2) .about-engagement__num { color: var(--about-accent); }
.about-engagement:nth-child(3) .about-engagement__num { color: #1ea968; }
.about-engagement:nth-child(4) .about-engagement__num { color: #f5b400; }

.about-engagement h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--about-ink);
    margin: 0 0 0.6rem 0;
}

.about-engagement p {
    color: var(--about-ink-soft);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================================================
   POUR LES PROMOTEURS
   ===================================================== */
.about-promoters {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.about-promoters__box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--about-bg-soft) 0%, #fff 100%);
    border: 1px solid var(--about-line);
    border-radius: var(--about-radius-lg);
    box-shadow: var(--about-shadow-md);
    position: relative;
    overflow: hidden;
}

.about-promoters__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--about-primary), var(--about-accent));
}

.about-promoters__icon {
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--about-primary), var(--about-primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 12px 28px rgba(52, 152, 219, 0.35);
}

.about-promoters__title {
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--about-ink);
    margin: 0.5rem 0 1.2rem 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.about-promoters__content p {
    color: var(--about-ink-soft);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.about-promoters__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.about-promoters__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(.2, .8, .2, 1);
    border: 2px solid transparent;
}

.about-promoters__btn--primary {
    background: var(--about-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.3);
}

.about-promoters__btn--primary:hover {
    background: var(--about-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(52, 152, 219, 0.4);
}

.about-promoters__btn--ghost {
    background: transparent;
    color: var(--about-primary-dark);
    border-color: var(--about-line);
}

.about-promoters__btn--ghost:hover {
    background: var(--about-primary-light);
    border-color: var(--about-primary);
    color: var(--about-primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .about-promoters {
        padding: 3.5rem 0;
    }

    .about-promoters__box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .about-promoters__icon {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .about-promoters__actions {
        justify-content: center;
    }

    .about-promoters__btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   FAQ
   ===================================================== */
.about-faq {
    padding: 6rem 0;
    background: var(--about-bg-soft);
}

.about-faq__accordion {
    max-width: 820px;
    margin: 0 auto;
}

.about-faq__accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--about-line);
    border-radius: var(--about-radius-md) !important;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.about-faq__accordion .accordion-button {
    background: #fff;
    color: var(--about-ink);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.3rem 1.5rem;
    box-shadow: none;
    border-radius: var(--about-radius-md) !important;
}

.about-faq__accordion .accordion-button:not(.collapsed) {
    color: var(--about-primary-dark);
    background: var(--about-primary-light);
}

.about-faq__accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.about-faq__accordion .accordion-body {
    color: var(--about-ink-soft);
    line-height: 1.7;
    padding: 0.5rem 1.5rem 1.5rem;
}

.about-faq__accordion .accordion-body a {
    color: var(--about-primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.about-faq__accordion .accordion-body a:hover {
    color: var(--about-accent);
}

/* =====================================================
   AUTHOR BOX
   ===================================================== */
.about-author {
    padding: 5rem 0;
    background: #fff;
}

.about-author__box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    background: linear-gradient(135deg, var(--about-primary-light) 0%, #fff 100%);
    border: 1px solid var(--about-line);
    border-radius: var(--about-radius-lg);
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-author__photo-wrap {
    flex-shrink: 0;
}

.about-author__photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    border: 4px solid #fff;
    box-shadow: var(--about-shadow-md);
}

.about-author__label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--about-primary);
    margin-bottom: 0.4rem;
}

.about-author__name {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--about-ink);
}

.about-author__role {
    color: var(--about-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0.2rem 0 1rem;
}

.about-author__bio {
    color: var(--about-ink-soft);
    line-height: 1.7;
    margin: 0 0 1.2rem 0;
    font-size: 0.95rem;
}

.about-author__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.about-author__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--about-primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid var(--about-line);
    transition: all 0.2s;
}

.about-author__links a:hover {
    background: var(--about-primary);
    color: #fff;
    border-color: var(--about-primary);
    transform: translateY(-2px);
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.about-cta {
    padding: 5rem 0 7rem;
    background: var(--about-bg-soft);
}

.about-cta__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-primary-dark) 50%, #1f4e79 100%);
    color: #fff;
    padding: 4rem 2rem;
    border-radius: var(--about-radius-lg);
    box-shadow: 0 30px 80px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.about-cta__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 64, 0, 0.2), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.about-cta__title {
    position: relative;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.about-cta__lead {
    position: relative;
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-cta__actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(.2, .8, .2, 1);
    border: 2px solid transparent;
}

.about-cta__btn--primary {
    background: var(--about-accent);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 64, 0, 0.35);
}

.about-cta__btn--primary:hover {
    background: #fff;
    color: var(--about-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 64, 0, 0.45);
}

.about-cta__btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.about-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
    .about-hero {
        padding: 3.5rem 0 4.5rem;
    }

    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-hero__meta {
        justify-content: center;
    }

    .about-hero__eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero__photo {
        max-width: 280px;
    }

    .about-intro__box {
        padding: 2rem 1.5rem;
    }

    .about-intro__box::before {
        top: -20px;
        left: 15px;
        font-size: 6rem;
    }

    .about-intro__lead {
        font-size: 1.05rem;
    }

    .about-story,
    .about-mission,
    .about-engagements,
    .about-faq,
    .about-author,
    .about-constat {
        padding: 4rem 0;
    }

    .about-timeline {
        padding-left: 0.5rem;
    }

    .about-timeline__item {
        padding-left: 65px;
    }

    .about-timeline__marker {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .about-timeline__content {
        padding: 1.4rem 1.4rem;
    }

    .about-timeline__content h3 {
        font-size: 1.15rem;
    }

    .about-author__box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .about-author__photo {
        margin: 0 auto;
        width: 110px;
        height: 110px;
    }

    .about-author__links {
        justify-content: center;
    }

    .about-cta__inner {
        padding: 3rem 1.5rem;
    }

    .about-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero__title {
        font-size: 1.85rem;
    }

    .about-hero__subtitle {
        font-size: 1.05rem;
    }

    .about-hero__meta {
        flex-direction: column;
        gap: 0.6rem;
        font-size: 0.85rem;
    }

    .about-timeline::before {
        left: 20px;
    }

    .about-timeline__item {
        padding-left: 56px;
    }

    .about-timeline__marker {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .about-section-title {
        font-size: 1.5rem;
    }
}
