/* ============================================================
   ARGAMAN SURGERIES — INDEX
   Design system : medical · elegant · modern plastic surgery
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
    --color-gold:        #C0A062;
    --color-gold-light:  #d8c28c;
    --color-gold-dark:   #a88852;
    --color-dark:        #2F353B;
    --color-deep:        #1E242A;
    --color-cream:       #F9F8F4;
    --color-ivory:       #FBF8F2;
    --color-slate:       #545F66;
    --color-grey:        #6c7278;
    --color-grey-soft:   #8a9097;
    --color-border:      #999999;
    --color-grey-dark:   #33333c;
    --color-clair:       #f9f9f8;
    --color-line:        #e6e3dc;
    --color-line-soft:   #efece5;

    /* ---- TYPOGRAPHIE — 100% sans-serif (style moderne, médical, premium) ----
       Une seule famille (Inter), différenciée par les graisses, espacements et casse.   */
    --font-serif: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
    --font-sans:  'Lato', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

    --site-max-width: 1400px;
    --site-gutter: max(40px, calc((100% - 1200px) / 2));

    --shadow-sm: 0 4px 12px rgba(47,53,59,0.04);
    --shadow-md: 0 15px 35px rgba(47,53,59,0.08);
    --shadow-lg: 0 30px 60px rgba(47,53,59,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1, "cv11" 1;
    text-rendering: optimizeLegibility;
}

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


/* ---------- 2. UTILITIES ---------- */
.kicker {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 22px;
}
.kicker.light { color: var(--color-gold-light); }
.kicker.center { display: block; text-align: center; }

.link-underline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-gold);
    transition: color 0.3s;
    font-family: var(--font-sans);
}
.link-underline i { font-size: 11px; color: var(--color-gold); transition: transform 0.3s; }
.link-underline:hover { color: var(--color-gold); }
.link-underline:hover i { transform: translateX(5px); }


/* ---------- 3. HEADER ---------- */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 110px;
    background: #fff;
    border-bottom: 1px solid #eceae3;
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* ---- LOGO ORIGINAL ---- */
.brand-logo {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-decoration: none; position: absolute;
    left: var(--site-gutter); z-index: 1001;
}
.brand-icon {
    width: 45px; height: 45px;
    margin-bottom: 2px;
    color: var(--color-slate);
    transition: transform .3s, color .3s;
}
.brand-icon svg { width: 100%; height: 100%; overflow: visible; }
.brand-text {
    display: flex; flex-direction: column;
    align-items: center; line-height: 1;
}
.brand-name {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--color-slate);
    text-transform: uppercase;
    transition: color .3s;
}
.brand-sub {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color .3s;
}
.brand-logo:hover .brand-icon,
.brand-logo:hover .brand-name,
.brand-logo:hover .brand-sub { color: var(--color-gold); }
.brand-logo:hover .brand-icon { transform: scale(1.05); }

.navbar { display: flex; align-items: center; height: 100%; gap: 14px; margin-left: 100px; }
.nav-wrapper-mega, .nav-wrapper-simple { height: 100%; display: flex; align-items: center; }
.nav-wrapper-mega { position: static; }
.nav-wrapper-simple { position: relative; }
.nav-link {
    text-decoration: none; color: var(--color-dark);
    font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1.3px;
    padding: 0 14px; height: 100%;
    display: flex; align-items: center; gap: 6px;
    transition: color .3s; cursor: pointer; white-space: nowrap;
}
.nav-link:hover { color: var(--color-gold); }
.nav-link i { font-size: 10px; color: var(--color-gold); transition: transform .3s; }

.btn-book {
    text-decoration: none; color: var(--color-dark);
    background: transparent; border: 1px solid var(--color-dark);
    padding: 13px 26px; position: absolute;
    right: var(--site-gutter); top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans); font-size: 12px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    transition: all .3s; cursor: pointer; white-space: nowrap;
}
.btn-book:hover { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }

@media (min-width: 1025px) {
    .nav-wrapper-mega:hover .nav-link,
    .nav-wrapper-simple:hover .nav-link { color: var(--color-gold); }
    .nav-wrapper-mega:hover .nav-link i,
    .nav-wrapper-simple:hover .nav-link i { transform: rotate(180deg); }
    .nav-wrapper-mega:hover .dropdown-menu,
    .nav-wrapper-simple:hover .dropdown-menu {
        visibility: visible; opacity: 1; transform: translateY(0);
    }
    .nav-wrapper-simple:hover .dropdown-menu.simple-style { transform: translateX(-50%) translateY(0); }
}
.dropdown-menu {
    background: var(--color-deep);
    position: absolute; top: 100%;
    visibility: hidden; opacity: 0;
    transform: translateY(10px); transition: all .3s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25); z-index: 999;
}
.dropdown-menu.mega-style {
    left: 0; width: 100%; padding: 54px 80px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.dropdown-menu.simple-style {
    left: 50%; transform: translateX(-50%) translateY(10px);
    min-width: 260px; padding: 30px; display: flex; flex-direction: column;
}
.column-title { color: var(--color-gold); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(192,160,98,0.2); }
ul { list-style: none; }
li { margin-bottom: 11px; }
li a { color: #b9bcc0; text-decoration: none; font-size: 14px; position: relative; display: block; transition: all .3s; }
li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0; height: 1px; background: var(--color-gold); transition: width .3s; }
li a:hover { color: var(--color-gold); padding-left: 22px; }
li a:hover::before { width: 14px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2001; }
.bar { width: 30px; height: 2px; background: var(--color-dark); transition: all .3s; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ============================================================
   4. HERO
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--color-deep);
}
/* Vidéo de fond du hero — fichier local Videos/we-video-mobil.mp4 */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.hero-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(115deg, rgba(15,17,20,0.75) 0%, rgba(15,17,20,0.45) 50%, rgba(15,17,20,0.2) 100%),
        linear-gradient(to top, rgba(15,17,20,0.4) 0%, transparent 45%);
    pointer-events: none;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--site-gutter) 110px;
    width: 100%;
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 28px;
    padding: 0;
    border: none;
}
.hero-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(44px, 6vw, 84px);
    line-height: 1.02;
    letter-spacing: -2.4px;
    color: #fff;
    max-width: 900px;
    margin: 0 0 30px;
}
.hero-title em {
    font-style: normal;
    color: #fff;
    font-weight: 500;
}
.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.9);
    max-width: 620px;
    margin-bottom: 42px;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
}

.btn-primary, .btn-ghost, .btn-gold, .btn-outline-light {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-sans); font-size: 12px;
    font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; text-decoration: none;
    padding: 18px 32px;
    transition: all .3s ease; cursor: pointer;
}
.btn-primary, .btn-gold {
    background: var(--color-gold); color: #fff;
    border: 1px solid var(--color-gold);
}
.btn-primary:hover, .btn-gold:hover {
    background: transparent; color: var(--color-gold);
}
.btn-ghost {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    border-color: var(--color-gold); color: var(--color-gold);
}
.btn-outline-light {
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: #fff; color: var(--color-dark);
}
.btn-primary i, .btn-ghost i, .btn-gold i, .btn-outline-light i { font-size: 11px; transition: transform .3s; }
.btn-primary:hover i, .btn-gold:hover i { transform: translateX(5px); }
.btn-ghost:hover i { transform: translateY(3px); }

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 44px;
    padding-top: 42px;
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 860px;
}
.trust-item {
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
}
.trust-item i {
    font-size: 24px; color: var(--color-gold);
}
.trust-item span {
    font-family: var(--font-sans);
    letter-spacing: 0.3px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 46px;
    border: 1px solid rgba(255,255,255,0.5); border-radius: 20px;
    z-index: 3;
}
.hero-scroll span {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 8px; background: #fff;
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 18px); opacity: 0.3; }
}


