/**
 * LD Solutions - Page À Propos
 * Styles pour la page de présentation de l'entreprise
 *
 * @package ldsolutions
 * @version 1.0.0
 */

/* ============================================================
   PAGE HERO
   ============================================================ */

.page-a-propos .page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 200px 2rem 120px;
    overflow: hidden;
}

.page-a-propos .page-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.page-a-propos .page-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-a-propos .page-hero__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 27, 80, 0.7);
}

.page-a-propos .page-hero__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-a-propos .page-hero__title {
    margin: 0 0 1.5rem;
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--lds-white, #ffffff);
}

.page-a-propos .page-hero__title span {
    font-style: italic;
    color: var(--lds-white, #ffffff);
}

.page-a-propos .page-hero__desc {
    margin: 0 auto;
    max-width: 640px;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================================
   SECTION LD SOLUTIONS STORY
   ============================================================ */

.ap-story {
    position: relative;
    background: var(--lds-white, #ffffff);
    padding: 100px 2rem;
    overflow: hidden;
}

.ap-story__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header de section */
.ap-story__header {
    text-align: center;
    margin-bottom: 4rem;
}

.ap-story__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--lds-navy, #021B50);
}

.ap-story__title span {
    font-style: italic;
}

.ap-story__subtitle {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(21, 30, 40, 0.65);
    margin: 0 auto;
    max-width: 600px;
}

/* Séparateur */
.ap-story__separator {
    max-width: 100%;
    margin: 4rem 0;
    padding: 0;
}

.ap-story__separator-line {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(2, 27, 80, 0.1) 20%, rgba(2, 27, 80, 0.15) 50%, rgba(2, 27, 80, 0.1) 80%, transparent 100%);
}

/* Rangées alternées */
.ap-story__row {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.ap-story__row--first {
    margin-bottom: 80px;
}

.ap-story__row--second {
    grid-template-columns: 1fr 400px;
}

/* Bloc Visuel */
.ap-story__visual {
    position: relative;
}

.ap-story__photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(2, 27, 80, 0.15);
}

/* Images empilées */
.ap-story__images-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
}

