/* ═══════════════════════════════════════════════
   SLIMEO PARIS — style.css
   Bleu #1E2F4A · Beige #E8E1D9 · Or #C9A96E
   Cormorant Garamond + Jost
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600&display=swap');

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

:root {
  --bleu: #1E2F4A;
  --or: #C9A96E;
  --beige: #E8E1D9;
  --beige-lt: #F5F1EC;
  --beige-mid: #EDE8E2;
  --gris: #6B7C93;
  --blanc: #ffffff;
  --bg: #F7F4F0;
  --bleu-dark: #162338;
  --or-lt: rgba(201,169,110,0.12);
  --beige-line: rgba(232,225,217,0.15);
  --shadow: 0 20px 60px rgba(30,47,74,0.12);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Jost', sans-serif; color: var(--bleu); background: var(--blanc); font-size: 15px; line-height: 1.7; overflow-x: hidden; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--or); }
p { line-height: 1.75; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--bleu);
  border-bottom: 1px solid rgba(232,225,217,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 56px; height: 56px; object-fit: contain; }
.nav-logo-svg { width: 52px; height: 52px; color: var(--beige); }
.nav-brand-wrap { display: flex; flex-direction: column; }
.nav-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400;
  letter-spacing: 0.32em; color: var(--beige); text-transform: uppercase;
  line-height: 1;
}
.nav-brand-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 11px; font-style: italic;
  font-weight: 300; color: rgba(232,225,217,0.55); letter-spacing: 0.3em;
  margin-top: 3px;
}
/* Logo image officiel */
.logo-img-nav { width: 44px; height: 44px; object-fit: contain; }
.logo-img-large { max-width: 220px; width: 100%; height: auto; }
.logo-img-medium { max-width: 140px; width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(232,225,217,0.65);
  text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--beige); }
.nav-links a.nav-cta {
  background: var(--or); color: var(--bleu);
  padding: 9px 20px; font-weight: 600; letter-spacing: 0.2em;
  transition: opacity 0.2s;
}
.nav-links a.nav-cta:hover { opacity: 0.88; color: var(--bleu); }
.nav-burger {
  display: none; background: none; border: none;
  color: var(--beige); font-size: 22px; cursor: pointer; padding: 4px;
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 24px; }
  .nav-burger { display: block; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--bleu); flex-direction: column;
    padding: 24px 24px; gap: 20px; border-top: 1px solid rgba(232,225,217,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); z-index: 199;
  }
  .nav-links.open { display: flex; }
}

/* ── BANNER OFFRE ── */
.offer-banner {
  background: var(--or); text-align: center;
  padding: 10px 48px; cursor: pointer;
}
.offer-banner p {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  color: var(--bleu); line-height: 1.4;
}
.offer-banner p span { text-decoration: underline; }

/* ── HERO ── */
.hero {
  background: var(--bleu); padding: 90px 48px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: -80px; bottom: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: 10px; font-weight: 400; letter-spacing: 0.6em;
  text-transform: uppercase; color: var(--or); margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 300;
  color: var(--beige); line-height: 1.08; margin-bottom: 20px;
}
.hero-desc {
  font-size: 15px; font-weight: 300; color: rgba(232,225,217,0.62);
  line-height: 1.85; max-width: 560px; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif; text-decoration: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; padding: 14px 28px; transition: all 0.22s;
  cursor: pointer; border: none;
}
.btn-gold { background: var(--or); color: var(--bleu); }
.btn-gold:hover { opacity: 0.88; }
.btn-outline-light {
  border: 1px solid rgba(232,225,217,0.35); color: var(--beige);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--beige); background: rgba(232,225,217,0.06); }
.btn-outline-dark {
  border: 1px solid var(--bleu); color: var(--bleu); background: transparent;
}
.btn-outline-dark:hover { background: var(--bleu); color: var(--beige); }
.btn-bleu { background: var(--bleu); color: var(--beige); }
.btn-bleu:hover { background: var(--bleu-dark); }