/* ============================================================
   5. WELCOME
   ============================================================ */
.welcome-section {
    background: #fff;
    padding: 130px 40px 110px;
    position: relative;
    overflow: hidden;
}
.welcome-section::before {
    content: '';
    position: absolute;
    top: 80px; right: 5%;
    width: 180px; height: 180px;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.22;
    pointer-events: none;
}
.welcome-section::after {
    content: '';
    position: absolute;
    bottom: -120px; left: -100px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,160,98,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.welcome-container {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.welcome-left h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(38px, 4.5vw, 56px);
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--color-dark);
}
.welcome-left h2 em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}
.welcome-right .lead {
    font-family: var(--font-serif);
    font-size: 22px;
    line-height: 1.55;
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 400;
}
.welcome-right p {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-slate);
    font-weight: 400;
    margin-bottom: 24px;
}
.welcome-signatures {
    display: flex;
    flex-wrap: wrap;
    column-gap: 60px;
    row-gap: 28px;
    margin: 40px 0 28px;
    padding: 30px 0;
    background: none;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
}
.signature {
    display: flex; flex-direction: column; gap: 8px;
    position: relative;
    padding-right: 30px;
}
.signature:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: var(--color-line);
}
.signature:last-child { padding-right: 0; }
.signature strong {
    font-family: var(--font-serif);
    font-size: 46px;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: -1.5px;
}
.signature span {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-slate);
    font-weight: 600;
}


/* ---- WELCOME VIDEO ---- */
.welcome-video-wrap {
    max-width: 1080px;
    margin: 90px auto 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.welcome-video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--color-deep);
    overflow: hidden;
}
.welcome-video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* Coins or en équerre, signature Argaman Plastic Surgeries Mexico */
.welcome-video-frame::before,
.welcome-video-frame::after {
    content: '';
    position: absolute;
    width: 28px; height: 28px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 2;
}
.welcome-video-frame::before {
    top: -1px; left: -1px;
    border-right: none; border-bottom: none;
}
.welcome-video-frame::after {
    bottom: -1px; right: -1px;
    border-left: none; border-top: none;
}
.welcome-video-caption {
    display: block;
    margin-top: 22px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-slate);
}

@media (max-width: 768px) {
    .welcome-video-wrap { margin-top: 50px; }
    .welcome-video-frame::before,
    .welcome-video-frame::after { width: 18px; height: 18px; }
    .welcome-video-caption { font-size: 10px; letter-spacing: 2.5px; }
}


/* ============================================================
   6. PILLARS
   ============================================================ */
.pillars-section {
    background: #fff;
    padding: 120px 40px;
    border-top: 1px solid var(--color-line);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}
/* Vidéo / image de fond */
.pillars-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
/* Variante "Ken Burns" : image qui zoome doucement (effet vidéo sans fichier MP4)
   À utiliser quand vous n'avez pas encore votre vidéo chirurgie.
   Pour la remplacer par une vraie vidéo : remettre <video> dans le HTML
   avec <source src="Videos/votre-fichier.mp4" type="video/mp4"> */
.pillars-bg-image {
    background-size: cover;
    background-position: center;
    transform-origin: center;
    animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
    0%   { transform: scale(1)   translate(0%, 0%); }
    50%  { transform: scale(1.12) translate(-2%, 2%); }
    100% { transform: scale(1.06) translate(2%, -1%); }
}
/* Overlay crème pour lisibilité + accents dorés intégrés */
.pillars-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(192,160,98,0.10) 0%, transparent 50%),
        radial-gradient(circle at 88% 88%, rgba(192,160,98,0.07) 0%, transparent 55%),
        linear-gradient(180deg, rgba(250,249,246,0.93) 0%, rgba(250,249,246,0.95) 100%);
}
.pillars-container {
    max-width: 1200px; margin: 0 auto;
    position: relative;
    z-index: 2;
}
.pillars-head {
    max-width: 700px;
    margin: 0 auto 80px;
    text-align: center;
}
.pillars-head h2 {
    font-family: 'Bodoni Moda', Georgia, serif;
    font-weight: 500;
    font-variant: small-caps;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.18;
    letter-spacing: 0.05em;
    color: var(--color-dark);
}
.pillars-head h2 em {
    font-style: italic; color: var(--color-gold); font-weight: 400;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: transparent;
    border: none;
}
.pillar {
    padding: 50px 34px;
    text-align: center;
    border-right: 1px solid rgba(192, 160, 98, 0.25);
    display: flex; flex-direction: column;
    align-items: center;
    transition: background .35s;
    background: transparent;
}
.pillar:last-child { border-right: none; }

.pillar-icon {
    width: 72px; height: 72px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--color-gold);
    margin-bottom: 28px;
    transition: all .4s;
}
.pillar h3 {
    font-family: var(--font-serif);
    font-size: 22px; font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: 0.2px;
}
.pillar p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--color-slate);
    font-weight: 300;
}
.pillars-summary {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.pillars-summary p {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: clamp(16px, 1.25vw, 18.5px);
    line-height: 1.9;
    color: #3f454b;
    font-weight: 400;
}
.pillars-summary p strong { font-weight: 600; color: var(--color-dark); }


/* ============================================================
   7. TREATMENTS CAROUSEL
   ============================================================ */
.carousel-section {
    position: relative;
    min-height: 580px;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden;
    background: var(--color-deep);
    padding: 80px 0 60px;
}
.carousel-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background-size: cover; background-position: center;
    transition: opacity .5s;
}
.carousel-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(10,12,15,0.88) 0%, rgba(10,12,15,0.55) 45%, rgba(10,12,15,0.15) 85%, rgba(10,12,15,0.1) 100%);
    z-index: 2; pointer-events: none;
}
.carousel-section::after {
    content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    z-index: 3;
}

/* ============================================================
   HPANEL — panneaux verticaux qui s'étirent au hover/click
   ============================================================ */
.hpanel-section {
    background: var(--color-deep);
    overflow: hidden;
    position: relative;
}
.hpanel-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
    z-index: 5;
}

.hpanel-row {
    display: flex;
    height: 620px;
    width: 100%;
}

.hpanel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    border-right: 1px solid rgba(255,255,255,0.08);
}
.hpanel:last-child { border-right: none; }
.hpanel.active { flex: 4.5; cursor: default; }

/* Image de fond */
.hpanel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.5s;
    filter: grayscale(0.15);
}
.hpanel.active .hpanel-bg {
    filter: grayscale(0);
}
.hpanel:hover .hpanel-bg { transform: none; }

/* Overlay sombre sur les panneaux fermés / dégradé sur le panneau ouvert */
.hpanel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,36,42,0.55) 0%, rgba(30,36,42,0.75) 100%);
    transition: background 0.5s ease;
    z-index: 1;
}
.hpanel.active::after {
    background: linear-gradient(90deg, rgba(30,36,42,0.85) 0%, rgba(30,36,42,0.55) 55%, rgba(30,36,42,0.35) 100%);
}

/* Label vertical (rotation -90°) */
.hpanel-label {
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: 24px center;
    font-family: var(--font-serif);
    color: #fff;
    letter-spacing: 8px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
    transition: color 0.4s, opacity 0.4s;
}
.hpanel.active .hpanel-label {
    color: rgba(255,255,255,0.9);
}

