/* ========================================
   ENGIM - CONFIER MON BIEN
   Version finale - Textes professionnels
   ======================================== */

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --yellow-accent: #ffc700;
    --yellow-dark: #e6b400;
    --blue-dark: #0a1929;
    --blue-navy: #0f2744;
    --blue-mid: #1a4d7c;
    --gray-light: #f8fafc;
    --gray-text: #4b5563;
    --gray-muted: #6b7280;
}

/* ========================================
   BASE
   ======================================== */
section {
    position: relative;
}

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

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

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

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

.anim-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s 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);
}

.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.2s; }
.stagger-4 { transition-delay: 0.3s; }

/* ========================================
   1. HERO
   ======================================== */
.confier-hero {
    position: relative;
    color: #ffffff;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.confier-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.confier-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;
}

.confier-hero__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 24px 80px;
    text-align: center;
}

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

.confier-hero__breadcrumb a {
    color: #ffffff;
    text-decoration: none;
}

.confier-hero__breadcrumb a:hover {
    text-decoration: underline;
}

.confier-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 16px 0;
}

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

.confier-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

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

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

/* ========================================
   2. STATEMENT INTRO
   ======================================== */
.statement-intro {
    background: #ffffff;
    padding: 60px 0 50px;
}

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

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

.statement-intro__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 0;
}

/* ========================================
   3. INTRO SPLIT
   ======================================== */
.intro-split {
    display: grid;
    grid-template-columns: 55% 45%;
    background: #ffffff;
    align-items: center;
}

.intro-split__image {
    position: relative;
    overflow: hidden;
    height: 550px;
}

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

.intro-split__image::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 150px;
    background: var(--yellow-accent);
    z-index: 2;
}

.intro-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px 40px 60px;
    background: #ffffff;
    margin-left: -140px;
    height: 400px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(15, 39, 68, 0.2);
}

.intro-split__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 0;
}

/* ========================================
   4. LES 4 PILIERS
   ======================================== */
.pillars {
    background: var(--gray-light);
    padding: 60px 0;
}

.pillars__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pillar-card {
    background: #ffffff;
    padding: 30px 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 39, 68, 0.1);
}

.pillar-card__icon {
    width: 56px;
    height: 56px;
    background: var(--yellow-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--blue-navy);
}

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

.pillar-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-text);
    margin: 0;
}

/* ========================================
   5. PROCESS - 5 ÉTAPES (FIXES) + TIMELINE
   ======================================== */
.process {
    display: flex;
    background: var(--blue-navy);
    padding: 60px 0;
}

.process__accent {
    width: 8px;
    background: var(--yellow-accent);
    flex-shrink: 0;
}

.process__container {
    flex: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.process__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.25;
}

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

/* Timeline wrapper */
.process__timeline {
    position: relative;
}

.process__timeline-line,
.process__timeline-dot {
    display: none;
}

.process__cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process__card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.process__card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 199, 0, 0.3);
    transform: translateY(-4px);
}

.process__card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--yellow-accent);
    margin-bottom: 12px;
    line-height: 1;
    display: block;
}

.process__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.process__card-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px 0;
}

.process__card-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--yellow-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.process__card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--yellow-accent);
}

/* ========================================
   6. 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: 700px;
}

.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;
}

/* ========================================
   7. EXPERTISE
   ======================================== */
.expertise {
    background: #ffffff;
    padding: 70px 0;
}

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

.expertise__content {
    padding-right: 20px;
}

.expertise__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin: 0 0 20px 0;
}

.expertise__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.expertise__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.5;
}

.expertise__list li:last-child {
    border-bottom: none;
}

.expertise__bullet {
    width: 6px;
    height: 6px;
    background: var(--yellow-accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

.expertise__note {
    font-size: 15px;
    line-height: 1.7;
    color: var(--blue-navy);
    padding: 16px 20px;
    background: var(--gray-light);
    border-left: 3px solid var(--yellow-accent);
    margin: 0;
}

.expertise__note strong {
    font-weight: 700;
}

.expertise__image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    height: 500px;
}

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

.expertise__image::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 120px;
    background: var(--yellow-accent);
}

/* ========================================
   8. DIFFÉRENCIATION
   ======================================== */
.difference {
    background: var(--blue-navy);
    padding: 70px 0;
}

.difference__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.difference__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.difference__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.difference__card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow-accent);
    transform: translateY(-4px);
}

.difference__card-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--yellow-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.difference__card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--yellow-accent);
}

