/* ============================================================
   YALPDEV.COM — PAGE À PROPOS
   a-propos.css

   Identité :
   - Orange : #ee812c
   - Bleu nuit : #071426
   - Blanc
   - Inter
   - Design simple, professionnel
   - Responsive
============================================================ */


/* ============================================================
   VARIABLES
============================================================ */

:root {
    --yalp-orange: #ee812c;
    --yalp-orange-dark: #d96d18;
    --yalp-orange-light: #fff3e8;
    --yalp-orange-soft: #fff8f3;

    --yalp-navy: #071426;
    --yalp-navy-light: #0d1c30;

    --yalp-text: #111827;
    --yalp-text-secondary: #475467;
    --yalp-text-muted: #667085;

    --yalp-white: #ffffff;
    --yalp-background: #f8fafc;

    --yalp-border: #e6eaf0;

    --yalp-green: #16a34a;
    --yalp-blue: #2563eb;

    --yalp-radius: 14px;
    --yalp-radius-small: 9px;

    --yalp-shadow:
        0 8px 30px rgba(7, 20, 38, 0.055);

    --yalp-shadow-hover:
        0 16px 40px rgba(7, 20, 38, 0.10);

    --yalp-container: 1180px;
}


/* ============================================================
   RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;

    background: var(--yalp-white);

    color: var(--yalp-text);

    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    font-size: 16px;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}


body,
button,
input,
textarea,
select {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    max-width: 100%;
}


button {
    font-family: inherit;
}


.container {
    width: 100%;
}


/* ============================================================
   HEADER
============================================================ */

.main-navbar {
    position: relative;
    z-index: 1000;

    width: 100%;

    height: 78px;

    background: var(--yalp-navy);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);
}


.navbar-container {
    width:
        min(
            calc(100% - 40px),
            var(--yalp-container)
        );

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 30px;
}


/* ============================================================
   LOGO
============================================================ */

.navbar-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: #fff;

    font-size: 24px;

    font-weight: 800;

    letter-spacing: -0.7px;

    line-height: 1;
}


.navbar-brand:hover {
    color: #fff;
}


.brand-logo {
    width: 29px;
    height: 29px;

    object-fit: contain;

    display: block;
}


.navbar-brand > span {
    white-space: nowrap;
}


.navbar-brand > span > span {
    color: var(--yalp-orange);
}


/* ============================================================
   DESKTOP NAVIGATION
============================================================ */

.desktop-navigation {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 4px;
}


.desktop-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 44px;

    padding: 0 13px;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 15px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        color .2s ease,
        background .2s ease;
}


.desktop-link i {
    font-size: 14px;
}


.desktop-link:hover {
    color: #fff;
}


.desktop-link.active {
    color: var(--yalp-orange);
}


.desktop-link.active::after {
    content: "";

    position: absolute;

    left: 12px;
    right: 12px;

    bottom: -1px;

    height: 2px;

    border-radius: 2px;

    background:
        var(--yalp-orange);
}


/* ============================================================
   LOGIN BUTTON
============================================================ */

.login-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    min-height: 44px;

    padding:
        0 18px;

    margin-left: 8px;

    border: 0;

    border-radius: 9px;

    background:
        var(--yalp-orange);

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.login-button:hover {
    background:
        var(--yalp-orange-dark);

    color: #fff;

    transform:
        translateY(-1px);

    box-shadow:
        0 7px 20px
        rgba(238, 129, 44, .25);
}


/* ============================================================
   USER MENU
============================================================ */

.yd-user-menu {
    position: relative;

    margin-left: 8px;
}


.yd-user-profile {
    display: flex;

    align-items: center;

    gap: 8px;

    min-height: 44px;

    padding:
        4px 8px 4px 5px;

    border-radius: 10px;

    color: #fff;

    transition:
        background .2s ease;
}


.yd-user-profile:hover {
    color: #fff;

    background:
        rgba(255,255,255,.07);
}