/* ── SECTIONS ── */
.section { padding: 84px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section.bg-beige { background: var(--beige-lt); }
.section.bg-mid { background: var(--beige-mid); }
.section.bg-bleu { background: var(--bleu); }
.section.bg-bleu-dark { background: var(--bleu-dark); }

.section-eyebrow {
  font-size: 9px; font-weight: 500; letter-spacing: 0.6em;
  text-transform: uppercase; color: var(--gris); margin-bottom: 12px;
}
.section-eyebrow.or { color: var(--or); }
.section-title {
  font-size: clamp(30px, 3.5vw, 44px); color: var(--bleu); line-height: 1.12;
  margin-bottom: 14px;
}
.section-title.light { color: var(--beige); }
.section-desc {
  font-size: 14px; font-weight: 300; color: var(--gris);
  line-height: 1.85; max-width: 600px; margin-bottom: 48px;
}
.section-desc.light { color: rgba(232,225,217,0.58); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 960px) { .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── SOIN CARD (clickable) ── */
.soin-card {
  background: var(--blanc); border: 1px solid var(--beige);
  padding: 26px 22px; cursor: pointer; position: relative;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.soin-card:hover {
  box-shadow: 0 12px 40px rgba(30,47,74,0.1);
  transform: translateY(-2px); border-color: var(--or);
}
.soin-card-tag {
  font-size: 8px; font-weight: 500; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--or); margin-bottom: 10px;
}
.soin-card-name {
  font-family: 'Cormorant Garamond', serif; font-size: 19px;
  font-weight: 500; color: var(--bleu); margin-bottom: 8px; line-height: 1.2;
}
.soin-card-desc { font-size: 12.5px; color: var(--gris); line-height: 1.7; margin-bottom: 14px; }
.soin-card-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 14px; }
.soin-card-duration { font-size: 11px; color: var(--gris); }
.soin-card-price { font-size: 20px; font-weight: 300; color: var(--bleu); }
.soin-card-price .old { font-size: 12px; color: rgba(30,47,74,0.3); text-decoration: line-through; margin-right: 6px; }
.soin-card-hint {
  position: absolute; bottom: 16px; right: 18px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(30,47,74,0.35);
}
.soin-card:hover .soin-card-hint { color: var(--or); }

/* ── OBJECTIFS GRID ── */
.objectifs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.obj-card {
  background: var(--beige-lt); border: 1px solid var(--beige);
  padding: 16px 14px; cursor: pointer;
  transition: all 0.2s;
}
.obj-card:hover { background: var(--bleu); border-color: var(--bleu); }
.obj-card:hover .obj-name { color: var(--beige); }
.obj-card:hover .obj-icon { color: var(--or); }
.obj-icon { font-size: 18px; margin-bottom: 6px; color: var(--or); display: block; }
.obj-name {
  font-family: 'Cormorant Garamond', serif; font-size: 14px;
  font-weight: 500; color: var(--bleu); line-height: 1.3;
}
.obj-hint { font-size: 9px; color: var(--gris); margin-top: 4px; letter-spacing: 0.1em; }
.obj-card:hover .obj-hint { color: rgba(232,225,217,0.5); }
@media (max-width: 700px) { .objectifs-grid { grid-template-columns: 1fr 1fr; } }

/* ── 4D STEPS ── */
.steps-4d {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--beige);
}
.step-4d {
  padding: 28px 22px; border-right: 1px solid var(--beige);
}
.step-4d:last-child { border-right: none; }
.step-4d-num {
  font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300;
  font-style: italic; color: rgba(30,47,74,0.1); line-height: 1; margin-bottom: 10px;
}
.step-4d-num.light { color: rgba(232,225,217,0.1); }
.step-4d-name {
  font-size: 10px; font-weight: 600; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--or); margin-bottom: 8px;
}
.step-4d-desc { font-size: 13px; color: var(--gris); line-height: 1.65; }
.step-4d-desc.light { color: rgba(232,225,217,0.55); }
@media (max-width: 700px) {
  .steps-4d { grid-template-columns: 1fr 1fr; }
  .step-4d { border-right: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
}

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(232,225,217,0.12);
}
.stat-item { padding: 32px 24px; border-right: 1px solid rgba(232,225,217,0.12); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 46px; font-weight: 300;
  font-style: italic; color: var(--or); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 11.5px; font-weight: 300; color: rgba(232,225,217,0.5); line-height: 1.5; }
@media (max-width: 700px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-bottom: 1px solid rgba(232,225,217,0.12); }
}

/* ── PILIERS ── */
.piliers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--beige); }
.pilier-item { padding: 28px 22px; border-right: 1px solid var(--beige); }
.pilier-item:last-child { border-right: none; }
.pilier-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; font-style: italic; color: rgba(30,47,74,0.1); line-height: 1; margin-bottom: 10px; }
.pilier-title { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--bleu); margin-bottom: 8px; }
.pilier-desc { font-size: 13px; color: var(--gris); line-height: 1.65; }
@media (max-width: 700px) { .piliers-grid { grid-template-columns: 1fr 1fr; } .pilier-item { border-bottom: 1px solid var(--beige); } }

