/* ========================================
   ENGIM - À PROPOS V5
   Layout asymétrique, animations, moderne
   Accent jaune : #ffc700
   ======================================== */

/* ========================================
   VARIABLES LOCALES
   ======================================== */
:root {
    --yellow-accent: #ffc700;
    --yellow-dark: #e6b400;
    --blue-dark: #0a1929;
    --blue-navy: #0f2744;
    --blue-mid: #1a4d7c;
}

/* ========================================
   TYPOGRAPHIE
   ======================================== */
.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--blue-navy);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.section-title--center {
    text-align: center;
}

.section-title--light {
    color: #ffffff;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.anim-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-slide-left {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-fade.is-visible,
.anim-slide-left.is-visible,
.anim-slide-right.is-visible,
.anim-scale.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Délais échelonnés */
.method__step:nth-child(1) { transition-delay: 0s; }
.method__step:nth-child(3) { transition-delay: 0.15s; }
.method__step:nth-child(5) { transition-delay: 0.3s; }
.method__step:nth-child(7) { transition-delay: 0.45s; }

.why__list li:nth-child(1) { transition-delay: 0s; }
.why__list li:nth-child(2) { transition-delay: 0.1s; }
.why__list li:nth-child(3) { transition-delay: 0.2s; }
.why__list li:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   PLACEHOLDERS (à remplacer par vraies photos)
   ======================================== */
.placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 2px dashed #94a3b8;
}

.placeholder--dark {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: #475569;
}

.placeholder--dark .placeholder__text {
    color: rgba(255, 255, 255, 0.5);
}

.placeholder--wide {
    min-height: 200px;
    border-radius: 0;
    border: none;
    border-top: 2px dashed #94a3b8;
    border-bottom: 2px dashed #94a3b8;
}

.placeholder__icon {
    font-size: 48px;
    opacity: 0.5;
}

.placeholder__text {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    line-height: 1.5;
}

/* ========================================
   HERO
   ======================================== */
.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding: 0;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../assets/images/hero-a-propos.webp');
    background-size: cover;
    background-position: center;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(15, 39, 68, 0.4) 0%, 
        rgba(15, 39, 68, 0.7) 50%,
        rgba(15, 39, 68, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-hero__container {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.about-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.about-hero__breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.about-hero__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin: 0;
}

.about-hero__title span {
    color: var(--yellow-accent);
}

.about-hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 50px;
}

.about-hero__wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ========================================
   FOUNDER SPLIT - Style intro-split
   ======================================== */
.founder-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    background: #ffffff;
    padding: 80px 0;
}

.founder-split__image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.founder-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-split__content {
    flex: 0 0 45%;
    background: #ffffff;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: -100px;
    margin-left: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(15, 39, 68, 0.1);
    border-radius: 8px;
}

.founder-split__label {
    display: inline-block;
    width: fit-content;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    background: var(--blue-navy);
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.founder-split__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--blue-navy);
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.founder-split__name span {
    color: var(--blue-navy);
}

.founder-split__bio {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 32px 0;
}

.founder-split__signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.founder-split__company {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-navy);
}

.founder-split__tagline {
    font-size: 14px;
    color: #6b7280;
}

/* Founder-split Responsive */
@media (max-width: 1024px) {
    .founder-split {
        min-height: auto;
    }
    
    .founder-split__image {
        flex: 0 0 50%;
    }
    
    .founder-split__content {
        flex: 0 0 55%;
        margin-right: -60px;
        margin-left: 60px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .founder-split {
        flex-direction: column-reverse;
        padding: 60px 0;
    }
    
    .founder-split__image {
        flex: none;
        width: 100%;
        height: 420px;
    }
    
    .founder-split__image img {
        object-position: top center;
    }
    
    .founder-split__content {
        flex: none;
        width: calc(100% - 40px);
        margin: 0 20px -60px 20px;
        padding: 30px 24px;
        z-index: 3;
    }
    
    .founder-split__name {
        font-size: 28px;
    }
}

/* ========================================
   FOUNDER - Layout asymétrique (ancien)
   ======================================== */
.founder {
    background: #ffffff;
    padding: 100px 0;
}

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

.founder__image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(15, 39, 68, 0.15),
        0 10px 30px rgba(15, 39, 68, 0.1);
}