/* Liste des procédures (visible quand .active) */
.hpanel-list {
    position: relative;
    z-index: 4;
    list-style: none;
    padding: 60px 60px 60px 50px;
    margin: 0 0 0 100px;
    border-left: 1px solid rgba(255,255,255,0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    pointer-events: none;
    transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
}
.hpanel.active .hpanel-list {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.hpanel-list li {
    margin-bottom: 18px;
}
.hpanel-list li:last-child { margin-bottom: 0; }
.hpanel-list a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-sans);
    transition: color 0.3s, padding-left 0.3s;
    position: static;
    padding: 0;
    display: inline-block;
}
.hpanel-list a::before { display: none !important; }
.hpanel-list a:hover {
    color: var(--color-gold);
    padding-left: 6px;
}

/* Responsive */
@media (max-width: 900px) {
    .hpanel-row {
        flex-direction: column;
        height: auto;
    }
    .hpanel {
        height: 110px;
        flex: none;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    }
    .hpanel.active {
        height: auto;
        flex: none;
    }
    .hpanel-label {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 18px;
        letter-spacing: 6px;
    }
    .hpanel.active .hpanel-label {
        top: 28px;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .hpanel-list {
        margin: 0;
        padding: 80px 30px 50px;
        border-left: none;
        text-align: center;
        transform: translateY(-15px);
    }
    .hpanel.active .hpanel-list {
        transform: translateY(0);
    }
    .hpanel-list li { margin-bottom: 14px; }
    .hpanel-list a { font-size: 13px; }
}


/* ---- INTRO du carrousel — section éditoriale entre piliers et hpanel ---- */
.carousel-intro {
    background: #fff;
    padding: 100px 40px;
    text-align: center;
    position: relative;
}
/* Filet doré centré au top — séparation élégante avec la section piliers au-dessus */
.carousel-intro::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: var(--color-gold);
}

.carousel-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
/* Petite ligne verticale dorée sous le titre — signe d'invitation vers la section suivante */
.carousel-intro-inner::after {
    content: '';
    display: block;
    width: 1px;
    height: 38px;
    background: var(--color-gold);
    margin: 36px auto 0;
}
.carousel-intro-title {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--color-dark);
    margin: 14px 0 0;
}
.carousel-intro-title em {
    font-style: italic;
    color: var(--color-gold);
    font-weight: 500;
}

/* Conservé pour rétro-compatibilité éventuelle */
.carousel-header {
    position: relative; z-index: 10;
    max-width: var(--site-max-width);
    margin: 0 auto 32px;
    padding: 0 var(--site-gutter);
    color: #fff;
}
.section-title-white {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.15; letter-spacing: -0.5px;
    color: #fff;
    max-width: 600px;
    margin: 0;
}
.section-title-white em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.section-lead-white {
    margin-top: 18px;
    max-width: 520px;
    font-size: 16px; line-height: 1.7;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
}

.pill-nav-wrapper {
    position: relative; z-index: 10;
    display: flex;
    gap: 38px;
    padding: 0 var(--site-gutter);
    margin: 0 auto 38px;
    max-width: var(--site-max-width);
    width: 100%;
}
.pill-btn {
    background: transparent; border: none; padding: 8px 0;
    font-family: var(--font-sans);
    font-size: 13px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    cursor: pointer; position: relative;
    transition: color .3s;
}
.pill-btn:hover { color: #fff; }
.pill-btn.active { color: #fff; }
.pill-btn.active::after {
    content: ''; position: absolute; bottom: -6px; left: 0;
    width: 100%; height: 1px; background: var(--color-gold);
}

.carousel-container {
    position: relative; width: 100%;
    min-height: 320px; z-index: 5;
    max-width: var(--site-max-width);
    margin: 0 auto;
}
.carousel-content {
    position: absolute; inset: 0;
    display: none; align-items: center;
    padding: 0 var(--site-gutter);
}
.carousel-content.active {
    display: flex;
    animation: fadeUp 0.6s ease-out;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.carousel-text {
    color: #fff; text-align: left; max-width: 580px;
}
.carousel-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--color-gold);
    padding: 5px 14px;
    border: 1px solid rgba(192,160,98,0.4);
    margin-bottom: 20px;
}
.carousel-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.05; letter-spacing: -1px;
    color: #fff; margin-bottom: 28px;
}
/* Paragraphes descriptifs masqués — design plus épuré */
.carousel-text p { display: none; }
.carousel-btn {
    display: inline-flex; align-items: center; gap: 12px;
    text-decoration: none;
    background: transparent; color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 15px 32px;
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    transition: all .3s;
}
.carousel-btn i { font-size: 11px; transition: transform .3s; }
.carousel-btn:hover {
    background: var(--color-gold); border-color: var(--color-gold);
}
.carousel-btn:hover i { transform: translateX(5px); }

.carousel-prev, .carousel-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 54px; height: 54px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer; z-index: 20;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s;
}
.carousel-prev:hover, .carousel-next:hover {
    background: var(--color-gold); border-color: var(--color-gold);
}
.carousel-prev::after, .carousel-next::after {
    content: ''; width: 10px; height: 10px;
    border-top: 1.5px solid rgba(255,255,255,0.85);
    border-right: 1.5px solid rgba(255,255,255,0.85);
}
.carousel-prev::after { transform: rotate(-135deg); margin-left: 4px; }
.carousel-next::after { transform: rotate(45deg); margin-right: 4px; }
.carousel-prev { left: 30px; }
.carousel-next { right: 30px; }

.carousel-indicators {
    position: relative; z-index: 10;
    display: flex; justify-content: center; gap: 10px;
    margin-top: 42px;
}
.indicator {
    width: 28px; height: 2px;
    background: rgba(255,255,255,0.25);
    cursor: pointer; transition: all .4s;
}
.indicator.active {
    background: var(--color-gold); width: 52px;
}


/* ============================================================
   8. STATS
   ============================================================ */
.stats-section {
    background: #fff;
    padding: 130px 40px;
    display: flex; justify-content: center;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: 100px; left: 60px;
    width: 140px; height: 140px;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.22;
    pointer-events: none;
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -160px; right: -160px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,160,98,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.stats-wrapper { max-width: 1200px; width: 100%; position: relative; z-index: 1; }
.stats-heading { text-align: center; margin-bottom: 80px; }
.stats-heading h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.15; letter-spacing: -0.6px;
    color: var(--color-dark);
}
.stats-heading h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-item {
    padding: 36px 24px 36px 0;
    background: transparent;
    border-top: 2px solid var(--color-gold);
    opacity: 0; transform: translateY(20px);
    transition: all .8s ease-out;
    text-align: left;
    position: relative;
}
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-number {
    font-family: var(--font-serif);
    font-size: 72px; font-weight: 500;
    color: var(--color-dark); line-height: 1;
    margin-bottom: 22px;
    letter-spacing: -2px;
    white-space: nowrap;
}
.stat-number .stat-prefix,
.stat-number .stat-suffix {
    font-size: 44px; color: var(--color-gold);
    font-family: var(--font-sans); font-weight: 300;
    vertical-align: top; margin: 0 2px;
}
.stat-title {
    font-family: var(--font-sans);
    font-size: 13px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-gold); margin-bottom: 14px;
}
.stat-desc {
    font-size: 14px; line-height: 1.7;
    color: var(--color-slate); font-weight: 300;
    margin: 0;
}