/* ── CTA BAND ── */
.cta-band { background: var(--or); padding: 52px 48px; text-align: center; }
.cta-band-inner { max-width: 700px; margin: 0 auto; }
.cta-band-title {
  font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300;
  font-style: italic; color: var(--bleu); margin-bottom: 10px;
}
.cta-band-desc { font-size: 13px; color: rgba(30,47,74,0.65); margin-bottom: 26px; }

/* ── TECH LOGOS BAND ── */
.logos-band { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 32px 48px; background: rgba(232,225,217,0.08); border-top: 1px solid rgba(232,225,217,0.08); border-bottom: 1px solid rgba(232,225,217,0.08); }
.logos-band img { height: 32px; object-fit: contain; opacity: 0.55; filter: brightness(10); transition: opacity 0.2s; }
.logos-band img:hover { opacity: 0.8; }

/* ── FOOTER ── */
.footer { background: var(--bleu); padding: 64px 48px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; letter-spacing: 0.34em; color: var(--beige); text-transform: uppercase; margin-bottom: 6px; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: rgba(232,225,217,0.35); margin-bottom: 22px; }
.footer-contact { font-size: 12px; color: rgba(232,225,217,0.42); line-height: 2; }
.footer-contact strong { color: rgba(232,225,217,0.68); font-weight: 400; }
.footer-contact a { color: rgba(232,225,217,0.55); text-decoration: none; }
.footer-col-title { font-size: 9px; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(232,225,217,0.3); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(232,225,217,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--beige); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(232,225,217,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 11px; color: rgba(232,225,217,0.22); letter-spacing: 0.1em; }
.footer-method { font-size: 10px; letter-spacing: 0.3em; color: var(--or); opacity: 0.55; }
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }

/* ══════════════════════════════════
   MODAL SYSTÈME — Général
══════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(14,22,36,0.75);
  z-index: 900; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--blanc); max-width: 720px; width: 100%; max-height: 88vh;
  overflow-y: auto; position: relative;
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: sticky; top: 0; right: 0; float: right; z-index: 10;
  background: var(--bleu); color: var(--beige); border: none;
  width: 44px; height: 44px; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-left: auto; transition: background 0.2s;
}
.modal-close:hover { background: var(--bleu-dark); }

/* MODAL OBJECTIF */
.modal-obj-header { background: var(--bleu); padding: 32px 36px 24px; }
.modal-obj-eyebrow { font-size: 8.5px; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase; color: var(--or); margin-bottom: 8px; }
.modal-obj-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; color: var(--beige); line-height: 1.1; margin-bottom: 10px; }
.modal-obj-desc { font-size: 13px; color: rgba(232,225,217,0.58); line-height: 1.75; }
.modal-obj-body { padding: 28px 36px; }
.modal-obj-section-title { font-size: 9px; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gris); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--beige); }
.modal-soin-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.modal-soin-item {
  display: flex; align-items: center; gap: 16px; padding: 16px 18px;
  border: 1px solid var(--beige); cursor: pointer; transition: all 0.2s;
  text-decoration: none;
}
.modal-soin-item:hover { border-color: var(--or); background: var(--beige-lt); }
.modal-soin-item-img { width: 70px; height: 52px; object-fit: cover; flex-shrink: 0; background: var(--beige-lt); }
.modal-soin-item-content { flex: 1; }
.modal-soin-item-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 500; color: var(--bleu); margin-bottom: 3px; }
.modal-soin-item-desc { font-size: 12px; color: var(--gris); line-height: 1.5; }
.modal-soin-item-price { font-size: 16px; font-weight: 300; color: var(--bleu); flex-shrink: 0; }
.modal-soin-item-arrow { font-size: 18px; color: rgba(30,47,74,0.3); flex-shrink: 0; }
.modal-soin-item:hover .modal-soin-item-arrow { color: var(--or); }
.modal-cure-highlight { background: var(--or-lt); border: 1px solid rgba(201,169,110,0.3); border-left: 3px solid var(--or); padding: 16px 18px; margin-bottom: 24px; }
.modal-cure-highlight-label { font-size: 8px; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase; color: var(--or); margin-bottom: 6px; }
.modal-cure-highlight-name { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--bleu); margin-bottom: 4px; }
.modal-cure-highlight-desc { font-size: 12.5px; color: var(--gris); line-height: 1.6; }

