/* ============================================================
   DR ALEXANDRE HAGE — CSS GLOBAL
   Site multi-pages ophtahage.com
   Charte : Navy #0b1f35 + Or #c8a96e — Playfair Display + Inter
   ============================================================ */

/* ── POLICES GOOGLE ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:        #0b1f35;
  --navy-mid:    #112840;
  --navy-light:  #1a3a57;
  --navy-card:   #162f4a;
  --blue-bright: #1e6ea6;
  --gold:        #c8a96e;
  --gold-light:  #dfc08a;
  --gold-pale:   #f5ede0;
  --white:       #ffffff;
  --offwhite:    #f8f9fb;
  --text:        #0b1f35;
  --text-mid:    #3d5a73;
  --text-light:  #7a95aa;
  --border:      rgba(11,31,53,.10);
  --border-gold: rgba(200,169,110,.28);
  --doctolib:    #26a69a;
  --nav-h: 70px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

/* Skip to content pour accessibilité */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--navy);
  padding: .75rem 1.25rem;
  font-weight: 500;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  border-bottom: 1px solid rgba(200,169,110,.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 13px;
  color: #fff;
}
.nav-logo-ring {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-ring svg {
  width: 17px; height: 17px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1.25; }
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 500;
  color: #fff; letter-spacing: .02em;
}
.nav-brand-sub {
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}