.yd-user-avatar {
    width: 35px;
    height: 35px;

    border-radius: 50%;

    object-fit: cover;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        2px solid
        rgba(255,255,255,.75);

    background:
        var(--yalp-orange);

    color: #fff;

    font-size: 13px;

    font-weight: 700;
}


.yd-user-name {
    max-width: 100px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    font-size: 13px;

    font-weight: 600;
}


.yd-user-profile > i {
    font-size: 11px;

    color:
        rgba(255,255,255,.65);
}


.yd-user-dropdown {
    position: absolute;

    top: calc(100% + 8px);

    right: 0;

    width: 210px;

    padding: 7px;

    border:
        1px solid
        var(--yalp-border);

    border-radius: 12px;

    background: #fff;

    box-shadow:
        0 15px 40px
        rgba(7,20,38,.14);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-5px);

    transition:
        opacity .18s ease,
        visibility .18s ease,
        transform .18s ease;
}


.yd-user-menu:hover .yd-user-dropdown {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.yd-user-dropdown a {
    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        10px 11px;

    border-radius: 8px;

    color:
        var(--yalp-text-secondary);

    font-size: 13px;

    font-weight: 500;
}


.yd-user-dropdown a:hover {
    color:
        var(--yalp-orange);

    background:
        var(--yalp-orange-light);
}


.yd-user-dropdown a i {
    width: 18px;

    color:
        var(--yalp-orange);

    text-align: center;
}


.yd-user-dropdown-separator {
    height: 1px;

    margin:
        5px 4px;

    background:
        var(--yalp-border);
}


.yd-user-dropdown .yd-logout {
    color:
        #dc2626;
}


.yd-user-dropdown .yd-logout i {
    color:
        #dc2626;
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.mobile-menu-button {
    display: none;

    width: 43px;
    height: 43px;

    margin-left: auto;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 9px;

    background:
        rgba(255,255,255,.04);

    color: #fff;

    font-size: 22px;

    cursor: pointer;
}


.mobile-menu-button:hover {
    background:
        rgba(255,255,255,.09);
}


/* ============================================================
   MOBILE OVERLAY
============================================================ */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 1998;

    background:
        rgba(3, 10, 20, .55);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.mobile-menu-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* ============================================================
   MOBILE SIDE MENU
============================================================ */

.mobile-side-menu {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1999;

    width:
        min(350px, 88vw);

    height: 100vh;

    padding: 22px;

    background:
        var(--yalp-navy);

    color: #fff;

    box-shadow:
        -15px 0 40px
        rgba(0,0,0,.18);

    transform:
        translateX(100%);

    transition:
        transform .28s ease;

    overflow-y: auto;
}


.mobile-side-menu.active {
    transform:
        translateX(0);
}


.mobile-side-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom:
        1px solid
        rgba(255,255,255,.09);
}


.mobile-brand {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 20px;

    font-weight: 800;
}


.mobile-brand img {
    width: 27px;
    height: 27px;

    object-fit: contain;
}


.mobile-brand > span > span {
    color:
        var(--yalp-orange);
}


.mobile-menu-close {
    width: 38px;
    height: 38px;

    border: 0;

    border-radius: 8px;

    background:
        rgba(255,255,255,.07);

    color: #fff;

    cursor: pointer;
}


.mobile-navigation {
    display: flex;

    flex-direction: column;

    gap: 5px;

    padding-top: 25px;
}


.mobile-nav-link {
    display: grid;

    grid-template-columns:
        34px 1fr 20px;

    align-items: center;

    gap: 8px;

    padding:
        13px 12px;

    border-radius: 9px;

    color:
        rgba(255,255,255,.82);

    font-size: 15px;

    font-weight: 500;
}


.mobile-nav-link:hover,
.mobile-nav-link.active {
    background:
        rgba(238,129,44,.12);

    color:
        var(--yalp-orange);
}


.mobile-nav-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 30px;
}


.mobile-nav-arrow {
    text-align: right;

    font-size: 11px;

    opacity: .6;
}


.mobile-login-area {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 30px;

    padding-top: 22px;

    border-top:
        1px solid
        rgba(255,255,255,.09);
}