/* MODAL SOIN DÉTAIL */
.modal-soin-photo { width: 100%; height: 260px; object-fit: cover; display: block; }
.modal-soin-photo-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-dark) 100%); display: flex; align-items: center; justify-content: center; }
.modal-soin-photo-placeholder span { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-style: italic; color: rgba(232,225,217,0.3); }
.modal-soin-header { background: var(--bleu); padding: 28px 36px 24px; }
.modal-soin-tag { font-size: 8.5px; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase; color: var(--or); margin-bottom: 6px; }
.modal-soin-name { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--beige); margin-bottom: 8px; line-height: 1.1; }
.modal-soin-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.modal-soin-meta-item { font-size: 12px; color: rgba(232,225,217,0.5); }
.modal-soin-meta-item strong { color: var(--or); font-weight: 400; }
.modal-soin-body { padding: 28px 36px; }
.modal-soin-section { margin-bottom: 22px; }
.modal-soin-section-label { font-size: 8.5px; font-weight: 600; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gris); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--beige); }
.modal-soin-section-text { font-size: 13.5px; color: var(--bleu); line-height: 1.8; }
.modal-soin-actions { display: flex; gap: 12px; flex-wrap: wrap; padding: 0 36px 32px; }

/* ══════════════════════════════════
   POPUP OFFRES (15 secondes)
══════════════════════════════════ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(14,22,36,0.72);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(5px);
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--bleu); max-width: 560px; width: 100%;
  position: relative; overflow: hidden;
  transform: scale(0.92); transition: transform 0.4s;
}
.popup-overlay.active .popup-box { transform: scale(1); }
.popup-box::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.popup-top-bar { height: 3px; background: linear-gradient(90deg, transparent, var(--or), transparent); }
.popup-close-btn {
  position: absolute; top: 0; right: 0;
  background: rgba(232,225,217,0.1); border: none; color: var(--beige);
  width: 44px; height: 44px; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.popup-close-btn:hover { background: rgba(232,225,217,0.18); }
.popup-inner { padding: 40px 44px 36px; position: relative; z-index: 1; }
.popup-badge {
  font-size: 8px; font-weight: 500; letter-spacing: 0.55em;
  text-transform: uppercase; color: var(--or);
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.popup-badge::before, .popup-badge::after { content: '✦'; }
.popup-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.popup-logo-row svg { width: 34px; height: 34px; }
.popup-logo-text { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300; letter-spacing: 0.45em; color: var(--beige); text-transform: uppercase; }
.popup-logo-sub { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-style: italic; color: rgba(232,225,217,0.4); letter-spacing: 0.3em; }
.popup-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; font-style: italic; color: var(--beige); line-height: 1.2; margin-bottom: 24px; }
.popup-offer { border: 1px solid rgba(201,169,110,0.3); background: rgba(201,169,110,0.06); padding: 18px 20px; margin-bottom: 10px; position: relative; }
.popup-offer-num { position: absolute; top: -1px; left: -1px; background: var(--or); color: var(--bleu); font-size: 7.5px; font-weight: 700; letter-spacing: 0.3em; padding: 3px 10px; }
.popup-offer-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 500; color: var(--beige); margin-bottom: 3px; padding-top: 8px; }
.popup-offer-sub { font-size: 11px; color: rgba(232,225,217,0.45); margin-bottom: 10px; }
.popup-price-row { display: flex; align-items: baseline; gap: 10px; }
.popup-price-new { font-size: 26px; font-weight: 300; color: var(--or); }
.popup-price-old { font-size: 12px; color: rgba(232,225,217,0.3); text-decoration: line-through; }
.popup-bilan { background: rgba(232,225,217,0.06); border: 1px solid rgba(232,225,217,0.12); padding: 12px 16px; margin: 14px 0; display: flex; align-items: center; gap: 12px; }
.popup-bilan-icon { font-size: 18px; }
.popup-bilan-text { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(232,225,217,0.7); line-height: 1.4; }
.popup-limit { font-size: 10px; color: rgba(232,225,217,0.28); letter-spacing: 0.1em; margin-bottom: 20px; }
.popup-quote { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-style: italic; color: rgba(232,225,217,0.35); text-align: center; margin-top: 16px; line-height: 1.5; border-top: 1px solid rgba(232,225,217,0.08); padding-top: 16px; }
.popup-bottom-bar { height: 3px; background: linear-gradient(90deg, transparent, var(--or), transparent); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--beige-lt); }
::-webkit-scrollbar-thumb { background: var(--bleu); }

/* ── UTILS ── */
.sep-or { width: 48px; height: 2px; background: var(--or); margin: 16px 0 24px; }
.sep-beige { width: 48px; height: 1px; background: rgba(232,225,217,0.3); margin: 16px 0 24px; }
.text-or { color: var(--or); }
.text-beige { color: var(--beige); }
.text-gris { color: var(--gris); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .hero { padding: 60px 24px; }
  .cta-band { padding: 40px 24px; }
  .footer { padding: 48px 24px 24px; }
  .offer-banner { padding: 10px 24px; }
  .nav-inner { padding: 0 24px; height: 72px; }
  .nav-logo img { width: 46px; height: 46px; }
  .nav-logo-svg { width: 42px; height: 42px; }
  .modal-obj-header, .modal-obj-body, .modal-soin-header, .modal-soin-body { padding-left: 22px; padding-right: 22px; }
  .popup-inner { padding: 32px 24px 28px; }
  .popup-title { font-size: 22px; }
}