/* ============================================================
   9. TEAM
   ============================================================ */
.team-section {
    background: #fff;
    padding: 130px var(--site-gutter);
    border-top: 1px solid var(--color-line);
}
.team-container { max-width: var(--site-max-width); margin: 0 auto; }
.team-head { margin-bottom: 70px; max-width: 700px; }
.team-head h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.15; letter-spacing: -0.6px;
    color: var(--color-dark);
}
.team-head h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.team-text { display: flex; flex-direction: column; gap: 30px; }
.team-text-block {
    position: relative; padding-left: 30px;
}
.team-text-block::before {
    content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
    width: 2px; background: var(--color-gold);
}
.team-text-block p {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 16px; line-height: 1.85;
    color: var(--color-slate); font-weight: 400;
}

.team-logos-wrap {
    background: transparent;
    padding: 70px 60px;
    border: none;
    position: relative;
    transform: translateY(-30px);
}
.team-logos-wrap::before,
.team-logos-wrap::after {
    content: ''; position: absolute;
    width: 32px; height: 32px;
    border: 1px solid var(--color-gold);
}
.team-logos-wrap::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.team-logos-wrap::after { bottom: 0; right: 0; border-left: none; border-top: none; }

.logos-caption {
    display: block;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 26px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-line);
    text-align: center;
}
.team-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 22px;
    align-items: center; justify-items: center;
}
.team-logos img {
    height: 60px; width: auto;
    max-width: 100%;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all .35s;
    object-fit: contain;
}
.team-logos img:hover {
    opacity: 1; filter: grayscale(0%); transform: scale(1.06);
}


/* ============================================================
   10. JOURNEY
   ============================================================ */
.journey-section {
    background: var(--color-deep);
    padding: 80px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.journey-section::before,
.journey-section::after { content: none; }
.journey-section > .journey-container {
    position: relative;
    z-index: 1;
}
/* Lignes dorées top/bottom de la section */
.journey-section .journey-container::before,
.journey-section .journey-container::after {
    content: '';
    position: absolute;
    left: -40px; right: -40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.journey-section .journey-container::before { top: -130px; }
.journey-section .journey-container::after { bottom: -130px; }
.journey-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.journey-head { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.journey-head h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.15; letter-spacing: -0.6px;
    color: #fff;
}
.journey-head h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.journey-lead {
    margin-top: 22px; font-size: 16px;
    line-height: 1.75; color: rgba(255,255,255,0.75); font-weight: 300;
}
.journey-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    list-style: none;
    padding: 0;
}
.journey-steps::before {
    content: ''; position: absolute;
    top: 54px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold) 15%, var(--color-gold) 85%, transparent);
    z-index: 0;
}
.journey-step {
    position: relative;
    text-align: center;
    padding: 0 14px;
    z-index: 1;
}
.step-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 14px;
    font-weight: 500;
}
.step-icon {
    width: 80px; height: 80px;
    background: var(--color-deep);
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: var(--color-gold);
    margin: 0 auto 24px;
    transition: all .4s;
    position: relative; z-index: 2;
}
.journey-step h3 {
    font-family: var(--font-serif);
    font-size: 18px; font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.1px;
}
.journey-step p {
    font-size: 13px; line-height: 1.65;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}


/* ============================================================
   11. BEFORE / AFTER
   ============================================================ */
.ba-section {
    background: #f2f2f1;
    padding: 130px 40px;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    position: relative;
    overflow: hidden;
}
.ba-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('Images/before-after-section-bg.webp') center/cover no-repeat;
    filter: grayscale(1) contrast(1.06) brightness(0.8);
    z-index: 0;
}
.ba-section::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(248,248,247,0.88) 0%, rgba(248,248,247,0.6) 44%, rgba(248,248,247,0.28) 100%);
    z-index: 0;
    pointer-events: none;
}
.ba-container {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
    align-items: center;
}
.ba-head { max-width: 560px; }
.ba-head h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1.15; letter-spacing: -0.6px;
    color: var(--color-dark);
    margin-bottom: 24px;
}
.ba-head h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.ba-head p {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 16px; line-height: 1.8;
    color: var(--color-slate); font-weight: 400;
    margin-bottom: 8px;
}

.ba-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.ba-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--color-deep);
    cursor: pointer;
    box-shadow: 0 1px 0 var(--color-gold);
    transition: transform .35s ease;
}
.ba-card::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,0.35);
    pointer-events: none;
    transition: inset .35s ease, border-color .35s ease;
    z-index: 2;
}
.ba-card:hover { transform: translateY(-4px); }
.ba-card:hover::after {
    inset: 16px;
    border-color: var(--color-gold);
}
.ba-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s, opacity .4s;
}
.ba-card:hover img {
    transform: scale(1.05);
    opacity: 0.85;
}
.ba-card figcaption {
    position: absolute; left: 20px; bottom: 20px;
    background: var(--color-gold);
    padding: 9px 18px;
    font-family: var(--font-sans);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: #fff;
    transition: background .3s ease;
}
.ba-card:hover figcaption {
    background: var(--color-deep);
}


/* ============================================================
   12. TESTIMONIALS ISANEO
   ============================================================ */
.isaneo-reviews-section {
    background: #fff;
    padding: 130px 40px;
    font-family: var(--font-sans);
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
}
.isaneo-reviews-section::before {
    content: '';
    position: absolute;
    top: 60px; right: -100px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,160,98,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.isaneo-reviews-section::after {
    content: '';
    position: absolute;
    bottom: 80px; left: 40px;
    width: 110px; height: 110px;
    background-image: radial-gradient(var(--color-gold) 1px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.18;
    pointer-events: none;
}
.isaneo-container {
    max-width: 1200px;
    margin: 0 auto;
}
.isaneo-head {
    text-align: center;
    margin-bottom: 40px;
}
.isaneo-head h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 46px);
    letter-spacing: -0.5px;
    color: var(--color-dark);
    margin: 10px 0 0;
}
.isaneo-tabs {
    display: flex; justify-content: center; gap: 40px;
    border-bottom: 1px solid var(--color-line);
    margin-bottom: 26px;
}
.isaneo-tab {
    padding: 14px 4px;
    cursor: pointer;
    color: var(--color-grey);
    font-size: 13px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 2px solid transparent;
    transition: .3s;
}
.isaneo-tab.active {
    color: var(--color-dark);
    border-bottom-color: var(--color-gold);
}
.isaneo-tab img { width: 16px; height: 16px; pointer-events: none; }

.isaneo-summary-bar {
    display: flex; justify-content: center; align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap; gap: 15px;
}
.isaneo-rating-summary {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--color-slate);
}
.isaneo-rating-summary strong {
    color: var(--color-dark); font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    font-size: 13px;
}
.isaneo-summary-stars {
    color: var(--color-gold); font-size: 18px; letter-spacing: 2px;
}

