/* ... existing styles ... */
:root {
    /* MindOff Color Palette */
    --background: #F6F5F2;
    --background-secondary: #E9F0EC;
    --foreground: #2B2B2B;
    --foreground-secondary: #6E6E6E;
    --accent: #2A6B68;
    --border: rgba(43, 43, 43, 0.1);

    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
}

/* Utilities */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.label-small {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--foreground-secondary);
    display: block;
}

.hairline {
    height: 1px;
    background-color: rgba(43, 43, 43, 0.15);
    width: 6rem;
    transform-origin: left;
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.5s ease;
}

nav.scrolled {
    background-color: rgba(246, 245, 242, 0.9);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
}

.nav-container {
    padding: 0 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 3rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
    perspective: 1000px;
    /* Enable 3D space */
}

.logo-wrapper {
    width: 3rem;
    height: 3rem;
    position: relative;
    transform-style: preserve-3d;
    /* Allow children to be 3D */
    transition: transform 0.1s ease-out;
    /* Smooth follow */
}

.logo-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.logo-path,
.logo-circle {
    stroke: var(--accent);
    transform-origin: center;
}

.logo-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLogo 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.logo-circle {
    stroke: var(--accent);
    stroke-width: 2.5px;
    opacity: 0.8;
    transform: translateZ(-10px);
    /* Depth */
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    transform: translateZ(20px);
    /* Pull text forward */
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@keyframes drawLogo {
    to {
        stroke-dashoffset: 0;
    }
}

/* Components */
.image-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

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

/* Sections */
section {
    position: relative;
    width: 100vw;
    /* min-height: 100vh; */
    overflow: hidden;
    scroll-snap-align: start;
}

.section-pinned {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.section-grid {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .section-grid {
        display: block;
    }
}

/* Hero Specifics */
.hero-section {
    height: 100vh;
    background-color: var(--background);
    position: relative;
}

.hero-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #2A6B68 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.25;
    transform: translate(30%, -30%);
    pointer-events: none;
}

.hero-image-container {
    position: absolute;
    left: 6vw;
    top: 18vh;
    width: 58vw;
    height: 56vh;
    opacity: 0;
    /* Animated in */
    transform: translateY(24px) rotate(-1deg) scale(0.96);
    transition: all 1.1s ease-out;
}

.hero-content {
    position: absolute;
    left: 68vw;
    top: 22vh;
    width: 26vw;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title em {
    color: var(--accent);
    font-style: italic;
}

/* Generic blobs */
.blob-left,
.blob-right,
.blob-center {
    background: radial-gradient(circle, #E9F0EC 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
}

.blob-left {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.blob-right {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
}

.blob-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section Content Positioning (Desktop) */
@media (min-width: 1024px) {

    /* Overwhelm */
    #overwhelm .content-left {
        position: absolute;
        left: 8vw;
        top: 26vh;
        width: 34vw;
    }

    #overwhelm .image-right {
        position: absolute;
        left: 52vw;
        top: 16vh;
        width: 40vw;
        height: 68vh;
    }

    /* Manifesto */
    #manifesto .image-center {
        position: absolute;
        left: 18vw;
        top: 14vh;
        width: 64vw;
        height: 46vh;
    }

    #manifesto .content-center {
        position: absolute;
        left: 50%;
        top: 66vh;
        transform: translateX(-50%);
        width: 80vw;
        text-align: center;
    }

    /* Expertise */
    #expertise .image-left {
        position: absolute;
        left: 8vw;
        top: 16vh;
        width: 38vw;
        height: 68vh;
    }

    #expertise .content-right {
        position: absolute;
        left: 54vw;
        top: 26vh;
        width: 38vw;
    }
}

html {
    scroll-behavior: auto;
    scroll-snap-type: y proximity;
    /* "Proximity" is more premium/polite than "mandatory" */
}

