/* ========================================
   CSS Variables pour le theming
   ======================================== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --accent-orange: #FF5722;
    --accent-teal: #3d9a9a;
    --header-border: #e0e0e0;
    --btn-border: #333333;
    --transition-speed: 0.3s;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --header-border: #333333;
    --btn-border: #ffffff;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    line-height: 1.6;
    min-height: 100vh;
}

/* ========================================
   Text Selection - Orange
   ======================================== */
::selection {
    background-color: var(--accent-orange);
    color: #ffffff;
}

::-moz-selection {
    background-color: var(--accent-orange);
    color: #ffffff;
}

/* ========================================
   Header
   ======================================== */
.header {
    background-color: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 102;
    transition: background-color var(--transition-speed);
    border-bottom: 1px solid var(--btn-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: relative;
    z-index: 102;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    transition: color var(--transition-speed);
    cursor: pointer;
    margin: 0;
}

.logo-link:hover .logo {
    color: var(--accent-orange);
}

.header-buttons {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 102;
}

.header-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--btn-border);
    background: var(--bg-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
    color: var(--text-primary);
}

.header-btn:hover {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
}

.header-btn svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Header Orange Line */
.header-line {
    height: 0px;
    background-color: var(--accent-orange);
}

/* ========================================
   Navigation Menu (Overlay Mobile par défaut)
   ======================================== */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    z-index: 99;
    padding-top: 70px;
    transform: translateX(100%);
    transition: transform var(--transition-speed);
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-list {
    list-style: none;
    padding: 20px 25px;
}

.nav-item {
    margin-bottom: 15px;
}

.nav-link {
    font-family: 'Bebas Neue', sans-serif;
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    padding: 12px 15px;
    border-left: 3px solid transparent;
    transition: all var(--transition-speed);
}

.nav-link:hover,
.nav-link.active {
    border-left-color: var(--accent-orange);
}

/* Afficher le bouton menu sur mobile */
.menu-toggle {
    display: flex;
    position: relative;
    z-index: 101;
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
    padding: 30px 25px;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 40px 20px 60px 20px;
}

/* Hero réduit pour les pages articles (sans icône) */
.hero:not(:has(.hero-icon)) {
    padding: 20px 0px 40px 0px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.hero:not(:has(.hero-icon)) .hero-text {
    padding-left: 0;
    text-align: center;
}

.hero-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles pour les images logo */
.hero-logo-light,
.hero-logo-dark {
    width: 100%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
}

/* Animation du logo - arrivée depuis la gauche */
.animate-logo {
    animation: logoEntrance 1s ease-out;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    width: 100%;
    text-align: center;
}


.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0px;
    line-height: 1;
    color: var(--text-primary);
}

