/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --accent: #f5b614;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;

    --font-main: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* Lenis handles smooth scroll */
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-main);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

img, video {
    display: block;
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.section {
    padding: clamp(80px, 12vw, 160px) 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.4s var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--accent);
    color: var(--black);
    border: 2px solid var(--accent);
}

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

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-300);
}

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

.btn--large {
    padding: 18px 44px;
    font-size: 1rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    color: var(--white);
    transition: all 0.4s var(--transition);
}

/* Mobile menu au-dessus de tout */
.mobile-menu {
    z-index: 1001;
}

.nav--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--black);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.nav__logo {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
}

.nav__logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: filter 0.3s ease;
    filter: none; /* logo blanc sur hero sombre */
}

/* Nav scrollée (fond blanc) → logo noir */
.nav--scrolled .nav__logo img {
    filter: brightness(0);
}

.nav__logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition);
}

.nav__logo:hover::after {
    transform: scaleX(1);
}

/* Animation d'entrée du logo au chargement */
@keyframes logoReveal {
    0% { opacity: 0; transform: translateY(-8px) skewX(-5deg); }
    60% { opacity: 1; transform: translateY(2px) skewX(1deg); }
    100% { opacity: 1; transform: translateY(0) skewX(0); }
}

.nav__logo {
    animation: logoReveal 0.8s var(--transition-spring) 0.2s both;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--transition);
}

.nav__link:hover {
    opacity: 1;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--active {
    opacity: 1;
    color: var(--accent);
}

.nav__link--cta {
    opacity: 1;
    background: var(--accent);
    color: var(--black);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(245, 182, 20, 0.3);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all 0.3s var(--transition);
    transform-origin: center;
}

.nav__burger.active span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}

.nav__burger.active span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__link {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s var(--transition);
}

.mobile-menu__link:hover {
    color: var(--accent);
}

.mobile-menu.active .mobile-menu__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu__link--cta {
    color: var(--accent);
}

/* ========================================
   HERO — sticky, vidéo en boucle, sections scrollent par-dessus
   ======================================== */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    z-index: 0;
}

/* Toutes les sections scrollent par-dessus le hero */
.trust,
.methode,
.services,
.cta-band,
.about,
.footer {
    position: relative;
    z-index: 2;
    background: var(--white);
}

.trust {
    background: var(--gray-100);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
}

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

.hero__bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 50%, var(--gray-800) 100%);
}

.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   HERO SLIDESHOW (temporaire sans showreel)
   ======================================== */
.hero__slideshow {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroSlide 20s infinite;
    will-change: opacity;
}

.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 5s; }
.hero__slide:nth-child(3) { animation-delay: 10s; }
.hero__slide:nth-child(4) { animation-delay: 15s; }

@keyframes heroSlide {
    0%        { opacity: 1; }
    22%       { opacity: 1; }
    27%       { opacity: 0; }
    97%       { opacity: 0; }
    100%      { opacity: 1; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero__title {
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero__title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
}

.hero__title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
}

.hero__cta {
    opacity: 0;
    transform: translateY(20px);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* ========================================
   ILS M'ONT FAIT CONFIANCE
   ======================================== */
.trust {
    background: var(--gray-100);
    padding: clamp(60px, 8vw, 100px) 0;
}

.trust__header {
    text-align: center;
    margin-bottom: 48px;
}

.trust__logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 20px;
    align-items: center;
    justify-items: center;
}

.trust__logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    min-width: 0;
    transition: transform 0.3s ease;
}

.trust__logo-item:hover {
    transform: translateY(-3px);
}

.trust__logo-item img {
    max-height: 100px;
    max-width: 100%;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.trust__logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .trust__logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px 12px;
    }
    .trust__logos .trust__logo-item:nth-child(6) {
        grid-column: 2;
    }
    .trust__logo-item img {
        max-height: 52px;
        max-width: 110px;
    }
}

.trust__logo-placeholder {
    color: var(--gray-400);
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust__logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section__header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Reveal animation base state */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
}

/* ========================================
   MÉTHODE - TIMELINE
   ======================================== */
.methode {
    background: var(--white);
}

.methode__timeline {
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.methode__tl-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 48px;
    position: relative;
    padding-bottom: 8px;
}

.methode__tl-item:not(:last-child) {
    margin-bottom: 16px;
}

.methode__tl-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
    position: relative;
}

.methode__tl-item:not(:last-child) .methode__tl-left::after {
    content: '';
    width: 1px;
    flex: 1;
    background: var(--gray-200);
    margin-top: 12px;
    min-height: 40px;
}

.methode__tl-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-200);
    transition: color 0.3s ease;
    font-variant-numeric: tabular-nums;
}

.methode__tl-item:hover .methode__tl-number {
    color: var(--accent);
}

.methode__tl-content {
    padding: 28px 36px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 16px;
}

.methode__tl-item:hover .methode__tl-content {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(245, 182, 20, 0.1);
    transform: translateX(6px);
}

.methode__tl-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.methode__tl-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.methode__tl-benefit {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
}