/* ═══════════════════════════════════════
   PRO UPGRADES v4
═══════════════════════════════════════ */

/* ── ANIMATIONS À L'APPARITION ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(.16,.78,.36,1), transform 0.85s cubic-bezier(.16,.78,.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ── FAQ ACCORDION ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--beige); }
.faq-item { border-bottom: 1px solid var(--beige); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500; color: var(--bleu);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--or); }
.faq-icon {
  flex-shrink: 0; margin-left: 20px;
  font-family: 'Jost', sans-serif; font-size: 20px; font-weight: 300;
  color: var(--or); transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 26px;
  font-size: 14px; color: var(--gris); line-height: 1.85;
}
.faq-answer-inner p + p { margin-top: 12px; }
.faq-answer-inner strong { color: var(--bleu); font-weight: 500; }

/* ── BUTTON SUBTLE HOVER ── */
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,169,110,0.35); }
.btn-bleu:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30,47,74,0.35); }

/* ── IMAGE FADE LOAD ── */
.soin-card img, .tech-full-card img, .modal-soin-photo {
  transition: opacity 0.4s;
}
.soin-card img:not([src]), .tech-full-card img:not([src]) { opacity: 0; }

/* ── FOCUS STATES (accessibilité) ── */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--or); outline-offset: 2px;
}

/* ── LOADING SHIMMER pour images ── */
.img-shimmer {
  background: linear-gradient(90deg, var(--beige-lt) 0%, var(--beige) 50%, var(--beige-lt) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── MOBILE NAV improvements ── */
@media (max-width: 900px) {
  .nav-links a { padding: 6px 0; font-size: 12px; }
}

/* ── PRINT styles ── */
@media print {
  .nav, .offer-banner, .cta-band, .footer, .popup-overlay { display: none !important; }
  body { color: #000; background: #fff; }
}


/* ── PARTENAIRES MARQUES ── */
.brand-partners-section { background: var(--beige-lt); padding: 64px 48px; border-top: 1px solid var(--beige); border-bottom: 1px solid var(--beige); }
.brand-partners-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.brand-partners-eyebrow { font-size: 9px; font-weight: 500; letter-spacing: 0.55em; text-transform: uppercase; color: var(--gris); margin-bottom: 12px; }
.brand-partners-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 34px); font-weight: 300; color: var(--bleu); line-height: 1.2; margin-bottom: 14px; }
.brand-partners-title em { font-style: italic; color: var(--or); }
.brand-partners-desc { font-size: 13.5px; font-weight: 300; color: var(--gris); line-height: 1.75; max-width: 580px; margin: 0 auto 36px; }
.brand-partners-grid { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; padding: 16px 0; }
.brand-partner-logo { height: 58px; width: auto; max-width: 180px; object-fit: contain; opacity: 0.78; transition: opacity 0.3s, transform 0.3s; filter: grayscale(15%); }
.brand-partner-logo:hover { opacity: 1; filter: grayscale(0%); transform: translateY(-2px); }
@media (max-width: 700px) { .brand-partners-grid { gap: 32px; } .brand-partner-logo { height: 42px; max-width: 130px; } }


/* ── TABLEAU RÉCAP TECHNOLOGIES (SEO Premium) ── */
.tech-recap-section {
  background: linear-gradient(180deg, var(--beige-lt) 0%, #F5EFE6 100%);
  padding: 80px 48px 88px;
  position: relative;
}
.tech-recap-inner { max-width: 1280px; margin: 0 auto; }
.tech-recap-header { text-align: center; margin-bottom: 48px; }
.tech-recap-eyebrow {
  font-size: 9px; font-weight: 500; letter-spacing: 0.55em;
  text-transform: uppercase; color: var(--or); margin-bottom: 14px;
}
.tech-recap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 300; color: var(--bleu);
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em;
}
.tech-recap-title em { font-style: italic; color: var(--or); }
.tech-recap-desc {
  font-size: 14.5px; font-weight: 300; color: var(--gris);
  line-height: 1.75; max-width: 720px; margin: 0 auto;
}

/* Container du tableau */
.tech-recap-wrap {
  background: #FFFFFF;
  border: 1px solid var(--beige);
  box-shadow: 0 12px 48px -16px rgba(30, 47, 74, 0.08);
  overflow: hidden;
  position: relative;
}
.tech-recap-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--or) 50%, transparent 100%);
}