.mobile-login-area .login-button {
    margin-left: 0;
}


.yd-mobile-user {
    display: grid;

    grid-template-columns:
        42px 1fr 18px;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.06);

    color: #fff;
}


.yd-mobile-user img,
.yd-mobile-user > span {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    object-fit: cover;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--yalp-orange);

    font-weight: 700;
}


.yd-mobile-user strong,
.yd-mobile-user small {
    display: block;
}


.yd-mobile-user strong {
    font-size: 13px;
}


.yd-mobile-user small {
    margin-top: 2px;

    color:
        rgba(255,255,255,.58);

    font-size: 10px;
}


/* ============================================================
   HERO
============================================================ */

.about-hero {
    position: relative;

    padding:
        0 0 75px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf6 100%
        );

    overflow: hidden;
}


.about-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -210px;
    top: 70px;

    border-radius: 50%;

    background:
        rgba(238,129,44,.055);

    pointer-events: none;
}


/* ============================================================
   BREADCRUMB
============================================================ */

.breadcrumb-custom {
    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        22px 0 42px;

    color:
        var(--yalp-text-muted);

    font-size: 14px;
}


.breadcrumb-custom a {
    color:
        #64748b;
}


.breadcrumb-custom a:hover {
    color:
        var(--yalp-orange);
}


.breadcrumb-custom i {
    color:
        #98a2b3;

    font-size: 10px;
}


.breadcrumb-custom span {
    color:
        var(--yalp-text-secondary);

    font-weight: 500;
}


/* ============================================================
   SECTION LABEL
============================================================ */

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color:
        var(--yalp-orange);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .08em;
}


.section-label span {
    width: 28px;
    height: 2px;

    border-radius: 3px;

    background:
        var(--yalp-orange);
}


/* ============================================================
   HERO TEXT
============================================================ */

.hero-title {
    max-width: 600px;

    margin: 0;

    color:
        var(--yalp-navy);

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -.045em;

    font-weight: 800;
}


.hero-title span {
    display: block;

    color:
        var(--yalp-orange);
}


.hero-description {
    max-width: 600px;

    margin:
        22px 0 0;

    color:
        var(--yalp-text-secondary);

    font-size: 16px;

    line-height: 1.8;
}


/* ============================================================
   HERO ACTIONS
============================================================ */

.hero-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding:
        0 19px;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.primary-button {
    border:
        1px solid
        var(--yalp-orange);

    background:
        var(--yalp-orange);

    color: #fff;

    box-shadow:
        0 7px 20px
        rgba(238,129,44,.18);
}


.primary-button:hover {
    background:
        var(--yalp-orange-dark);

    border-color:
        var(--yalp-orange-dark);

    color: #fff;

    transform:
        translateY(-2px);
}


.secondary-button {
    border:
        1px solid
        var(--yalp-border);

    background: #fff;

    color:
        var(--yalp-text);

}


.secondary-button:hover {
    border-color:
        var(--yalp-orange);

    color:
        var(--yalp-orange);

    transform:
        translateY(-2px);
}


/* ============================================================
   HERO IMAGE
============================================================ */

