/* ============================================================
   TOP PLASTIC SURGEONS PAGE — ARGAMAN SURGERIES
   ============================================================ */

/* --- 1. CONFIGURATION & PALETTE --- */
:root {
    --color-gold: #C0A062;
    --color-dark: #2F353B;
    --color-cream: #F9F8F4;
    --color-slate: #545F66;
    --color-grey: #666666;
    --color-border: #999999;
    --color-grey-dark: #1E242A;
    --color-goldor: #a88852;
    --color-clair: #f9f9f8;

    --site-padding-left: max(40px, 5vw);
    --site-max-width: 1400px;
    --site-gutter: max(40px, calc((100% - 1200px) / 2));
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--color-dark);
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
}

/* ============================================================
   2. HEADER & NAVIGATION
   ============================================================ */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 110px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}

.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;
    transition: opacity 0.3s;
}

.brand-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 2px;
    color: var(--color-slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.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: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--color-slate);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-sub {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.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: 15px;
    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 0.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 0.3s; }

.btn-book {
    text-decoration: none;
    color: var(--color-grey);
    background-color: transparent;
    border: 1px solid var(--color-border);
    padding: 12px 25px;
    position: absolute;
    right: var(--site-gutter);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-book:hover {
    border-color: var(--color-gold);
    background-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);
    }
}

.dropdown-menu {
    background-color: var(--color-dark);
    position: absolute; top: 100%; visibility: hidden; opacity: 0;
    transform: translateY(10px); transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 999;
}
.dropdown-menu.mega-style { left: 0; width: 100%; padding: 50px 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.dropdown-menu.simple-style { left: 50%; transform: translateX(-50%) translateY(10px); min-width: 250px; padding: 30px; display: flex; flex-direction: column; }

@media (min-width: 1025px) {
    .nav-wrapper-simple:hover .dropdown-menu.simple-style { transform: translateX(-50%) translateY(0); }
}

.column-title { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
ul { list-style: none; }
li { margin-bottom: 12px; }

li a { color: #b0b2b5; text-decoration: none; font-size: 14px; position: relative; display: block; transition: all 0.3s ease; }
li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0px; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; }
li a:hover { color: var(--color-gold); padding-left: 25px; }
li a:hover::before { width: 15px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2001; }
.bar { width: 30px; height: 2px; background-color: var(--color-dark); transition: all 0.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); }

/* ============================================================
   3. HERO SECTION — design unifié avec la page Testimonials
   ============================================================ */
.surgeons-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    padding: 120px 40px 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15,17,20,0.55) 0%, rgba(15,17,20,0.70) 100%),
        url("Images/top-plastic-surgeons-mexico-city-argaman.webp") center / cover no-repeat;
    background-color: #1E242A;
}
.surgeons-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.surgeons-hero .hero-eyebrow-gold,
h1.hero-eyebrow-gold {
    display: inline-block;
    color: #d8c28c;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    padding: 0;
    line-height: 1.4;
    text-shadow: none;
    text-transform: none;
}
.surgeons-hero .hero-main-white {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.surgeons-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto;
}