@media (max-width: 768px) {
    .methode__tl-item {
        grid-template-columns: 64px 1fr;
        gap: 0 20px;
    }
    .methode__tl-number {
        font-size: 2rem;
    }
    .methode__tl-content {
        padding: 20px 24px;
    }
}

/* ========================================
   SERVICES - STICKY CARDS
   ======================================== */
.services {
    background: var(--gray-100);
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    position: sticky;
    top: 100px;
    z-index: 1;
}

.service-card:nth-child(1) { top: 100px; }
.service-card:nth-child(2) { top: 120px; }
.service-card:nth-child(3) { top: 140px; }
.service-card:nth-child(4) { top: 160px; }
.service-card:nth-child(5) { top: 180px; }

.service-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: clamp(32px, 4vw, 56px);
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: transform 0.5s var(--transition), box-shadow 0.5s var(--transition);
}

.service-card:hover .service-card__inner {
    border-color: var(--gray-300);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card__media {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__media img {
    transform: scale(1.04);
}

.service-card__placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.85rem;
}

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

.service-card__number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.service-card__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.service-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.service-card__features li {
    padding: 8px 16px;
    background: rgba(245, 182, 20, 0.08);
    border: 1px solid rgba(245, 182, 20, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
}

.service-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    position: relative;
    text-align: center;
    padding: clamp(100px, 15vw, 200px) 0;
    overflow: hidden;
}

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

.cta__bg-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta__text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-400);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   ABOUT
   ======================================== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about__intro {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--white);
}

.about__text p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    display: block;
}

.about__image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    padding: 80px 0 40px;
}

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

.footer__logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.footer__tagline {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.footer__heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer__nav a,
.footer__contact a,
.footer__contact p {
    display: block;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer__nav a:hover,
.footer__contact a:hover {
    color: var(--accent);
}

.footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__social-links a {
    color: var(--gray-600);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__social-links a:hover {
    color: var(--accent);
}

.footer__bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 30px;
    text-align: center;
}

.footer__bottom p {
    color: var(--gray-400);
    font-size: 0.8rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    position: relative;
    z-index: 2;
    background: var(--white);
}

.faq .section__header {
    position: relative;
    z-index: 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.faq__item {
    border-bottom: 1px solid var(--gray-200);
}

.faq__item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    transition: color 0.3s ease;
}

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

.faq__icon {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}

.faq__item--open .faq__icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq__item--open .faq__question {
    color: var(--accent);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__item--open .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding-bottom: 24px;
    color: var(--gray-500);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   PAGE GÉO — Alès / Nîmes / etc.
   ======================================== */
.geo-hero {
    position: relative;
    min-height: clamp(480px, 70vh, 700px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.geo-hero__bg {
    position: absolute;
    inset: 0;
}

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

.geo-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}

.geo-hero__content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}

.geo-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
}

.geo-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.geo-hero__desc {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.geo-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn--outline-light:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.geo-intro__grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: start;
}

.geo-intro__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    margin-top: 16px;
}

.geo-intro__text p {
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.geo-intro__text p strong {
    color: var(--black);
    font-weight: 600;
}

.geo-intro__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px;
    background: var(--black);
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

.geo-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
}

.geo-stat__label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.geo-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.geo-service-item {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.geo-service-item__number {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.geo-service-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.geo-service-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.geo-service-item__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.geo-service-item__link:hover {
    opacity: 0.7;
}

.geo-zone__intro {
    max-width: 600px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 40px;
}

.geo-zone__cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.geo-zone__city {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--gray-100);
    border-radius: 12px;
    padding: 16px 24px;
    min-width: 140px;
}

.geo-zone__city--main {
    background: var(--black);
}

.geo-zone__city--main strong {
    color: var(--accent) !important;
}

.geo-zone__city--main span {
    color: rgba(255,255,255,0.5) !important;
}

.geo-zone__city strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}

.geo-zone__city span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .geo-intro__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .geo-intro__aside {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .geo-stat {
        flex: 1;
        min-width: 120px;
    }

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

    .geo-zone__city {
        min-width: 100px;
    }
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
    background: var(--black);
    padding: 40px 0;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-band__text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--white);
}

/* ========================================
   FORMULAIRE DE CONTACT
   ======================================== */
.contact-section {
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact__intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.contact__detail-item a,
.contact__detail-item span {
    font-size: 1rem;
    color: var(--black);
    transition: color 0.3s ease;
}

.contact__detail-item a:hover {
    color: var(--accent);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}
.form__label-opt {
    font-weight: 400;
    color: var(--gray-400);
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    appearance: none;
}

.form__input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 182, 20, 0.12);
}

.form__input::placeholder {
    color: var(--gray-400);
}

.form__textarea {
    resize: vertical;
    min-height: 140px;
}

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23737373' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.form__submit {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
    .form__row {
        grid-template-columns: 1fr;
    }
    .cta-band__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .methode__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methode__visual {
        position: relative;
        top: 0;
    }

    .service-card__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image {
        order: -1;
    }

    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .service-card:nth-child(n) {
        position: relative;
        top: 0;
    }

    .service-card__placeholder {
        aspect-ratio: 16/9;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__brand {
        margin-bottom: 16px;
    }
}