.hero-image-wrapper {
    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-image-glow {
    position: absolute;

    width: 390px;
    height: 390px;

    border-radius: 50%;

    background:
        rgba(238,129,44,.12);

    filter: blur(30px);
}


.hero-image {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 560px;

    height: 470px;

    object-fit: contain;

    display: block;

    filter:
        drop-shadow(
            0 25px 35px
            rgba(7,20,38,.15)
        );
}


/* ============================================================
   FLOATING ICONS
============================================================ */

.floating-icon {
    position: absolute;

    z-index: 3;

    width: 53px;
    height: 53px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius: 14px;

    background:
        rgba(255,255,255,.94);

    color:
        var(--yalp-orange);

    box-shadow:
        0 12px 30px
        rgba(7,20,38,.12);

    font-size: 20px;

    animation:
        aboutFloat 4s ease-in-out infinite;
}


.icon-book {
    left: 3%;

    top: 22%;

    animation-delay: 0s;
}


.icon-code {
    right: 3%;

    top: 18%;

    color:
        var(--yalp-blue);

    animation-delay: .8s;
}


.icon-chart {
    right: 8%;

    bottom: 13%;

    color:
        var(--yalp-green);

    animation-delay: 1.5s;
}


@keyframes aboutFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


/* ============================================================
   STATISTIQUES
============================================================ */

.stats-section {
    position: relative;

    z-index: 5;

    margin-top: -35px;

    padding:
        0 0 70px;

    background:
        transparent;
}


.stats-card {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    overflow: hidden;

    border:
        1px solid
        var(--yalp-border);

    border-radius:
        16px;

    background:
        #fff;

    box-shadow:
        0 15px 40px
        rgba(7,20,38,.08);
}


.stat-item {
    display: flex;

    align-items: center;

    gap: 14px;

    min-width: 0;

    padding:
        24px 20px;

    border-right:
        1px solid
        var(--yalp-border);
}


.stat-item:last-child {
    border-right: 0;
}


.stat-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        var(--yalp-orange-light);

    color:
        var(--yalp-orange);

    font-size: 19px;
}


.stat-item:nth-child(2) .stat-icon {
    background: #eef4ff;

    color:
        var(--yalp-blue);
}


.stat-item:nth-child(3) .stat-icon {
    background: #ecfdf3;

    color:
        var(--yalp-green);
}


.stat-item:nth-child(4) .stat-icon {
    background: #f5f3ff;

    color: #7c3aed;
}


.stat-item:nth-child(5) .stat-icon {
    background: #fff7ed;

    color: #f59e0b;
}


.stat-item strong {
    display: block;

    color:
        var(--yalp-navy);

    font-size: 21px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.025em;
}


.stat-item span {
    display: block;

    margin-top: 3px;

    color:
        var(--yalp-text-muted);

    font-size: 11px;

    line-height: 1.3;
}


/* ============================================================
   MISSION
============================================================ */

.mission-section {
    padding:
        10px 0 85px;

    background:
        var(--yalp-background);
}


.mission-card {
    height: 100%;

    display: flex;

    gap: 22px;

    padding:
        32px;

    border-radius:
        16px;

    border:
        1px solid
        var(--yalp-border);

    background:
        #fff;

    box-shadow:
        var(--yalp-shadow);
}


.mission-card-orange {
    border-top:
        3px solid
        var(--yalp-orange);
}


.mission-card-blue {
    border-top:
        3px solid
        var(--yalp-blue);
}


.mission-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        var(--yalp-orange-light);

    color:
        var(--yalp-orange);

    font-size: 23px;
}


.mission-card-blue .mission-icon {
    background:
        #eef4ff;

    color:
        var(--yalp-blue);
}


.mission-card h2 {
    margin:
        0 0 11px;

    color:
        var(--yalp-navy);

    font-size: 21px;

    line-height: 1.3;

    letter-spacing: -.025em;
}


.mission-card p {
    margin: 0;

    color:
        var(--yalp-text-secondary);

    font-size: 14px;

    line-height: 1.75;
}


.mission-card ul {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin:
        20px 0 0;

    padding: 0;

    list-style: none;
}


.mission-card li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color:
        var(--yalp-text-secondary);

    font-size: 13px;

    line-height: 1.5;
}


.mission-card li i {
    margin-top: 3px;

    color:
        var(--yalp-orange);

    font-size: 13px;
}


.mission-card-blue li i {
    color:
        var(--yalp-blue);
}


/* ============================================================
   VALUES
============================================================ */

.values-section {
    padding:
        85px 0;

    background:
        #fff;
}


.section-heading {
    max-width: 680px;

    margin:
        0 auto 42px;

    text-align: center;
}