.nav-menu {
  display: flex; align-items: center; gap: .15rem;
  list-style: none;
}
.nav-menu > li { position: relative; }
.nav-link, .nav-btn {
  display: inline-block;
  padding: 8px 13px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: color .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-btn:hover,
.nav-link.active, .nav-btn.active {
  color: var(--gold-light);
}

/* Dropdowns */
.nav-dd {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid rgba(200,169,110,.15);
  border-radius: 3px;
  min-width: 250px;
  padding: .5rem 0;
  z-index: 400;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.nav-menu > li:hover > .nav-dd,
.nav-menu > li.open > .nav-dd {
  display: block;
}
.nav-dd a {
  display: block;
  padding: 9px 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  transition: all .15s;
}
.nav-dd a:hover { background: rgba(200,169,110,.12); color: #fff; }
.nav-dd-sep { height: 1px; background: rgba(255,255,255,.07); margin: .3rem 0; }
.nav-dd-title {
  padding: 8px 20px 4px;
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav-rdv {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 2px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s;
  white-space: nowrap;
  display: inline-block;
}
.nav-rdv:hover { background: var(--gold-light); color: var(--navy); }

/* Burger (mobile) */
.nav-burger {
  display: none;
  background: none; border: none;
  width: 32px; height: 32px;
  position: relative;
  color: #fff;
}
.nav-burger span {
  display: block; position: absolute;
  left: 4px; right: 4px; height: 1.5px;
  background: #fff;
  transition: transform .25s, top .25s, opacity .2s;
}
.nav-burger span:nth-child(1) { top: 9px; }
.nav-burger span:nth-child(2) { top: 15px; }
.nav-burger span:nth-child(3) { top: 21px; }
.nav-burger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ═══════════════════════════════════════════════════════
   HERO (home full screen)
   ═══════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(30,110,166,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, rgba(200,169,110,.07) 0%, transparent 45%);
}
.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(200,169,110,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 5rem 5rem;
  position: relative; z-index: 2;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-intro {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 30px; color: var(--gold-light); line-height: 1;
}
.hero-stat-label {
  font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-top: 4px;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 35%;
  background: linear-gradient(90deg, var(--navy), transparent);
  z-index: 1;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(.88) contrast(1.05);
}
.hero-badge {
  position: absolute; bottom: 2.5rem; left: 2.5rem; z-index: 3;
  background: rgba(11,31,53,.9);
  border: 1px solid rgba(200,169,110,.3);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.4rem;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}
.hero-badge-label {
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 4px;
}
.hero-badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 15px; color: #fff; line-height: 1.4;
}

/* Page hero (interior pages) */
.page-hero {
  padding: 9rem 5rem 5rem;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 60%, rgba(30,110,166,.25) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.ph-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.5vw, 56px);
  font-weight: 400; color: #fff;
  line-height: 1.1; margin-bottom: 1.1rem;
}
.ph-title em { font-style: italic; color: var(--gold-light); }
.ph-intro {
  font-size: 14.5px;
  color: rgba(255,255,255,.62);
  line-height: 1.85;
  margin-bottom: 2rem;
}
.ph-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.ph-tag {
  padding: 4px 12px;
  border: 1px solid rgba(200,169,110,.3);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-radius: 2px;
}
.page-hero-img { position: relative; }
.page-hero-img img {
  width: 100%; display: block;
  border-radius: 2px;
  filter: brightness(.85) contrast(1.05);
  position: relative; z-index: 1;
}
.page-hero-img::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(200,169,110,.25);
  border-radius: 2px;
  z-index: 0;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--navy-light);
  padding: .75rem 5rem;
  display: flex; gap: .5rem; align-items: center;
}
.breadcrumb a,
.breadcrumb .bc-current {
  font-size: 11.5px;
}
.breadcrumb a {
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .bc-sep { font-size: 11px; color: rgba(255,255,255,.2); }
.breadcrumb .bc-current { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════
   EYEBROW + SECTIONS
   ═══════════════════════════════════════════════════════ */
.eyebrow {
  display: flex; align-items: center;
  gap: 12px; margin-bottom: 1.5rem;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-text {
  font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}

section { padding: 6rem 5rem; }
.sec-sm      { padding: 4rem 5rem; }
.sec-white   { background: var(--white); }
.sec-offwhite{ background: var(--offwhite); }
.sec-navy    { background: var(--navy); }
.sec-navy-mid{ background: var(--navy-mid); }

.section-head { margin-bottom: 3.5rem; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400; line-height: 1.2;
  color: var(--navy);
}
.section-title em { font-style: italic; }
.section-title.white { color: #fff; }
.section-title.gold-em em { color: var(--gold-light); }
.section-desc {
  font-size: 14.5px; color: var(--text-mid);
  max-width: 580px; line-height: 1.85; margin-top: 1rem;
}
.section-desc.white { color: rgba(255,255,255,.55); }

/* ═══════════════════════════════════════════════════════
   BOUTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 28px;
  border-radius: 2px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .2s;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.btn-gold     { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline-w{ background: none; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline-w:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn-navy     { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-light); color: #fff; }
.btn-outline-n{ background: none; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-n:hover { background: var(--navy); color: #fff; }
.btn-doctolib { background: var(--doctolib); color: #fff; }
.btn-doctolib:hover { background: #1e8c87; color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 11px; }

.btn-row {
  display: flex; align-items: center;
  gap: 1.25rem; flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   SPEC CARDS (accueil)
   ═══════════════════════════════════════════════════════ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3.5rem;
}
.spec-card {
  background: var(--white);
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: background .22s;
  display: block;
  color: inherit;
}
.spec-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.spec-card:hover { background: var(--gold-pale); }
.spec-card:hover::after { transform: scaleX(1); }
.spec-card.featured { background: var(--navy); }
.spec-card.featured:hover { background: var(--navy-mid); }
.spec-card.featured::after { background: var(--gold-light); }
.spec-ico { width: 46px; height: 46px; margin-bottom: 1.4rem; display: flex; align-items: center; }
.spec-ico svg { width: 26px; height: 26px; fill: none; stroke-width: 1.5; }
.spec-card.featured .spec-ico svg { stroke: var(--gold-light); }
.spec-card:not(.featured) .spec-ico svg { stroke: var(--gold); }
.spec-tag {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .6rem;
}
.spec-card.featured .spec-tag { color: rgba(255,255,255,.35); }
.spec-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--navy);
  margin-bottom: .5rem; line-height: 1.25;
}
.spec-card.featured .spec-name { color: #fff; }
.spec-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.spec-card.featured .spec-desc { color: rgba(255,255,255,.55); }
.spec-arrow {
  margin-top: 1.5rem;
  font-size: 17px; color: var(--gold);
  display: inline-block;
  transition: transform .2s;
}
.spec-card.featured .spec-arrow { color: var(--gold-light); }
.spec-card:hover .spec-arrow { transform: translateX(6px); }

/* ═══════════════════════════════════════════════════════
   PARCOURS PATIENT (4 étapes)
   ═══════════════════════════════════════════════════════ */
.parcours-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.parcours-steps::before {
  content: '';
  position: absolute; top: 27px;
  left: 10%; right: 10%; height: 1px;
  background: var(--border-gold);
}
.parcours-step { text-align: center; padding: 0 1.25rem; position: relative; }
.ps-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--navy);
  position: relative; z-index: 1;
}
.sec-navy .ps-dot { background: var(--navy-mid); border-color: var(--gold); color: var(--gold-light); }
.ps-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: var(--navy);
  margin-bottom: .7rem;
}
.sec-navy .ps-title { color: #fff; }
.ps-text { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
.sec-navy .ps-text { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════
   PROS / CONS
   ═══════════════════════════════════════════════════════ */
.pros-cons-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.pros-box, .cons-box { padding: 2rem 2.25rem; border-radius: 2px; }
.pros-box { background: rgba(46,160,100,.08); border: 1px solid rgba(46,160,100,.2); }
.cons-box { background: rgba(200,169,110,.06); border: 1px solid var(--border-gold); }
.pc-title {
  font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem; font-weight: 500;
}
.pros-box .pc-title { color: #2ea064; }
.cons-box .pc-title { color: var(--gold); }
.pc-list { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.pc-list li {
  font-size: 13.5px; color: var(--text-mid);
  display: flex; gap: 10px; align-items: flex-start;
  line-height: 1.65;
}
.pros-box .pc-list li::before { content: '✓'; color: #2ea064; flex-shrink: 0; font-weight: 600; margin-top: 1px; }
.cons-box .pc-list li::before { content: '○'; color: var(--gold); flex-shrink: 0; font-weight: 400; margin-top: 1px; }

/* Indications / CI grid */
.ci-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.ci-box { padding: 1.75rem 2rem; border-radius: 2px; border: 1px solid var(--border); }
.ci-box.yes { background: rgba(30,110,166,.05); border-color: rgba(30,110,166,.2); }
.ci-box.no  { background: rgba(180,50,50,.04); border-color: rgba(180,50,50,.15); }
.ci-title {
  font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1rem; font-weight: 500;
}
.ci-box.yes .ci-title { color: var(--blue-bright); }
.ci-box.no .ci-title  { color: #b44242; }
.ci-list { list-style: none; }
.ci-list li {
  font-size: 13.5px; color: var(--text-mid);
  display: flex; gap: 10px; line-height: 1.65; margin-bottom: 8px;
}
.ci-box.yes .ci-list li::before { content: '✓'; color: var(--blue-bright); flex-shrink: 0; font-weight: 600; }
.ci-box.no  .ci-list li::before { content: '✕'; color: #b44242; flex-shrink: 0; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   PROCEDURE / PROSE / INFO
   ═══════════════════════════════════════════════════════ */
.procedure-list {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border); margin-top: 2.5rem;
}
.procedure-item {
  background: var(--white);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem; align-items: start;
  transition: background .2s;
}
.procedure-item:hover { background: var(--gold-pale); }
.pi-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: var(--navy);
  margin-bottom: .25rem; line-height: 1.3;
}
.pi-tag {
  font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.pi-text { font-size: 14px; color: var(--text-mid); line-height: 1.85; }

.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--navy);
  margin-bottom: .9rem; margin-top: 1.5rem;
}
.prose h3:first-child { margin-top: 0; }
.prose p {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.9; margin-bottom: .9rem;
}
.prose ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 1rem;
}
.prose ul li {
  font-size: 14px; color: var(--text-mid);
  padding-left: 1.25rem; position: relative; line-height: 1.7;
}
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.prose strong { color: var(--navy); font-weight: 500; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

.hl-box {
  background: rgba(30,110,166,.07);
  border-left: 3px solid var(--blue-bright);
  padding: 1.5rem 1.75rem;
  border-radius: 0 2px 2px 0;
  margin: 1.5rem 0;
}
.hl-box p, .hl-box li { font-size: 14px; color: var(--text-mid); line-height: 1.85; }
.hl-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.hl-box ul li::before { content: '→'; color: var(--blue-bright); margin-right: 8px; }
.hl-box.gold { background: rgba(200,169,110,.08); border-left-color: var(--gold); }

.info-card {
  background: var(--navy-card);
  border: 1px solid rgba(200,169,110,.12);
  padding: 2rem; border-radius: 2px; margin-top: 2rem;
}
.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: #fff; margin-bottom: 1rem;
}
.info-card p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.85; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1rem; }
.tag {
  padding: 4px 12px;
  border: 1px solid var(--border-gold);
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold); border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   BLOC TECHNIQUE (2 colonnes — texte + schéma)
   Utilisé sur LASIK, SMILE, PKR, ICL, Cataracte
   ═══════════════════════════════════════════════════════ */
.tech-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tech-head {
  display: flex; align-items: center;
  gap: 14px; margin-bottom: 1.5rem;
}
.tech-num {
  width: 52px; height: 52px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: var(--gold-light);
}
.sec-white .tech-num { color: var(--navy); }
.tech-eyebrow {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
}
.tech-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: #fff; font-weight: 400; line-height: 1.1;
}
.sec-white .tech-title { color: var(--navy); }
.tech-text {
  font-size: 14px; line-height: 1.9;
  color: rgba(255,255,255,.62);
  margin-bottom: 1.1rem;
}
.sec-white .tech-text { color: var(--text-mid); }

.tech-indications { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 1.5rem; }
.tech-indi {
  padding: 4px 11px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 11px;
  color: rgba(255,255,255,.55);
  border-radius: 2px;
}
.sec-white .tech-indi {
  border-color: var(--border-gold);
  color: var(--gold);
}

.tech-specs { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.tech-spec {
  display: flex; justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 12px 0; gap: 1rem;
}
.sec-white .tech-spec { border-bottom-color: var(--border); }
.tech-spec-label {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  flex-shrink: 0;
}
.sec-white .tech-spec-label { color: var(--text-light); }
.tech-spec-value {
  font-size: 13px; color: var(--gold-light);
  font-weight: 400; text-align: right;
}
.sec-white .tech-spec-value { color: var(--navy); }

.tech-svg { width: 100%; max-width: 440px; display: block; margin: 0 auto; }

@media (max-width: 900px) {
  .tech-block { grid-template-columns: 1fr; gap: 3rem; }
}

/* ═══════════════════════════════════════════════════════
   LAYOUT BIOGRAPHIE (page Chirurgien)
   ═══════════════════════════════════════════════════════ */
.doctor-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 6rem;
  align-items: start;
}
.doc-sticky { position: sticky; top: 90px; }
.doc-photo-frame { position: relative; }
.doc-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  z-index: 0;
}
.doc-photo-frame img {
  width: 100%; display: block;
  border-radius: 2px;
  filter: brightness(.92) contrast(1.05);
  position: relative; z-index: 1;
}
.doc-ophtalife {
  background: var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
  margin-top: 1.5rem;
  display: flex; gap: .9rem; align-items: center;
}
.doc-ophtalife svg {
  width: 30px; height: 30px;
  stroke: var(--navy); fill: none; stroke-width: 1.5;
  flex-shrink: 0;
}
.doc-ophtalife-text strong {
  font-size: 15px; color: var(--navy);
  display: block; margin-bottom: 2px; font-weight: 500;
}
.doc-ophtalife-text span {
  font-size: 12.5px; color: rgba(11,31,53,.75);
}

.bio-sec {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.bio-sec:last-child { border-bottom: none; margin-bottom: 0; }
.bio-sec h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.bio-sec p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: .9rem;
}
.cv-list { display: flex; flex-direction: column; gap: 18px; }
.cv-item { display: flex; gap: 18px; }
.cv-year {
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 500;
  min-width: 80px;
  padding-top: 2px;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.cv-content {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.cv-content strong {
  color: var(--navy);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .doctor-layout { grid-template-columns: 1fr; gap: 3rem; }
  .doc-sticky { position: static; }
}

/* ═══════════════════════════════════════════════════════
   CONTACT / CARTE / FORMULAIRE
   ═══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-card p,
.contact-card li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}
.contact-card a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-card a:hover { color: var(--gold); }

.contact-map {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.horaires-list {
  list-style: none;
  display: flex; flex-direction: column;
}
.horaires-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.horaires-list li:last-child { border-bottom: none; }
.horaires-list .day {
  color: var(--navy);
  font-weight: 500;
}
.horaires-list .hour { color: var(--text-mid); }
.horaires-list .closed { color: var(--text-light); font-style: italic; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: flex; flex-direction: column; gap: .5rem; }
.form-row label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.form-row input,
.form-row textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 2px;
  color: var(--text);
  transition: border-color .2s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 140px; }

/* ═══════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}
.blog-card:hover {
  box-shadow: 0 6px 28px rgba(11,31,53,.1);
  transform: translateY(-2px);
}
.blog-meta {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.blog-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}
.blog-date { font-size: 12px; color: var(--text-light); }

/* Legal */
.legal-content {
  max-width: 800px;
}
.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  font-weight: 400;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
  font-weight: 500;
}
.legal-content p,
.legal-content li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content a { color: var(--navy); text-decoration: underline; }
.legal-content a:hover { color: var(--gold); }

/* Placeholder (à remplir) */
.placeholder-note {
  background: rgba(200,169,110,.08);
  border: 1px dashed var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: 12.5px;
  color: var(--text-mid);
  margin: 1rem 0;
}
.placeholder-note strong { color: var(--gold); letter-spacing: .1em; }

/* ═══════════════════════════════════════════════════════
   CARDS IMPLANTS (utilisé sur Cataracte, page Implants)
   ═══════════════════════════════════════════════════════ */
.implant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.implant-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.implant-card:hover {
  box-shadow: 0 6px 28px rgba(11,31,53,.1);
  transform: translateY(-2px);
}
.implant-card.feat {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(200,169,110,.04) 0%, var(--white) 50%);
}
.implant-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 500;
}
.ic-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--navy);
  margin-bottom: 3px;
  font-weight: 400;
}
.ic-type {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.ic-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.ic-pros {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.ic-pros li, .ic-pro {
  font-size: 12.5px;
  color: var(--text-mid);
  display: flex;
  gap: 8px;
  line-height: 1.55;
}
.ic-pros li::before, .ic-pro::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .implant-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDÉON
   ═══════════════════════════════════════════════════════ */
.faq-wrap { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between;
  align-items: center; padding: 1.4rem 0;
  cursor: pointer; gap: 1rem;
  width: 100%; background: none; border: none;
  text-align: left;
}
.faq-q-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--navy);
  font-weight: 400; line-height: 1.4;
}
.sec-navy .faq-q-text { color: #fff; }
.sec-navy .faq-item { border-bottom-color: rgba(255,255,255,.08); }
.faq-toggle {
  width: 27px; height: 27px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
  color: var(--text-light);
  transition: all .2s; font-weight: 300;
}
.sec-navy .faq-toggle { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.4); }
.faq-item.open .faq-toggle {
  background: var(--navy); border-color: var(--navy);
  color: #fff; transform: rotate(45deg);
}
.faq-a {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.9; padding-bottom: 1.4rem; display: none;
}
.sec-navy .faq-a { color: rgba(255,255,255,.55); }
.faq-item.open .faq-a { display: block; }