.founder__content {
    max-width: 500px;
}

.founder__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow-accent);
    background: var(--blue-navy);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.founder__name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--blue-navy);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.founder__bio {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 30px 0;
}

.founder__signature {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.founder__company {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--blue-navy);
}

.founder__tagline {
    font-size: 14px;
    color: #6b7280;
}

/* ========================================
   STATEMENT
   ======================================== */
.statement {
    background: var(--blue-navy);
    padding: 80px 0;
}

.statement__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.statement__text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* ========================================
   PRESENTATION - Layout asymétrique inversé
   ======================================== */
.presentation {
    background: #f8fafc;
    padding: 100px 0;
}

.presentation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.presentation__image {
    position: relative;
}

.presentation__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 39, 68, 0.12);
}

.presentation__content p {
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    margin: 0 0 18px 0;
}

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

.presentation__content .highlight {
    font-weight: 600;
    color: var(--blue-navy);
    padding: 16px 20px;
    background: #ffffff;
    border-left: 4px solid var(--yellow-accent);
    border-radius: 0 12px 12px 0;
    margin-top: 24px;
}

/* ========================================
   MÉTIERS ENGIM - Style intro-split
   ======================================== */
.metiers {
    background: #ffffff;
    padding: 80px 0 60px 0;
}

.metiers__header {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 24px 0 60px;
}

.metiers__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 700;
    color: var(--blue-navy);
    margin: 0;
    line-height: 1.1;
}

.metiers__title span {
    color: var(--yellow-accent);
}

/* Metier Split - Style intro-split */
.metier-split {
    display: flex;
    align-items: stretch;
    min-height: 500px;
    margin-bottom: 80px;
}

.metier-split__image {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.metier-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metier-split__content {
    flex: 0 0 45%;
    background: #ffffff;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -100px;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(15, 39, 68, 0.1);
    border-radius: 8px;
}

.metier-split__number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 700;
    color: rgba(255, 199, 0, 0.80);
    line-height: 0.8;
    margin-bottom: -20px;
    margin-left: -5px;
}

.metier-split__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
    color: var(--blue-navy);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.metier-split__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: var(--yellow-accent);
    margin: 0 0 24px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.metier-split__content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 16px 0;
}

.metier-split__content p:last-child {
    margin-bottom: 0;
}

/* Version inversée (image à droite) */
.metier-split--reverse {
    flex-direction: row-reverse;
}

.metier-split--reverse .metier-split__content {
    margin-left: 0;
    margin-right: -100px;
}

/* ========================================
   VISUAL BREAK
   ======================================== */
.visual-break {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.visual-break__bg {
    position: absolute;
    inset: 0;
}

.visual-break__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 39, 68, 0.9) 0%,
        rgba(15, 39, 68, 0.7) 50%,
        rgba(15, 39, 68, 0.4) 100%);
}

.visual-break__content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 40px 60px;
    max-width: 850px;
}

.visual-break__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.visual-break__quote span {
    color: var(--yellow-accent);
    font-style: normal;
    font-weight: 600;
}

/* Metier-split Responsive */
@media (max-width: 1024px) {
    .metier-split {
        min-height: auto;
        margin-bottom: 60px;
    }
    
    .metier-split__image {
        flex: 0 0 50%;
    }
    
    .metier-split__content {
        flex: 0 0 55%;
        margin-left: -60px;
        padding: 40px;
    }
    
    .metier-split--reverse .metier-split__content {
        margin-right: -60px;
    }
}