.section-heading > span {
    display: block;

    margin-bottom: 8px;

    color:
        var(--yalp-orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .1em;
}


.section-heading h2 {
    margin: 0;

    color:
        var(--yalp-navy);

    font-size:
        clamp(28px, 4vw, 38px);

    line-height: 1.2;

    letter-spacing: -.04em;
}


.section-heading p {
    margin:
        12px auto 0;

    color:
        var(--yalp-text-muted);

    font-size: 14px;

    line-height: 1.7;
}


.value-card {
    height: 100%;

    padding:
        27px 23px;

    border:
        1px solid
        var(--yalp-border);

    border-radius:
        14px;

    background:
        #fff;

    text-align: center;

    box-shadow:
        var(--yalp-shadow);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}


.value-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--yalp-shadow-hover);

    border-color:
        #ffd4be;
}


.value-icon {
    width: 51px;
    height: 51px;

    margin:
        0 auto 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background:
        var(--yalp-orange-light);

    color:
        var(--yalp-orange);

    font-size: 22px;
}


.value-card:nth-child(2) .value-icon {
    background: #eef4ff;

    color: #2563eb;
}


.value-card:nth-child(3) .value-icon {
    background: #fff8e7;

    color: #f59e0b;
}


.value-card:nth-child(4) .value-icon {
    background: #ecfdf3;

    color: #16a34a;
}


.value-card:nth-child(5) .value-icon {
    background: #f5f3ff;

    color: #7c3aed;
}


.value-card h3 {
    margin: 0;

    color:
        var(--yalp-navy);

    font-size: 17px;

    line-height: 1.3;
}


.value-card p {
    margin:
        9px 0 0;

    color:
        var(--yalp-text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   TEAM
============================================================ */

.team-section {
    padding:
        85px 0;

    background:
        var(--yalp-background);
}


.team-card {
    height: 100%;

    padding:
        0 0 22px;

    overflow: hidden;

    border:
        1px solid
        var(--yalp-border);

    border-radius:
        15px;

    background:
        #fff;

    text-align: center;

    box-shadow:
        var(--yalp-shadow);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.team-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        var(--yalp-shadow-hover);
}


.team-image-wrapper {
    position: relative;

    width: 100%;

    height: 245px;

    overflow: hidden;

    background:
        #eef1f5;
}


.team-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}


.team-card:hover .team-image {
    transform:
        scale(1.035);
}


.team-card h3 {
    margin:
        18px 18px 3px;

    color:
        var(--yalp-navy);

    font-size: 17px;

    line-height: 1.3;
}


.team-role {
    display: block;

    color:
        var(--yalp-orange);

    font-size: 11px;

    font-weight: 700;
}


.team-card p {
    margin:
        10px 20px 0;

    color:
        var(--yalp-text-muted);

    font-size: 12px;

    line-height: 1.65;
}


.team-socials {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 16px;
}


.team-socials a {
    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--yalp-border);

    border-radius: 8px;

    color:
        var(--yalp-text-secondary);

    font-size: 13px;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.team-socials a:hover {
    border-color:
        var(--yalp-orange);

    background:
        var(--yalp-orange);

    color: #fff;
}


.team-button-wrapper {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


.outline-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 43px;

    padding:
        0 18px;

    border:
        1px solid
        var(--yalp-orange);

    border-radius: 9px;

    background: #fff;

    color:
        var(--yalp-orange);

    font-size: 13px;

    font-weight: 700;

    transition:
        .2s ease;
}


.outline-button:hover {
    background:
        var(--yalp-orange);

    color: #fff;
}


/* ============================================================
   CTA
============================================================ */

.about-cta {
    padding:
        70px 0;

    background:
        #fff;
}


.cta-card {
    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    padding:
        35px 40px;

    overflow: hidden;

    border-radius:
        17px;

    background:
        linear-gradient(
            135deg,
            #071426,
            #0d2035
        );

    box-shadow:
        0 18px 45px
        rgba(7,20,38,.12);
}


.cta-card::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -170px;

    border-radius: 50%;

    background:
        rgba(238,129,44,.13);

    pointer-events: none;
}