/* Breadcrumb — collé en haut */
.surgeons-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 18px 24px 0;
    width: 100%;
}
.surgeons-breadcrumb,
.surgeons-breadcrumb *,
.surgeons-breadcrumb *::before,
.surgeons-breadcrumb *::after {
    transition: none !important;
    animation: none !important;
}
.surgeons-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 max(40px, 5vw);
}
.surgeons-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
}
.surgeons-breadcrumb ol li {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.surgeons-breadcrumb ol li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
.surgeons-breadcrumb ol li + li::before { content: none !important; }
.surgeons-breadcrumb a,
.surgeons-breadcrumb a:hover,
.surgeons-breadcrumb a:focus,
.surgeons-breadcrumb a:active,
.surgeons-breadcrumb a:visited {
    color: #fff !important;
    text-decoration: none !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
}
.surgeons-breadcrumb li a::before,
.surgeons-breadcrumb li a:hover::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* ============================================================
   4. STATS BAND
   ============================================================ */
.stats-band {
    background-color: var(--color-dark);
    padding: 60px 40px;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   5. CONTENT SECTIONS — GENERAL
   ============================================================ */
.content-section { padding: 100px 40px; }
.content-section.white-bg { background-color: #fff; }
.content-section.cream-bg { background-color: var(--color-cream); }

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

.content-container.centered { text-align: center; }

.content-container h2,
.centered-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.centered-title { text-align: center; }
.centered-title.light { color: #fff; }

.content-container p {
    font-size: 15px;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-container p strong {
    color: var(--color-dark);
    font-weight: 600;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-grey);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
    text-align: center;
}

.section-subtitle.light { color: rgba(255,255,255,0.75); }

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.col-text { direction: ltr; }
.col-image { direction: ltr; }

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 0;
}

/* Real <img> inside col-image — remplace les placeholders gris */
.col-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}
@media (max-width: 1024px) {
    .col-image img { height: 320px; }
}
@media (max-width: 768px) {
    .col-image img { height: 260px; }
}

/* CTA Buttons */
.btn-cta-gold {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-gold);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 15px;
}
.btn-cta-gold:hover { background-color: #a8893f; }

.btn-cta-outline {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 25px;
}
.btn-cta-outline:hover { background-color: var(--color-gold); color: #fff; }

.btn-cta-outline-light {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.btn-cta-outline-light:hover { background-color: var(--color-gold); color: #fff; }

/* ============================================================
   6. CERT CHECKLIST
   ============================================================ */
.cert-checklist { margin-top: 25px; }

.cert-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}
.cert-check-item i { color: var(--color-gold); font-size: 14px; flex-shrink: 0; }
.cert-check-item span { font-size: 14px; color: var(--color-dark); font-weight: 400; }

/* ============================================================
   7. TRAINING GRID (Section 4)
   ============================================================ */
.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.training-item {
    background-color: var(--color-cream);
    padding: 40px 28px;
    text-align: center;
    border-top: 3px solid var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.training-year {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.training-item h3 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.training-item p {
    font-size: 13.5px;
    color: var(--color-grey);
    line-height: 1.7;
    margin: 0;
}

.training-footnote {
    max-width: 800px;
    margin: 45px auto 0;
    text-align: center;
    font-size: 14px;
    color: var(--color-grey);
    line-height: 1.8;
    font-style: italic;
}

.training-footnote strong { color: var(--color-dark); font-style: normal; }

/* ============================================================
   7b. SUB-SPECIALTIES BLOCK
   ============================================================ */
.specialties-block {
    max-width: 900px;
    margin: 55px auto 0;
    padding: 40px 45px;
    background-color: var(--color-cream);
    border-left: 3px solid var(--color-gold);
}

.specialties-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.specialties-grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-dark);
    line-height: 1.5;
}

.specialties-grid span i {
    color: var(--color-gold);
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================================
   7c. GLOBAL BAND (dark — 20+ countries)
   ============================================================ */
.global-band {
    background-color: var(--color-dark);
    padding: 100px 40px;
    color: #fff;
    background-image: linear-gradient(rgba(47,53,59,0.92), rgba(47,53,59,0.92)),
        url("Images/banner-woman-consultation.webp");
    background-size: cover;
    background-position: center;
}

.global-band .centered-title { margin-bottom: 25px; }

.global-grid {
    max-width: 1000px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.global-stat {
    padding: 25px 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.global-num {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 10px;
}

.global-label {
    display: block;
    font-size: 12.5px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

/* ============================================================
   7d. HALLMARKS GRID (5 criteria)
   ============================================================ */
.hallmarks-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.hallmark-item {
    padding: 30px 22px;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: 3px solid var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hallmark-num {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.hallmark-item h3 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hallmark-item p {
    font-size: 13.5px;
    color: var(--color-grey);
    line-height: 1.7;
    margin: 0;
}

.hallmark-item p strong { color: var(--color-dark); font-weight: 600; }

/* ============================================================
   7e. ETHICS SECTION (confidentiality / FILACP) — watermark
   ============================================================ */
.ethics-section {
    position: relative;
    overflow: hidden;
}

.ethics-section .content-container {
    position: relative;
    z-index: 1;
}

.ethics-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    max-width: 1800px;
    aspect-ratio: 1 / 1;
    color: rgba(192,160,98, 0.18);
    pointer-events: none;
    z-index: 0;
}

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

.ethics-block {
    max-width: 850px;
    margin: 20px auto 0;
    padding: 0 10px;
}

.ethics-block p {
    font-size: 15.5px;
    color: var(--color-dark);
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: left;
}

.ethics-block p strong { color: var(--color-dark); font-weight: 700; }

.ethics-cta-row {
    margin-top: 35px;
    text-align: center;
}

/* ============================================================
   8. PROTOCOL SECTION (dark bg, Section 5)
   ============================================================ */
.protocol-section {
    background-color: var(--color-dark);
    padding: 100px 40px;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
/* Overlay sombre pour lisibilité du texte sur l'image de fond */
.protocol-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,17,20,0.72) 0%, rgba(15,17,20,0.80) 100%);
    z-index: 1;
}
.protocol-section > .content-container {
    position: relative;
    z-index: 2;
}

.protocol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.protocol-item {
    text-align: center;
    padding: 20px;
}

.protocol-icon {
    width: 64px;
    height: 64px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: background-color 0.3s ease;
}

.protocol-item:hover .protocol-icon {
    background-color: var(--color-gold);
}

.protocol-icon i {
    color: var(--color-gold);
    font-size: 22px;
    transition: color 0.3s ease;
}

.protocol-item:hover .protocol-icon i { color: #fff; }

.protocol-item h3 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.protocol-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   9. CERT GRID (Section 6 — logos)
   ============================================================ */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px 70px;
    margin-top: 50px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 0 0 auto;
    min-width: 120px;
}

.cert-item img {
    max-height: 70px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.cert-item:hover img { filter: grayscale(0); }

/* ============================================================
   10. COMPARISON GRID (Section 7)
   ============================================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.comparison-col {
    background-color: #fff;
    padding: 40px 35px;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease;
}

.comparison-col.highlight-col {
    background-color: var(--color-dark);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.comparison-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 16px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.comparison-tag.warn {
    background-color: #f3e9d4;
    color: #8a6a1f;
}

.comparison-tag.good {
    background-color: var(--color-gold);
    color: #fff;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-grey);
    border-bottom: 1px solid #f0f0f0;
}

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

.comparison-col.highlight-col .comparison-list li {
    color: rgba(255,255,255,0.85);
    border-bottom-color: rgba(255,255,255,0.1);
}

.comparison-list li i {
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 13px;
}

.comparison-list li i.fa-check { color: var(--color-gold); }
.comparison-list li i.fa-times { color: #bfa26a; opacity: 0.7; }

.comparison-footnote {
    text-align: center;
    margin-top: 35px;
    font-size: 15px;
    color: var(--color-dark);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ============================================================
   11. TESTIMONIAL
   ============================================================ */
.testimonial-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    display: block;
    font-size: 80px;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.testimonial-block blockquote {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.7;
    margin: 0 0 25px;
}

.testimonial-block cite {
    display: block;
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* ============================================================
   12. FAQ
   ============================================================ */
.faq-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover { color: var(--color-gold); }

.faq-item summary i {
    color: var(--color-gold);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] summary i { transform: rotate(45deg); }

.faq-item p {
    padding: 0 10px 25px;
    font-size: 14.5px;
    color: var(--color-grey);
    line-height: 1.8;
    margin: 0;
}

.faq-item p strong { color: var(--color-dark); font-weight: 600; }

/* ============================================================
   FAQ — nouvelle structure avec h3 dans summary (a11y + SEO)
   ============================================================ */
.faq-item summary.faq-header {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 10px;
    transition: color 0.25s ease;
}
.faq-item summary.faq-header::-webkit-details-marker { display: none; }
.faq-item summary.faq-header h3 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--color-dark) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    flex: 1;
    transition: color 0.25s ease;
}
.faq-item summary.faq-header:hover h3 {
    color: var(--color-gold) !important;
}
/* Indicateur + / − doré, animé */
.faq-item summary.faq-header::after {
    content: '+';
    color: var(--color-gold);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item[open] summary.faq-header::after {
    content: '−';
}
.faq-item summary.faq-header:hover::after {
    transform: rotate(90deg);
}
.faq-item[open] summary.faq-header:hover::after {
    transform: rotate(0);
}
/* Wrapper du contenu de réponse */
.faq-content {
    padding: 0 10px 22px;
}
.faq-content p {
    padding: 0 !important;
    font-size: 14.5px;
    color: var(--color-grey);
    line-height: 1.8;
    margin: 0;
}
.faq-content p strong { color: var(--color-dark); font-weight: 600; }

/* ============================================================
   12b. LATEST BLOG CAROUSEL (matches Blog/blog.html card style)
   ============================================================ */
.latest-blog-section {
    background-color: #fff;
    padding: 90px 40px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.latest-blog-header {
    margin-bottom: 50px;
}

.latest-blog-kicker {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.latest-blog-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0;
}

.latest-blog-wrapper {
    position: relative;
}

.latest-blog-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.latest-blog-track::-webkit-scrollbar { display: none; }

.latest-blog-track .card {
    flex: 0 0 calc((100% - 120px) / 4);
    scroll-snap-align: start;
    background: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.latest-blog-track .card:hover {
    transform: translateY(-5px);
}

.latest-blog-track .card-link-wrap {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.latest-blog-track .image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.latest-blog-track .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-blog-track .card:hover .image-wrapper img {
    transform: scale(1.1);
}

.latest-blog-track .date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #fff;
    border: 2px solid var(--color-dark);
    width: 50px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    line-height: 1;
}

.latest-blog-track .date-day {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.latest-blog-track .date-month {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1;
}

.latest-blog-track .card-content {
    padding: 20px 15px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.latest-blog-track .card-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.latest-blog-track .separator {
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto 15px auto;
}

.latest-blog-track .card-excerpt {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--color-grey);
    line-height: 1.5;
    flex: 1;
    margin: 0 0 15px;
}

.latest-blog-track .card-meta {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: var(--color-grey);
    margin-top: auto;
    padding-top: 10px;
}

/* Navigation buttons */
.latest-blog-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: #f4f1ea;
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.latest-blog-btn:hover {
    background-color: var(--color-gold);
    color: #fff;
}

.latest-blog-btn.prev { left: -22px; }
.latest-blog-btn.next { right: -22px; }

.latest-blog-btn i { font-size: 14px; }

.latest-blog-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.latest-blog-btn:disabled:hover {
    background-color: #f4f1ea;
    color: var(--color-gold);
}

/* ============================================================
   13. FINAL CTA
   ============================================================ */
.final-cta {
    background-color: var(--color-dark);
    padding: 100px 40px;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
footer { padding: 0; background-color: transparent; border-top: none; width: 100%; }
.footer-cta-bar { background-color: var(--color-grey-dark); 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: 300; line-height: 1.3; max-width: 1200px; margin: 0; text-align: left; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--color-gold); padding: 12px 30px; color: #fff; background: var(--color-gold); text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-footer-cta:hover { background: #fff; color: var(--color-grey); border-color: #fff; }
.footer-info-section { background-color: #fff; padding: 80px 40px 30px 40px; color: var(--color-dark); }
.footer-grid-wrapper { max-width: 1200px; 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-size: 24px; letter-spacing: 1px; font-weight: 400; }
.f-sub-ft { 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; }
.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 0.3s; text-decoration: none; }
.f-socials-row a:hover { color: var(--color-gold); }
.f-col-links h4 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; 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 0.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 0.3s; }
.footer-legal-row a:hover { color: var(--color-gold); }

/* ============================================================
   15. RESPONSIVE — TABLET (<= 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    li a::before { display: none !important; }
    li a:hover { padding-left: 0 !important; }

    header { justify-content: space-between; padding: 0 20px; height: 90px; position: fixed; top: 0; left: 0; width: 100%; border-bottom: 1px solid #e5e5e5; z-index: 2000; }
    body { padding-top: 90px; }
    .brand-logo { position: static; left: auto; }
    .brand-icon { width: 35px; height: 35px; }
    .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-color: #fff; flex-direction: column; align-items: flex-start; padding: 40px; transform: translateX(-100%); transition: transform 0.4s ease; overflow-y: auto; gap: 0; z-index: 1999; margin-left: 0; }
    .navbar.active { transform: translateX(0); }
    .nav-wrapper-mega, .nav-wrapper-simple { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid #f0f0f0; }
    .nav-link { width: 100%; padding: 20px 0; justify-content: space-between; font-size: 16px; }
    .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; padding: 0; visibility: visible; opacity: 1; transform: none; display: none; background-color: #ffffff; padding-left: 15px; }
    .column-title { color: var(--color-dark); margin-top: 10px; margin-bottom: 10px; }
    li a { color: #444; }
    .dropdown-menu.mega-style { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .dropdown-menu.simple-style { padding: 20px; }
    .nav-wrapper-mega.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .dropdown-menu.mega-style { display: grid; }
    .nav-wrapper-simple.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .nav-link i, .nav-wrapper-simple.open .nav-link i { transform: rotate(180deg); }

    .surgeons-hero { min-height: auto; padding: 90px 24px 60px; }
    .surgeons-hero .hero-eyebrow-gold { font-size: 14px; margin-bottom: 12px; }
    .surgeons-hero .hero-main-white { font-size: 34px; letter-spacing: -0.8px; }
    .surgeons-hero p { font-size: 15px; }
    .surgeons-breadcrumb { padding: 14px 16px 0; }
    .surgeons-breadcrumb-inner { padding: 0; }
    .surgeons-breadcrumb ol { font-size: 13px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-number { font-size: 40px; }

    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse .col-image { order: -1; }

    .content-section { padding: 70px 30px; }
    .protocol-section { padding: 70px 30px; }

    /* Training grid 2x2 */
    .training-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Protocol 2 cols */
    .protocol-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    /* Cert logos — tighter gap on tablet */
    .cert-grid { gap: 45px 50px; }

    /* Comparison stays 2 cols if room, else wrap */
    .comparison-grid { grid-template-columns: 1fr; gap: 25px; }

    /* Hallmarks 2x3 → wraps to 5th on its own line */
    .hallmarks-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Global band stats 2x2 */
    .global-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .global-band { padding: 70px 30px; }

    /* Ethics block */
    .ethics-block { padding: 0 5px; }
    .ethics-watermark { width: 170%; }

    /* Specialties */
    .specialties-block { padding: 35px 30px; }
    .specialties-grid { grid-template-columns: 1fr; gap: 10px; }

    /* Latest blog carousel — 3 cards visible */
    .latest-blog-section { padding: 70px 30px 80px; }
    .latest-blog-title { font-size: 38px; }
    .latest-blog-track .card { flex: 0 0 calc((100% - 30px) / 2); }
    .latest-blog-track { gap: 30px; }
    .latest-blog-btn { top: 100px; }
    .latest-blog-btn.prev { left: -12px; }
    .latest-blog-btn.next { right: -12px; }

    .content-container h2,
    .centered-title,
    .section-subtitle,
    .col-text { text-align: center; }
    .cert-checklist { display: inline-block; text-align: left; }
}

/* ============================================================
   16. RESPONSIVE — MOBILE (<= 768px)
   ============================================================ */
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; gap: 25px; }
    .stats-band { padding: 50px 20px; }
    .stat-number { font-size: 36px; }

    .cert-grid { gap: 35px 40px; }

    .training-grid { grid-template-columns: 1fr; gap: 20px; }
    .training-item { padding: 30px 22px; }
    .training-footnote { font-size: 13.5px; }

    .protocol-grid { grid-template-columns: 1fr; gap: 40px; }
    .protocol-section { padding: 60px 20px; }
    .protocol-section h2 { font-size: 28px; }

    .comparison-col { padding: 30px 22px; }
    .comparison-list li { font-size: 13.5px; }

    /* Hallmarks 1 col */
    .hallmarks-grid { grid-template-columns: 1fr; gap: 18px; }
    .hallmark-item { padding: 28px 22px; }

    /* Global band 1 col */
    .global-grid { grid-template-columns: 1fr; gap: 15px; }
    .global-num { font-size: 36px; }
    .global-band { padding: 60px 20px; }

    /* Ethics block */
    .ethics-block { padding: 0; }
    .ethics-block p { font-size: 14.5px; }
    .ethics-watermark { width: 200%; color: rgba(192,160,98,0.14); }

    /* Specialties */
    .specialties-block { padding: 28px 22px; }
    .specialties-title { font-size: 16px; }

    /* Latest blog carousel — 1 card visible */
    .latest-blog-section { padding: 55px 20px 65px; }
    .latest-blog-header { margin-bottom: 35px; }
    .latest-blog-title { font-size: 30px; }
    .latest-blog-track .card { flex: 0 0 100%; }
    .latest-blog-track { gap: 20px; }
    .latest-blog-btn { width: 40px; height: 40px; top: 100px; }
    .latest-blog-btn.prev { left: 8px; }
    .latest-blog-btn.next { right: 8px; }

    .surgeons-hero { padding: 80px 18px 50px; }
    .surgeons-hero .hero-main-white { font-size: 28px; }
    .surgeons-hero p { font-size: 14px; max-width: 95%; }
    .surgeons-breadcrumb { padding: 12px 14px 0; }

    .content-section { padding: 60px 20px; }
    .content-container h2,
    .centered-title { font-size: 26px; }

    .image-placeholder { height: 260px; }

    .final-cta { padding: 70px 20px; }
    .final-cta h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; gap: 15px; }
    .cta-buttons .btn-cta-gold,
    .cta-buttons .btn-cta-outline-light { width: 100%; text-align: center; }

    .faq-item summary { font-size: 14.5px; padding: 18px 5px; }
    .faq-item p { font-size: 13.5px; padding: 0 5px 20px; }

    .testimonial-block blockquote { font-size: 18px; }
    .quote-mark { font-size: 60px; }

    .footer-cta-bar { flex-direction: column; text-align: center; justify-content: center; padding: 50px 20px; }
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; padding-left: 10px; padding-right: 10px; }
    .f-col-identity { grid-column: span 3 !important; text-align: center !important; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 10px; width: 100%; }
    .f-col-identity .f-address-box { width: 100%; text-align: center; }
    .f-col-identity .f-address-box p { font-size: 15px; line-height: 1.7; }
    .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; }
    .footer-info-section { padding: 50px 20px 20px; }
}

/* ============================================================
   FLATTEN CARDS — supprime les fonds/bordures/ombres des cards
   tout en gardant le layout (grids) et la richesse du contenu
   ============================================================ */

/* Stat band — chiffres seuls, plus de fond */
.stats-band { background-color: transparent !important; padding: 50px 20px !important; }
.stat-item { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.stat-number { color: var(--color-dark) !important; }

/* Training items (15-year path) */
.training-item {
    background-color: transparent !important;
    border-top: none !important;
    border-left: 2px solid var(--color-gold) !important;
    padding: 4px 0 4px 20px !important;
    text-align: left !important;
    transition: none !important;
}
.training-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Specialties block — plus de bloc encadré */
.specialties-block {
    background-color: transparent !important;
    border-left: none !important;
    padding: 0 !important;
    margin-top: 40px !important;
}
.specialties-grid span {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Global band — fond sombre conservé pour le rythme, mais cards plates */
.global-stat {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Protocol items (6 OR safety) */
.protocol-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    transition: none !important;
}
.protocol-item:hover {
    transform: none !important;
    box-shadow: none !important;
}
.protocol-icon {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    margin-bottom: 14px !important;
}
.protocol-icon i {
    color: var(--color-gold) !important;
    font-size: 24px !important;
}

/* Cert grid (logos) — plus de fond/cadre */
.cert-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.cert-item img {
    filter: none !important;
    opacity: 1 !important;
}

/* Hallmarks (5) — plats avec juste le numéro doré */
.hallmark-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    transition: none !important;
}
.hallmark-item:hover {
    transform: none !important;
    box-shadow: none !important;
}
.hallmark-num {
    background: transparent !important;
    color: var(--color-gold) !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    line-height: 1 !important;
    padding: 0 !important;
}

/* Comparison grid (Cosmetic vs Plastic) — 2 colonnes plates */
.comparison-col,
.comparison-col.highlight-col {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}
/* Texte de la colonne highlight était blanc — repasser en sombre puisqu'on est sur fond blanc */
.comparison-col.highlight-col .comparison-list li,
.comparison-col.highlight-col .comparison-list li * {
    color: var(--color-dark) !important;
    border-bottom-color: #e5e5e5 !important;
}
.comparison-col.highlight-col .comparison-tag {
    /* On garde le tag doré mais lisible */
    color: #fff !important;
}

/* Testimonial — quote nue, sans bloc cream */
.testimonial-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    max-width: 760px !important;
    margin: 0 auto !important;
}
.quote-mark {
    color: var(--color-gold) !important;
    background: transparent !important;
}

/* Section backgrounds — pas de fond cream alterné */
.content-section.cream-bg,
.content-section.ethics-section.cream-bg {
    background-color: #fff !important;
}

/* Cert checklist — déjà une liste, juste épuration */
.cert-check-item {
    background: transparent !important;
    border: none !important;
    padding: 6px 0 !important;
}

/* ============================================================
   BANNER SECTIONS — image en fond pleine largeur, texte par-dessus
   ============================================================ */
.bg-banner-section {
    position: relative;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #1E242A;
    padding: 140px 40px !important;
    color: #fff !important;
    overflow: hidden;
    border: none !important;
}
/* Overlay sombre pour lisibilité du texte */
.bg-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,17,20,0.65) 0%, rgba(15,17,20,0.75) 100%);
    z-index: 1;
}
.bg-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.bg-banner-section h2 {
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin: 0 0 24px !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
    text-align: center !important;
}
.bg-banner-section p {
    color: rgba(255,255,255,0.92) !important;
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    font-weight: 300;
    margin: 0 auto 18px !important;
    max-width: 760px;
}
.bg-banner-section p strong {
    color: #fff !important;
    font-weight: 600;
}
.bg-banner-section .btn-cta-gold {
    margin-top: 12px;
}
/* Cert checklist sur fond sombre */
.bg-banner-section .cert-checklist {
    max-width: 720px;
    margin: 26px auto 0 !important;
    text-align: left;
}
.bg-banner-section .cert-check-item {
    color: #fff !important;
    background: transparent !important;
    padding: 8px 0 !important;
    border: none !important;
}
.bg-banner-section .cert-check-item i {
    color: #d8c28c !important;
    margin-right: 10px;
}
.bg-banner-section .cert-check-item span {
    color: rgba(255,255,255,0.92) !important;
    font-size: 15px;
}

@media (max-width: 768px) {
    .bg-banner-section {
        padding: 80px 20px !important;
    }
    .bg-banner-section h2 { font-size: 24px; }
    .bg-banner-section p { font-size: 15px; }
}

/* ============================================================
   VS SECTION — design éditorial texte uniquement
   (Cosmetic vs Plastic Surgeon, sans colonnes)
   ============================================================ */
.vs-container {
    max-width: 820px;
    margin: 0 auto;
}
.vs-block {
    margin: 36px 0 0;
}
.vs-eyebrow {
    display: inline-block;
    color: var(--color-gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.vs-block p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}
.vs-block p strong { color: var(--color-dark); font-weight: 600; }

/* Bloc "what we require" légèrement renforcé par un filet doré à gauche */
.vs-block-strong {
    border-left: 2px solid var(--color-gold);
    padding-left: 22px;
    margin-top: 36px;
}

/* Séparateur "vs." centré */
.vs-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 40px auto;
    max-width: 280px;
    color: var(--color-gold);
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 2px;
}
.vs-divider::before,
.vs-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(192,160,98,0.5) 50%, transparent 100%);
}
.vs-divider span { padding: 0 8px; }