@media (max-width: 768px) {
    .metiers {
        padding: 60px 0 40px 0;
    }
    
    .metiers__header {
        margin-bottom: 50px;
    }
    
    .metier-split {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .metier-split--reverse {
        flex-direction: column;
    }
    
    .metier-split__image {
        flex: none;
        width: 100%;
        height: 280px;
    }
    
    .metier-split__content {
        flex: none;
        width: calc(100% - 40px);
        margin: -40px auto 0 auto;
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px 24px;
    }
    
    .metier-split--reverse .metier-split__content {
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .metier-split__title {
        font-size: 24px;
    }
    
    /* Visual break responsive */
    .visual-break {
        height: 280px;
    }
    
    .visual-break__overlay {
        background: linear-gradient(0deg, 
            rgba(15, 39, 68, 0.9) 0%,
            rgba(15, 39, 68, 0.7) 100%);
    }
    
    .visual-break__content {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .visual-break__quote {
        font-size: clamp(20px, 4vw, 28px);
    }
}

@media (max-width: 480px) {
    .metier-split__content {
        padding: 24px 20px;
    }
    
    .metier-split__title {
        font-size: 22px;
    }
    
    .metier-split__subtitle {
        font-size: 14px;
    }
    
    .metier-split__content p {
        font-size: 15px;
    }
    
    .visual-break {
        height: 240px;
    }
    
    .visual-break__quote {
        font-size: 20px;
    }
}

/* ========================================
   METHOD - Timeline horizontale
   ======================================== */
.method {
    background: var(--blue-navy);
    padding: 100px 0;
}

.method__container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.method__intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin: 0 0 60px 0;
}

.method__timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}

.method__step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
}

.method__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px auto;
    background: var(--yellow-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method__icon span {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-navy);
}

.method__step:hover .method__icon {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 199, 0, 0.3);
}

.method__label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.method__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.method__connector {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 36px;
    flex-shrink: 0;
}

.method__note {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 60px 0 0 0;
    font-style: italic;
}

/* ========================================
   WHY - Layout asymétrique
   ======================================== */
.why {
    background: #f8fafc;
    padding: 100px 0;
}

.why__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why__intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 32px 0;
}