/* Animation pour CONSULTANTE RETAIL */
.animate-retail {
    animation: slideFromLeft 1s ease-out;
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-location {
    font-family: 'Bebas Neue', sans-serif;
    display: inline;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 25px;
    margin-top: -2px;
    line-height: 1;
    text-align: center;
}

/* Animation pour NEUCHÂTEL */
.animate-location {
    animation: slideFromRight 1.2s ease-out;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: left;
}

.hero-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.35;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Animation pour Stratégie & Accompagnement */
.animate-strategy {
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   Arrow Divider - Flèche entre sections
   ======================================== */
.arrow-divider {
    text-align: center;
    margin: 40px 0;
}

.arrow-divider i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    transition: opacity 0.3s ease;
}

/* ========================================
   Prospect Message - Hiérarchie visuelle
   ======================================== */
.prospect-message {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.prospect-hook {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 0;
}

.hook-ampersand {
    color: var(--accent-orange);
    margin-right: 6px;
}

.prospect-pain {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.prospect-pain .separator {
    color: var(--accent-orange);
    font-weight: 700;
    font-style: normal;
    margin: 0 4px;
}

.prospect-promise {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--accent-orange);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.prospect-conviction-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.prospect-conviction {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.prospect-conviction .separator {
    color: var(--accent-orange);
    font-weight: 700;
    font-style: normal;
    margin: 0 4px;
}

/* Responsive prospect message */
@media (min-width: 768px) {
    .prospect-hook {
        font-size: 1.4rem;
    }

    .prospect-pain {
        font-size: 1.25rem;
    }

    .prospect-promise {
        font-size: 3.2rem;
    }

    .prospect-conviction {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .prospect-message {
        padding: 80px 20px 60px;
    }

    .prospect-hook {
        font-size: 2.3rem;
    }

    .prospect-promise {
        font-size: 3.8rem;
    }
}

/* ========================================
   Coffee Intro Section - Impactante
   ======================================== */
.coffee-intro {
    text-align: center;
    padding: 40px 20px 80px;
    margin-bottom: 60px;
}

.coffee-icon {
    margin-bottom: 40px;
}

.coffee-icon i {
    font-size: 8rem;
    color: var(--accent-orange);
    display: inline-block;
    animation: coffeeFloat 3s ease-in-out infinite;
}

@keyframes coffeeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.coffee-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coffee-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.coffee-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 50px;
    font-weight: 400;
}

.coffee-emoji {
    font-size: 1.8rem;
    display: inline-block;
    margin-right: 10px;
    animation: coffeeRotate 2s ease-in-out infinite;
}

@keyframes coffeeRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.coffee-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: transparent;
    border: 1px solid var(--accent-orange);
    border-radius: 44px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.coffee-cta:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.coffee-cta-diag {
    margin-top: 20px;
    gap: 10px;
}

.coffee-cta-filled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 50px;
    background: var(--accent-orange);
    border: none;
    border-radius: 44px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.coffee-cta-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
    background: #ff6a3c;
}

/* Responsive Coffee Section */
@media (max-width: 767px) {
    .coffee-intro {
        padding: 60px 20px;
    }

    .coffee-icon i {
        font-size: 5rem;
    }

    .coffee-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .coffee-question {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .coffee-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .coffee-emoji {
        font-size: 1.5rem;
    }

    .coffee-cta {
        font-size: 1.4rem;
        padding: 16px 40px;
    }
}

@media (min-width: 768px) {
    .coffee-intro {
        padding: 100px 40px;
    }

    .coffee-icon i {
        font-size: 10rem;
    }

    .coffee-title {
        font-size: 3rem;
    }

    .coffee-question {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .coffee-subtitle {
        font-size: 1.4rem;
    }

    .coffee-emoji {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .coffee-intro {
        padding: 120px 60px;
    }

    .coffee-icon i {
        font-size: 12rem;
    }

    .coffee-title {
        font-size: 3.5rem;
    }

    .coffee-question {
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .coffee-subtitle {
        font-size: 1.5rem;
    }

    .coffee-cta {
        font-size: 1.8rem;
        padding: 22px 60px;
    }
}

@media (min-width: 1440px) {
    .coffee-intro {
        padding: 140px 80px;
    }

    .coffee-title {
        font-size: 4rem;
    }

    .coffee-question {
        font-size: 3.6rem;
        margin-bottom: 30px;
    }

    .coffee-subtitle {
        font-size: 1.6rem;
    }
}

/* ========================================
   Services Introduction Section
   ======================================== */
.services-intro {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 60px;
}

.intro-question {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.intro-solution {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 30px;
    letter-spacing: 1px;
}


/* CTA sous les cards services */
.services-cta {
    margin-top: 60px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 60px;
    width: 100%;
}

.faq-section .intro-solution {
    margin-bottom: 8px;
}

.faq-section .intro-question {
    margin-bottom: 0;
}

.faq-accordion {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .faq-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.open,
.faq-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-question-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
}

.faq-icon {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    color: var(--accent-orange);
    line-height: 1;
    transition: transform 0.35s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 800px;
}

.faq-answer-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding: 0 40px 30px;
}

@media (min-width: 768px) {
    .faq-question { padding: 35px 50px; }
    .faq-question-text { font-size: 1.15rem; }
    .faq-answer-text { font-size: 1.05rem; padding: 0 50px 35px; }
}

@media (min-width: 1024px) {
    .faq-accordion {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .faq-question { padding: 40px 60px; }
    .faq-question-text { font-size: 1.2rem; }
    .faq-answer-text { font-size: 1.1rem; padding: 0 60px 40px; }
}

/* Services Cards Grid */
.services-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
}

.service-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    background-color: transparent;
    border-radius: 32px;
}

[data-theme="dark"] .service-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
    border-color: var(--accent-orange);
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    margin: 0 auto 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-item:hover .service-icon-circle {
    opacity: 1;
    transform: scale(1.1);
}

.service-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-primary);
    text-align: left;
    list-style: none;
    padding: 0 1.4em;
    margin: 0;
}

.service-description li {
    position: relative;
    padding-left: 1.8em;
    padding-right: 1.4em;
    margin-bottom: 10px;
}

.service-description li::before {
    content: '›';
    color: var(--accent-orange);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* Responsive Services */
@media (min-width: 768px) {
    .intro-question {
        font-size: 1.5rem;
        max-width: 900px;
    }

    .intro-solution {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .service-item {
        padding: 50px 40px;
    }

    .service-title {
        font-size: 2rem;
    }

    .service-description {
        font-size: 1.05rem;
    }
}

@media (min-width: 1024px) {
    .intro-question {
        font-size: 1.6rem;
        max-width: 1000px;
    }

    .intro-solution {
        font-size: 3rem;
        margin-bottom: 50px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-item {
        padding: 60px 40px;
    }

    .service-icon-circle {
        width: 70px;
        height: 70px;
    }

    .service-title {
        font-size: 2.2rem;
    }

    .service-description {
        font-size: 1.1rem;
    }
}

@media (min-width: 1440px) {
    .intro-question {
        font-size: 1.7rem;
    }

    .intro-solution {
        font-size: 3.5rem;
    }

    .service-icon-circle {
        width: 80px;
        height: 80px;
    }

    .service-title {
        font-size: 2.4rem;
    }
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation plus longue pour la section coffee */
.coffee-intro.scroll-reveal {
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Animation de la flèche */
.arrow-divider {
    opacity: 0;
    animation: arrowReveal 1.5s ease-out forwards, arrowBounce 2s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

@keyframes arrowReveal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Délai pour les cartes services */
.service-card.scroll-reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card.scroll-reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card.scroll-reveal:nth-child(3) {
    transition-delay: 0.3s;
}

/* ========================================
   Timeline Animations
   ======================================== */

/* Animation de la timeline */
.timeline-item.scroll-reveal {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.timeline-item.scroll-reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animation du marqueur avec pulsation */
.timeline-marker {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(61, 154, 154, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(61, 154, 154, 0);
    }
}

/* Animation spéciale pour les marqueurs highlight */
.timeline-item.highlight .timeline-marker {
    animation: markerPulseHighlight 2s ease-in-out infinite;
}

@keyframes markerPulseHighlight {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 87, 34, 0);
    }
}

/* Animation des skill tags */
.skill-tag-animate {
    opacity: 0;
    transform: translateY(20px);
    animation: skillTagFadeIn 0.6s ease-out forwards;
}

.timeline-item.visible .skill-tag-animate:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item.visible .skill-tag-animate:nth-child(2) {
    animation-delay: 0.3s;
}

.timeline-item.visible .skill-tag-animate:nth-child(3) {
    animation-delay: 0.4s;
}

.timeline-item.visible .skill-tag-animate:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes skillTagFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation du about-section-subtitle */
.about-section-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    text-align: left;
}

.about-section.scroll-reveal {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-section.scroll-reveal.visible {
    opacity: 1;
    transform: scale(1);
}

/* ========================================
   Media Queries - Mobile (max 480px)
   ======================================== */
@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 35px;
    }

    .hero-icon {
        width: 100%;
        justify-content: center;
    }

    .hero-logo-light,
    .hero-logo-dark,
    .hero-logo-svg {
        max-width: 180px;
    }

    .hero-text {
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0px;
        line-height: 1;
    }

    .hero-location {
        font-size: 1.9rem;
        margin-bottom: 30px;
        margin-top: -2px;
        line-height: 1;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        text-align: center;
    }

    .hero-tagline {
        font-size: 1.3rem;
        margin-top: 30px;
        max-width: 95%;
        line-height: 1.35;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .home-page .section-title {
        font-size: 1.4rem;
    }
}

/* ========================================
   Media Queries - Mobile général (max 767px)
   ======================================== */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.9rem;
    }

    .home-page .section-title {
        font-size: 1.5rem;
    }

    .section-question {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* ========================================
   Section Separator
   ======================================== */
.section-separator {
    width: 100%;
    height: 0;
    border-bottom: 1px solid var(--btn-border);
    margin-bottom: 20px;
}

/* ========================================
   DC1 - Puces et éléments orange
   ======================================== */
.dc1 {
    color: var(--accent-orange);
    font-weight: 600;
    margin-right: 8px;
    display: inline-block;
    width: 20px;
}

/* ========================================
   Content Sections
   ======================================== */
.content-section {
	font-family: 'Open Sans', sans-serif;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-primary);
}

.separator-orange {
    color: var(--accent-orange);
}

/* Réduction de la taille sur la page d'accueil */
.home-page .section-title {
    font-size: 1.8rem;
}

/* Titres dans les articles */
.article-content .section-title {
    font-size: 1.9rem;
    line-height: 1.1;
}

.section-question {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Question lines avec indentation suspendue */
.question-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.question-line:last-child {
    margin-bottom: 0;
}

.question-line .dc1 {
    flex-shrink: 0;
    margin-right: 8px;
}

.question-text {
    flex: 1;
    line-height: inherit;
}

.section-intro {
    font-size: 1rem;
    margin-bottom: 10px;
    text-decoration: underline;
    color: var(--text-primary);
}

.section-list {
    list-style: none;
    padding-left: 0;
}

.section-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.section-list li::before {
    content: "- ";
}

.section-linkedin {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
	margin-top: 60px;
    margin-bottom: 60px;
    line-height: 1.3;
    color: var(--text-primary);
}

/* ========================================
   Article Content - Pages d'articles
   ======================================== */
.article-content {
    font-family: 'Open Sans', sans-serif;
}

.article-figure {
    margin: 2.5rem -25px;
    width: calc(100% + 50px);
}

.article-figure img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

@media (max-width: 1023px) {
    .article-figure--left img {
        object-position: left center;
    }
}

.article-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 25px;
}

/* Liens externes dans les articles */
.external-link {
    color: var(--text-primary);
    text-decoration: underline;
    transition: color var(--transition-speed);
}

.external-link:hover {
    color: var(--accent-orange);
}

.idees-recues-list {
    margin: 30px 0;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: background-color 0.3s ease;
    background-color: transparent;
    border-radius: 32px;
}

/* Mode sombre */
[data-theme="dark"] .idees-recues-list {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Effet hover - changement de fond subtil */
.idees-recues-list:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .idees-recues-list:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.idee-recue {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding-left: 0;
}

.idee-recue:last-child {
    margin-bottom: 0;
}

/* Responsive article text */
@media (min-width: 768px) {
    .article-text {
        font-size: 1.1rem;
        line-height: 1.9;
        margin-bottom: 30px;
    }

    .idees-recues-list {
        padding: 30px;
        margin: 40px 0;
    }

    .idee-recue {
        margin-bottom: 18px;
    }
}

@media (min-width: 1024px) {
    .article-text {
        font-size: 1.15rem;
        line-height: 2;
        margin-bottom: 35px;
    }

    .idees-recues-list {
        padding: 35px;
        margin: 50px 0;
    }

    .idee-recue {
        margin-bottom: 20px;
    }
}

/* ========================================
   Article Tags - Mots-clés
   ======================================== */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--btn-border);
}

.article-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.article-tag::before {
    content: '#';
    color: var(--accent-orange);
}

.article-tag:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    .article-tags {
        gap: 16px;
        margin-top: 60px;
        padding-top: 50px;
    }

    .article-tag {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .article-tags {
        gap: 18px;
        margin-top: 70px;
    }

    .article-tag {
        font-size: 0.95rem;
    }
}

/* ========================================
   Navigation Articles - Précédent/Suivant
   ======================================== */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
}

.article-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--accent-orange);
    border-radius: 44px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.article-nav-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.article-nav-btn.prev::before {
    content: '←';
    font-size: 1.2rem;
}

.article-nav-btn.next::after {
    content: '→';
    font-size: 1.2rem;
}

.article-nav-btn.disabled {
    opacity: 0;
    pointer-events: none;
}

/* Responsive navigation */
@media (max-width: 600px) {
    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .article-nav-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}

@media (min-width: 768px) {
    .article-navigation {
        margin-top: 80px;
    }

    .article-nav-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }
}

/* ========================================
   Archives LinkedIn - Liens cliquables
   ======================================== */
.section-linkedin-link {
    text-decoration: none;
    display: inline-block;
    border-bottom: 3px solid transparent;
    transition: border-color var(--transition-speed);
    line-height: 1.3;
}

.section-linkedin-link .section-linkedin {
    margin-bottom: 5px;
}

.section-linkedin-link:hover {
    border-bottom-color: var(--accent-orange);
}

.section-linkedin-link:hover .section-linkedin {
    color: var(--text-primary);
}

/* ========================================
   CTA Button
   ======================================== */
.cta-container {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 50px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 60px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    border-radius: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.cta-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* ========================================
   CTA Inline - Entre les sections
   ======================================== */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-inline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--accent-orange);
    border-radius: 44px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
}

.cta-inline-btn::after {
    content: '→';
    margin-left: 10px;
    transition: transform var(--transition-speed);
}

.cta-inline-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.cta-inline-btn:hover::after {
    transform: translateX(5px);
}

/* Responsive CTA inline */
@media (max-width: 767px) {
    .cta-section {
        margin: 35px 0;
        text-align: center;
    }

    .cta-inline-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
    }
}

@media (min-width: 768px) {
    .cta-section {
        margin: 45px 0;
        text-align: left;
    }

    .cta-inline-btn {
        font-size: 1rem;
        padding: 14px 35px;
    }
}

@media (min-width: 1024px) {
    .cta-section {
        margin: 50px 0;
        text-align: left;
    }

    .cta-inline-btn {
        font-size: 1.05rem;
        padding: 16px 40px;
    }
}

@media (min-width: 1440px) {
    .cta-inline-btn {
        font-size: 1.1rem;
        padding: 18px 45px;
    }
}

/* ========================================
   About Page - Qui je suis
   ======================================== */
.about-hero {
    margin-bottom: 50px;
}

.about-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-top: 20px;
    font-style: italic;
}