.isaneo-carousel-wrapper {
    position: relative; display: flex; align-items: center;
    padding: 10px 55px;
}
.isaneo-viewport { overflow: hidden; width: 100%; padding: 10px 0; }
.isaneo-track {
    display: flex; gap: 24px;
    transition: transform .55s cubic-bezier(0.65,0,0.35,1);
}
.isaneo-card, .isaneo-v-card {
    background: #fff;
    padding: 32px 28px;
    box-sizing: border-box;
    display: flex; flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all .35s;
    border: 1px solid var(--color-line);
    min-height: 260px;
}
.isaneo-card {
    min-width: calc(33.333% - (24px * 2 / 3));
}
.isaneo-card:hover {
    background: #fff;
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.isaneo-avatar {
    position: absolute; top: 28px; left: 28px;
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 15px; overflow: hidden;
}
.isaneo-avatar img { width: 100%; height: 100%; object-fit: cover; }
.isaneo-platform-logo {
    position: absolute; top: 30px; right: 30px;
    width: 18px; height: 18px; object-fit: contain;
}
.isaneo-logo-rs { filter: grayscale(1); width: 22px; }
.isaneo-header-info {
    margin-left: 56px; margin-bottom: 15px;
    min-height: 42px;
    display: flex; flex-direction: column; justify-content: center;
}
.isaneo-header-info strong { display: block; font-size: 14px; color: var(--color-dark); font-weight: 700; margin-bottom: 2px; }
.isaneo-header-info small { font-size: 11px; color: var(--color-grey-soft); }
.isaneo-stars {
    font-size: 15px; margin-bottom: 14px;
    display: flex; align-items: center; gap: 4px; letter-spacing: 1px;
}
.isaneo-stars-google { color: var(--color-gold); }
.isaneo-stars-rs { color: #c58b95; }
.isaneo-verified-badge {
    background: var(--color-gold); color: white;
    width: 14px; height: 14px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 8px; margin-left: 5px;
}
.isaneo-card-text {
    font-size: 14px; line-height: 1.65;
    color: var(--color-slate); font-weight: 300;
    flex-grow: 1; font-family: var(--font-sans);
}
.isaneo-read-more-btn {
    color: var(--color-gold); font-size: 11px;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    margin-top: 18px; border: none; background: none;
    cursor: pointer; text-align: left; padding: 0;
    font-family: var(--font-sans);
}
.isaneo-read-more-btn:hover { color: var(--color-dark); }
.isaneo-pink { background: #c58b95; }
.isaneo-orange { background: #b98856; }
.isaneo-blue { background: #6f8caa; }
.isaneo-green { background: #8aa186; }

.isaneo-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
}
.isaneo-nav-btn:hover {
    background: var(--color-gold); border-color: var(--color-gold);
}
.isaneo-nav-btn:hover svg { stroke: #fff; }
.isaneo-nav-btn svg {
    width: 10px; height: 10px;
    fill: none; stroke: var(--color-gold); stroke-width: 2;
    transition: stroke .3s;
}
.isaneo-prev { left: 0; }
.isaneo-next { right: 0; }

.isaneo-scroll-container {
    width: 140px; height: 2px;
    background: var(--color-line);
    margin: 30px auto 0; position: relative;
}
.isaneo-scroll-handle {
    position: absolute; top: -1px; left: 0;
    width: 42px; height: 4px;
    background: var(--color-gold);
    transition: left .5s ease;
}

.isaneo-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.75);
    display: none; justify-content: center;
    z-index: 3000; overflow-y: auto;
    padding: 60px 20px;
}
.isaneo-close-modal {
    position: fixed; top: 22px; right: 28px;
    color: white; font-size: 36px; cursor: pointer; z-index: 3100;
}
.isaneo-modal-list {
    width: 100%; max-width: 620px;
    display: flex; flex-direction: column; gap: 20px;
}
.isaneo-v-card {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: popUp .3s ease-out;
    cursor: default;
}
@keyframes popUp {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}


/* ============================================================
   13. FAQ
   ============================================================ */
.faq-section {
    background: #fff;
    padding: 130px 40px;
    border-top: 1px solid var(--color-line);
    position: relative;
    overflow: hidden;
}
.faq-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('Pictures/FAQ.Homepage.women.png') center right/cover no-repeat;
    filter: grayscale(1);
    z-index: 0;
}
.faq-section::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.86));
    z-index: 0;
    pointer-events: none;
}
.faq-head {
    position: relative; z-index: 1;
    max-width: 800px; margin: 0 auto 70px; text-align: center;
}
.faq-head h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(32px, 3.8vw, 46px);
    letter-spacing: -0.5px;
    color: var(--color-dark);
    margin: 10px 0 0;
}
.faq-wrapper {
    position: relative; z-index: 1;
    max-width: 860px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
    align-items: flex-start;
}
.faq-image-column { display: none; }
.faq-image-column-legacy { position: relative; }
.faq-image-column::before {
    content: '';
    position: absolute;
    top: 20px; left: 20px;
    width: 100%; height: calc(100% - 20px);
    max-height: 600px;
    border: 1px solid var(--color-gold);
    pointer-events: none;
    z-index: 0;
}
.faq-image-column img {
    width: 100%; height: auto;
    max-height: 600px; object-fit: cover;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}
.faq-questions-column { min-width: 300px; }
/* FAQ — design unifié style Hotel Partners (épuré, indicateur +/− doré, <details> natif) */
details.faq-item, .faq-item {
    border-bottom: 1px solid var(--color-line);
    padding: 14px 0;
    display: block;
    margin: 0 !important;
}
details.faq-item:first-of-type, .faq-item:first-of-type {
    border-top: 1px solid var(--color-line);
}
.faq-header,
summary.faq-header {
    list-style: none;
    cursor: pointer;
    padding: 4px 0;
    margin: 0;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    transition: color 0.3s;
}
summary.faq-header::-webkit-details-marker { display: none; }
summary.faq-header::marker { content: ''; }
.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 16px; font-weight: 500;
    line-height: 1.4;
    color: var(--color-dark);
    margin: 0 !important;
    padding: 0 !important;
    text-align: left;
    flex: 1 1 auto; min-width: 0;
}
summary.faq-header h3,
summary.faq-header h3.faq-question {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}
.faq-icon { display: none !important; }
.arrow-symbol { display: none !important; }
summary.faq-header::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    font-size: 22px; font-weight: 300;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}
details.faq-item[open] summary.faq-header,
.faq-item.active .faq-header { color: var(--color-gold); }
details.faq-item[open] summary.faq-header .faq-question,
.faq-item.active .faq-question { color: var(--color-gold); }
details.faq-item[open] summary.faq-header::after { content: '−'; }

.faq-body { overflow: hidden; }
.faq-answer { display: block; padding-bottom: 0; }
.faq-answer p {
    margin: 14px 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px; line-height: 1.75;
    color: var(--color-slate); font-weight: 300;
}


/* ============================================================
   14. FINAL CTA
   ============================================================ */