.ap-story__img {
    position: absolute;
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.ap-story__img--top {
    top: 0;
    left: 0;
    z-index: 2;
}

.ap-story__img--bottom {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.ap-story__images-stack:hover .ap-story__img--top {
    transform: translate(-10px, -10px);
}

.ap-story__images-stack:hover .ap-story__img--bottom {
    transform: translate(10px, 10px);
}

/* Bloc Texte */
.ap-story__text {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
}

.ap-story__text p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(21, 30, 40, 0.75);
    margin: 0 0 0.875rem;
}

.ap-story__text p:last-child {
    margin-bottom: 0;
}

.ap-story__text p strong {
    color: inherit;
    font-weight: 600;
}

.ap-story__pillars {
    list-style: none;
    padding: 0;
    margin: 0.875rem 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ap-story__pillars li {
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(21, 30, 40, 0.75);
}

.ap-story__pillars li strong {
    color: inherit;
    font-weight: 600;
}

/* ============================================================
   SECTION VALEURS
   ============================================================ */

.ap-valeurs {
    position: relative;
    padding: 100px 2rem;
    overflow: hidden;
    background: var(--lds-white, #ffffff);
}

.ap-valeurs__bg {
    display: none;
}

.ap-valeurs__bg-img {
    display: none;
}

.ap-valeurs__bg-overlay {
    display: none;
}

.ap-valeurs__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.ap-valeurs__header {
    text-align: center;
    margin-bottom: 4rem;
}

.ap-valeurs__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--lds-navy, #021B50);
}

.ap-valeurs__title span {
    font-style: italic;
}

.ap-valeurs__subtitle {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(21, 30, 40, 0.65);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ap-valeurs__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ap-valeur {
    position: relative;
    background: linear-gradient(135deg, var(--lds-navy, #021B50) 0%, var(--lds-navy-light, #0A2A6E) 50%, #051D52 100%);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 4px 20px rgba(10, 22, 40, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border: 1.5px solid transparent;
}

.ap-valeur::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(100, 170, 255, 0.2), rgba(18, 90, 248, 0.4), rgba(100, 170, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 3;
}

/* Accent - trait vertical blanc lumineux */
.ap-valeur::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--lds-white, #ffffff) 0%, var(--lds-white, #ffffff) 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(18, 90, 248, 0.5);
    z-index: 4;
}

.ap-valeur.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ap-valeur:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(10, 22, 40, 0.4),
        0 0 30px rgba(18, 90, 248, 0.15);
}

.ap-valeur.is-visible:hover {
    transform: translateY(-4px);
}

.ap-valeur__content {
    position: relative;
    z-index: 2;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.ap-valeur__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--lds-white, #ffffff);
}

.ap-valeur__icon-title {
    flex-shrink: 0;
    stroke: var(--lds-white, #ffffff);
}

.ap-valeur__text {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(235, 235, 235, 0.75);
    margin: 0;
}

/* Tags */
.ap-valeur__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
}

.ap-valeur__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(18, 90, 248, 0.25);
    border: 1px solid rgba(100, 170, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.ap-valeur:hover .ap-valeur__tag {
    background: rgba(18, 90, 248, 0.35);
    border-color: rgba(100, 170, 255, 0.5);
}

/* Actions */
.ap-valeur__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(100, 170, 255, 0.15);
}

.ap-valeur__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lds-white, #ffffff);
    background: linear-gradient(135deg, var(--lds-blue, #125AF8) 0%, #0D47D1 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ap-valeur__cta:hover {
    background: linear-gradient(135deg, #1E6AFF 0%, var(--lds-blue, #125AF8) 100%);
    transform: translateX(2px);
    box-shadow: 0 4px 16px rgba(18, 90, 248, 0.4);
}

.ap-valeur__cta svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ap-valeur__cta:hover svg {
    transform: translateX(3px);
}

.ap-valeur__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.ap-valeur__link:hover {
    color: var(--lds-white, #ffffff);
}

.ap-valeur__link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ap-valeur__link:hover svg {
    transform: translateX(3px);
}

/* ============================================================
   SECTION ACCOMPAGNEMENT
   ============================================================ */

.ap-accompagnement {
    position: relative;
    background: var(--lds-white, #ffffff);
    padding: 100px 2rem;
    overflow: hidden;
}

.ap-accompagnement__container {
    max-width: 1000px;
    margin: 0 auto;
}

.ap-accompagnement__content {
    text-align: center;
}

.ap-accompagnement__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.5rem;
    color: var(--lds-navy, #021B50);
}

.ap-accompagnement__title span {
    font-style: italic;
}

.ap-accompagnement__lead {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(21, 30, 40, 0.7);
    margin: 0 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ap-accompagnement__messages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.ap-accompagnement__message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 24px;
    background: linear-gradient(145deg, var(--lds-white, #ffffff) 0%, #F8FAFF 50%, var(--lds-white, #ffffff) 100%);
    border-radius: 12px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ap-accompagnement__message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ap-accompagnement__message i,
.ap-accompagnement__message svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    stroke: var(--lds-blue, #125AF8);
    color: var(--lds-blue, #125AF8);
}

.ap-accompagnement__message span {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--lds-black, #151E28);
}

.ap-accompagnement__cta {
    margin-top: 3rem;
    text-align: center;
}

.ap-accompagnement__cta .lds-btn svg {
    margin-left: 8px;
}

/* ============================================================
   SECTION FONDATEUR
   ============================================================ */

.ap-fondateur {
    position: relative;
    background: linear-gradient(135deg, var(--lds-navy, #021B50) 0%, var(--lds-navy-light, #0A2A6E) 50%, var(--lds-navy, #021B50) 100%);
    padding: 100px 2rem;
    overflow: hidden;
}

.ap-fondateur__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

.ap-fondateur__visual {
    position: relative;
}

.ap-fondateur__photo-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, #E8E8E8 0%, #D0D0D0 100%);
    border-radius: 16px;
}

.ap-fondateur__photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(2, 27, 80, 0.15);
}

.ap-fondateur__title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 2rem;
    color: var(--lds-white, #ffffff);
}

.ap-fondateur__title i,
.ap-fondateur__title svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    stroke: var(--lds-white, #ffffff);
}

.ap-fondateur__title span {
    font-style: italic;
    color: var(--lds-white, #ffffff);
}

.ap-fondateur__bio p {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.25rem;
}

.ap-fondateur__bio p:last-child {
    margin-bottom: 0;
}

.ap-fondateur__bio p strong {
    color: var(--lds-white, #ffffff);
    font-weight: 600;
}

.ap-fondateur__cite {
    display: block;
    margin-top: 2rem;
    padding-top: 1.5rem;
    position: relative;
}

.ap-fondateur__cite::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.15) 80%, transparent 100%);
}

.ap-fondateur__cite strong {
    display: block;
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--lds-white, #ffffff);
    margin-bottom: 0.25rem;
}

.ap-fondateur__cite span {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   SECTION CITATION (supprimée - intégrée dans fondateur)
   ============================================================ */

.ap-citation {
    position: relative;
    background: var(--lds-white, #ffffff);
    padding: 100px 2rem;
    overflow: hidden;
}

.ap-citation__container {
    max-width: 1000px;
    margin: 0 auto;
}

.ap-citation__wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 48px;
    background: linear-gradient(145deg, #F8FAFF 0%, var(--lds-white, #ffffff) 50%, #F8FAFF 100%);
    border-radius: 24px;
    border-left: 4px solid var(--lds-blue, #125AF8);
    box-shadow: 0 8px 32px rgba(2, 27, 80, 0.08);
}

.ap-citation__photo-placeholder {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, #E8E8E8 0%, #D0D0D0 100%);
    border-radius: 50%;
}

.ap-citation__photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(2, 27, 80, 0.12);
}

.ap-citation__quote {
    margin: 0;
}

.ap-citation__quote p {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    color: var(--lds-black, #151E28);
    margin: 0 0 1.5rem;
}

.ap-citation__quote cite {
    display: block;
    font-style: normal;
}

.ap-citation__quote cite strong {
    display: block;
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--lds-black, #151E28);
    margin-bottom: 0.25rem;
}

.ap-citation__quote cite span {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(21, 30, 40, 0.6);
}

/* ============================================================
   SECTION VIDEO
   ============================================================ */

.ap-video {
    position: relative;
    background: var(--lds-white, #ffffff);
    padding: 100px 2rem;
    overflow: hidden;
}

.ap-video__container {
    max-width: 1000px;
    margin: 0 auto;
}

.ap-video__header {
    text-align: center;
    margin-bottom: 3rem;
}

.ap-video__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: var(--lds-navy, #021B50);
}

.ap-video__title span {
    font-style: italic;
}

.ap-video__subtitle {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(21, 30, 40, 0.65);
    margin: 0;
}

.ap-video__player {
    position: relative;
}

.ap-video__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #E8E8E8 0%, #D0D0D0 100%);
    border-radius: 16px;
}

.ap-video__placeholder i,
.ap-video__placeholder svg {
    width: 80px;
    height: 80px;
    stroke: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* ============================================================
   SECTION CTA FINAL
   ============================================================ */

.ap-cta-final {
    position: relative;
    padding: 100px 2rem;
    margin: 80px 0;
    overflow: hidden;
}

.ap-cta-final__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.ap-cta-final__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-cta-final__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 27, 80, 0.85);
}

.ap-cta-final__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ap-cta-final__title {
    font-family: 'Chillax', Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 0 1.25rem;
    color: var(--lds-white, #ffffff);
}

.ap-cta-final__text {
    font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2rem;
}

.ap-cta-final__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ap-cta-final__actions .lds-btn svg {
    margin-left: 8px;
}

.ap-cta-final__actions .lds-btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--lds-white, #ffffff);
}

.ap-cta-final__actions .lds-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .page-a-propos .page-hero {
        padding: 160px 1.5rem 100px;
    }

    .ap-story,
    .ap-valeurs,
    .ap-accompagnement,
    .ap-fondateur,
    .ap-citation,
    .ap-video,
    .ap-cta-final {
        padding: 80px 1.5rem;
    }

    .ap-story__row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ap-story__row--first {
        margin-bottom: 60px;
    }

    .ap-story__row--second {
        grid-template-columns: 1fr;
    }

    .ap-story__row--second .ap-story__visual {
        order: -1;
    }

    .ap-story__photo {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
        display: block;
    }

    .ap-story__images-stack {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

    .ap-story__img {
        width: 280px;
        height: 190px;
    }

    .ap-valeurs__grid {
        grid-template-columns: 1fr;
    }

    .ap-fondateur__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ap-fondateur__photo-placeholder,
    .ap-fondateur__photo {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }

    .ap-accompagnement__messages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-a-propos .page-hero {
        min-height: 50vh;
        padding: 140px 1rem 80px;
    }

    .page-a-propos .page-hero__desc {
        font-size: 1rem;
    }

    .ap-story,
    .ap-valeurs,
    .ap-accompagnement,
    .ap-fondateur,
    .ap-citation,
    .ap-video,
    .ap-cta-final {
        padding: 60px 1rem;
    }

    .ap-story__row--first {
        margin-bottom: 50px;
    }

    .ap-story__photo {
        height: 300px;
    }

    .ap-story__images-stack {
        height: 300px;
        max-width: 100%;
    }

    .ap-story__img {
        width: 220px;
        height: 150px;
    }

    .ap-story__text p {
        font-size: 0.9375rem;
    }

    .ap-valeurs__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ap-citation__wrapper {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 24px;
    }

    .ap-citation__photo-placeholder,
    .ap-citation__photo {
        width: 100px;
        height: 100px;
    }

    .ap-citation__quote p {
        font-size: 1.125rem;
    }

    .ap-cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    .ap-cta-final__actions .lds-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-a-propos .page-hero {
        min-height: 45vh;
        padding: 120px 1rem 60px;
    }

    .page-a-propos .page-hero__title {
        font-size: 1.5rem;
    }

    .page-a-propos .page-hero__desc {
        font-size: 0.9375rem;
    }

    .ap-story,
    .ap-valeurs,
    .ap-accompagnement,
    .ap-fondateur,
    .ap-citation,
    .ap-video,
    .ap-cta-final {
        padding: 50px 1rem;
    }

    .ap-story__row--first {
        margin-bottom: 40px;
    }

    .ap-story__photo {
        height: 250px;
    }

    .ap-story__images-stack {
        height: 260px;
    }

    .ap-story__img {
        width: 180px;
        height: 130px;
    }

    .ap-fondateur__photo-placeholder,
    .ap-fondateur__photo {
        height: 280px;
    }

    .ap-fondateur__quote p {
        font-size: 1rem;
    }

    .ap-citation__wrapper {
        padding: 24px;
    }

    .ap-citation__quote p {
        font-size: 1rem;
    }
}

/* ============================================================
   AP-CTA-FINAL - Marges alignees sur le bandeau de la home
   (surcharge les paddings groupes au-dessus)
   ============================================================ */

@media (max-width: 1200px) {
    .ap-cta-final {
        padding: 64px 1.5rem;
        margin: 60px 0;
    }
}

@media (max-width: 768px) {
    .ap-cta-final {
        padding: 56px 1.5rem;
        margin: 50px 0;
    }
}

@media (max-width: 480px) {
    .ap-cta-final {
        padding: 48px 1rem;
        margin: 40px 0;
    }
}