/* Footnote */
.vs-footnote {
    text-align: center;
    margin: 48px auto 0 !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #888 !important;
    font-style: italic;
    letter-spacing: 0.3px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .vs-block { margin-top: 26px; }
    .vs-block p { font-size: 15.5px; }
    .vs-block-strong { padding-left: 16px; }
    .vs-divider { margin: 28px auto; max-width: 220px; font-size: 14px; }
    .vs-footnote { font-size: 14px; }
}

/* ============================================================
   SECTION DIVIDER — fine ligne dégradée grise élégante
   (version élargie pour séparer 2 grosses sections)
   ============================================================ */
.section-divider {
    display: block;
    border: none;
    height: 1px;
    width: 60%;
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0,0,0,0.05) 15%,
        rgba(0,0,0,0.22) 50%,
        rgba(0,0,0,0.05) 85%,
        transparent 100%);
}

@media (max-width: 768px) {
    .section-divider { width: 80%; }
}

/* ============================================================
   TRAINING FLOW — 15-year path en liste centrée éditoriale
   ============================================================ */
.training-flow {
    text-align: center;
}
.training-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 40px auto 0 !important;
    max-width: 760px;
}
.training-list li {
    position: relative;
    padding: 32px 0 32px !important;
    text-align: center;
}
/* Petite ligne de séparation grise dégradée, identique aux hallmarks */
.training-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
}
.training-list li:first-child::before { display: none; }