.difference__card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow-accent);
    margin: 0 0 10px 0;
}

.difference__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.difference__cta {
    text-align: center;
}

/* Bouton primaire */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--yellow-accent);
    color: var(--blue-navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.3);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* ========================================
   9. SEO
   ======================================== */
.seo-block {
    background: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #e5e7eb;
}

.seo-block__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.seo-block__accent {
    width: 4px;
    height: 50px;
    background: var(--yellow-accent);
    flex-shrink: 0;
}

.seo-block__content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue-navy);
    margin: 0 0 10px 0;
}

.seo-block__content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-muted);
    margin: 0;
}

/* ========================================
   RESPONSIVE - TABLETTE (1024px)
   ======================================== */
@media (max-width: 1024px) {
    /* Intro split */
    .intro-split {
        grid-template-columns: 1fr;
    }
    
    .intro-split__image {
        height: 300px;
    }
    
    .intro-split__content {
        margin-left: 0;
        padding: 40px;
        box-shadow: none;
    }
    
    /* Piliers */
    .pillars__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Process */
    .process__container {
        padding: 0 24px;
    }
    
    .process__cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Expertise */
    .expertise__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise__content {
        padding-right: 0;
        order: 2;
    }
    
    .expertise__image {
        order: 1;
        height: 300px;
    }
    
    /* Différenciation */
    .difference__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE - TABLETTE PETIT (768px)
   ======================================== */
@media (max-width: 768px) {
    /* Statement intro */
    .statement-intro {
        padding: 40px 0 30px;
    }
    
    .statement-intro__title {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .statement-intro__text {
        font-size: 15px;
    }
    
    /* Hero */
    .confier-hero {
        min-height: 350px;
    }
    
    .confier-hero__container {
        padding: 80px 20px 60px;
    }
    
    .confier-hero__title {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .confier-hero__subtitle {
        font-size: 16px;
    }
    
    /* Intro */
    .intro-split__image {
        height: 250px;
    }
    
    .intro-split__image::before {
        height: 80px;
    }
    
    .intro-split__content {
        padding: 32px 20px;
    }
    
    /* Piliers */
    .pillars {
        padding: 50px 0;
    }
    
    .pillars__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .pillar-card {
        padding: 24px 20px;
    }
    
    /* Process */
    .process {
        flex-direction: column;
        padding: 50px 0;
    }
    
    .process__accent {
        width: 100%;
        height: 6px;
    }
    
    .process__container {
        padding: 30px 20px 0;
    }
    
    .process__timeline {
        padding-top: 0;
    }
    
    .process__timeline-line,
    .process__timeline-dot {
        display: none;
    }
    
    .process__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .process__card {
        padding: 24px 16px;
    }
    
    .process__card-number {
        font-size: 28px;
    }
    
    .process__card-title {
        font-size: 14px;
    }
    
    .process__card-text {
        font-size: 12px;
    }
    
    /* Visual break */
    .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;
        transform: none;
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .visual-break__quote {
        font-size: clamp(20px, 4vw, 28px);
    }
    
    /* Expertise */
    .expertise {
        padding: 50px 0;
    }
    
    .expertise__image {
        height: 280px;
    }
    
    .expertise__image::after {
        display: none;
    }
    
    /* Différenciation */
    .difference {
        padding: 50px 0;
    }
    
    .difference__cards {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    
    .difference__card {
        padding: 24px 20px;
    }
    
    /* SEO */
    .seo-block__container {
        flex-direction: column;
        gap: 16px;
    }
    
    .seo-block__accent {
        width: 50px;
        height: 4px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
    /* Statement intro */
    .statement-intro {
        padding: 32px 0 24px;
    }
    
    .statement-intro__title {
        font-size: 24px;
    }
    
    .statement-intro__text {
        font-size: 14px;
    }
    
    /* Hero */
    .confier-hero__title {
        font-size: 26px;
    }
    
    .confier-hero__subtitle {
        font-size: 14px;
    }
    
    .confier-hero__breadcrumb {
        font-size: 12px;
    }
    
    /* Intro */
    .intro-split__image {
        height: 200px;
    }
    
    .intro-split__content {
        padding: 28px 16px;
    }
    
    .intro-split__text {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Piliers */
    .pillars {
        padding: 40px 0;
    }
    
    .pillars__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .pillar-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }
    
    .pillar-card__icon {
        margin: 0;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    
    .pillar-card__icon svg {
        width: 24px;
        height: 24px;
    }
    
    .pillar-card__title {
        font-size: 17px;
        margin-bottom: 6px;
    }
    
    .pillar-card__text {
        font-size: 13px;
    }
    
    /* Process */
    .process {
        padding: 40px 0;
    }
    
    .process__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .process__cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .process__card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }
    
    .process__card-number {
        font-size: 24px;
        margin-bottom: 0;
    }
    
    .process__card-title {
        margin-bottom: 4px;
    }
    
    .process__card-text {
        margin-bottom: 0;
    }
    
    .process__card-icon {
        margin: 0;
        margin-left: auto;
    }
    
    /* Visual break */
    .visual-break {
        height: 240px;
    }
    
    .visual-break__quote {
        font-size: 20px;
    }
    
    /* Expertise */
    .expertise {
        padding: 40px 0;
    }
    
    .expertise__list li {
        font-size: 14px;
    }
    
    .expertise__image {
        height: 220px;
    }
    
    /* Différenciation */
    .difference {
        padding: 40px 0;
    }
    
    .difference__cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .difference__card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 16px;
        padding: 20px;
    }
    
    .difference__card-icon {
        margin: 0;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .difference__card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .difference__card-title {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .difference__card-text {
        font-size: 13px;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    /* SEO */
    .seo-block {
        padding: 40px 0;
    }
    
    .seo-block__content h2 {
        font-size: 16px;
    }
    
    .seo-block__content p {
        font-size: 13px;
    }
}

/* ========================================
   RESPONSIVE - TRÈS PETIT ÉCRAN (374px)
   ======================================== */
@media (max-width: 374px) {
    /* Hero */
    .confier-hero {
        min-height: 300px;
    }
    
    .confier-hero__container {
        padding: 70px 16px 50px;
    }
    
    .confier-hero__title {
        font-size: 22px;
    }
    
    .confier-hero__subtitle {
        font-size: 13px;
    }
    
    .confier-hero__breadcrumb {
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Statement intro */
    .statement-intro {
        padding: 28px 0 20px;
    }
    
    .statement-intro__container {
        padding: 0 16px;
    }
    
    .statement-intro__title {
        font-size: 20px;
    }
    
    .statement-intro__text {
        font-size: 13px;
    }
    
    /* Intro split */
    .intro-split__image {
        height: 180px;
    }
    
    .intro-split__content {
        padding: 24px 16px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .intro-split__text {
        font-size: 14px;
    }
    
    /* Piliers */
    .pillars {
        padding: 32px 0;
    }
    
    .pillars__container {
        padding: 0 16px;
    }
    
    .pillar-card {
        padding: 16px;
        gap: 12px;
    }
    
    .pillar-card__icon {
        width: 40px;
        height: 40px;
    }
    
    .pillar-card__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .pillar-card__title {
        font-size: 15px;
    }
    
    .pillar-card__text {
        font-size: 12px;
    }
    
    /* Process */
    .process {
        padding: 32px 0;
    }
    
    .process__container {
        padding: 24px 16px 0;
    }
    
    .process__title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .process__card {
        padding: 16px;
        gap: 12px;
    }
    
    .process__card-number {
        font-size: 20px;
    }
    
    .process__card-title {
        font-size: 13px;
    }
    
    .process__card-text {
        font-size: 11px;
    }
    
    .process__card-icon {
        width: 32px;
        height: 32px;
    }
    
    /* Visual break */
    .visual-break {
        height: 200px;
    }
    
    .visual-break__content {
        padding: 24px 16px;
    }
    
    .visual-break__quote {
        font-size: 18px;
    }
    
    /* Expertise */
    .expertise {
        padding: 32px 0;
    }
    
    .expertise__container {
        padding: 0 16px;
    }
    
    .expertise__image {
        height: 180px;
    }
    
    .expertise__list li {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .expertise__note {
        font-size: 13px;
    }
    
    /* Différenciation */
    .difference {
        padding: 32px 0;
    }
    
    .difference__container {
        padding: 0 16px;
    }
    
    .difference__card {
        padding: 16px;
        gap: 12px;
    }
    
    .difference__card-icon {
        width: 38px;
        height: 38px;
    }
    
    .difference__card-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .difference__card-title {
        font-size: 14px;
    }
    
    .difference__card-text {
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    /* SEO */
    .seo-block {
        padding: 32px 0;
    }
    
    .seo-block__container {
        padding: 0 16px;
    }
    
    .seo-block__content h2 {
        font-size: 14px;
    }
    
    .seo-block__content p {
        font-size: 12px;
    }
}