/* Table */
.tech-recap-table { width: 100%; border-collapse: collapse; }
.tech-recap-table thead { background: var(--bleu); color: var(--beige); }
.tech-recap-table thead th {
  padding: 18px 22px; text-align: left;
  font-size: 10px; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--or);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.tech-recap-table thead th:first-child { padding-left: 28px; }
.tech-recap-table tbody tr {
  border-bottom: 1px solid rgba(232,225,217,0.6);
  transition: background-color 0.25s;
}
.tech-recap-table tbody tr:hover { background-color: rgba(201,169,110,0.04); }
.tech-recap-table tbody tr:last-child { border-bottom: none; }
.tech-recap-table tbody td {
  padding: 22px 22px; vertical-align: top;
  font-size: 13.5px; line-height: 1.65; color: var(--bleu);
}
.tech-recap-table tbody td:first-child { padding-left: 28px; }
.tech-recap-table .recap-tech-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500;
  color: var(--bleu); line-height: 1.25;
  margin-bottom: 4px;
}
.tech-recap-table .recap-tech-sub {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--or); opacity: 0.85;
}
.tech-recap-table .recap-tags {
  display: flex; flex-wrap: wrap; gap: 5px 6px;
}
.tech-recap-table .recap-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--beige-lt);
  color: var(--bleu);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: 1px solid rgba(30,47,74,0.06);
}
.tech-recap-table .recap-tag.gold {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.25);
  color: #8B7340;
  font-weight: 500;
}
.tech-recap-table .recap-stat {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13px;
  color: var(--gris); line-height: 1.5;
}
.tech-recap-table .recap-stat strong {
  font-style: normal; font-weight: 500;
  color: var(--or); font-family: 'Jost', sans-serif;
  font-size: 14.5px;
}

/* Mobile : conversion en cards */
@media (max-width: 860px) {
  .tech-recap-section { padding: 60px 18px 64px; }
  .tech-recap-wrap { border: none; background: transparent; box-shadow: none; }
  .tech-recap-wrap::before { display: none; }
  .tech-recap-table { display: block; }
  .tech-recap-table thead { display: none; }
  .tech-recap-table tbody { display: block; }
  .tech-recap-table tbody tr {
    display: block;
    background: #FFFFFF;
    border: 1px solid var(--beige);
    margin-bottom: 16px;
    padding: 20px 18px;
    box-shadow: 0 4px 16px -8px rgba(30,47,74,0.08);
    border-bottom: 1px solid var(--beige);
  }
  .tech-recap-table tbody td {
    display: block;
    padding: 0 0 12px 0 !important;
    border: none;
  }
  .tech-recap-table tbody td:last-child { padding-bottom: 0 !important; }
  .tech-recap-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 9px; font-weight: 500; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--or);
    margin-bottom: 7px;
  }
  .tech-recap-table tbody td.recap-cell-name::before { display: none; }
  .tech-recap-table .recap-tech-name { font-size: 18px; }
}

/* Footer du tableau — note SEO + disclaimer */
.tech-recap-footnote {
  margin-top: 22px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.55);
  border-left: 2px solid var(--or);
  font-size: 11.5px;
  font-style: italic;
  color: var(--gris);
  line-height: 1.65;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