.final-cta {
    background: var(--color-deep);
    padding: 120px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.final-cta::after {
    content: '';
    position: absolute;
    top: -180px; right: -180px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,160,98,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-inner {
    max-width: 900px; margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
}
.final-cta h2 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15; letter-spacing: -0.6px;
    color: #fff; margin-bottom: 24px;
}
.final-cta h2 em { font-style: italic; color: var(--color-gold); font-weight: 400; }
.final-cta p {
    font-size: 17px; line-height: 1.75;
    color: rgba(255,255,255,0.8); font-weight: 300;
    max-width: 620px; margin: 0 auto 42px;
}
.final-cta-actions {
    display: flex; justify-content: center;
    gap: 14px; flex-wrap: wrap;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
footer { background: transparent; width: 100%; }
.footer-cta-bar {
    background: var(--color-deep);
    padding: 50px 10%;
    display: flex; align-items: center; justify-content: space-between;
    color: #fff; flex-wrap: wrap; gap: 30px;
}
.cta-content h2 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 30px; font-weight: 400;
    line-height: 1.3; max-width: 600px;
    margin: 0; color: #fff;
    letter-spacing: -0.3px;
}
.btn-footer-cta {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid var(--color-gold);
    padding: 13px 32px;
    color: #fff; background: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px; letter-spacing: 2.5px; font-weight: 600;
    transition: all .3s;
}
.btn-footer-cta:hover { background: transparent; color: var(--color-gold); }

.footer-info-section {
    background: #fff;
    padding: 80px 40px 30px;
    color: var(--color-dark);
}
.footer-grid-wrapper {
    max-width: 1400px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 60px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.f-col-identity {
    display: flex; flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}
.f-brand-block {
    display: flex; align-items: center; gap: 8px;
    text-decoration: none; color: var(--color-slate);
    margin-bottom: 10px;
}
.f-brand-icon-ft { width: 40px; height: 40px; color: var(--color-slate); }
.f-brand-text-ft {
    display: flex; flex-direction: column;
    line-height: 1; align-items: flex-start;
}
.f-name-ft {
    font-family: var(--font-sans);
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 400;
}
.f-sub-ft {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 2.85px;
    text-transform: uppercase;
    margin-top: 2px;
    margin-left: 1px;
}

.f-address-box p { font-size: 13px; color: var(--color-grey); line-height: 1.6; margin-bottom: 5px; font-style: normal; }
.f-address-box .highlight { color: var(--color-dark); font-weight: 600; margin-top: 10px; display: block; }
.f-socials-row { display: flex; gap: 15px; margin-top: 10px; }
.f-socials-row a { color: var(--color-slate); font-size: 18px; transition: color .3s; }
.f-socials-row a:hover { color: var(--color-gold); }

.f-col-links h4 {
    font-family: var(--font-sans);
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 22px;
    color: var(--color-slate); font-weight: 700;
}
.f-link-list { list-style: none; padding: 0; margin: 0; }
.f-link-list li { margin-bottom: 10px; }
.f-link-list li a {
    font-size: 13px; color: var(--color-grey);
    text-decoration: none; transition: color .3s; position: relative;
}
.f-link-list li a::before { display: none; }
.f-link-list li a:hover { color: var(--color-gold); padding-left: 0; }
.f-group-title {
    font-size: 13px; color: var(--color-slate);
    font-weight: 700; margin-top: 25px; margin-bottom: 15px;
    display: block; text-transform: uppercase; letter-spacing: 0.5px;
}
.mt-0 { margin-top: 0 !important; }
.footer-legal-row { text-align: center; font-size: 11px; color: #999; }
.footer-legal-row a { color: #999; text-decoration: none; margin-left: 10px; transition: color .3s; }
.footer-legal-row a:hover { color: var(--color-gold); }


/* ============================================================
   16. SIDE PANEL (widget contact)
   ============================================================ */
.side-trigger {
    position: fixed; right: 0; top: 50%;
    transform: translateY(-50%);
    background: var(--color-dark);
    color: var(--color-gold);
    padding: 12px 10px;
    display: flex; flex-direction: column; gap: 15px;
    align-items: center;
    border-top-left-radius: 15px; border-bottom-left-radius: 15px;
    cursor: pointer; z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right .3s;
}
.side-panel {
    position: fixed; top: 0; right: -600px;
    width: 550px; height: 100vh;
    background: #242c2d;
    z-index: 2001;
    padding: 60px 50px;
    overflow-y: auto;
    transition: right .4s cubic-bezier(0.77,0,0.175,1);
    color: #fff;
}
.side-panel.open { right: 0; }
.side-trigger.hidden { right: -60px; }

.close-btn-side {
    position: absolute; top: 25px; right: 30px;
    background: none; border: none;
    color: var(--color-gold); font-size: 32px;
    cursor: pointer; opacity: 0.8;
}
.close-btn-side:hover { opacity: 1; }

.side-panel .side-title {
    font-family: var(--font-serif);
    font-size: 46px; font-weight: 500;
    margin-bottom: 15px; color: #fff;
    letter-spacing: -0.3px;
}
.side-panel .side-subtitle {
    font-size: 17px; color: #fff;
    opacity: 0.9; margin-bottom: 40px; font-weight: 300;
}
.side-social-icons-row {
    display: flex; gap: 35px;
    margin-bottom: 50px;
    color: var(--color-gold); font-size: 24px;
}
.side-social-icons-row i { cursor: pointer; transition: transform .3s; }
.side-social-icons-row i:hover { transform: scale(1.15); }

.side-panel .form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 35px 40px;
}
.side-panel .form-group { display: flex; flex-direction: column; }
.full-width { grid-column: span 2; }
.side-panel label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; margin-bottom: 8px;
    color: #fff; text-transform: uppercase;
}
.side-panel .side-input,
.side-panel .side-textarea {
    background: transparent; border: none;
    border-bottom: 1px solid #777;
    padding: 10px 0; color: #fff;
    font-family: var(--font-sans);
    font-size: 15px; outline: none; width: 100%;
}
.side-panel .side-textarea { min-height: 40px; resize: vertical; }
.side-panel .required-note {
    font-size: 14px; color: #aaa;
    margin: 20px 0 40px; font-style: italic;
}
.side-footer {
    display: flex; justify-content: space-between;
    align-items: center; margin-top: 20px;
}
.privacy-checkbox-side { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.privacy-checkbox-side input { width: 18px; height: 18px; accent-color: var(--color-gold); }
.privacy-checkbox-side a { color: #fff; text-decoration: underline; }
.side-btn-send {
    background: transparent;
    border: 1px solid #555;
    color: #999;
    padding: 15px 45px;
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    cursor: pointer; transition: all .3s;
}
.side-btn-send:hover {
    border-color: var(--color-gold); color: var(--color-gold);
}


/* ============================================================
   17. RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .journey-steps { grid-template-columns: repeat(5, 1fr); gap: 0 8px; }
    .journey-step { padding: 0 10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pillar:nth-child(odd) { border-right: 1px solid var(--color-line); }
    .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--color-line); }
    .pillar:nth-child(even) { border-right: none; }

    /* === Tablet : centrer le bloc welcome (signatures + lien) === */
    .welcome-container { grid-template-columns: 1fr !important; text-align: center !important; }
    .welcome-left, .welcome-right { text-align: center !important; align-items: center !important; }
    .welcome-left h2, .welcome-right p, .welcome-right .lead { text-align: center !important; }
    .welcome-signatures {
        justify-content: center !important;
        align-items: center !important;
        max-width: 100% !important;
    }
    .signature { align-items: center !important; text-align: center !important; }
    .welcome-right .link-underline,
    .link-underline {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 1024px) {
    header {
        position: fixed; top: 0; left: 0; width: 100%;
        height: 90px; padding: 0 20px;
        justify-content: space-between;
        z-index: 2000;
    }
    body { padding-top: 90px; }
    .brand-logo { position: static; }
    .brand-icon { width: 34px; height: 34px; }
    .brand-name { font-size: 18px; letter-spacing: 2px; }
    .brand-sub { font-size: 7px; letter-spacing: 3px; }
    .hamburger { display: flex; }
    .navbar {
        position: fixed; top: 90px; left: 0;
        width: 100%; height: calc(100vh - 90px);
        background: #fff; flex-direction: column;
        align-items: flex-start; padding: 40px;
        transform: translateX(-100%); transition: transform .4s;
        overflow-y: auto; gap: 0; margin-left: 0; z-index: 1999;
    }
    .navbar.active { transform: translateX(0); }
    .nav-wrapper-mega, .nav-wrapper-simple {
        width: 100%; height: auto;
        flex-direction: column; align-items: flex-start;
        padding: 14px 0; border-bottom: 1px solid #eceae3;
    }
    .nav-link { width: 100%; padding: 0; justify-content: space-between; font-size: 13px; letter-spacing: 1px; }
    .btn-book {
        position: relative; right: auto; top: auto; transform: none;
        margin-top: 20px; width: 100%; text-align: center; padding: 15px;
    }
    .dropdown-menu, .dropdown-menu.mega-style, .dropdown-menu.simple-style {
        position: static; width: 100%; box-shadow: none;
        visibility: visible; opacity: 1; transform: none;
        display: none; background: #fff;
    }
    /* Sous-menu ouvert : compact & centré (aligné sur header.css) */
    .nav-wrapper-mega.open .dropdown-menu,
    .nav-wrapper-simple.open .dropdown-menu { display: block; padding: 12px 0 8px 20px; }
    .nav-wrapper-mega.open .dropdown-menu.mega-style { display: grid; grid-template-columns: 1fr; gap: 0; }
    .nav-wrapper-simple.open .dropdown-menu { display: block; }
    .dropdown-menu .column-title {
        display: block; color: var(--color-gold);
        padding: 18px 0 12px; margin: 14px 0 0;
        border: 0; border-top: 1px solid #eceae3;
        font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
        text-transform: uppercase; text-align: center !important;
    }
    .dropdown-menu.mega-style > div:first-child .column-title { border-top: 0; margin-top: 0; padding-top: 4px; }
    .dropdown-menu ul { display: block; padding: 0; margin: 0; list-style: none; text-align: center !important; }
    .dropdown-menu li { text-align: center !important; padding: 1px 0; margin: 0; list-style: none; }
    .dropdown-menu li a { color: #444; display: inline-block; font-size: 14.5px; padding: 2px 12px; line-height: 1.3; }
    .nav-wrapper-mega.open .nav-link i, .nav-wrapper-simple.open .nav-link i { transform: rotate(180deg); }
    .dropdown-menu li a::before { display: none !important; }
    .dropdown-menu li a:hover { padding-left: 12px !important; }

    /* Hero — version mobile : tout centré + bouton compact */
    .hero-section { min-height: auto; padding: 60px 0; }
    .hero-content {
        padding: 60px var(--site-gutter) 60px;
        text-align: center;
    }
    .hero-title {
        font-size: clamp(36px, 7vw, 52px);
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-eyebrow { text-align: center; }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost,
    .hero-actions .btn-gold,
    .hero-actions .btn-outline-light {
        padding: 13px 24px;
        font-size: 11px;
        letter-spacing: 1.6px;
        width: auto;
        max-width: 320px;
    }
    .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 24px; padding-top: 32px; justify-content: center; }
    .hero-scroll { display: none; }

    /* Welcome */
    /* === Centrer tous les textes mobile (homepage) === */
    main, main *,
    section, section *,
    .welcome-left, .welcome-left *, .welcome-right, .welcome-right *,
    .pillars-section *, .stats-section *, .team-section *,
    .journey-section *, .ba-section *, .isaneo-reviews-section *,
    .faq-section *, .final-cta * {
        text-align: center !important;
    }
    /* Welcome signatures (stats 15+/7000+) : centrer le bloc flex */
    .welcome-signatures {
        justify-content: center !important;
        align-items: center !important;
    }
    .signature { align-items: center !important; }
    /* Lien "Why choose Argaman Plastic Surgeries Mexico" centré */
    .welcome-right .link-underline,
    .link-underline {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    /* Exceptions strictes : navigation + header + footer + listes éditoriales */
    header, header *, nav, nav *, footer, footer *,
    .footer-info-section, .footer-info-section * {
        text-align: inherit !important;
    }

    .welcome-section { padding: 70px 24px 60px; }
    .welcome-container { grid-template-columns: 1fr; gap: 32px; }
    /* Textes allégés + police de lecture (Inter) pour le mobile */
    .welcome-left h2 { font-size: clamp(26px, 7vw, 34px); letter-spacing: -0.5px; line-height: 1.15; }
    .welcome-right .lead {
        font-family: var(--font-sans);
        font-style: normal;
        font-size: 16px;
        line-height: 1.6;
        font-weight: 400;
        margin-bottom: 18px;
    }
    .welcome-right p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }

    /* === Allègement global des textes en mobile (titres + paragraphes) === */
    .stats-heading h2, .team-head h2, .journey-head h2, .ba-head h2,
    .isaneo-head h2, .faq-head h2, .pillars-head h2 {
        font-size: clamp(25px, 7vw, 32px);
        line-height: 1.18;
    }
    .final-cta h2 { font-size: clamp(27px, 7.5vw, 34px); }
    .ba-head p, .journey-lead, .team-text-block p,
    .isaneo-head p, .final-cta p { font-size: 14px; line-height: 1.7; }
    .faq-answer p { font-size: 13.5px; line-height: 1.65; }

    /* Pillars — vidéo en arrière-plan plein écran (même comportement qu'en desktop) */
    .pillars-section { padding: 60px 24px; }
    .pillars-head { margin-bottom: 30px; }
    .pillars-grid { grid-template-columns: 1fr; }
    /* Icône au-dessus, texte centré, version compacte */
    .pillar {
        border-right: none !important;
        border-bottom: 1px solid rgba(192, 160, 98, 0.25) !important;
        padding: 26px 16px;
    }
    .pillar-icon {
        width: 48px; height: 48px;
        font-size: 18px;
        margin-bottom: 14px;
    }
    .pillar h3 { font-size: 18px; margin-bottom: 6px; }
    .pillar p { font-size: 13px; line-height: 1.6; }
    .pillar:last-child { border-bottom: none !important; }

    /* Carousel */
    .carousel-section { min-height: 520px; padding: 60px 0 50px; }
    .carousel-section::before { background: linear-gradient(to bottom, rgba(10,12,15,0.5) 0%, rgba(10,12,15,0.7) 100%); }
    .carousel-intro { padding: 70px 24px 50px; }
    .carousel-intro-title { font-size: clamp(28px, 6vw, 38px); }
    .carousel-header, .pill-nav-wrapper, .carousel-content {
        padding-left: 20px !important; padding-right: 20px !important;
    }
    .pill-nav-wrapper { justify-content: center; gap: 22px; }
    .carousel-text { text-align: center; max-width: 100%; }
    .carousel-text p { margin-left: auto; margin-right: auto; }
    /* Sur mobile, on déplace les flèches en BAS du carrousel (au lieu des côtés)
       pour ne plus chevaucher le texte / les pills. Elles restent visibles
       et utilisables, encadrant les indicateurs. */
    .carousel-prev, .carousel-next {
        top: auto;
        bottom: -56px;
        transform: none;
        width: 40px; height: 40px;
    }
    .carousel-prev { left: 50%; margin-left: -130px; }
    .carousel-next { right: 50%; margin-right: -130px; }
    /* On pousse les indicateurs vers le bas pour faire de la place aux flèches */
    .carousel-indicators { margin-top: 70px; gap: 9px; }
    .indicator { width: 26px; height: 3px; }
    .indicator.active { width: 44px; }

    /* Stats */
    .stats-section { padding: 80px 24px; }
    .stats-heading { margin-bottom: 50px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .stat-number { font-size: 58px; }

    /* Team */
    .team-section { padding: 80px 24px; }
    .team-grid { grid-template-columns: 1fr; gap: 40px; }
    .team-head { margin-bottom: 40px; }

    /* Journey */
    .journey-section { padding: 80px 24px; }
    .journey-head { margin-bottom: 50px; }
    .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 50px 16px; }
    .journey-steps::before { display: none; }

    /* Before/after */
    .ba-section { padding: 80px 24px; }
    .ba-container { grid-template-columns: 1fr; gap: 40px; }
    .ba-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

    /* Reviews */
    .isaneo-reviews-section { padding: 80px 24px; }
    .isaneo-tabs { gap: 20px; flex-wrap: wrap; }
    .isaneo-card { min-width: calc(50% - 12px); }

    /* FAQ */
    .faq-section { padding: 80px 24px; }
    .faq-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .faq-image-column { order: -1; }
    .faq-question { font-size: 17px; padding: 22px 0; }

    /* Final CTA */
    .final-cta { padding: 80px 24px; }

    /* Side panel */
    .side-panel { width: 100% !important; right: -100%; padding: 40px 20px; z-index: 2001; top: 0; }
    .side-panel .form-grid { grid-template-columns: 1fr; }
    .side-footer { flex-direction: column; gap: 30px; align-items: flex-start; }
    .side-btn-send { width: 100%; }

    /* Footer */
    .footer-cta-bar { flex-direction: column; text-align: center !important; padding: 32px 20px; gap: 20px; }
    .cta-content, .cta-content h2 { text-align: center !important; max-width: none; }
    .cta-content h2 { font-size: 22px !important; line-height: 1.3; }
    .footer-grid-wrapper {
        grid-template-columns: repeat(3, 1fr); gap: 20px;
        text-align: left; padding-bottom: 40px;
    }
    .f-col-identity {
        grid-column: span 3; align-items: center;
        border-bottom: 1px solid #ddd; padding-bottom: 30px;
        margin-bottom: 10px; width: 100%; text-align: center;
    }
    .f-col-identity .f-address-box { text-align: center; }
    .f-address-box p { font-size: 11px; line-height: 1.5; margin-bottom: 3px; }
    .f-address-box .highlight { font-size: 12px; margin-top: 6px; }
    .f-col-identity .f-socials-row { justify-content: center; width: 100%; }
    .f-col-links h4, .f-group-title { font-size: 11px; }
    .f-link-list li a { font-size: 11px; }
}

@media (max-width: 768px) {
    .welcome-signatures {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 30px !important;
    }
    .signature { padding-right: 30px !important; }
    .signature:last-child { padding-right: 0 !important; }
    .signature:not(:last-child)::after {
        content: '' !important;
        position: absolute !important;
        right: 0 !important;
        top: 6px !important;
        bottom: 6px !important;
        width: 1px !important;
        background: var(--color-line) !important;
        display: block !important;
    }
    .stats-grid { grid-template-columns: 1fr; }
    /* Parcours patient : numéro + icône au-dessus, texte centré, compact */
    .journey-section { padding: 60px 24px; }
    .journey-head { margin-bottom: 30px; }
    .journey-steps { grid-template-columns: 1fr; gap: 28px; }
    .journey-step { padding: 0; text-align: center; }
    .step-num { font-size: 12px; letter-spacing: 3px; margin-bottom: 10px; }
    .step-icon {
        width: 52px; height: 52px;
        font-size: 20px;
        margin: 0 auto 14px;
    }
    .journey-step h3 { font-size: 17px; margin-bottom: 8px; }
    .journey-step p { font-size: 13px; line-height: 1.6; }
    /* Galerie avant/après : 2 images par ligne, plus compactes */
    .ba-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .ba-card::after { inset: 7px; }
    .ba-card figcaption { left: 10px; bottom: 10px; padding: 6px 10px; font-size: 9px; letter-spacing: 1.5px; }
    /* Carrousel avis : 1 carte pleine largeur, flèches sous le carrousel */
    .isaneo-carousel-wrapper {
        display: flex; flex-wrap: wrap; justify-content: center;
        gap: 16px; padding: 10px 0;
    }
    .isaneo-viewport { order: 0; width: 100%; }
    .isaneo-nav-btn {
        position: static; transform: none; order: 1;
        width: 46px; height: 46px;
    }
    .isaneo-card { min-width: 100%; padding: 28px 22px; }
    .footer-grid-wrapper { grid-template-columns: 1fr; }
    .f-col-identity { grid-column: span 1; }
    .hero-trust { grid-template-columns: 1fr 1fr; gap: 20px; }
    .trust-item { font-size: 12px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; letter-spacing: -0.5px; }
    .hero-eyebrow { font-size: 10px; letter-spacing: 2px; padding: 6px 14px; }
    .hero-subtitle { font-size: 15px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-ghost, .btn-gold, .btn-outline-light { justify-content: center; width: 100%; }
    .hero-trust { grid-template-columns: 1fr; }
    .carousel-text h2 { font-size: 30px; letter-spacing: -0.6px; margin-bottom: 22px; }
    /* Sur très petit écran, flèches un peu plus rapprochées des indicateurs */
    .carousel-prev { margin-left: -100px; }
    .carousel-next { margin-right: -100px; }
    .carousel-prev, .carousel-next { width: 36px; height: 36px; }
    .team-logos { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .final-cta-actions { flex-direction: column; }
    .final-cta-actions .btn-gold,
    .final-cta-actions .btn-outline-light { width: 100%; justify-content: center; }
}

/* ============================================================
   INDEX — SYSTÈME 2 TONS : blanc + sombre uniquement (2026)
   Pas de crème : contraste clair/sombre net et cohérent.
   ============================================================ */

/* ============================================================
   INDEX — PASSE ÉPURÉE (inspiration ppsclt.com)
   Labels raffinés (filet or) · titres plus légers/calmes · air
   100% Inter · palette or/sombre/crème · zéro couleur superflue
   ============================================================ */

/* Kickers / labels : petit, très espacé, avec un fin filet or dessous (traitement éditorial) */
.kicker {
    font-size: 11px !important;
    letter-spacing: 4.5px !important;
    font-weight: 600 !important;
}
.kicker::after {
    content: "";
    display: block;
    width: 26px;
    height: 1px;
    background: var(--color-gold);
    margin-top: 13px;
    opacity: .85;
}
.kicker.center::after { margin-left: auto; margin-right: auto; }

/* Titres de section : graisse plus légère = calme et raffiné */
.pillars-head h2,
.team-head h2,
.stats-heading h2,
.ba-head h2,
.faq-head h2,
.isaneo-head h2 {
    font-weight: 400 !important;
    letter-spacing: -0.4px !important;
}

/* Un peu plus d'air sur l'intro carrousel (harmonisation) */
.carousel-intro { padding: 120px 40px !important; }

/* ============================================================
   INDEX — PILLARS : image de fond quasi transparente, texte sombre
   ============================================================ */
.pillars-head h2          { color: var(--color-dark) !important; }
.pillar h3                { color: var(--color-dark) !important; }
.pillar p                 { color: var(--color-slate) !important; }
.pillar                   { border-right-color: rgba(192,160,98,0.28) !important; }
/* voile crème quasi opaque : l'image de fond n'est qu'un filigrane discret */
.pillars-bg-overlay {
    background:
        radial-gradient(circle at 12% 18%, rgba(192,160,98,0.08) 0%, transparent 50%),
        radial-gradient(circle at 88% 88%, rgba(192,160,98,0.06) 0%, transparent 55%),
        linear-gradient(180deg, rgba(250,249,246,0.965) 0%, rgba(250,249,246,0.985) 100%) !important;
}