/* Mobile Responsive */
@media (max-width: 1023px) {
    .section-pinned {
        padding: 4rem 1.5rem;
        height: auto;
        min-height: auto;
    }

    .hero-image-container {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 40vh;
        margin-bottom: 2rem;
        transform: none;
        opacity: 1;
    }

    .hero-content {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
    }

    .blob-left,
    .blob-right,
    .blob-center {
        opacity: 0.15;
        width: 300px;
        height: 300px;
    }

    .image-card {
        position: relative !important;
        width: 100% !important;
        height: 300px !important;
        margin-bottom: 2rem;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .content-left,
    .content-right,
    .content-center {
        position: relative !important;
        width: 100% !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }

    .hero-section {
        height: auto;
        padding-top: 6rem;
        padding-bottom: 4rem;
    }
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-text {
    font-size: 1.125rem;
    color: var(--foreground-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

/* Links */
.link-cta {
    display: inline-flex;
    align-items: center;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.link-cta:hover {
    text-decoration: underline;
}

/* Services List */
.container-generic {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    display: flex;
    flex-direction: row;
    /* Horizontal */
    align-items: center;
    /* Center Vertically */
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Deep shadow */
    z-index: 10;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.service-content p {
    color: var(--foreground-secondary);
    margin: 0;
}

.service-card .btn-outline {
    margin-top: 0;
    flex-shrink: 0;
    opacity: 1;
    border-color: rgba(43, 43, 43, 0.1);
    color: var(--foreground);
    background: transparent;
}

.service-card:hover .btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background: var(--background-secondary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Contact Grid */
.grid-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .grid-contact {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.icon-box-small {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.icon-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
}

.icon-btn:hover {
    background: var(--accent);
    color: white;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--foreground-secondary);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--background);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(43, 43, 43, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--foreground-secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(43, 43, 43, 0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 25px rgba(42, 107, 104, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--foreground-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.price-period {
    font-size: 0.9rem;
    color: var(--foreground-secondary);
}

.pricing-details {
    text-align: center;
    font-size: 0.85rem;
    color: var(--foreground-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--foreground);
}

.pricing-features i {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

.pricing-cta {
    width: 100%;
    justify-content: center;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(43, 43, 43, 0.15);
    border-radius: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--foreground);
    background: white;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(42, 107, 104, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.4);
    /* Translucent dark overlay */
    backdrop-filter: blur(8px);
    /* Blur effect */
    z-index: 1000;
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground-secondary);
    transition: color 0.2s;
}

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

.modal-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    /* Smaller, more elegant */
    color: var(--foreground);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
    /* Humbler border */
    padding-bottom: 1rem;
    letter-spacing: -0.01em;
}

.modal-body p {
    color: var(--foreground);
    line-height: 1.8;
    /* Luxurious spacing */
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    /* Smaller, sharper body text */
    font-weight: 300;
    /* Lighter weight */
}

.modal-body strong {
    color: var(--accent);
    font-weight: 500;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.modal-body li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--foreground);
    line-height: 1.6;
    font-size: 0.9rem;
}

.modal-body li strong {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--accent);
    font-size: 0.8rem;
    /* Small, crisp title */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-body li::before {
    content: "—";
    /* Minimalist dash */
    color: var(--accent);
    font-weight: 400;
    font-size: 1rem;
    margin-top: 0;
}

/* Animations classes controlled by JS */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) rotate(0) scale(1) !important;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    /* Luxurious ease: starts slightly fast, slows down gently */
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-block {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger fix for simple grid items if needed, or keep generic */
.fade-in-block-stagger>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in-block-stagger.visible>*:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
}

.fade-in-block-stagger.visible>*:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 100ms;
}

.fade-in-block-stagger.visible>*:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 200ms;
}

.fade-in-block-stagger.visible>*:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 300ms;
}

.fade-in-block-stagger.visible>*:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 400ms;
}
/* === Ajouts 2026-06-12 : FAQ, consentement RGPD, liens footer === */
.faq-item {
    border-bottom: 1px solid rgba(16, 42, 67, 0.12);
    padding: 1.25rem 0;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--foreground, #102A43);
    list-style: none;
    position: relative;
    padding-right: 2rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    color: var(--accent);
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin-top: 0.75rem;
    color: var(--foreground-secondary);
    line-height: 1.6;
}
.consent-group { margin-bottom: 1.5rem; }
.consent-label {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--foreground-secondary);
    line-height: 1.5;
    cursor: pointer;
}
.consent-label input[type="checkbox"] {
    margin-top: 0.2rem;
    width: auto;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.consent-label a { color: var(--accent); text-decoration: underline; }
.footer-copy a { color: inherit; text-decoration: underline; }

/* === Retouches 2026-06-12 : titres Montserrat === */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; }
.hero-title em, .section-title em {
    font-style: normal;
    color: var(--accent);
}
.footer-lang {
    font-size: 0.68rem;
    opacity: 0.55;
    margin-top: 0.4rem;
}

/* === Logo officiel dans un cercle === */
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 2px solid #0d4164;
    border-radius: 50%;
    padding: 16%;
    box-sizing: border-box;
    background: transparent;
}

/* === Méthode 3 étapes, eucalyptus, logo aéré === */
.logo-img { padding: 22%; }
.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}
@media (min-width: 1024px) {
    .method-grid { grid-template-columns: repeat(3, 1fr); }
    .method-grid::before {
        content: "";
        position: absolute;
        top: 2.2rem;
        left: 16%;
        right: 16%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(42,107,104,0.35), transparent);
    }
}
.method-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--background);
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.method-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.07);
}
.method-num {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    background: var(--accent);
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 24px rgba(42,107,104,0.28);
}
.method-step h3 { margin-bottom: 0.8rem; }
.method-step p { color: var(--foreground-secondary); line-height: 1.6; }
.eucalyptus {
    position: absolute;
    width: 130px;
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}
.eu-left { left: 1.5rem; bottom: -2rem; transform: rotate(-14deg) scaleX(-1); }
.eu-right { right: -2.5rem; top: -5.5rem; transform: rotate(22deg); }
#methode .container-generic { position: relative; }

/* === Bande de chiffres (règle pub : les chiffres battent les adjectifs) === */
.stats-strip {
    background: white;
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 15;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) { .stats-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
}
.stat-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--foreground-secondary);
}

/* === Logo : cercle agrandi, M bien visible === */
.logo-wrapper { width: 3.9rem; height: 3.9rem; }
.logo-img { padding: 13%; }