/* ═══════════════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════════════ */
.temo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.temo-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem; border-radius: 2px;
}
.temo-stars {
  color: var(--gold); font-size: 14px;
  letter-spacing: 2px; margin-bottom: .9rem;
}
.temo-text {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.8; font-style: italic;
  margin-bottom: 1.4rem; position: relative;
}
.temo-text::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 42px; color: var(--gold-pale);
  position: absolute; top: -8px; right: 0; line-height: 1;
}
.temo-author { display: flex; align-items: center; gap: 11px; }
.temo-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 12px; color: var(--gold-light); flex-shrink: 0;
}
.temo-name { font-size: 13px; font-weight: 500; color: var(--navy); }
.temo-detail { font-size: 11px; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════
   QUIZ D'ÉLIGIBILITÉ
   ═══════════════════════════════════════════════════════ */
.quiz-wrap { max-width: 820px; margin: 0 auto; }
.quiz-prog { display: flex; gap: 6px; margin-bottom: 2rem; }
.qpd {
  height: 3px; border-radius: 2px; flex: 1;
  background: var(--border);
  transition: background .3s;
}
.qpd.done { background: var(--gold); }
.qpd.act  { background: var(--navy); }

.quiz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3rem; margin-top: 2rem;
}
.quiz-q {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--navy);
  margin-bottom: 2rem; line-height: 1.45;
}
.quiz-opts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 11px;
}
.qopt {
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--offwhite);
  transition: all .2s;
  font-size: 14px; color: var(--text-mid);
  text-align: left;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  width: 100%;
}
.qopt:hover { border-color: var(--gold); color: var(--navy); }
.qopt.sel   { border-color: var(--navy); background: var(--navy); color: #fff; }
.qradio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
}
.quiz-nav {
  display: flex; justify-content: space-between;
  align-items: center; margin-top: 2rem; gap: 1rem;
}
.quiz-nav .btn:disabled { opacity: .4; cursor: not-allowed; }