.training-list-year {
    display: block;
    color: var(--color-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.training-list-title {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 14px;
    letter-spacing: -0.2px;
    line-height: 1.25;
}
.training-list-desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
    max-width: 640px;
    margin: 0 auto;
}

/* Sub-specialties — liste centrée discrète */
.specialties-flow {
    margin: 60px auto 0;
    max-width: 760px;
    text-align: center;
    padding-top: 40px;
    position: relative;
}
.specialties-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
}
.specialties-flow-title {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: var(--color-gold) !important;
    margin: 0 0 24px !important;
    text-align: center !important;
}
.specialties-flow-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 36px;
}
.specialties-flow-list li {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    color: #444;
    padding: 6px 0;
    position: relative;
}
/* Petit point doré séparateur entre items inline */
.specialties-flow-list li:not(:last-child)::after {
    content: '·';
    color: var(--color-gold);
    margin-left: 36px;
    font-size: 20px;
    line-height: 0;
    vertical-align: middle;
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .training-list li { padding: 24px 0 !important; }
    .training-list-title { font-size: 19px; }
    .training-list-desc { font-size: 15px; line-height: 1.75; }
    .specialties-flow-list { flex-direction: column; gap: 0; }
    .specialties-flow-list li::after { display: none !important; }
}

/* ============================================================
   HALLMARKS FLOW — design éditorial texte (sans colonnes)
   ============================================================ */
