:root {
    --primary-color: #889884;
    /* Sage green requested by user */
    --primary-dark: #6D7D6A;
    --primary-light: #A5B3A1;
    --text-main: #FBF9F6;
    /* Blanc nacre */
    --text-muted: #E5E2DC;
    --bg-main: #889884;
    /* The main background is now the requested primary color */
    --glass-bg: rgba(255, 255, 255, 0.05);
    /* very dark/transparent glass over sage */
    --glass-border: rgba(255, 255, 255, 0.15);
    --transition-speed: 0.3s;
    --brand-gold: #F8F6F0;
    /* Or clair et lumineux */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Forum', serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* subtle texture or noise could be added, but flat looks premium too */
}

h1,
h2,
h3,
.logo {
    font-family: 'Forum', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Glassmorphism Utilities with SHARP edges */
.glass {
    background: rgba(136, 152, 132, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background-color: var(--text-main);
    color: #2C3E2D;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 30px;
    right: 8%;
    z-index: 1000;
}

.logo {
    position: absolute;
    top: 30px;
    left: 25%;
    transform: translateX(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 95px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.logo-name {
    font-family: 'Forum', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--brand-gold);
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: 'Forum', serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--brand-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(214, 192, 129, 0.5);
    /* semi-transparent gold */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links li a {
    font-family: 'Forum', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--brand-gold);
    transition: all var(--transition-speed);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-only {
    display: none !important;
}

.hamburger {
    display: none;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #FFF;
}

/* Buttons (Sharp) */
.btn-primary {
    font-family: 'Forum', serif;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #FFF;
    color: #2C3E2D !important;
    padding: 14px 30px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.btn-outline {
    font-family: 'Forum', serif;
    font-size: 14px;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--brand-gold) !important;
    padding: 12px 28px;
    border: 1px solid var(--brand-gold);
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all var(--transition-speed);
}

.btn-outline:hover,
.nav-links li a.btn-outline:hover {
    background-color: var(--brand-gold);
    color: #2C3E2D !important;
}

.btn-primary.block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-dark {
    font-family: 'Forum', serif;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #2C3E2D;
    color: #FFF !important;
    padding: 14px 30px;
    border: none;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    display: inline-block;
    cursor: pointer;
}

.btn-dark:hover {
    background-color: #1A251B;
    transform: translateY(-2px);
}

/* Sections */
main {
    padding-top: 120px;
    min-height: calc(100vh - 200px);
}

.section {
    padding: 100px 8%;
}


.services-section {
    padding-bottom: 40px;
}

.page-header {
    padding: 80px 8% 40px;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Forum', serif;
}

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

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

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.align-start {
    align-items: start;
}

/* Expertise Section (Word Cloud) */
.expertise-section {
    background-color: #C28771;
    /* Elegant soft red/terracotta */
    padding: 20vh 10%;
    position: relative;
    z-index: 10;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-title-container {
    margin-bottom: 80px;
}

.expertise-title {
    font-family: 'Forum', serif;
    font-size: 52px;
    font-weight: 400;
    color: var(--brand-gold);
    margin-left: 15%;
    /* Décalé à droite */
}

.word-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.word {
    font-family: 'Forum', serif;
    display: inline-block;
    opacity: 0;
    /* intersection observer sets this to 1 */
    text-align: center;
}

.word-wrapper {
    padding: 10px 15px;
    transition: transform 0.5s ease;
}

/* Pseudo-random spacing */
.word-wrapper:nth-child(even) {
    transform: translateY(30px);
}

.word-wrapper:nth-child(3n) {
    transform: translateY(-40px);
}

.word-wrapper:nth-child(5n) {
    transform: translateY(20px);
}

.word-wrapper:nth-child(7n) {
    transform: translateY(-15px);
}

/* Premium styling for words */
.word.size-1 {
    font-size: 28px;
    color: var(--text-main);
    letter-spacing: 1px;
}

.word.size-2 {
    font-size: 38px;
    color: var(--text-main);
}

.word.size-3 {
    font-size: 48px;
    color: var(--text-main);
}

.word.size-4 {
    font-size: 24px;
    color: var(--text-main);
    letter-spacing: 2px;
}

/* Animation Delays */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.delay-7 {
    animation-delay: 0.8s;
}

/* Home Split Layout */
.home-split-layout {
    display: flex;
}

.home-left-content {
    flex: 1;
    padding: 0 5% 100px 8%;
}

.hero-minimal {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
}

.hero-minimal h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #FFF;
}

.hero-minimal p {
    font-family: 'Forum', serif;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 300;
}

.home-about-text {
    max-width: 600px;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.home-about-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #FFF;
    font-weight: 400;
}

.home-about-text p {
    font-family: 'Forum', serif;
    font-size: 24px;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: 300;
}

.home-about-text .highlight-text {
    color: #FFF;
    font-weight: 400;
    margin-top: 40px;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    /* Stronger white line to frame the large text */
}

.home-right-background {
    width: 45%;
}

.hero-fixed-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/images/hero.jpeg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    border-left: 1px solid var(--glass-border);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
}

/* Cards & Content */
.text-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.text-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px 40px;
}

.service-icon {
    font-family: 'Forum', serif;
    font-size: 20px;
    font-weight: 300;
    color: #FFF;
    border-bottom: 1px solid #FFF;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.service-card h3,
.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 400;
}

.service-card p,
.feature-card p {
    color: var(--text-muted);
    font-weight: 300;
}

/* Showcase Grid (Services Page) */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-card {
    background-color: #FFFFD4;
    color: #2C3E2D;
    border: 1px solid #FFFFF0;
    border-radius: 0;
    overflow: hidden;
    transition: transform var(--transition-speed) ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.showcase-card:hover {
    transform: translateY(-5px);
}

.showcase-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
}


.showcase-content {
    padding: 40px;
}

.showcase-content h3 {
    font-family: 'Forum', serif;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #2C3E2D;
}

.showcase-content p {
    font-family: 'Forum', serif;
    font-size: 20px;
    line-height: 1.8;
    color: #2C3E2D;
    font-weight: 400;
}

/* Service Rows */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-row {
    display: flex;
    align-items: center;
    padding: 30px 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.service-details {
    flex: 1 1 250px;
}

.service-details h3 {
    margin: 0;
    font-size: 24px;
}

.service-info {
    display: flex;
    font-family: 'Forum', serif;
    color: #4A5D4E;
    width: 250px;
}

.service-time {
    width: 150px;
    font-size: 16px;
    font-weight: 300;
}

.service-price {
    width: 100px;
    font-size: 16px;
    font-weight: 300;
}

.service-action {
    width: 150px;
    text-align: right;
}

/* Ivory Card Theme */
.ivory-card {
    background: #FFFFD4;
    color: #2C3E2D;
    border: 1px solid #FFFFF0;
    border-radius: 0;
}

.ivory-card .service-info,
.ivory-card p,
.ivory-card h2,
.ivory-card h3,
.ivory-card ul,
.ivory-card li {
    color: #2C3E2D !important;
}

/* Animation triggers */
.slide-left,
.slide-right {
    opacity: 0;
    font-size: 20px;
}

/* B2B Section */
.b2b-section {
    padding-top: 0px;
}

.b2b-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.b2b-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.b2b-card p {
    font-size: 20px;
}

.b2b-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--primary-color);
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: #FFF;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--text-muted);
}

/* Modal Loader */
.modal-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    color: #2C3E2D;
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(44, 62, 45, 0.15);
    border-radius: 50%;
    border-top-color: #2C3E2D;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 25px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Forms & Contacts */
.sharp-hr {
    border: 0;
    height: 1px;
    background: var(--glass-border);
    margin: 30px 0;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 300;
}

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

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.sharp-input {
    width: 100%;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #FFF;
    padding: 15px;
    font-family: 'Forum', serif;
    outline: none;
    transition: border-color var(--transition-speed);
}

.sharp-input:focus {
    border-color: #FFF;
}

/* About Page Custom */
.parallax-wrapper {
    width: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top: 1px solid var(--glass-border);
}

.parallax-spacer {
    height: 400px;
    width: 100%;
}

.about-content-section {
    padding-top: 0;
    padding-bottom: 100px;
}

.text-card-green {
    background-color: var(--bg-main);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 60px;
}

.about-text-wrapper p {
    font-family: 'Forum', serif;
    font-size: 18px;
    line-height: 2;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.about-text-wrapper .lead-text {
    font-family: 'Forum', serif;
    font-size: 32px;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 50px;
}

.about-text-wrapper .highlight-text {
    font-size: 20px;
    color: #FFF;
    font-weight: 400;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 8% 30px;
    background: var(--bg-main);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo-name {
    font-family: 'Forum', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--brand-gold);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-logo-subtitle {
    font-family: 'Forum', serif;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-legal {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.legal-link {
    font-family: 'Forum', serif;
    font-size: 14px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-speed);
}

.legal-link:hover {
    color: var(--brand-gold);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-bottom a:hover {
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    letter-spacing: 1px;
}

/* =========================================
   NOUVEAUX BLOCS D'ACCOMPAGNEMENT (SERVICES)
   ========================================= */

.service-split-layout {
    display: flex;
    min-height: 80vh;
    border-top: 1px solid var(--glass-border);
    /* On retire le background-color ici, il est géré par la partie gauche */
    position: relative;
    z-index: 15;
}

.service-left-content {
    width: 50%;
    /* On remplace "flex: 1" par une largeur stricte de 50% */
    padding: 100px 8%;
    /* J'ai uniformisé le padding pour un meilleur centrage visuel */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: background-color var(--transition-speed);
}

.service-right-background {
    width: 50%;
    /* On passe de 45% à 50% */
    position: relative;
}

/* --- Les 3 nouvelles couleurs apaisantes et premium --- */

.bg-sophro {
    background-color: #7A8576;
    /* Un vert forêt très doux et grisé, légèrement plus profond que le fond principal */
}

.bg-tcc {
    background-color: #757B82;
    /* Un bleu ardoise sourd, qui inspire la structure et le calme (idéal TCC) */
}

.bg-psycho {
    background-color: #7C6E6A;
    /* Un brun-gris chaud et rassurant, évoquant la stabilité et la sécurité */
}

.bg-couple {
    background-color: #938A82;
    /* Un taupe/grège chaleureux et réconfortant */
}

/* --- Fin des couleurs --- */

.service-title {
    font-family: 'Forum', serif;
    font-size: 52px;
    color: var(--text-main);
    margin-bottom: 50px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
    opacity: 0;
}

.service-words {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-word {
    font-family: 'Forum', serif;
    font-size: 32px;
    color: var(--text-main);
    font-weight: 300;
    opacity: 0;
    padding-left: 20px;
    border-left: 2px solid transparent;
    transition: border-color var(--transition-speed);
}

.service-word:hover {
    border-left: 2px solid var(--brand-gold);
    color: #FFF;
}


.service-fixed-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 1px solid var(--glass-border);
}

.animate-on-scroll {
    opacity: 0;
}


/* =========================================
   ALTERNANCE DES BLOCS (Image à gauche)
   ========================================= */

.service-split-layout.reversed {
    flex-direction: row-reverse;
}

/* On déplace la bordure du bon côté pour le bloc inversé */
.service-split-layout.reversed .service-fixed-bg {
    border-left: none;
    border-right: 1px solid var(--glass-border);
}

/* =========================================
   RESPONSIVE MOBILE (SMARTPHONES & TABLETS)
   ========================================= */
@media screen and (max-width: 768px) {

    /* Navbar & Menu */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
        margin: 0;
        padding: 0;
    }

    .navbar {
        top: 0px;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        border: none;
        padding: 15px 20px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background: rgba(136, 152, 132, 0.98);
        z-index: 1000;
    }

    .logo {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        gap: 15px;
    }

    .logo img {
        height: 40px;
    }

    .logo-name {
        font-size: 22px;
    }

    .logo-subtitle {
        display: none;
    }

    /* Nav Links Slide Menu */
    .nav-links {
        position: fixed;
        right: 0px;
        top: 0;
        height: 100vh;
        background-color: #FFFFD4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        gap: 40px;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li a {
        color: #000000 !important;
        font-size: 24px;
        font-weight: bold;
    }

    .nav-links li a.active,
    .nav-links li a:hover {
        color: #000000 !important;
        border-bottom: 2px solid #000000;
    }

    .nav-links li a.btn-outline {
        color: #000000 !important;
        border-color: #000000 !important;
        border-bottom: 1px solid #000000;
    }

    /* Hamburger Lines */
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger div {
        width: 26px;
        height: 2px;
        background-color: var(--brand-gold);
        margin: 6px;
        transition: all 0.3s ease;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: #2C3E2D;
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: #2C3E2D;
    }

    /* Layout & Containers */
    main {
        padding-top: 80px;
    }

    .home-split-layout {
        flex-direction: column-reverse;
        /* image on top of text */
        height: auto;
    }

    .home-left-content {
        width: 100%;
        height: auto;
        padding: 30px 15px 50px 15px;
        overflow-y: visible;
    }

    .home-right-background {
        width: 100%;
        height: 50vh;
        display: block;
        position: relative;
    }

    .hero-fixed-sticky {
        height: 50vh;
        position: relative;
    }

    .section,
    .container {
        padding: 40px 15px;
    }

    /* Typography */
    h1 {
        font-size: 32px;
    }

    h2,
    .hero-minimal h1 {
        font-size: 28px !important;
        margin-left: 0 !important;
    }



    .btn-primary {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
    }

    /* Grids & Flex */
    .showcase-grid,
    .expertise-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-split-layout,
    .service-split-layout.reversed {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .service-left-content {
        padding: 40px 20px;
        width: 100%;
    }

    .service-right-background {
        width: 100%;
    }

    .service-fixed-bg {
        width: 100%;
        height: 40vh;
        border: none;
    }

    /* B2B / RDV Blocks */
    .b2b-content {
        flex-direction: column;
        text-align: center;
    }

    .info-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .rdv-rows {
        max-width: 100%;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-contact {
        text-align: center;
    }


}