.cta-icon {
    position: relative;

    z-index: 2;

    width: 60px;
    height: 60px;

    flex: 0 0 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background:
        rgba(238,129,44,.15);

    color:
        var(--yalp-orange);

    font-size: 25px;
}


.cta-content {
    position: relative;

    z-index: 2;

    flex: 1;
}


.cta-content h2 {
    margin: 0;

    color: #fff;

    font-size: 22px;

    line-height: 1.3;

    letter-spacing: -.025em;
}


.cta-content p {
    margin:
        7px 0 0;

    color:
        #aeb9c8;

    font-size: 13px;
}


.cta-actions {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;
}


.cta-actions .secondary-button {
    border-color:
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.05);

    color: #fff;
}


.cta-actions .secondary-button:hover {
    border-color:
        var(--yalp-orange);

    background:
        rgba(238,129,44,.10);

    color:
        #fff;
}


/* ============================================================
   DONATION
============================================================ */

.donation-section {
    padding:
        0 0 80px;

    background:
        #fff;
}


.donation-card {
    display: grid;

    grid-template-columns:
        auto minmax(0,1fr) auto;

    align-items: center;

    gap: 25px;

    padding:
        30px 35px;

    border:
        1px solid
        #ffe1cf;

    border-radius:
        15px;

    background:
        linear-gradient(
            135deg,
            #fff8f3,
            #fffdfb
        );
}


.donation-icon {
    width: 57px;
    height: 57px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        #fff0e6;

    color:
        var(--yalp-orange);

    font-size: 23px;
}


.donation-label {
    display: block;

    margin-bottom: 5px;

    color:
        var(--yalp-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .1em;
}


.donation-card h2 {
    margin: 0;

    color:
        var(--yalp-navy);

    font-size: 19px;

    line-height: 1.35;

    letter-spacing: -.025em;
}


.donation-card p {
    max-width: 650px;

    margin:
        7px 0 0;

    color:
        var(--yalp-text-muted);

    font-size: 12px;

    line-height: 1.65;
}


.donation-actions {
    display: flex;

    flex-direction: column;

    gap: 8px;

    min-width: 170px;
}


.donation-actions a {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 40px;

    padding:
        0 13px;

    border:
        1px solid
        var(--yalp-orange);

    border-radius: 8px;

    color:
        var(--yalp-orange);

    background: #fff;

    font-size: 11px;

    font-weight: 700;

    text-align: center;

    transition:
        .2s ease;
}


.donation-actions a:first-child {
    background:
        var(--yalp-orange);

    color: #fff;
}


.donation-actions a:hover {
    background:
        var(--yalp-orange-dark);

    border-color:
        var(--yalp-orange-dark);

    color: #fff;
}


/* ============================================================
   FOOTER
============================================================ */

.main-footer {
    padding:
        55px 0 0;

    background:
        #050f1d;

    color:
        #dce3eb;
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.1fr;

    gap: 40px;

    padding-bottom:
        45px;
}


.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -.5px;
}


.footer-brand:hover {
    color: #fff;
}


.footer-logo {
    width: 28px;
    height: 28px;

    object-fit: contain;
}


.footer-brand > span > span {
    color:
        var(--yalp-orange);
}


.footer-description {
    max-width: 270px;

    margin:
        17px 0 0;

    color:
        #8996a6;

    font-size: 12px;

    line-height: 1.75;
}


.footer-grid > div:not(.footer-brand-column) h3 {
    margin:
        0 0 16px;

    color: #fff;

    font-size: 13px;

    font-weight: 700;
}


.footer-grid > div:not(.footer-brand-column) > a {
    display: block;

    margin-bottom: 9px;

    color:
        #8996a6;

    font-size: 11px;

    transition:
        color .2s ease;
}


.footer-grid > div:not(.footer-brand-column) > a:hover {
    color:
        var(--yalp-orange);
}


.footer-socials {
    display: flex;

    gap: 7px;

    margin-top: 20px;
}


.footer-socials a {
    width: 33px;
    height: 33px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;

    background:
        rgba(255,255,255,.04);

    color:
        #cbd5e1;

    font-size: 13px;

    transition:
        .2s ease;
}