.hallmarks-flow {
    text-align: left;
}
.hallmark-text {
    position: relative;
    margin: 48px 0 0;
    padding: 36px 0 0;
    text-align: center;
}
.hallmark-text:first-of-type {
    margin-top: 50px;
}
/* Petite ligne de séparation dégradée grise élégante, centrée */
.hallmark-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
}
.hallmark-text-num {
    display: block;
    color: var(--color-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
    text-align: center;
}
.hallmark-text h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--color-dark);
    margin: 0 0 14px;
    letter-spacing: -0.2px;
    line-height: 1.25;
    text-align: center;
}
.hallmark-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.8;
    color: #444;
    margin: 0 auto;
    text-align: center;
    max-width: 760px;
}
.hallmark-text p strong { color: var(--color-dark); font-weight: 600; }

/* Override le flatten de l'ancien hallmark-num (au cas où) */
.hallmark-text .hallmark-text-num {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}

@media (max-width: 768px) {
    .hallmark-text { margin-top: 24px; padding-top: 20px; }
    .hallmark-text h3 { font-size: 19px; }
    .hallmark-text p { font-size: 15px; line-height: 1.75; }
}

/* ============================================================
   UNIFIED CONTENT WIDTH — tous les textes même largeur (1080px)
   ============================================================ */