.result-box { text-align: center; padding: 1rem 0; }
.result-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 22px;
  border: 1px solid var(--border-gold);
}
.result-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--navy);
  margin-bottom: 1rem; line-height: 1.3;
}
.result-text {
  font-size: 14px; color: var(--text-mid);
  max-width: 480px; margin: 0 auto 1.5rem; line-height: 1.85;
}
.result-badges {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.rbadge {
  padding: 5px 14px;
  background: var(--navy); color: #fff;
  font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════════════ */
.cta-final {
  background: var(--navy);
  padding: 7rem 5rem;
  text-align: center;
}
.cta-final .section-title {
  max-width: 600px;
  margin: 1rem auto;
}
.cta-final .section-desc {
  margin: 0 auto 2.5rem;
  text-align: center;
}
.cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.cta-info-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-wrap: wrap;
}
.cta-info-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.cta-info-item svg {
  width: 15px; height: 15px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; flex-shrink: 0;
}
.cta-info-item strong { color: rgba(255,255,255,.75); }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,169,110,.1);
  padding: 3.5rem 5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 1.5rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: #fff; margin-bottom: 2px;
}
.footer-brand-sub {
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.footer-text {
  font-size: 13px; color: rgba(255,255,255,.32);
  line-height: 1.75; margin-top: 1rem; max-width: 260px;
}
.fcol-title {
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.fcol-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fcol-links a {
  font-size: 13px; color: rgba(255,255,255,.42);
  transition: color .2s;
}
.fcol-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-links-row { display: flex; gap: 1.5rem; }
.footer-links-row a { font-size: 11px; color: rgba(255,255,255,.2); }
.footer-links-row a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  section, .site-footer { padding-left: 3rem; padding-right: 3rem; }
  .nav { padding: 0 2rem; }
  .breadcrumb { padding: .75rem 3rem; }
  .hero-left, .page-hero { padding-left: 3rem; padding-right: 3rem; }
  .two-col, .footer-grid { gap: 3rem; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 1rem 0; border-top: 1px solid rgba(200,169,110,.15);
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto; gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; }
  .nav-link, .nav-btn { width: 100%; padding: 12px 2rem; font-size: 12.5px; text-align: left; }
  .nav-dd { position: static; transform: none; display: none;
    background: var(--navy-mid); border-radius: 0; min-width: 0; padding: .4rem 0; box-shadow: none; }
  /* Sur mobile, pas de dropdown au hover : uniquement au click (.open géré par JS) */
  .nav-menu > li:hover > .nav-dd { display: none; }
  .nav-menu > li.open > .nav-dd  { display: block; }
  .nav-dd a { padding: 10px 3rem; font-size: 12px; }
  .nav-burger { display: block; }
  .nav-rdv { display: none; } /* remplacé par un lien dans le menu mobile */
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 55vw; min-height: 280px; }
  .hero-left { padding: 7rem 2rem 3rem; }
  .page-hero { grid-template-columns: 1fr; padding: 7rem 2rem 3rem; gap: 3rem; }
  .spec-grid, .temo-grid, .ci-grid, .pros-cons-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .parcours-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .parcours-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section { padding: 4rem 2rem; }
  .cta-final { padding: 4.5rem 2rem; }
  .breadcrumb { padding: .75rem 2rem; }
  .site-footer { padding: 3rem 2rem 2rem; }
  .procedure-item { grid-template-columns: 1fr; gap: 1rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem 2.5rem; }
  .quiz-card { padding: 2rem; }
  .quiz-opts { grid-template-columns: 1fr; }
  .cta-info-row { gap: 1.5rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .parcours-steps { grid-template-columns: 1fr; gap: 2rem; }
  .nav-brand-sub { display: none; }
}

/* Print-friendly */
@media print {
  .nav, .site-footer, .cta-final, .nav-rdv, .nav-burger { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}