.footer-socials a:hover {
    background:
        var(--yalp-orange);

    border-color:
        var(--yalp-orange);

    color: #fff;
}


.footer-stat {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.footer-stat > i {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(238,129,44,.10);

    color:
        var(--yalp-orange);

    font-size: 13px;
}


.footer-stat strong,
.footer-stat span {
    display: block;
}


.footer-stat strong {
    color: #fff;

    font-size: 12px;
}


.footer-stat span {
    margin-top: 1px;

    color:
        #8996a6;

    font-size: 9px;
}


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        19px 0;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        #788596;

    font-size: 10px;
}


.footer-bottom i {
    margin-right: 4px;

    color:
        var(--yalp-orange);
}


/* ============================================================
   LOGIN MODAL
============================================================ */

.login-modal {
    overflow: hidden;

    border: 0;

    border-radius:
        14px;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.18);
}


.login-modal .modal-header {
    padding:
        20px 22px;

    border-bottom:
        1px solid
        var(--yalp-border);
}


.login-modal .modal-title {
    color:
        var(--yalp-navy);

    font-size: 18px;

    font-weight: 700;
}


.login-modal .modal-body {
    padding:
        22px;
}


.login-modal .modal-footer {
    padding:
        15px 22px;

    border-top:
        1px solid
        var(--yalp-border);
}


.login-modal .form-label {
    margin-bottom: 6px;

    color:
        var(--yalp-text);

    font-size: 13px;

    font-weight: 600;
}


.login-modal .form-control {
    min-height: 44px;

    border:
        1px solid
        #d9dee7;

    border-radius: 8px;

    color:
        var(--yalp-text);

    font-size: 13px;

    box-shadow: none;
}


.login-modal .form-control:focus {
    border-color:
        var(--yalp-orange);

    box-shadow:
        0 0 0 3px
        rgba(238,129,44,.10);
}


.login-modal .btn-primary {
    border-color:
        var(--yalp-orange);

    background:
        var(--yalp-orange);

    font-size: 13px;

    font-weight: 700;
}


.login-modal .btn-primary:hover {
    border-color:
        var(--yalp-orange-dark);

    background:
        var(--yalp-orange-dark);
}


/* ============================================================
   RESPONSIVE — TABLETTE
============================================================ */