.content-container,
.content-container.centered,
.bg-banner-content,
.vs-container,
.ethics-block,
.testimonial-block,
.specialties-block {
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Sous-titres et footnotes : occupent toute la largeur du container */
.section-subtitle,
.training-footnote,
.comparison-footnote,
.vs-footnote {
    max-width: 1080px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Paragraphes et listes à l'intérieur — pas de re-réduction interne */
.content-container p,
.bg-banner-section p,
.vs-block p,
.ethics-block p {
    max-width: 100% !important;
}

/* Citation testimonial : étendre sur toute la largeur aussi */
.testimonial-block blockquote {
    max-width: 100% !important;
}

@media (max-width: 1180px) {
    .content-container,
    .content-container.centered,
    .bg-banner-content,
    .vs-container,
    .ethics-block,
    .testimonial-block,
    .specialties-block,
    .section-subtitle,
    .training-footnote,
    .comparison-footnote,
    .vs-footnote {
        max-width: 100% !important;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .content-container,
    .content-container.centered,
    .bg-banner-content,
    .vs-container,
    .ethics-block,
    .testimonial-block,
    .specialties-block,
    .section-subtitle,
    .training-footnote,
    .comparison-footnote,
    .vs-footnote {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ============================================================
   COMPARISON SECTION — design harmonisé minimaliste (legacy)
   ============================================================ */
.comparison-grid {
    position: relative;
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
/* Filet doré vertical au centre — repère élégant entre les 2 colonnes */
.comparison-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(192,160,98,0.4) 20%, rgba(192,160,98,0.4) 80%, transparent 100%);
    pointer-events: none;
}

/* Tags titres — même style minimaliste pour les deux */
.comparison-tag.warn,
.comparison-tag.good {
    display: block !important;
    background: transparent !important;
    color: var(--color-gold) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 0 0 14px !important;
    margin: 0 0 24px !important;
    border-bottom: 1px solid #ece9df !important;
    border-radius: 0 !important;
}

/* Liste de points — alignée, rythme régulier */
.comparison-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.comparison-list li {
    position: relative;
    padding: 14px 0 14px 22px !important;
    border-bottom: 1px solid #f0ece2 !important;
    font-size: 15.5px;
    line-height: 1.65;
    color: #444;
    display: block !important;
    text-align: left !important;
}
.comparison-list li:last-child {
    border-bottom: none !important;
}

/* Icônes : remplacer × et ✓ par des petites puces dorées uniformes */
.comparison-list li i {
    display: none !important;
}
.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 23px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

/* Footnote */
.comparison-footnote {
    text-align: center;
    margin: 35px auto 0;
    max-width: 720px;
    font-size: 14.5px;
    color: var(--color-grey);
    font-style: italic;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .comparison-grid::before {
        top: 50%;
        bottom: auto;
        left: 0;
        right: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(192,160,98,0.4) 20%, rgba(192,160,98,0.4) 80%, transparent 100%);
    }
    .comparison-list li { font-size: 14.5px; padding: 12px 0 12px 20px !important; }
}

/* ============================================================
   ELEGANCE LAYER — raffinement premium (2026)
   Titres serif Playfair · filets or · eyebrows · boutons · cartes
   Palette or/sombre conservée
   ============================================================ */

/* — Titres display en serif élégant (les labels/eyebrows restent en Inter) — */
.surgeons-hero .hero-main-white,
.centered-title,
.latest-blog-title,
.ethics-section h2,
.global-band .centered-title {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
}

/* Hero — plus de présence, tracking serif */
.surgeons-hero .hero-main-white {
    font-size: clamp(42px, 5.2vw, 66px) !important;
    line-height: 1.08 !important;
}
.surgeons-hero .hero-eyebrow-gold,
h1.hero-eyebrow-gold {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: var(--color-gold) !important;
    opacity: .95;
}

/* Titres de section — plus grands + filet doré décoratif dessous */
.centered-title {
    font-size: clamp(30px, 3.6vw, 42px) !important;
    line-height: 1.18 !important;
    margin-bottom: 22px !important;
}
.centered-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 2px;
    background: var(--color-gold);
    margin: 20px auto 0;
    border-radius: 2px;
    opacity: .9;
}

/* Sous-titres de section — un peu plus grands, aérés */
.section-subtitle {
    font-size: 16px !important;
    line-height: 1.85 !important;
    margin-bottom: 56px !important;
}

/* Eyebrows / kickers — cohérents et raffinés */
.vs-eyebrow,
.latest-blog-kicker {
    font-size: 12px !important;
    letter-spacing: 2.6px !important;
}

/* Boutons or — coins doux, hover avec élévation */
.btn-cta-gold,
.btn-cta-outline {
    border-radius: 2px;
    padding: 17px 42px !important;
    letter-spacing: 2.4px !important;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease !important;
    box-shadow: 0 3px 14px rgba(192,160,98,0.22);
}
.btn-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(192,160,98,0.34);
}
.btn-cta-outline:hover {
    transform: translateY(-2px);
}

/* Cartes (formation, protocole) — bordure/ombre plus fines, hover soigné */
.training-item,
.protocol-item {
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}
.training-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(47,53,59,0.10) !important;
}
.protocol-item:hover {
    transform: translateY(-4px);
}

/* Encadré spécialités (cream + filet or) — un peu plus généreux */
.specialties-block {
    padding: 44px 50px !important;
    box-shadow: 0 10px 30px rgba(47,53,59,0.05);
}

/* Rythme vertical un peu plus ample entre sections */
.content-section { padding: 110px 40px; }