.about-section {
    text-align: left;
    margin-bottom: 60px;
}

.about-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    margin-bottom: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-orange);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-orange);
    z-index: 2;
}

.timeline-item.highlight .timeline-marker {
    background: var(--accent-orange);
    color: #ffffff;
}

.timeline-content {
    font-family: 'Open Sans', sans-serif;
}

.timeline-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-period {
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-weight: 400;
    margin-bottom: 12px;
}

.timeline-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.timeline-highlights {
    margin-top: 25px;
}

.timeline-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
    margin-top: 20px;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.timeline-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 600;
}

/* Skills Tags */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.skill-tag {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: opacity 0.3s ease;
}

.skill-tag::before {
    content: '#';
    color: var(--accent-orange);
}

.skill-tag:hover {
    opacity: 0.7;
}

/* Responsive About Page */
@media (min-width: 768px) {
    .about-intro {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-section-title {
        font-size: 2.5rem;
    }

    .about-section-subtitle {
        font-size: 1.15rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 90px;
        margin-bottom: 70px;
    }

    .timeline-marker {
        left: 8px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        border-width: 2px;
        font-weight: 600;
    }

    .timeline-title {
        font-size: 1.8rem;
        font-weight: 400;
    }

    .timeline-period {
        font-size: 1rem;
        font-weight: 400;
    }

    .timeline-description {
        font-size: 1.05rem;
    }

    .timeline-list li {
        font-size: 1rem;
    }

    .skill-tag {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .about-intro {
        font-size: 1.3rem;
        max-width: 900px;
    }

    .timeline-title {
        font-size: 2rem;
        font-weight: 400;
    }

    .timeline-subtitle {
        font-size: 1.2rem;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--header-border);
    margin-top: 80px;
    font-family: 'Open Sans', sans-serif;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 25px 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Colonne 1 : Photo + Brand */
.footer-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.footer-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Colonne 2 : Résumé Qui je suis */
.footer-about {
    text-align: center;
    padding: 0 15px;
}

.footer-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-about-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

/* Colonne 3 : Navigation + Réseaux sociaux */
.footer-links {
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--accent-orange);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--btn-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all var(--transition-speed);
}

.footer-social-link:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--header-border);
    padding: 25px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Footer responsive */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        padding: 60px 60px 40px;
        max-width: 1200px;
        align-items: start;
    }

    .footer-profile {
        align-items: center;
        text-align: center;
    }

    .footer-photo {
        width: 140px;
        height: 140px;
    }

    .footer-about {
        text-align: left;
        padding: 0 30px 0 15px;
    }

    .footer-about-text {
        font-size: 1rem;
    }

    .footer-links {
        text-align: left;
    }

    .footer-nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .footer-link {
        font-size: 1.1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 70px 80px 45px;
        max-width: 1200px;
        gap: 50px;
    }

    .footer-photo {
        width: 160px;
        height: 160px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-section-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .footer-about {
        padding: 0 40px 0 15px;
    }

    .footer-about-text {
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .footer-link {
        font-size: 1.15rem;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 1440px) {
    .footer-content {
        padding: 70px 100px 45px;
        max-width: 1400px;
    }
}

@media (min-width: 1920px) {
    .footer-content {
        padding: 80px 100px 50px;
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .footer-content {
        padding: 90px 120px 55px;
        max-width: 1800px;
    }
}

/* ========================================
   Media Queries - Tablette (768px+)
   ======================================== */
@media (min-width: 768px) {
    /* Garder le menu hamburger sur tablette */
    .menu-toggle {
        display: flex;
    }

    .header-content {
        padding: 18px 60px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .header-btn {
        width: 45px;
        height: 45px;
    }

    .main-content {
        padding: 60px 60px;
        max-width: 1200px;
        margin: 0;
    }

    .hero {
        gap: 30px;
        margin-bottom: 40px;
    }

    .hero-logo-light,
    .hero-logo-dark,
    .hero-logo-svg {
        max-width: 180px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 0px;
        line-height: 1;
    }

    .hero-location {
        font-size: 3rem;
        margin-bottom: 35px;
        margin-top: -3px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 2.2rem;
        line-height: 1;
    }

    .hero-tagline {
        font-size: 1.6rem;
        margin-top: 35px;
        max-width: 700px;
        line-height: 1.35;
    }

    .section-separator {
        width: 100%;
        margin-bottom: 25px;
    }

    .content-section {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .home-page .section-title {
        font-size: 1.5rem;
    }

    .section-question {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .section-intro {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .section-list li {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .cta-container {
        margin-top: 70px;
        padding-bottom: 70px;
    }

    .cta-btn {
        padding: 18px 70px;
        font-size: 1.2rem;
    }

    .nav-item {
        margin-bottom: 20px;
    }

    .nav-link {
        font-size: 1.6rem;
        padding: 14px 15px;
    }
}

/* ========================================
   Media Queries - Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
    /* Cacher le bouton hamburger sur desktop */
    .menu-toggle {
        display: none;
    }

    /* Afficher le menu dans le header */
    .nav-menu {
        position: static;
        transform: translateX(0);
        padding-top: 0;
        background-color: transparent;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0;
        margin: 0;
    }

    .nav-item {
        margin-bottom: 0;
    }

    .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
        padding: 8px 10px 8px 10px;
        border-left: none;
        border-bottom: 2px solid transparent;
        transition: border-color var(--transition-speed);
    }

    .nav-link:hover,
    .nav-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent-orange);
    }

    .header-content {
        padding: 22px 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-buttons {
        display: flex;
        align-items: center;
        gap: 50px;
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .header-btn {
        width: 48px;
        height: 48px;
    }

    .main-content {
        max-width: 1400px;
        margin: 0;
        padding: 80px 80px;
    }

    .hero {
        gap: 30px;
        margin-bottom: 50px;
        padding-top: 0;
    }

    .hero-logo-light,
    .hero-logo-dark,
    .hero-logo-svg {
        max-width: 220px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 4.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 0px;
        line-height: 1;
    }

    .hero-location {
        font-size: 3.5rem;
        margin-bottom: 40px;
        margin-top: -4px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.8rem;
        margin-top: 40px;
        max-width: 850px;
        line-height: 1.35;
    }

    .section-separator {
        width: 100%;
        margin-bottom: 30px;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.3rem;
        margin-bottom: 30px;
    }

    .home-page .section-title {
        font-size: 1.7rem;
    }

    .section-question {
        font-size: 1.15rem;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    .section-intro {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .section-list li {
        font-size: 1.15rem;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .cta-container {
        margin-top: 90px;
        padding-bottom: 90px;
    }

    .cta-btn {
        padding: 20px 80px;
        font-size: 1.3rem;
        letter-spacing: 1.5px;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 8px 8px 8px 8px;
    }
}

/* ========================================
   Media Queries - Large Desktop (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    .header-content {
        padding: 25px 100px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-link {
        font-size: 1.4rem;
        padding: 8px 10px 8px 10px;
    }

    .nav-list {
        gap: 15px;
    }

    .main-content {
        max-width: 1600px;
        margin: 0;
        padding: 100px 100px;
    }

    .hero {
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-logo-light,
    .hero-logo-dark,
    .hero-logo-svg {
        max-width: 240px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 2px;
        margin-bottom: 0px;
        line-height: 1;
    }

    .hero-location {
        font-size: 3.8rem;
        margin-bottom: 45px;
        margin-top: -5px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 2rem;
        margin-top: 45px;
        max-width: 950px;
        line-height: 1.35;
    }

    .section-title {
        font-size: 2.6rem;
        margin-bottom: 35px;
    }

    .home-page .section-title {
        font-size: 1.9rem;
    }

    .section-question {
        font-size: 1.2rem;
        margin-bottom: 35px;
    }

    .section-intro {
        font-size: 1.3rem;
    }

    .section-list li {
        font-size: 1.25rem;
        margin-bottom: 18px;
    }

    .content-section {
        margin-bottom: 50px;
    }

    .cta-btn {
        padding: 22px 90px;
        font-size: 1.4rem;
    }
}

/* ========================================
   Main Content - CORRECTION
   ======================================== */
.main-content {
    padding: 30px 25px;
    max-width: 600px;
    margin: 0 auto; /* ← CHANGEMENT ICI */
    width: 100%;
}

/* Tablette (768px+) */
@media (min-width: 768px) {
    .main-content {
        padding: 60px 60px;
        max-width: 1200px;
        margin: 0 auto; /* ← CHANGEMENT ICI */
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .main-content {
        max-width: 1200px; /* ← GARDE UNE LIMITE RAISONNABLE */
        margin: 0 auto; /* ← CHANGEMENT ICI */
        padding: 80px 80px;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .main-content {
        max-width: 1400px; /* ← LIMITE MAXIMALE */
        margin: 0 auto; /* ← CHANGEMENT ICI */
        padding: 100px 100px;
    }
}

/* ========================================
   NOUVEAU : Très grands écrans (1920px+)
   ======================================== */
@media (min-width: 1920px) {
    .main-content {
        max-width: 1600px;
        margin: 0 auto;
        padding: 120px 100px;
    }

    .hero {
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-logo-light,
    .hero-logo-dark,
    .hero-logo-svg {
        max-width: 260px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 5rem;
        margin-bottom: 0px;
        line-height: 1;
    }

    .hero-location {
        font-size: 4.2rem;
        margin-bottom: 50px;
        margin-top: -5px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 3.2rem;
    }

    .hero-tagline {
        font-size: 2.2rem;
        margin-top: 50px;
        max-width: 1100px;
        line-height: 1.35;
    }

    .section-title {
        font-size: 3rem;
    }

    .home-page .section-title {
        font-size: 2.2rem;
    }
}

/* Ultra-larges écrans (2560px+) */
@media (min-width: 2560px) {
    .main-content {
        max-width: 1800px;
        margin: 0 auto;
        padding: 150px 120px;
    }

    .hero {
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-logo-light,
    .hero-logo-dark,
    .hero-logo-svg {
        max-width: 280px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 5.5rem;
        margin-bottom: 0px;
        line-height: 1;
    }

    .hero-location {
        font-size: 4.5rem;
        margin-bottom: 55px;
        margin-top: -6px;
        line-height: 1;
    }

    .hero-subtitle {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 2.5rem;
        margin-top: 55px;
        max-width: 1200px;
        line-height: 1.35;
    }
}

.header-content {
    max-width: 1800px; /* Même largeur que main-content */
    margin: 0 auto;
    padding: 15px 20px;
}

@media (min-width: 1920px) {
    .header-content {
        padding: 25px 100px;
    }
}

/* ========================================
   Header - ALIGNEMENT AVEC LE CONTENU
   ======================================== */
.header {
    background-color: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color var(--transition-speed);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px; /* ← MÊME PADDING HORIZONTAL QUE MAIN-CONTENT */
    max-width: 600px; /* ← MÊME MAX-WIDTH QUE MAIN-CONTENT */
    margin: 0 auto; /* ← CENTRÉ */
}

/* ========================================
   Header Line - ALIGNEMENT
   ======================================== */
.header-line {
    height: 1px;
    background-color: var(--accent-orange);
    max-width: 600px; /* ← MÊME LARGEUR */
    margin: 0 auto; /* ← CENTRÉ */
}

/* ========================================
   Media Queries - Header aligné
   ======================================== */

/* Tablette (768px+) */
@media (min-width: 768px) {
    .header-content {
        padding: 12px 60px; /* ← MÊME PADDING QUE MAIN-CONTENT */
        max-width: 1200px; /* ← MÊME MAX-WIDTH */
        margin: 0 auto;
    }
    
    .header-line {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .header-content {
        padding: 15px 80px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .header-line {
        max-width: 1200px;
        margin: 0 auto;
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .header-content {
        padding: 18px 100px;
        max-width: 1400px; /* ← MÊME MAX-WIDTH QUE MAIN-CONTENT */
        margin: 0 auto;
    }
    
    .header-line {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Très grands écrans (1920px+) */
@media (min-width: 1920px) {
    .header-content {
        padding: 20px 100px;
        max-width: 1600px; /* ← MÊME MAX-WIDTH */
        margin: 0 auto;
    }
    
    .header-line {
        max-width: 1600px;
        margin: 0 auto;
    }
}

/* Ultra-larges écrans (2560px+) */
@media (min-width: 2560px) {
    .header-content {
        padding: 25px 120px;
        max-width: 1800px; /* ← MÊME MAX-WIDTH */
        margin: 0 auto;
    }
    
    .header-line {
        max-width: 1800px;
        margin: 0 auto;
    }
}
/* Tablette (768px+) */
@media (min-width: 768px) {
    .header-content {
        padding: 12px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* ← SUPPRIMEZ CE BLOC */
    /* .header-line {
        max-width: 1200px;
        margin: 0 auto;
    } */
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .header-content {
        padding: 15px 80px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* ← SUPPRIMEZ CE BLOC */
    /* .header-line {
        max-width: 1200px;
        margin: 0 auto;
    } */
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .header-content {
        padding: 18px 100px;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    /* ← SUPPRIMEZ CE BLOC */
    /* .header-line {
        max-width: 1400px;
        margin: 0 auto;
    } */
}

/* Très grands écrans (1920px+) */
@media (min-width: 1920px) {
    .header-content {
        padding: 20px 100px;
        max-width: 1600px;
        margin: 0 auto;
    }
    
    /* ← SUPPRIMEZ CE BLOC */
    /* .header-line {
        max-width: 1600px;
        margin: 0 auto;
    } */
}

/* Ultra-larges écrans (2560px+) */
@media (min-width: 2560px) {
    .header-content {
        padding: 25px 120px;
        max-width: 1800px;
        margin: 0 auto;
    }
    
    /* ← SUPPRIMEZ CE BLOC */
    /* .header-line {
        max-width: 1800px;
        margin: 0 auto;
    } */
}
/* ========================================
   Archives Grid - Research Archive Style
   ======================================== */
.archives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0;
}

.archive-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    position: relative;
    background-color: transparent;
}

.archive-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: color 0.3s ease;
    line-height: 1;
}

.archive-card:hover .archive-number {
    color: var(--accent-orange);
}

.archive-content {
    flex: 1;
    text-align: center;
}

.archive-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.archive-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Responsive archives */
@media (min-width: 768px) {
    .archives-grid {
        gap: 20px;
    }

    .archive-card {
        padding: 28px;
        gap: 30px;
    }

    .archive-number {
        font-size: 2.6rem;
        font-weight: 400;
    }

    .archive-title {
        font-size: 1.8rem;
        font-weight: 400;
    }

    .archive-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .archive-card {
        padding: 32px;
        gap: 35px;
    }

    .archive-number {
        font-size: 3rem;
        font-weight: 400;
    }

    .archive-title {
        font-size: 2rem;
        font-weight: 400;
    }

    .archive-subtitle {
        font-size: 1.05rem;
    }
}

/* ========================================
   Services Grid - Cards (Style Atlas)
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 40px 0;
}

.service-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px;
    position: relative;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

/* Mode sombre */
[data-theme="dark"] .service-card {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Effet hover - changement de fond subtil */
.service-card:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

[data-theme="dark"] .service-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.card-title {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Tablette et desktop - Garder une seule colonne */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/* Coffee Icon SVG in button */
.coffee-icon-svg {
    margin-left: 10px;
    display: block;
    flex-shrink: 0;
    animation: coffeeWiggle 1.5s ease-in-out 0.5s;
}

.coffee-icon-svg .a {
    fill: none;
    stroke: var(--accent-orange);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.coffee-cta:hover .coffee-icon-svg .a {
    stroke: #ffffff;
}

.coffee-cta-filled .coffee-icon-svg .a {
    stroke: #ffffff;
}

@keyframes coffeeWiggle {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   OFFERS PAGE - Page des offres (Cartes compactes + Modals)
   ======================================== */

/* Section des offres compactes */
.offers-compact-section {
    margin-bottom: 80px;
}

.offers-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.offers-section-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
}

/* Grille de cartes compactes */
.offers-compact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

/* Carte compacte d'offre */
.offer-compact-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    background-color: transparent;
    border-radius: 12px;
    cursor: pointer;
}

[data-theme="dark"] .offer-compact-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.offer-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
    border-color: var(--accent-orange);
}

.offer-compact-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--accent-orange);
    margin-bottom: 10px;
    opacity: 0.7;
}

.offer-compact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.offer-compact-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-orange);
    font-style: italic;
    margin-bottom: 12px;
}

.offer-compact-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.offer-compact-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.offer-compact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: transparent;
    border: 1.5px solid var(--accent-orange);
    border-radius: 44px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.offer-compact-btn:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========================================
   MODALS - Fenêtres de détails
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-primary);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--btn-border);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 30px 20px;
    border-bottom: 1px solid var(--btn-border);
    text-align: center;
}

.modal-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-orange);
    margin-bottom: 10px;
    opacity: 0.7;
}

.modal-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.modal-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--accent-orange);
    font-style: italic;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p,
.modal-body ul,
.modal-body h4 {
    text-align: left;
}

.modal-body p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.modal-body h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 25px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.modal-body ul li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.modal-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 600;
}

.modal-quote {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    margin: 25px 0;
    padding-left: 20px;
    border-left: 3px solid var(--accent-orange);
}

.modal-warning {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    padding: 12px 15px;
    background-color: rgba(255, 87, 34, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--accent-orange);
}

[data-theme="dark"] .modal-warning {
    background-color: rgba(255, 87, 34, 0.1);
}

.modal-price {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 87, 34, 0.05);
    border-radius: 8px;
}

[data-theme="dark"] .modal-price {
    background-color: rgba(255, 87, 34, 0.1);
}

.modal-price p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.modal-price strong {
    font-size: 1.3rem;
    color: var(--accent-orange);
    font-weight: 700;
}

.modal-price-detail {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--accent-orange);
    border-radius: 44px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed);
    margin: 20px auto 10px;
}

.modal-cta:hover {
    background: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

/* GRAND SÉPARATEUR entre les deux sections principales */
.section-separator-major {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-orange), transparent);
    margin: 80px 0;
    position: relative;
}

.section-separator-major::before {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-orange);
    background-color: var(--bg-primary);
    padding: 0 15px;
    font-size: 1.2rem;
}

/* ========================================
   RESPONSIVE - OFFERS PAGE
   ======================================== */

@media (min-width: 768px) {
    .offers-section-title {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .offers-section-subtitle {
        font-size: 1.4rem;
        margin-bottom: 50px;
    }

    .offers-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .offer-compact-card {
        padding: 30px;
    }

    .offer-compact-number {
        font-size: 3rem;
    }

    .offer-compact-title {
        font-size: 1.6rem;
    }

    .offer-compact-tagline {
        font-size: 1rem;
    }

    .offer-compact-description {
        font-size: 0.95rem;
    }

    .offer-compact-price {
        font-size: 1.5rem;
    }

    .offer-compact-btn {
        font-size: 1rem;
        padding: 12px 30px;
    }

    .modal-header {
        padding: 50px 40px 25px;
    }

    .modal-body {
        padding: 35px 40px;
    }

    .modal-number {
        font-size: 3.5rem;
    }

    .modal-title {
        font-size: 2rem;
    }

    .modal-subtitle {
        font-size: 1.2rem;
    }

    .modal-body p {
        font-size: 1.05rem;
    }

    .modal-body h4 {
        font-size: 1.4rem;
    }

    .modal-body ul li {
        font-size: 1rem;
    }

    .modal-cta {
        font-size: 1.2rem;
        padding: 16px 50px;
    }
}

@media (min-width: 1024px) {
    .offers-section-title {
        font-size: 3.2rem;
        margin-bottom: 25px;
    }

    .offers-section-subtitle {
        font-size: 1.5rem;
    }

    .offers-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .offer-compact-card {
        padding: 35px;
    }

    .offer-compact-title {
        font-size: 1.7rem;
    }

    .modal-number {
        font-size: 4rem;
    }

    .modal-title {
        font-size: 2.2rem;
    }

    .modal-cta {
        font-size: 1.3rem;
        padding: 18px 60px;
    }

    .section-separator-major {
        margin: 100px 0;
    }
}

@media (min-width: 1440px) {
    .offers-section-title {
        font-size: 3.5rem;
    }

    .modal-title {
        font-size: 2.4rem;
    }
}

/* ========================================
   BLOG GRID - Page blog-delphine-champagne
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0 60px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background-color: transparent;
}

[data-theme="dark"] .blog-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
    border-color: var(--accent-orange);
}

/* Image carrée 1:1 */
.blog-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .blog-card-image {
    background-color: rgba(255, 255, 255, 0.05);
}

.blog-card-image img,
.blog-card-image svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card-image img {
    object-fit: cover;
}

.blog-card:hover .blog-card-image img,
.blog-card:hover .blog-card-image svg {
    transform: scale(1.04);
}

/* Texte */
.blog-card-body {
    padding: 24px;
    flex: 1;
}

.blog-card-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Thème clair : fond blanc */
.blog-card-image svg rect:first-of-type {
    fill: #ffffff;
}
.blog-card-image svg text:first-of-type {
    fill: #000000;
}
.blog-card-image svg text:last-of-type {
    fill: #111111;
}

/* Hashtags : fin, noir en clair / blanc en sombre */
.blog-card-image svg text:not(:first-of-type):not(:last-of-type) {
    fill: #111111;
    font-weight: 300;
}

/* Thème sombre : fond noir */
[data-theme="dark"] .blog-card-image svg rect:first-of-type {
    fill: #111111;
}
[data-theme="dark"] .blog-card-image svg text:first-of-type {
    fill: #ffffff;
}
[data-theme="dark"] .blog-card-image svg text:last-of-type {
    fill: #ffffff;
}
[data-theme="dark"] .blog-card-image svg text:not(:first-of-type):not(:last-of-type) {
    fill: #ffffff;
}

/* Tablette : 2 colonnes */
@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }
}

/* Desktop : 3 colonnes */
@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

    .blog-card-body {
        padding: 28px;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }
    /* Lia Chat */
.lia-conversation {
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
}
.lia-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: left !important;
}
.lia-msg-user {
    align-self: flex-end;
    background: var(--accent-orange, #FF5722);
    color: white;
    border-radius: 12px 12px 2px 12px;
}
.lia-msg-lia {
    align-self: flex-start;
    background: var(--bg-secondary, #f5f5f5);
    color: var(--text-primary, #222);
    border-radius: 12px 12px 12px 2px;
}
.lia-typing { opacity: 0.6; font-style: italic; }
```

Puis redeploie `styles.css` sur le VPS depuis PowerShell :
```
scp -F C:\Users\cluig\.ssh\config "C:\Users\cluig\Desktop\DC\styles.css" vps:/var/www/delphine-champagne.ch/styles.css
}

/* Lia Chat */
.lia-conversation {
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
}
.lia-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
    text-align: left !important;
}
.lia-msg-user {
    align-self: flex-end;
    background: var(--accent-orange, #FF5722);
    color: white;
    border-radius: 12px 12px 2px 12px;
}
.lia-msg-lia {
    align-self: flex-start;
    background: var(--bg-secondary, #f5f5f5);
    color: var(--text-primary, #222);
    border-radius: 12px 12px 12px 2px;
}
.lia-typing { opacity: 0.6; font-style: italic; }