@media (max-width: 1100px) {

    .navbar-container {
        gap: 15px;
    }


    .desktop-link {
        padding:
            0 9px;

        font-size: 14px;
    }


    .navbar-brand {
        font-size: 22px;
    }


    .stats-card {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .stat-item:nth-child(3) {
        border-right: 0;
    }


    .stat-item:nth-child(-n+3) {
        border-bottom:
            1px solid
            var(--yalp-border);
    }


    .footer-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .footer-brand-column {
        grid-column:
            span 3;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE NAV
============================================================ */

@media (max-width: 900px) {

    .main-navbar {
        height: 70px;
    }


    .navbar-container {
        width:
            calc(100% - 28px);
    }


    .desktop-navigation {
        display: none;
    }


    .mobile-menu-button {
        display: flex;

        align-items: center;

        justify-content: center;
    }


    .navbar-brand {
        font-size: 21px;
    }


    .brand-logo {
        width: 27px;
        height: 27px;
    }


    .hero-image-wrapper {
        min-height: 400px;
    }


    .hero-image {
        height: 400px;
    }


    .mission-card {
        padding: 25px;
    }


    .cta-card {
        flex-wrap: wrap;
    }


    .cta-content {
        min-width:
            calc(100% - 95px);
    }


    .cta-actions {
        width: 100%;

        margin-left: 85px;
    }

}


/* ============================================================
   RESPONSIVE — PETIT MOBILE
============================================================ */

@media (max-width: 767px) {

    body {
        font-size: 15px;
    }


    .about-hero {
        padding-bottom: 55px;
    }


    .breadcrumb-custom {
        padding:
            18px 0 32px;

        font-size: 14px;
    }


    .hero-title {
        font-size:
            clamp(
                35px,
                10vw,
                46px
            );
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .primary-button,
    .secondary-button {
        width: 100%;
    }


    .hero-image-wrapper {
        min-height: 330px;
    }


    .hero-image {
        height: 340px;
    }


    .hero-image-glow {
        width: 270px;
        height: 270px;
    }


    .floating-icon {
        width: 43px;
        height: 43px;

        border-radius: 11px;

        font-size: 17px;
    }


    .stats-section {
        margin-top: -20px;

        padding-bottom: 55px;
    }


    .stats-card {
        grid-template-columns:
            repeat(2, 1fr);

        border-radius: 13px;
    }


    .stat-item {
        padding:
            18px 14px;

        border-right:
            1px solid
            var(--yalp-border);

        border-bottom:
            1px solid
            var(--yalp-border);
    }


    .stat-item:nth-child(2n) {
        border-right: 0;
    }


    .stat-item:nth-last-child(-n+1) {
        border-bottom: 0;
    }


    .stat-icon {
        width: 39px;
        height: 39px;

        flex-basis: 39px;

        font-size: 16px;
    }


    .stat-item strong {
        font-size: 18px;
    }


    .stat-item span {
        font-size: 9px;
    }


    .mission-section,
    .values-section,
    .team-section {
        padding:
            60px 0;
    }


    .mission-card {
        flex-direction: column;

        gap: 15px;

        padding: 23px;
    }


    .mission-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }


    .mission-card h2 {
        font-size: 19px;
    }


    .mission-card p {
        font-size: 13px;
    }


    .mission-card li {
        font-size: 12px;
    }


    .section-heading {
        margin-bottom: 30px;
    }


    .section-heading h2 {
        font-size: 28px;
    }


    .section-heading p {
        font-size: 13px;
    }


    .team-image-wrapper {
        height: 280px;
    }


    .cta-card {
        flex-direction: column;

        align-items: flex-start;

        padding:
            28px 23px;
    }


    .cta-content {
        min-width: 0;

        width: 100%;
    }


    .cta-content h2 {
        font-size: 20px;
    }


    .cta-actions {
        width: 100%;

        margin-left: 0;

        flex-direction: column;

        align-items: stretch;
    }


    .cta-actions a {
        width: 100%;
    }


    .donation-card {
        grid-template-columns:
            1fr;

        padding:
            25px 22px;

        text-align: center;
    }


    .donation-icon {
        margin: 0 auto;
    }


    .donation-actions {
        width: 100%;

        min-width: 0;
    }


    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 30px 20px;
    }


    .footer-brand-column {
        grid-column:
            span 2;
    }


    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

}


/* ============================================================
   RESPONSIVE — TRÈS PETIT ÉCRAN
============================================================ */

@media (max-width: 480px) {

    .navbar-container {
        width:
            calc(100% - 22px);
    }


    .navbar-brand {
        font-size: 19px;
    }


    .brand-logo {
        width: 24px;
        height: 24px;
    }


    .mobile-menu-button {
        width: 40px;
        height: 40px;
    }


    .stats-card {
        grid-template-columns:
            1fr;
    }


    .stat-item,
    .stat-item:nth-child(2n),
    .stat-item:nth-child(3) {
        border-right: 0;

        border-bottom:
            1px solid
            var(--yalp-border);
    }


    .stat-item:last-child {
        border-bottom: 0;
    }


    .stat-item {
        justify-content: flex-start;

        padding:
            17px 20px;
    }


    .footer-grid {
        grid-template-columns:
            1fr;
    }


    .footer-brand-column {
        grid-column:
            span 1;
    }


    .footer-bottom {
        font-size: 9px;
    }

}


/* ============================================================
   ACCESSIBILITÉ
============================================================ */

button:focus-visible,
a:focus-visible {
    outline:
        3px solid
        rgba(238,129,44,.35);

    outline-offset: 3px;
}


/* ============================================================
   RÉDUCTION DES ANIMATIONS
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

}