.why__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why__list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why__list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.why__list .why__icon {
    width: 48px;
    height: 48px;
    background: var(--blue-navy);
    color: var(--yellow-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why__list li span:last-child {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.why__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 39, 68, 0.12);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .founder__container,
    .presentation__container,
    .detail,
    .why__container {
        gap: 50px;
    }

    .services__grid {
        gap: 24px;
    }

    .method__timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .method__connector {
        display: none;
    }

    .method__step {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 340px;
        padding: 0;
    }

    .about-hero__container {
        padding: 40px 24px;
    }

    .founder {
        padding: 60px 0;
    }

    .founder__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder__image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .founder__content {
        max-width: 100%;
    }

    .founder__signature {
        align-items: center;
    }

    .statement {
        padding: 50px 0;
    }

    .presentation {
        padding: 60px 0;
    }

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

    .presentation__image {
        order: -1;
    }

    .services {
        padding: 60px 0;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 280px;
    }

    .visual-break__image {
        height: 200px;
    }

    .details {
        padding: 40px 0;
    }

    .detail {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 24px;
    }

    .detail--reverse {
        direction: ltr;
    }

    .detail__image {
        order: -1;
    }

    .method {
        padding: 60px 0;
    }

    .method__step {
        flex: 0 0 100%;
    }

    .method__icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .why {
        padding: 60px 0;
    }

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

    .why__list {
        grid-template-columns: 1fr;
    }

    .why__image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .founder__image img {
        max-width: 200px;
    }

    .founder__name {
        font-size: 28px;
    }

    .founder__bio {
        font-size: 16px;
    }

    .service-card {
        height: 260px;
    }

    .service-card__content {
        padding: 24px;
    }

    .service-card__title {
        font-size: 20px;
    }

    .detail__title {
        font-size: 22px;
    }

    .method__label {
        font-size: 18px;
    }

    .why__list li {
        padding: 16px 20px;
    }
}

/* ========================================
   BOUTONS FLOTTANTS CONTACT
   ======================================== */
.floating-buttons {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.floating-btn {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: padding 0.3s ease;
    border: none;
    outline: none;
    min-width: 60px;
    height: 56px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.floating-btn__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-btn__icon svg {
    width: 22px;
    height: 22px;
}

.floating-btn__text {
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    transition: max-width 0.3s ease, opacity 0.3s ease, margin-left 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
}

.floating-btn:hover .floating-btn__text {
    max-width: 200px;
    opacity: 1;
    margin-left: 12px;
}

/* Bouton Contact - Jaune */
.floating-btn--contact {
    background: var(--gold-400, #ffc700);
    color: #ffffff;
    border-radius: 0 8px 0 0;
}

.floating-btn--contact:hover {
    background: #e6b300;
    padding-right: 24px;
}

.floating-btn--contact .floating-btn__icon svg {
    stroke: #ffffff;
}

/* Bouton Téléphone - Bleu */
.floating-btn--phone {
    background: var(--blue-600, #1a4d7c);
    color: #ffffff;
    border-radius: 0 0 8px 0;
}

.floating-btn--phone:hover {
    background: var(--blue-700, #153d63);
    padding-right: 24px;
}

/* Responsive boutons flottants - mobile */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        top: auto;
        left: auto;
        right: 20px;
        transform: none;
        flex-direction: row;
        gap: 10px;
    }
    
    .floating-btn {
        border-radius: 50%;
        width: 54px;
        height: 54px;
        min-width: 54px;
        padding: 0;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .floating-btn--contact,
    .floating-btn--phone {
        border-radius: 50%;
    }
    
    .floating-btn__text {
        display: none;
    }
    
    .floating-btn:hover .floating-btn__text {
        display: none;
    }
    
    .floating-btn:hover {
        padding-right: 0;
    }
}

/* ========================================
   SECTION MÉTHODE + POURQUOI ENGIM
   Design asymétrique premium
   ======================================== */
.method-why {
    position: relative;
    padding: 0;
    margin: 80px 0;
    overflow: visible;
}

.method-why__bg {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 450px;
    z-index: 0;
}

.method-why__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.method-why__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
}

.method-why__container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Blocs communs */
.method-why__block {
    border-radius: 24px;
    padding: 48px;
    transition: transform 0.4s ease;
}

.method-why__block:hover {
    transform: translateY(-4px);
}

/* Bloc bleu (Méthode) - dépasse du haut */
.method-why__block--blue {
    background: var(--blue-navy);
    color: #ffffff;
    margin-top: 0;
    box-shadow: 
        0 25px 80px rgba(15, 39, 68, 0.4),
        0 10px 30px rgba(15, 39, 68, 0.3);
}

/* Bloc blanc (Pourquoi) - dépasse du bas */
.method-why__block--white {
    background: #ffffff;
    margin-top: 200px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Titres */
.method-why__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.method-why__title--dark {
    color: var(--blue-navy);
}

/* Intro */
.method-why__intro {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px 0;
}

.method-why__intro--dark {
    color: #4b5563;
}

/* Timeline (bloc bleu) */
.method-why__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.method-why__step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.method-why__step-icon {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--yellow-accent);
    color: var(--yellow-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.method-why__step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.method-why__step-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.method-why__note {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features (bloc blanc) */
.method-why__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.method-why__feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.method-why__feature:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.method-why__feature-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-navy);
    color: var(--yellow-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-why__feature-icon svg {
    width: 20px;
    height: 20px;
}

.method-why__feature-text {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .method-why {
        margin: 60px 0;
    }

    .method-why__bg {
        top: 80px;
        height: 600px;
    }

    .method-why__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .method-why__block--blue {
        margin-top: 0;
    }

    .method-why__block--white {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .method-why__bg {
        top: 60px;
        height: 500px;
    }

    .method-why__block {
        padding: 32px 24px;
    }

    .method-why__timeline {
        grid-template-columns: 1fr;
    }

    .method-why__features {
        grid-template-columns: 1fr;
    }

    .method-why__title {
        font-size: 26px;
    }
}

/* ========================================
   VISUAL BREAK
   ======================================== */
.visual-break {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.visual-break__bg {
    position: absolute;
    inset: 0;
}

.visual-break__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(15, 39, 68, 0.9) 0%,
        rgba(15, 39, 68, 0.7) 50%,
        rgba(15, 39, 68, 0.4) 100%);
}

.visual-break__content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 40px 60px;
    max-width: 900px;
}

.visual-break__quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 500;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}

.visual-break__quote span {
    color: var(--yellow-accent);
    font-style: normal;
    font-weight: 600;
}

/* Visual break responsive */
@media (max-width: 768px) {
    .visual-break {
        height: 280px;
    }
    
    .visual-break__overlay {
        background: linear-gradient(0deg, 
            rgba(15, 39, 68, 0.9) 0%,
            rgba(15, 39, 68, 0.7) 100%);
    }
    
    .visual-break__content {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .visual-break__quote {
        font-size: clamp(20px, 4vw, 28px);
    }
}

@media (max-width: 480px) {
    .visual-break {
        height: 240px;
    }
    
    .visual-break__quote {
        font-size: 20px;
    }
}
