/* ══════════════════════════════════════════════════════════════
   STYLES.CSS — Balance Method Therapy Clinic
   Main responsive site styles
   ══════════════════════════════════════════════════════════════ */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Core palette — charte BMTCA */
  --dark:       #0f2318;
  --green:      #1a4d2e;
  --mid:        #2c7a4b;
  --light:      #4caf74;
  --panel:      #142e1e;
  --ink:        #f5f0e8;
  --dark-bg:    #0a1a11;
  --gold:       #c4943a;
  --gold2:      #e8b84b;
  --gold-light: #e8b84b;
  --jade:       #1a4d2e;
  --jade-light: #4caf74;
  --cream:      #f5f0e8;
  --white:      #fefdfb;
  --mist:       #16331f;
  --shadow:     rgba(0,0,0,0.35);

  /* Laser — vert émeraude (tech2) */
  --laser-c:    #0a5c3a;
  --laser-a:    #00ff9d;
  --laser-mid:  #00c97a;

  /* Cryo — Game Ready® Rouge & Bleu (tech2) */
  --cryo-c:     #8a0a0a;
  --cryo-a:     #ff3333;
  --cryo-mid:   #0057b8;
  --cryo-b:     #3399ff;
  --cryo-light: #cce4ff;

  /* Tecar — Winback® orange profond (tech1) */
  --tecar-c:    #7a2d00;
  --tecar-a:    #ff6600;
  --tecar-mid:  #ff8a3d;

  /* Tesla — bleu magnétique (tech1) */
  --tesla-c:    #002e6b;
  --tesla-a:    #3399ff;
  --tesla-mid:  #5bb3ff;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .4;
}
body.splash-active { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(15,35,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,148,58,0.3);
  transition: padding .3s;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 30px;
  width: 30px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(44,122,75,.5));
}
.nav-logo .nav-logo-short { display: none; }
.nav-menu {
  list-style: none;
  display: flex; gap: 2.5rem;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .7;
  transition: opacity .2s, color .2s;
}
.nav-menu a:hover { opacity: 1; color: var(--gold2); }
.nav-menu a.active { opacity: 1; color: var(--gold2); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(196,148,58,.45);
  background: rgba(15,35,24,.6);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark) !important;
  opacity: 1 !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold2) !important; color: var(--dark) !important; }

/* Dropdown menu (Soins) */
.nav-menu .has-dropdown { position: relative; }
.nav-menu .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-menu .has-dropdown > a::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: .7;
  transition: transform .2s ease;
}
.nav-menu .has-dropdown:hover > a::after,
.nav-menu .has-dropdown:focus-within > a::after {
  transform: translateY(0) rotate(-135deg);
}
.nav-dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -6px);
  min-width: 210px;
  margin: 0;
  padding: .85rem 0 .55rem;
  background: rgba(15,35,24,.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196,148,58,.3);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-menu .has-dropdown:hover .nav-dropdown,
.nav-menu .has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown li { width: 100%; }
.nav-dropdown a {
  display: block;
  padding: .6rem 1.4rem;
  font-size: .78rem;
  letter-spacing: .12em;
  white-space: nowrap;
  opacity: .8;
}
.nav-dropdown a:hover {
  opacity: 1;
  color: var(--gold2);
  background: rgba(196,148,58,.08);
}

/* ══════════════════════════════════════════════════════════════
   HERO (v2 main hero)
   ══════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-visual {
  position: relative;
  background: var(--jade);
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(196,148,58,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(76,175,116,.2) 0%, transparent 50%);
}
.water-ripple {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent, transparent 48px,
      rgba(255,255,255,.04) 48px, rgba(255,255,255,.04) 50px
    ),
    repeating-linear-gradient(
      90deg,
      transparent, transparent 80px,
      rgba(255,255,255,.03) 80px, rgba(255,255,255,.03) 82px
    );
  animation: drift 12s linear infinite;
}
@keyframes drift { from { background-position: 0 0; } to { background-position: 0 50px; } }

.hero-emblem {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 320px; height: 320px;
  border: 1px solid rgba(196,148,58,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-emblem::before {
  content: '⊕';
  font-size: 200px;
  color: rgba(196,148,58,.12);
  font-weight: 300;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 5rem 5rem 6rem;
  position: relative;
}
.hero-tag {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  line-height: 1.0;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .8s .4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold2); }
.hero-title span { display: block; font-size: 2.2rem; font-weight: 600; letter-spacing: .02em; }
.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,232,.72);
  opacity: 0;
  max-width: 440px;
  margin-bottom: 3rem;
  animation: fadeUp .8s .6s forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center;
  opacity: 0; animation: fadeUp .8s .8s forwards;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  box-shadow: 0 8px 32px rgba(196,148,58,.25);
  transition: box-shadow .3s, transform .2s;
}
.btn-primary:hover { box-shadow: 0 14px 44px rgba(196,148,58,.45); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  color: var(--gold2);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.btn-secondary:hover { opacity: .6; }
.hero-visual-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  z-index: 2;
}
.hero-doctor-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(196,148,58,.4);
  backdrop-filter: blur(8px);
  padding: 2rem 2.4rem;
  max-width: 340px;
  opacity: 0; animation: fadeUp .8s 1s forwards;
}
.hero-doctor-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: .3rem;
}
.hero-doctor-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  letter-spacing: .03em;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════════════════════════ */
section { padding: 7rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold2); }
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════════════════════
   PHILOSOPHIE
   ══════════════════════════════════════════════════════════════ */
#philosophie { background: var(--dark); }

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.philosophy-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245,240,232,.68);
  margin-bottom: 1.2rem;
}
.philosophie-citation {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold2);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
  background: rgba(26,77,46,.25);
}
.doctorats {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196,148,58,.25);
}
.doctorat-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  background: var(--mist);
  border-left: 3px solid var(--gold);
  transition: background .2s;
}
.doctorat-item:hover { background: #1a3b26; }
.doctorat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.doctorat-title {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .3rem;
}
.doctorat-desc { font-size: .85rem; line-height: 1.55; color: rgba(245,240,232,.6); }

/* BUG FIX: philosophy-pillars selector was missing in v2 */
.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pillar {
  background: var(--mist);
  padding: 2rem;
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196,148,58,.3);
  position: absolute; top: .5rem; right: 1rem;
  line-height: 1;
}
.pillar h4 {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .6rem;
}
.pillar p { font-size: .88rem; line-height: 1.6; color: rgba(245,240,232,.6); }

/* ══════════════════════════════════════════════════════════════
   SOINS / SERVICES
   ══════════════════════════════════════════════════════════════ */
#soins { background: var(--dark-bg); }

.soins-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem;
}
.soins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.soin-card {
  background: var(--panel);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(196,148,58,.2);
  position: relative;
  overflow: hidden;
  transition: transform .4s, box-shadow .4s;
}
.soin-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px var(--shadow); }
.soin-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
  transform: scaleX(0);
  transition: transform .4s;
}
.soin-card:hover::after { transform: scaleX(1); }
.soin-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--jade), var(--jade-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
}
.soin-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .8rem;
}
.soin-card p { font-size: .88rem; line-height: 1.75; color: rgba(245,240,232,.62); margin-bottom: 1.5rem; }
.soin-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid rgba(196,148,58,.35);
  padding: .3rem .8rem;
}

/* ── TECHNO BANNER ── */
.techno-banner {
  background: var(--panel);
  border: 1px solid rgba(196,148,58,.25);
  padding: 1.8rem 2.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.techno-banner-label {
  display: flex; align-items: center; gap: .7rem;
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.techno-items {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.techno-item {
  display: flex; align-items: center; gap: .9rem;
}
.techno-logo {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--jade), var(--jade-light));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.techno-name {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: .15rem;
}
.techno-brand { font-size: .7rem; color: rgba(255,255,255,.45); font-style: italic; }
.techno-sep { color: rgba(196,148,58,.4); font-size: 1.2rem; flex-shrink: 0; }
.techno-tag { color: var(--gold) !important; border-color: rgba(196,148,58,.4) !important; }

/* ══════════════════════════════════════════════════════════════
   TECHNOLOGIES SECTION (tech2 hero — inserted between soins & academie)
   ══════════════════════════════════════════════════════════════ */
#technologies {
  padding: 0;
  position: relative;
}

/* Tech split (replaces tech2 #hero) */
.tech-split {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.tech-half {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 7rem 4.5rem 5rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: flex .5s cubic-bezier(.4,0,.2,1);
}
.tech-half:hover { flex: 1.18; }

/* Laser bg */
#tech-laser-half {
  background: linear-gradient(160deg, #020f07 0%, #041a0e 50%, #072615 100%);
  border-right: 1px solid rgba(0,255,157,.12);
}
/* Cryo bg */
#tech-cryo-half {
  background: linear-gradient(160deg, #0f0202 0%, #1a0303 40%, #0a0a1a 60%, #020a1a 100%);
}

.tech-half-content {
  position: relative;
  z-index: 2;
}

/* Grid background overlay */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Laser beams */
.laser-beam { position: absolute; pointer-events: none; }
.laser-beam-1 {
  top: 20%; left: 50%;
  width: 2px; height: 60%;
  background: linear-gradient(180deg, transparent, rgba(0,255,157,.6), rgba(0,255,157,.2), transparent);
  animation: beam-pulse 3s ease-in-out infinite;
  transform-origin: top center;
}
.laser-beam-2 {
  top: 15%; left: 35%;
  width: 1px; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,201,122,.4), transparent);
  animation: beam-pulse 3s ease-in-out infinite 1s;
  transform: rotate(15deg);
  transform-origin: top center;
}
.laser-beam-3 {
  top: 10%; left: 65%;
  width: 1px; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(0,255,157,.3), transparent);
  animation: beam-pulse 3s ease-in-out infinite 2s;
  transform: rotate(-10deg);
  transform-origin: top center;
}
@keyframes beam-pulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}

/* Cryo particles */
.cryo-particle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  animation: cryo-float linear infinite;
  opacity: 0;
}
@keyframes cryo-float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .4; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.cryo-particle:nth-child(1)  { width: 4px; height: 4px; background: var(--cryo-a);             left: 10%; animation-duration: 8s;  animation-delay: 0s; }
.cryo-particle:nth-child(2)  { width: 6px; height: 6px; background: var(--cryo-mid);            left: 25%; animation-duration: 10s; animation-delay: 1s; }
.cryo-particle:nth-child(3)  { width: 3px; height: 3px; background: var(--cryo-b);              left: 45%; animation-duration: 7s;  animation-delay: 2s; }
.cryo-particle:nth-child(4)  { width: 5px; height: 5px; background: var(--cryo-b);              left: 65%; animation-duration: 9s;  animation-delay: .5s; }
.cryo-particle:nth-child(5)  { width: 4px; height: 4px; background: var(--cryo-a);              left: 80%; animation-duration: 11s; animation-delay: 3s; }
.cryo-particle:nth-child(6)  { width: 7px; height: 7px; background: rgba(255,51,51,.4);         left: 55%; animation-duration: 6s;  animation-delay: 1.5s; }
.cryo-particle:nth-child(7)  { width: 3px; height: 3px; background: var(--cryo-b);              left: 35%; animation-duration: 12s; animation-delay: 4s; }
.cryo-particle:nth-child(8)  { width: 5px; height: 5px; background: rgba(51,153,255,.7);        left: 90%; animation-duration: 8s;  animation-delay: 2.5s; }

/* Snowflakes — nth-child based on full #tech-cryo-half children (8 cryo-particles then 3 snowflakes) */
.snowflake {
  position: absolute; pointer-events: none;
  font-size: 1.2rem; opacity: 0;
  animation: snow-fall linear infinite;
}
@keyframes snow-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10%  { opacity: .35; }
  90%  { opacity: .2; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}
#tech-cryo-half .snowflake:nth-child(9)  { left: 20%; animation-duration: 9s;  animation-delay: 0s;  color: var(--cryo-a); }
#tech-cryo-half .snowflake:nth-child(10) { left: 50%; animation-duration: 12s; animation-delay: 2s;  color: var(--cryo-b); }
#tech-cryo-half .snowflake:nth-child(11) { left: 75%; animation-duration: 7s;  animation-delay: 4s;  color: var(--cryo-mid); }

/* Page badge */
.page-badge {
  position: absolute; top: 5rem; right: 3rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem;
  letter-spacing: .3em;
  color: rgba(196,148,58,.5);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* Tech hero text elements */
.hero-tech-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.label-laser { color: var(--laser-a); }
.label-cryo  { color: var(--cryo-a); }

/* Renamed tech hero title/sub/cta (avoid conflict with v2 .hero-title) */
.tech-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--white);
  position: relative; z-index: 2;
}
.tech-hero-title em { font-style: italic; }
.accent-laser { color: var(--laser-a); }
.accent-cryo  { color: var(--cryo-a); }

.tech-hero-sub {
  font-size: .92rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 380px;
  margin-bottom: 2.5rem;
  position: relative; z-index: 2;
}

.tech-hero-cta {
  display: inline-flex; align-items: center; gap: .8rem;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border: 1px solid;
  transition: all .3s;
  position: relative; z-index: 2;
}
.cta-laser { border-color: var(--laser-a); color: var(--laser-a); }
.cta-laser:hover { background: rgba(0,255,157,.1); }
.cta-cryo  { border-color: var(--cryo-a);  color: var(--cryo-a); }
.cta-cryo:hover  { background: rgba(255,51,51,.1); }

/* ── TECH SECTIONS (laser & cryo detail sections) ── */
.tech-section { padding: 8rem 0; position: relative; overflow: hidden; }
.laser-section { background: linear-gradient(180deg, #020f07 0%, #041508 100%); }
.cryo-section  { background: linear-gradient(180deg, #0f0202 0%, #080210 50%, #020a18 100%); }

/* tech section overrides .section-eyebrow font */
.tech-section .section-eyebrow {
  font-family: 'Share Tech Mono', monospace;
}
.section-divider { width: 60px; height: 1px; margin-bottom: 2rem; }

/* Intro grid */
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 5fr;
  gap: 5rem; align-items: start;
  margin-bottom: 6rem;
}
.intro-text p {
  font-size: 1rem; line-height: 1.9;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.2rem;
}

/* Brand card */
.brand-card {
  display: flex; align-items: center; gap: 2rem;
  padding: 2rem 2.5rem;
  border: 1px solid;
  margin-top: 2rem;
}
.brand-card.laser-brand { border-color: rgba(0,255,157,.25); background: rgba(0,255,157,.04); }
.brand-card.cryo-brand  { border-color: rgba(255,51,51,.25);  background: rgba(255,51,51,.04); }
.brand-logo {
  width: 70px; height: 70px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-size: 1rem; letter-spacing: .05em;
  font-weight: 600;
}
.brand-logo.laser { background: linear-gradient(135deg,#041a0e,#072615); color: var(--laser-a); border: 1px solid rgba(0,255,157,.3); }
.brand-logo.cryo  { background: linear-gradient(135deg,#1a0303,#020a1a); color: var(--cryo-a);  border: 1px solid rgba(255,51,51,.35); }
.brand-info h4 {
  font-family: 'Cinzel', serif; font-size: .82rem;
  letter-spacing: .12em; margin-bottom: .4rem;
}
.brand-info h4.laser-t { color: var(--laser-a); }
.brand-info h4.cryo-t  { color: var(--cryo-a); }
.brand-info p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* Spec badges */
.spec-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.spec-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem 1.5rem;
  border: 1px solid;
  min-width: 110px;
}
.spec-badge.laser { border-color: rgba(0,255,157,.3); }
.spec-badge.cryo  { border-color: rgba(255,51,51,.35); }
.spec-val {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem; line-height: 1;
  margin-bottom: .3rem;
}
.spec-val.laser { color: var(--laser-a); }
.spec-val.cryo  { color: var(--cryo-a); }
.spec-lbl { font-size: .65rem; color: rgba(255,255,255,.4); text-align: center; line-height: 1.3; }

/* Laser visual / diagram */
.laser-visual { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.laser-diagram-box {
  border: 1px solid rgba(0,255,157,.2);
  background: rgba(0,255,157,.03);
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.laser-diagram-box::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--laser-a), rgba(0,255,157,.1));
  animation: beam-pulse 2s ease-in-out infinite;
}
.meridian-points { display: flex; flex-direction: column; gap: 1.2rem; position: relative; z-index: 2; }
.meridian-row { display: flex; align-items: center; gap: 1rem; }
.m-point {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--laser-a);
  background: rgba(0,255,157,.2);
  flex-shrink: 0;
  position: relative;
  animation: point-glow 2s ease-in-out infinite;
}
.m-point::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(0,255,157,.3);
  animation: point-glow 2s ease-in-out infinite;
}
@keyframes point-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(0,255,157,.5); }
  50%       { box-shadow: 0 0 18px rgba(0,255,157,.9); }
}
.m-label { font-family: 'Share Tech Mono', monospace; font-size: .65rem; color: rgba(0,255,157,.7); letter-spacing: .1em; }
.laser-caption {
  text-align: center; margin-top: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem; letter-spacing: .2em;
  color: rgba(0,255,157,.4);
}

/* Cryo visual / diagram */
.cryo-visual { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
.cryo-diagram-box {
  border: 1px solid rgba(0,87,184,.3);
  background: rgba(0,87,184,.04);
  padding: 2.5rem; position: relative; overflow: hidden;
}
.cryo-zones { display: flex; flex-direction: column; gap: .8rem; }
.cryo-zone {
  display: flex; align-items: center; gap: 1rem;
  padding: .8rem 1rem;
  border: 1px solid; border-radius: 2px;
  position: relative; overflow: hidden;
}
.cryo-zone.active-zone  { border-color: rgba(255,51,51,.5);   background: rgba(255,51,51,.06); }
.cryo-zone.neutral-zone { border-color: rgba(0,87,184,.2);    background: rgba(0,87,184,.03); }
.cryo-zone::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,87,184,.2), transparent);
  animation: cryo-sweep 3s ease-in-out infinite;
}
@keyframes cryo-sweep {
  0%   { left: -100%; }
  50%  { left: 100%; }
  100% { left: 100%; }
}
.cryo-zone-icon { font-size: 1.1rem; flex-shrink: 0; }
.cryo-zone-text { font-size: .75rem; color: rgba(255,255,255,.7); }
.cryo-zone-val { margin-left: auto; font-family: 'Share Tech Mono', monospace; font-size: .7rem; color: var(--cryo-a); white-space: nowrap; }
.cryo-temp-display {
  text-align: center; margin-top: 1.8rem;
  padding: 1.2rem;
  border: 1px solid rgba(255,51,51,.35);
  background: rgba(255,51,51,.05);
}
.cryo-temp-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.5rem; color: var(--cryo-a);
  animation: temp-pulse 3s ease-in-out infinite;
}
@keyframes temp-pulse {
  0%, 100% { color: var(--cryo-a); }
  50%       { color: var(--cryo-b); }
}
.cryo-temp-label { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .1em; margin-top: .3rem; }

/* Functions grid */
.functions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 4rem;
}
.func-card {
  padding: 2rem;
  border: 1px solid;
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.func-card:hover { transform: translateY(-4px); }
.func-card.laser-card { border-color: rgba(0,255,157,.2);  background: rgba(0,255,157,.03); }
.func-card.cryo-card  { border-color: rgba(0,87,184,.3);   background: rgba(0,87,184,.04); }
.func-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.func-card h3 { font-family: 'Cinzel', serif; font-size: .8rem; letter-spacing: .1em; margin-bottom: .6rem; }
.func-card h3.laser-t { color: var(--laser-a); }
.func-card h3.cryo-t  { color: var(--cryo-a); }
.func-card p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.65; }
.func-deco {
  position: absolute; right: -10px; top: -10px;
  font-size: 5rem; font-family: 'Cinzel', serif; font-weight: 600;
  opacity: .05; line-height: 1; pointer-events: none;
}

/* Indications */
.indications-block { margin-bottom: 5rem; }
.indications-title {
  font-family: 'Cinzel', serif; font-size: .75rem;
  letter-spacing: .25em; text-transform: uppercase; margin-bottom: 2rem;
}
.indications-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.indication-item {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: 1rem; border-bottom: 1px solid;
  transition: background .2s;
}
.indication-item:hover { background: rgba(255,255,255,.02); }
.indication-item.laser-ind { border-color: rgba(0,255,157,.15); }
.indication-item.cryo-ind  { border-color: rgba(0,87,184,.2); }
.ind-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.dot-laser { background: var(--laser-a); box-shadow: 0 0 6px var(--laser-a); }
.dot-cryo  { background: var(--cryo-a);  box-shadow: 0 0 6px var(--cryo-a); }
.indication-item span { font-size: .82rem; color: rgba(255,255,255,.65); line-height: 1.45; }

/* Protocol phases */
.protocol-phases {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3rem;
  border: 1px solid rgba(0,87,184,.3);
}
.phase { padding: 2rem 1.5rem; border-right: 1px solid rgba(0,87,184,.2); position: relative; }
.phase:last-child { border-right: none; }
.phase-num { font-family: 'Share Tech Mono', monospace; font-size: 2.5rem; color: rgba(0,87,184,.2); line-height: 1; margin-bottom: .8rem; }
.phase h4 { font-family: 'Cinzel', serif; font-size: .75rem; letter-spacing: .12em; color: var(--cryo-a); margin-bottom: .6rem; text-transform: uppercase; }
.phase p { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.6; }
.phase-arrow { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); font-size: .8rem; color: rgba(255,51,51,.35); z-index: 2; }

/* Comparison table section */
.techno-compare-section { background: #0a1a11; padding: 6rem 0; }

.comparison {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  padding: 4rem; margin-top: 5rem;
}
.comparison h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--white);
  text-align: center; margin-bottom: 3rem;
}
.comp-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.comp-h { padding: 1rem 1.5rem; font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.comp-h.lbl    { color: rgba(255,255,255,.3); }
.comp-h.laser-h { background: rgba(0,255,157,.07); color: var(--laser-a); text-align: center; }
.comp-h.cryo-h  { background: rgba(0,87,184,.1);   color: var(--cryo-a);  text-align: center; }
.comp-c { padding: .9rem 1.5rem; border-top: 1px solid rgba(255,255,255,.05); font-size: .85rem; }
.comp-c.lbl    { color: rgba(255,255,255,.4); }
.comp-c.laser-v { background: rgba(0,255,157,.02); color: rgba(0,255,157,.8); text-align: center; }
.comp-c.cryo-v  { background: rgba(0,87,184,.03);  color: rgba(255,80,80,.9); text-align: center; }

/* Synergie block */
.synergie {
  background: linear-gradient(135deg, #041a0e 0%, #04101a 50%, #020a1a 100%);
  border: 1px solid rgba(255,255,255,.07);
  padding: 5rem 4rem;
  text-align: center;
  margin-top: 5rem;
  position: relative; overflow: hidden;
}
.synergie::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0,255,157,.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255,51,51,.05) 0%, transparent 50%);
}
.synergie-content { position: relative; z-index: 2; }
.synergie h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--white);
  margin-bottom: 1rem; line-height: 1.2;
}
.synergie h3 em { font-style: italic; color: var(--gold); }
.synergie p { font-size: 1rem; color: rgba(255,255,255,.6); max-width: 680px; margin: 0 auto 3rem; line-height: 1.8; }
.synergie-combos { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.combo-tag {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .7rem; letter-spacing: .1em;
  padding: .6rem 1.2rem;
  border: 1px solid rgba(196,148,58,.3);
  color: var(--gold-light);
}

/* ══════════════════════════════════════════════════════════════
   TECAR & TESLA — extensions tech-split + sections détaillées
   ══════════════════════════════════════════════════════════════ */

/* Hero halves backgrounds */
#tech-tecar-half {
  background: linear-gradient(160deg, #160800 0%, #251000 40%, #331600 100%);
  border-right: 1px solid rgba(255,102,0,.15);
}
#tech-tesla-half {
  background: linear-gradient(160deg, #000d20 0%, #001235 40%, #001a4a 100%);
}

/* Pulse rings (used inside tecar/tesla halves) */
.pulse-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid;
  animation: pulse-expand 4s ease-out infinite;
  pointer-events: none;
}
.pulse-ring.tecar { border-color: rgba(255,102,0,.3); top: 32%; left: 38%; width: 320px; height: 320px; margin: -160px 0 0 -160px; }
.pulse-ring.tesla { border-color: rgba(51,153,255,.3); top: 32%; left: 62%; width: 320px; height: 320px; margin: -160px 0 0 -160px; }
.pulse-ring:nth-of-type(2) { animation-delay: 1.3s; }
.pulse-ring:nth-of-type(3) { animation-delay: 2.6s; }
@keyframes pulse-expand {
  0%   { transform: scale(.3); opacity: .8; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Labels / accents / CTAs */
.label-tecar { color: var(--tecar-a); }
.label-tesla { color: var(--tesla-a); }
.accent-tecar { color: var(--tecar-a); }
.accent-tesla { color: var(--tesla-a); }
.cta-tecar { border-color: var(--tecar-a); color: var(--tecar-a); }
.cta-tecar:hover { background: rgba(255,102,0,.1); }
.cta-tesla { border-color: var(--tesla-a); color: var(--tesla-a); }
.cta-tesla:hover { background: rgba(51,153,255,.1); }

/* Section backgrounds */
.tech-section.tecar-section { background: linear-gradient(180deg, #0f0500 0%, #1a0900 100%); }
.tech-section.tesla-section { background: linear-gradient(180deg, #000d20 0%, #001228 100%); }

/* Dots + indication item variants */
.dot-tecar { background: var(--tecar-a); box-shadow: 0 0 6px var(--tecar-a); }
.dot-tesla { background: var(--tesla-a); box-shadow: 0 0 6px var(--tesla-a); }
.indication-item.tecar-ind { border-color: rgba(255,102,0,.18); }
.indication-item.tesla-ind { border-color: rgba(51,153,255,.18); }

/* Brand cards / logos */
.brand-card.tecar-brand { border-color: rgba(255,102,0,.25); background: rgba(255,102,0,.04); }
.brand-card.tesla-brand { border-color: rgba(51,153,255,.25); background: rgba(51,153,255,.04); }
.brand-logo.tecar { background: linear-gradient(135deg,#3d1a00,#200d00); color: var(--tecar-a); border: 1px solid rgba(255,102,0,.35); }
.brand-logo.tesla { background: linear-gradient(135deg,#001a4a,#000820); color: var(--tesla-a); border: 1px solid rgba(51,153,255,.35); }

/* Spec badges */
.spec-badge.tecar { border-color: rgba(255,102,0,.3); }
.spec-badge.tesla { border-color: rgba(51,153,255,.3); }
.spec-val.tecar { color: var(--tecar-a); }
.spec-val.tesla { color: var(--tesla-a); }

/* Func cards */
.func-card.tecar-card { border-color: rgba(255,102,0,.2); background: rgba(255,102,0,.03); }
.func-card.tesla-card { border-color: rgba(51,153,255,.2); background: rgba(51,153,255,.04); }
.func-card h3.tecar-t { color: var(--tecar-a); }
.func-card h3.tesla-t { color: var(--tesla-a); }

/* Frequency badge */
.freq-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 1.8rem;
  border: 1px solid;
  margin-top: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
}
.freq-badge.tecar { border-color: rgba(255,102,0,.4); }
.freq-badge.tesla { border-color: rgba(51,153,255,.4); }
.freq-num { font-size: 1.85rem; font-weight: 400; line-height: 1; }
.freq-num.tecar { color: var(--tecar-a); }
.freq-num.tesla { color: var(--tesla-a); }
.freq-sub { font-size: .55rem; color: rgba(255,255,255,.45); margin-top: .25rem; letter-spacing: .15em; }
.freq-sep { font-size: 1.5rem; }
.freq-sep.tecar { color: rgba(255,102,0,.35); }
.freq-sep.tesla { color: rgba(51,153,255,.35); }

/* Modes grid (CET/RET, magnétique/vibration) */
.modes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 4rem;
}
.mode-card {
  padding: 2.2rem;
  border: 1px solid;
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.mode-card:hover { transform: translateY(-4px); }
.mode-card.cet { border-color: rgba(255,102,0,.25); background: rgba(255,102,0,.04); }
.mode-card.ret { border-color: rgba(255,140,0,.25); background: rgba(255,140,0,.04); }
.mode-card.mag { border-color: rgba(51,153,255,.25); background: rgba(51,153,255,.04); }
.mode-card.em  { border-color: rgba(0,80,200,.25); background: rgba(0,80,200,.04); }
.mode-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: .62rem; letter-spacing: .25em; text-transform: uppercase;
  padding: .25rem .7rem; margin-bottom: 1rem;
  display: inline-block;
}
.badge-cet { background: rgba(255,102,0,.15); color: var(--tecar-a); }
.badge-ret { background: rgba(255,140,0,.15); color: #ffaa55; }
.badge-mag { background: rgba(51,153,255,.15); color: var(--tesla-a); }
.badge-em  { background: rgba(0,80,200,.15); color: #66aaff; }
.mode-card h3 {
  font-family: 'Cinzel', serif;
  font-size: .88rem; letter-spacing: .1em;
  color: var(--white); margin-bottom: .7rem;
}
.mode-card p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.65); }
.mode-deco {
  position: absolute; right: -10px; top: -20px;
  font-size: 5.5rem;
  font-family: 'Cinzel', serif; font-weight: 600;
  opacity: .07; line-height: 1; pointer-events: none;
}
.mode-prefix {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem; letter-spacing: .15em;
  margin-bottom: 1rem;
}
.mode-prefix.tecar { color: rgba(255,102,0,.5); }
.mode-prefix.ret-tone { color: rgba(255,170,85,.55); }

/* Tecar tissue penetration diagram */
.tecar-diagram { position: relative; width: 100%; max-width: 480px; margin: 0 auto; }
.tecar-body {
  position: relative;
  width: 100%; padding-top: 118%;
  border: 1px solid rgba(255,102,0,.2);
  background: rgba(255,102,0,.03);
  overflow: hidden;
}
.tecar-body-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.tecar-layers { display: flex; flex-direction: column; gap: .5rem; width: 78%; }
.layer {
  height: 30px;
  display: flex; align-items: center; padding: 0 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .64rem; letter-spacing: .08em;
  border: 1px solid;
  position: relative; overflow: hidden;
}
.layer::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  animation: layer-scan 3s ease-in-out infinite;
  opacity: .4;
}
@keyframes layer-scan {
  0%, 100% { width: 0; }
  50%       { width: 100%; }
}
.layer-skin   { border-color: rgba(255,220,150,.4); color: rgba(255,220,150,.85); }
.layer-skin::after   { background: rgba(255,220,150,.2); animation-delay: 0s; }
.layer-fat    { border-color: rgba(255,180,80,.4);  color: rgba(255,180,80,.85); }
.layer-fat::after    { background: rgba(255,180,80,.2);  animation-delay: .4s; }
.layer-muscle { border-color: rgba(255,102,0,.5);   color: rgba(255,102,0,.95); }
.layer-muscle::after { background: rgba(255,102,0,.2);   animation-delay: .8s; }
.layer-bone   { border-color: rgba(196,148,58,.4); color: rgba(196,148,58,.85); }
.layer-bone::after   { background: rgba(196,148,58,.15); animation-delay: 1.2s; }
.layer-deep   { border-color: rgba(51,153,255,.4);  color: rgba(51,153,255,.85); }
.layer-deep::after   { background: rgba(0,150,255,.2);   animation-delay: 1.6s; }
.depth-label {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Share Tech Mono', monospace;
  font-size: .58rem; color: rgba(255,102,0,.7);
  white-space: nowrap;
}
.tecar-caption {
  margin-top: 1.8rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem; letter-spacing: .12em;
  color: rgba(255,102,0,.55); text-align: center;
}

/* Tesla coil + specs */
.tesla-diagram { position: relative; width: 100%; max-width: 480px; margin: 0 auto; text-align: center; }
.tesla-coil {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 2px solid rgba(51,153,255,.4);
  display: flex; align-items: center; justify-content: center;
}
.tesla-coil::before, .tesla-coil::after {
  content: '';
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(51,153,255,.2);
  animation: tesla-pulse 2s ease-in-out infinite;
}
.tesla-coil::before { inset: -20px; animation-delay: 0s; }
.tesla-coil::after  { inset: -40px; animation-delay: .5s; }
@keyframes tesla-pulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50%       { opacity: .15; transform: scale(1.05); }
}
.tesla-inner {
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(51,153,255,.3), transparent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  animation: tesla-spin 8s linear infinite;
}
@keyframes tesla-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.tesla-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; }
.tesla-spec-item {
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(51,153,255,.22);
  background: rgba(51,153,255,.04);
}
.tesla-spec-val {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem; color: var(--tesla-a);
  margin-bottom: .3rem; line-height: 1;
}
.tesla-spec-lbl { font-size: .72rem; color: rgba(255,255,255,.5); line-height: 1.4; }

/* Winback brand block */
.winback-block {
  display: flex; align-items: center; gap: 2.5rem;
  padding: 2.2rem 2.5rem;
  border: 1px solid rgba(255,102,0,.22);
  background: rgba(255,102,0,.04);
  margin-top: 4rem;
}
.winback-logo-box {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #3d1a00, #200d00);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem; color: var(--tecar-a);
  letter-spacing: .1em; flex-shrink: 0;
  border: 1px solid rgba(255,102,0,.3);
}
.winback-text h4 {
  font-family: 'Cinzel', serif;
  font-size: .85rem; letter-spacing: .15em;
  color: var(--tecar-a); margin-bottom: .4rem;
}
.winback-text p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* Comparison table — Tecar/Tesla variants */
.comp-h.tecar-h { background: rgba(255,102,0,.08); color: var(--tecar-a); text-align: center; }
.comp-h.tesla-h { background: rgba(51,153,255,.08); color: var(--tesla-a); text-align: center; }
.comp-c.tecar-v { background: rgba(255,102,0,.03); color: rgba(255,102,0,.85); text-align: center; }
.comp-c.tesla-v { background: rgba(51,153,255,.03); color: rgba(51,153,255,.85); text-align: center; }

/* Effects grid (3-col cards) */
.effects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.effect-card {
  padding: 1.8rem;
  border: 1px solid;
}
.effect-card.tecar { border-color: rgba(255,102,0,.18); background: rgba(255,102,0,.03); }
.effect-card.tesla { border-color: rgba(51,153,255,.18); background: rgba(51,153,255,.04); }
.effect-card .effect-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.effect-card h4 {
  font-family: 'Cinzel', serif;
  font-size: .78rem; letter-spacing: .1em;
  margin-bottom: .6rem;
}
.effect-card.tecar h4 { color: var(--tecar-a); }
.effect-card.tesla h4 { color: var(--tesla-a); }
.effect-card p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* Diagram caption (reused above tecar/tesla diagrams) */
.diagram-caption {
  font-family: 'Share Tech Mono', monospace;
  font-size: .65rem; letter-spacing: .2em;
  text-align: center; margin-bottom: 1.5rem;
}
.diagram-caption.tecar { color: rgba(255,102,0,.6); }
.diagram-caption.tesla { color: rgba(51,153,255,.6); }

/* Mobile adjustments */
@media (max-width: 900px) {
  .modes-grid { grid-template-columns: 1fr; }
  .tesla-specs { grid-template-columns: 1fr; }
  .effects-grid { grid-template-columns: 1fr; }
  .winback-block { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2rem 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   ACADÉMIE
   ══════════════════════════════════════════════════════════════ */
.academy-founding {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 6rem;
  align-items: center;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(196,148,58,.2);
  position: relative; z-index: 2;
}
.academy-portal {
  margin-top: 3.5rem;
  padding: 2.5rem 3rem;
  border-left: 3px solid var(--gold);
  background: rgba(196,148,58,.06);
  position: relative; z-index: 2;
}
.academy-portal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: .5rem 0 .9rem;
}
.academy-portal-title em { color: var(--gold-light); font-style: italic; }
.academy-portal-desc {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
  max-width: 600px;
  margin-bottom: 1.8rem;
}
.academy-portal-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.academy-portal-url {
  font-size: .8rem;
  color: rgba(196,148,58,.55);
  letter-spacing: .04em;
}
@media (max-width: 560px) {
  .academy-portal { padding: 1.8rem 1.5rem; }
  .academy-portal-title { font-size: 1.4rem; }
  .academy-portal-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
/* Wenzhou partenariat */
.wenzhou-partenariat {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(196,148,58,.2);
  position: relative; z-index: 2;
}
.wenzhou-photo {
  margin: 0 0 3.5rem;
  position: relative;
}
.wenzhou-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.wenzhou-photo figcaption {
  padding: .6rem 1rem;
  font-size: .75rem;
  color: rgba(245,240,232,.45);
  border-left: 2px solid rgba(196,148,58,.3);
  margin-top: .8rem;
  font-style: italic;
}
.wenzhou-partenariat-body {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 5rem;
  align-items: start;
}
.wenzhou-ref {
  display: inline-block;
  margin-top: 1.8rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(196,148,58,.5);
  border: 1px solid rgba(196,148,58,.2);
  padding: .4rem .9rem;
}
.wenzhou-card-etablissement {
  border: 1px solid rgba(196,148,58,.3);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
}
.wenzhou-etab-flag { font-size: 2rem; margin-bottom: .8rem; }
.wenzhou-etab-name {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--gold-light);
  margin-bottom: .5rem;
}
.wenzhou-etab-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: .6rem;
}
.wenzhou-etab-loc {
  font-size: .8rem;
  color: rgba(245,240,232,.45);
  line-height: 1.5;
}
.wenzhou-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.wenzhou-tag {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
  border: 1px solid rgba(196,148,58,.25);
  padding: .3rem .8rem;
}
@media (max-width: 900px) {
  .wenzhou-partenariat-body { grid-template-columns: 1fr; gap: 3rem; }
  .wenzhou-photo img { height: 260px; }
}

.academy-pays {
  display: flex; gap: 1.5rem;
  margin-top: 2.5rem;
}
.academy-pays-item {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(196,148,58,.2);
  padding: 1rem 1.5rem;
  flex: 1;
  transition: background .3s;
}
.academy-pays-item:hover { background: rgba(255,255,255,.12); }
.academy-pays-flag { font-size: 1.8rem; flex-shrink: 0; }
.academy-pays-nom {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .2rem;
}
.academy-pays-detail { font-size: .76rem; color: rgba(255,255,255,.55); line-height: 1.4; }
.academy-divider { width: 100%; height: 1px; background: rgba(196,148,58,.2); }

#academie {
  background: var(--jade);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#academie::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(196,148,58,.15) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent, transparent 60px,
      rgba(255,255,255,.02) 60px, rgba(255,255,255,.02) 61px
    );
}
.academie-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: start;
  position: relative; z-index: 2;
}
#academie .section-title { color: var(--white); }
#academie .section-title em { color: var(--gold-light); }
#academie .divider { background: var(--gold); }
#academie .section-eyebrow {
  color: var(--gold-light);
  font-size: .88rem;
  letter-spacing: .25em;
}
.academie-intro { font-size: 1rem; line-height: 1.9; color: rgba(255,255,255,.8); }
.academie-stat-row { display: flex; gap: 3rem; margin-top: 3rem; }
.academie-stat { text-align: center; }
.academie-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.academie-stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.team-member {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(196,148,58,.25);
  padding: 2rem;
  transition: background .3s, transform .3s;
}
.team-member:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }
.member-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), rgba(196,148,58,.5));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--jade);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.team-member h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--white); margin-bottom: .3rem; }
.team-member .role { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: .8rem; }
.team-member p { font-size: .83rem; line-height: 1.65; color: rgba(255,255,255,.65); }

/* ══════════════════════════════════════════════════════════════
   SPORT DE L'EAU
   ══════════════════════════════════════════════════════════════ */
#sport { background: var(--dark); }

.sport-layout {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 5rem;
  align-items: center;
}
.sport-disciplines { display: flex; flex-direction: column; gap: 1rem; }
.discipline-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid rgba(196,148,58,.2);
  transition: background .3s, border-color .3s;
  cursor: default;
}
.discipline-item:hover { background: var(--mist); border-color: var(--gold); }
.disc-icon { font-size: 1.6rem; flex-shrink: 0; }
.disc-info h4 { font-family: 'Cinzel', serif; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold2); margin-bottom: .25rem; }
.disc-info p { font-size: .83rem; color: rgba(245,240,232,.6); line-height: 1.5; }
.sport-text p { font-size: 1.02rem; line-height: 1.9; color: rgba(245,240,232,.68); margin-bottom: 1.2rem; }
.sport-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--green);
  border: 1px solid rgba(196,148,58,.35);
  color: var(--white);
  padding: .8rem 1.6rem;
  margin-top: 1rem;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   CONSULTATION / RDV
   ══════════════════════════════════════════════════════════════ */
#consultation { background: var(--dark-bg); }

.consult-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: start; }
.consult-info p { font-size: 1rem; line-height: 1.85; color: rgba(245,240,232,.68); margin-bottom: 2rem; }
.consult-details { display: flex; flex-direction: column; gap: 1.2rem; }
.detail-row { display: flex; align-items: flex-start; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(196,148,58,.2); }
.detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.detail-label { font-family: 'Cinzel', serif; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.detail-value { font-size: .9rem; color: rgba(245,240,232,.72); line-height: 1.5; }

/* RDV form */
.rdv-form { background: var(--panel); border: 1px solid rgba(196,148,58,.25); padding: 3.5rem; }
.rdv-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold2); margin-bottom: .5rem; }
.rdv-form .sub { font-size: .85rem; color: rgba(245,240,232,.5); margin-bottom: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold2); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(196,148,58,.4);
  background: rgba(15,35,24,.6);
  padding: .85rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  border: none;
  padding: 1.1rem;
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow .3s;
  margin-top: .5rem;
}
.form-submit:hover { box-shadow: 0 10px 36px rgba(196,148,58,.4); }

/* Lieux */
.lieux-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.lieu-card { padding: 3rem; border: 1px solid rgba(196,148,58,.25); background: var(--panel); transition: transform .3s, box-shadow .3s; }
.lieu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px var(--shadow); }
.lieu-hopital { border-top: 4px solid var(--mid); }
.lieu-cabinet { border-top: 4px solid var(--gold); }
.lieu-badge { display: inline-block; font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; background: rgba(44,122,75,.2); color: var(--light); padding: .35rem .9rem; margin-bottom: 1.4rem; }
.lieu-badge-gold { background: rgba(196,148,58,.15); color: var(--gold2); }
.lieu-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: .3rem; }
.lieu-spec { font-family: 'Cinzel', serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.8rem; }
.lieu-adresse { display: flex; gap: .8rem; font-size: .9rem; color: rgba(245,240,232,.65); line-height: 1.6; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(196,148,58,.2); }
.horaire-titre { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold2); margin-bottom: 1rem; }
.horaire-ligne { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; border-bottom: 1px solid rgba(196,148,58,.15); }
.horaire-jours { font-size: .88rem; color: rgba(245,240,232,.72); }
.horaire-temps { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--white); }
.horaire-note { font-size: .75rem; color: rgba(245,240,232,.45); margin-top: .8rem; font-style: italic; }
.lieu-alerte { display: flex; align-items: flex-start; gap: .8rem; margin-top: 1.5rem; padding: 1rem 1.2rem; background: rgba(196,148,58,.1); border: 1px solid rgba(196,148,58,.35); font-size: .83rem; line-height: 1.55; color: rgba(232,184,75,.85); }
.lieu-alerte strong { color: var(--gold2); }

/* Grenoble formation bloc */
.grenoble-bloc {
  border: 1px solid rgba(196,148,58,.25);
  border-top: 4px solid var(--gold2);
  background: var(--panel);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}
.grenoble-bloc-header {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(196,148,58,.15);
}
.grenoble-bloc-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,232,.5);
}
.grenoble-bloc-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.grenoble-bloc-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: .3rem;
}
.grenoble-bloc-left h3 span {
  font-size: 1rem;
  color: rgba(245,240,232,.45);
  font-weight: 300;
}
.grenoble-bloc-name {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.grenoble-bloc-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(245,240,232,.62);
  max-width: 520px;
}
.grenoble-bloc-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}
.grenoble-contact-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(196,148,58,.2);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.grenoble-contact-item:hover {
  border-color: rgba(196,148,58,.5);
  background: rgba(196,148,58,.06);
}
.grenoble-contact-label {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,232,.45);
}
.grenoble-contact-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold2);
}
@media (max-width: 768px) {
  .grenoble-bloc { padding: 1.8rem 1.5rem; }
  .grenoble-bloc-body { grid-template-columns: 1fr; gap: 2rem; }
  .grenoble-bloc-right { min-width: unset; }
}

/* RDV block */
.rdv-block { background: var(--panel); border: 1px solid rgba(196,148,58,.2); padding: 3.5rem 4rem; display: flex; gap: 4rem; align-items: center; margin-top: 1rem; }
.rdv-block-left { flex: 1; min-width: 260px; }
.rdv-options { display: flex; flex-direction: column; gap: 1.2rem; flex: 1.2; }
.rdv-option { display: flex; align-items: center; gap: 1.5rem; padding: 1.6rem 2rem; border: 1px solid rgba(196,148,58,.25); text-decoration: none; transition: background .3s, border-color .3s, transform .2s; }
.rdv-option:hover { transform: translateX(4px); }
.rdv-option-main { background: var(--green); border-color: var(--mid); }
.rdv-option-main:hover { background: var(--mid); }
.rdv-option-sms { background: rgba(255,255,255,.05); }
.rdv-option-sms:hover { background: rgba(196,148,58,.15); border-color: var(--gold); }
.rdv-option-icon { font-size: 1.5rem; flex-shrink: 0; }
.rdv-option-title { font-family: 'Cinzel', serif; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: .2rem; }
.rdv-option-sub { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: .25rem; }
.rdv-option-url { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--gold-light); font-style: italic; }
.rdv-option-arrow { margin-left: auto; font-size: 1.2rem; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════════════════════════════════
   TÉMOIGNAGES
   ══════════════════════════════════════════════════════════════ */
#temoignages { background: var(--dark-bg); color: var(--white); position: relative; overflow: hidden; }
#temoignages::before {
  content: '❝';
  position: absolute;
  top: 2rem; left: 3rem;
  font-size: 20rem;
  font-family: Georgia, serif;
  color: rgba(196,148,58,.06);
  line-height: 1;
}
.temoignages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; position: relative; z-index: 2; }
.temoignage { padding: 2.5rem; border: 1px solid rgba(196,148,58,.2); background: rgba(255,255,255,.04); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.temoignage p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; line-height: 1.75; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.temoignage-author { font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
.temoignage-context { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: .2rem; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
footer {
  background: #0a1a11;
  border-top: 1px solid rgba(196,148,58,.15);
  color: rgba(245,240,232,.5);
  padding: 5rem 0 2rem;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand h2 { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold-light); letter-spacing: .15em; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; }
footer h4 { font-family: 'Cinzel', serif; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: .7rem; }
footer ul a { text-decoration: none; color: rgba(255,255,255,.5); font-size: .85rem; transition: color .2s; }
footer ul a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-jade-line { width: 100%; height: 3px; background: linear-gradient(90deg, var(--jade), var(--gold), var(--jade)); margin-bottom: 5rem; }

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  body.nav-locked { overflow: hidden; }

  nav {
    padding: .75rem 1rem;
    align-items: center;
  }
  .nav-logo {
    max-width: calc(100vw - 76px);
    font-size: 1rem;
    letter-spacing: .22em;
    line-height: 1.35;
  }
  .nav-logo .nav-logo-full { display: none; }
  .nav-logo .nav-logo-short { display: inline; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 58px;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .55rem;
    background: rgba(15,35,24,.97);
    border: 1px solid rgba(196,148,58,.35);
    box-shadow: 0 20px 70px rgba(0,0,0,.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav-menu li { width: 100%; }
  .nav-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: .88rem 1rem;
    border-bottom: 1px solid rgba(196,148,58,.18);
    opacity: 1;
    font-size: .78rem;
    letter-spacing: .14em;
  }
  .nav-menu li:last-child a { border-bottom: 0; }
  .nav-cta {
    justify-content: center !important;
    margin-top: .35rem;
    padding: 1rem !important;
  }

  .nav-menu .has-dropdown { position: relative; }
  .nav-menu .has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: .88rem 1rem;
    cursor: pointer;
    gap: 0;
  }
  .nav-menu .has-dropdown > a::after {
    display: inline-block;
    margin-left: auto;
    transition: transform .2s ease;
  }
  .has-dropdown.dropdown-open > a::after {
    transform: translateY(0) rotate(-135deg);
  }

  .nav-menu .has-dropdown .nav-dropdown,
  .nav-menu .has-dropdown:hover .nav-dropdown,
  .nav-menu .has-dropdown:focus-within .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: var(--dark-bg);
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-menu .has-dropdown.dropdown-open .nav-dropdown {
    max-height: 500px;
  }
  .nav-dropdown a {
    display: block;
    width: 100%;
    min-height: 0;
    padding: .95rem 1rem .95rem 2.2rem;
    font-size: .72rem;
    letter-spacing: .14em;
    color: rgba(255,255,255,.88);
    opacity: 1;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-transform: uppercase;
  }
  .nav-dropdown li:last-child a { border-bottom: 0; }
  .nav-dropdown a.nav-dropdown-all {
    color: var(--gold-light);
    font-weight: 600;
    background: rgba(196,148,58,.08);
  }

  section { padding: 4.5rem 0; }
  .container { padding: 0 1.15rem; }
  #hero { grid-template-columns: 1fr; }
  .hero-visual {
    order: 2;
    min-height: 0;
  }
  .hero-visual .water-ripple,
  .hero-visual .hero-emblem { display: none; }
  .hero-visual-content {
    position: static;
    padding: 0;
  }
  .hero-doctor-card { max-width: none; padding: 1.5rem 1.4rem; }
  .hero-content {
    justify-content: flex-start;
    min-height: auto;
    padding: 5.35rem 1.25rem 3.25rem;
  }
  .hero-tag,
  .hero-title,
  .hero-sub,
  .hero-actions {
    opacity: 1;
    animation: none;
  }
  .hero-tag {
    font-size: .62rem;
    letter-spacing: .28em;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: clamp(2.75rem, 11vw, 3.18rem);
    line-height: 1.06;
    margin-bottom: 1.15rem;
  }
  .hero-title br { display: none; }
  .hero-title span {
    display: inline;
    font-size: inherit;
    font-weight: 300;
  }
  .hero-sub { max-width: none; font-size: .94rem; line-height: 1.7; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 1.6rem; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .btn-primary { padding: .95rem 1.2rem; }
  .btn-secondary { padding: .6rem 0; }
  .philosophy-grid,
  .sport-layout,
  .consult-grid,
  .academie-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-pillars,
  .team-grid { grid-template-columns: 1fr; }
  .soins-grid { grid-template-columns: 1fr; }
  .soins-header { display: block; margin-bottom: 2.5rem; }
  .techno-banner { align-items: flex-start; gap: 1.4rem; padding: 1.4rem; }
  .techno-banner-label { white-space: normal; line-height: 1.5; }
  .techno-items { width: 100%; gap: 1rem; }
  .techno-sep { display: none; }
  .techno-item { width: 100%; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Tech split responsive */
  .tech-split { grid-template-columns: 1fr; }
  .tech-half { min-height: auto; padding: 4.5rem 1.25rem 3rem; }
  .page-badge { display: none; }
  .tech-hero-title { font-size: clamp(2.45rem, 11vw, 3.05rem); line-height: 1.08; }
  .tech-hero-sub { max-width: none; line-height: 1.68; }
  .tech-hero-cta { width: 100%; justify-content: center; text-align: center; }
  .tech-section { padding: 5rem 0; }
  .intro-grid,
  .functions-grid { grid-template-columns: 1fr; gap: 2rem; }
  .brand-card { flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.3rem; }
  .spec-row { display: grid; grid-template-columns: 1fr 1fr; }
  .laser-diagram-box,
  .cryo-diagram-box { padding: 1.4rem; }
  .indications-grid { grid-template-columns: 1fr 1fr; }
  .protocol-phases { grid-template-columns: 1fr 1fr; }
  .phase:nth-child(2) { border-right: none; }
  .phase-arrow { display: none; }
  .comp-grid { grid-template-columns: 1fr; }
  .comp-h.lbl { display: none; }
  .comparison { padding: 2rem 1.2rem; overflow: hidden; }
  .comparison h3 { font-size: 1.75rem; }
  .synergie { padding: 3rem 1.3rem; }

  .academy-founding { grid-template-columns: 1fr; gap: 3rem; }
  .academy-pays,
  .academie-stat-row { flex-direction: column; gap: 1rem; }
  .rdv-block { flex-direction: column; padding: 2.5rem 2rem; gap: 2rem; }
  .lieux-grid { grid-template-columns: 1fr; }
  .rdv-option { padding: 1.3rem; gap: 1rem; align-items: flex-start; }
  .rdv-option-arrow { display: none; }
}

@media (max-width: 560px) {
  .section-title { font-size: clamp(2.25rem, 11vw, 3rem); }
  .section-eyebrow { letter-spacing: .24em; line-height: 1.6; }
  .pillar,
  .soin-card,
  .team-member,
  .lieu-card,
  .temoignage { padding: 1.5rem; }
  .doctorat-item,
  .discipline-item,
  .rdv-option { flex-direction: column; }
  .indications-grid,
  .protocol-phases,
  .spec-row,
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rdv-block { padding: 2rem 1.25rem; }
  .horaire-ligne { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-bottom div { flex-direction: column; gap: .6rem !important; }
}

/* ── BANDEAU ABSENCE (au-dessus de la nav) ── */
.absence-banner {
  background: linear-gradient(135deg, #0f2318 0%, #2a1810 100%);
  border-bottom: 1px solid rgba(196, 148, 58, .35);
  color: var(--gold-light);
  padding: .65rem 1rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: .85rem;
  letter-spacing: .02em;
  position: relative;
  z-index: 200;
}
.absence-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.absence-banner-icon {
  font-size: 1.05rem;
  filter: drop-shadow(0 0 6px rgba(196, 148, 58, .4));
}
.absence-banner-text strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
}
@media (max-width: 560px) {
  .absence-banner { font-size: .78rem; padding: .55rem .75rem; line-height: 1.5; }
  .absence-banner-inner { gap: .5rem; }
}

/* ── ENCADRÉ ABSENCE (section Consultation) ── */
.absence-notice {
  max-width: 820px;
  margin: 0 auto 4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(135deg, rgba(196, 148, 58, .12), rgba(232, 213, 176, .06));
  border: 1px solid rgba(196, 148, 58, .35);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(26, 26, 46, .06);
}
.absence-notice-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .2rem;
}
.absence-notice-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 .5rem;
  line-height: 1.3;
}
.absence-notice-body p {
  font-size: .92rem;
  line-height: 1.7;
  color: rgba(245,240,232,.7);
  margin: 0;
}
.absence-notice-body strong {
  color: var(--gold2);
  font-weight: 600;
}
.absence-list {
  margin: .6rem 0 .8rem 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .92rem;
  color: rgba(245,240,232,.7);
  line-height: 1.6;
}
.absence-list li {
  list-style: disc;
}
.absence-list li strong {
  color: var(--gold2);
  font-weight: 600;
}
@media (max-width: 560px) {
  .absence-notice { flex-direction: column; padding: 1.4rem 1.3rem; gap: .9rem; }
  .absence-notice-icon { font-size: 1.5rem; }
  .absence-notice-body h4 { font-size: 1.2rem; }
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS PROTOCOLES & MATRICE (BMTC-protocoles intégré)
   ══════════════════════════════════════════════════════════════ */

/* ── Couleurs tech complémentaires (les 5 piliers) ── */
:root {
  --tecar-c:    #ff6600;
  --tesla-c:    #3399ff;
  --cryo-rc:    #ff3333;
  --laser-c2:   #00ff9d;
  --mtc-c:      #c4943a;
}

/* ── SECTION SYNERGIE / PROTOCOLES ── */
#protocoles {
  background: linear-gradient(180deg, #0a1a11 0%, #0f2318 100%);
  color: var(--white);
}
#protocoles .section-eyebrow,
#matrice .section-eyebrow {
  color: rgba(196,148,58,.6);
}
#protocoles .section-title,
#matrice .section-title {
  color: var(--white);
}
#protocoles .divider,
#matrice .divider {
  background: var(--gold);
}

.synergy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}

/* Pentagon synergique */
.pentagon {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}
.penta-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,148,58,.25), rgba(196,148,58,.05));
  border: 1px solid rgba(196,148,58,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: .55rem; letter-spacing: .08em;
  color: var(--gold); text-align: center; line-height: 1.4;
  z-index: 5;
}
.penta-node {
  position: absolute;
  width: 68px; height: 68px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px solid;
  font-family: 'Share Tech Mono', monospace;
  font-size: .5rem; letter-spacing: .06em;
  text-align: center; line-height: 1.4;
  transition: transform .3s;
  z-index: 4;
}
.penta-node:hover { transform: scale(1.15); }
.penta-node-icon { font-size: 1.1rem; margin-bottom: .2rem; }
.node-tecar { top: 6px;   left: 50%; transform: translateX(-50%); border-color: var(--tecar-c); color: var(--tecar-c); background: rgba(255,102,0,.08); }
.node-tesla { top: 95px;  right: 5px;                              border-color: var(--tesla-c); color: var(--tesla-c); background: rgba(51,153,255,.08); }
.node-cryo  { top: 240px; right: 38px;                             border-color: var(--cryo-rc); color: var(--cryo-rc); background: rgba(255,51,51,.08); }
.node-laser { top: 240px; left: 38px;                              border-color: var(--laser-c2); color: var(--laser-c2); background: rgba(0,255,157,.08); }
.node-mtc   { top: 95px;  left: 5px;                               border-color: var(--mtc-c); color: var(--mtc-c); background: rgba(196,148,58,.08); }
.penta-lines { position: absolute; inset: 0; pointer-events: none; }
.penta-lines line { stroke-width: 1; animation: line-pulse 3s ease-in-out infinite; }
@keyframes line-pulse { 0%,100% { opacity: .25 } 50% { opacity: .7 } }

.synergy-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.85); line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.8rem;
  margin-bottom: 2.5rem;
  background: rgba(196,148,58,.04);
}

.protocoles-lead { font-size: 1rem; line-height: 1.9; color: rgba(255,255,255,.65); margin-bottom: 1.2rem; }
.protocoles-lead strong { color: var(--gold); }

.validation-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.val-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196,148,58,.15);
  background: rgba(196,148,58,.03);
  text-align: center;
  transition: border-color .3s, background .3s;
}
.val-card:hover { border-color: rgba(196,148,58,.4); background: rgba(196,148,58,.06); }
.val-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 300; line-height: 1;
  color: var(--gold); margin-bottom: .4rem;
}
.val-label { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ── Protocoles cards ── */
.protocols-list { display: flex; flex-direction: column; gap: 2.5rem; margin-top: 5rem; }
.proto-card {
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s;
}
.proto-card:hover { transform: translateX(6px); border-color: rgba(196,148,58,.25); background: rgba(196,148,58,.03); }
.proto-header {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.proto-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem; letter-spacing: .2em;
  color: rgba(255,255,255,.2); flex-shrink: 0;
}
.proto-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--white);
  flex: 1;
}
.proto-duration {
  font-family: 'Share Tech Mono', monospace;
  font-size: .62rem; letter-spacing: .1em;
  color: rgba(196,148,58,.6);
  white-space: nowrap;
}
.proto-body { padding: 1.5rem 2rem 2rem; }
.proto-body p { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; }

.tech-sequence {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin-top: 1rem;
}
.seq-step {
  display: flex; align-items: center; gap: .4rem;
  padding: .35rem .8rem;
  border: 1px solid; border-radius: 2px;
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem; letter-spacing: .08em;
}
.seq-step.tecar { border-color: rgba(255,102,0,.4);  color: var(--tecar-c); background: rgba(255,102,0,.06); }
.seq-step.tesla { border-color: rgba(51,153,255,.4); color: var(--tesla-c); background: rgba(51,153,255,.06); }
.seq-step.cryo  { border-color: rgba(255,51,51,.4);  color: var(--cryo-rc); background: rgba(255,51,51,.06); }
.seq-step.laser { border-color: rgba(0,255,157,.4);  color: var(--laser-c2); background: rgba(0,255,157,.06); }
.seq-step.mtc   { border-color: rgba(196,148,58,.4);color: var(--mtc-c); background: rgba(196,148,58,.06); }
.seq-arrow { color: rgba(255,255,255,.2); font-size: .7rem; }
.seq-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dot-tecar { background: var(--tecar-c); }
.dot-tesla { background: var(--tesla-c); }
.dot-cryo  { background: var(--cryo-rc); }
.dot-laser { background: var(--laser-c2); }
.dot-mtc   { background: var(--mtc-c); }

/* ── MATRICE PATHOLOGIES × TECH ── */
#matrice {
  background: #0a1a11;
  color: var(--white);
}
.matrice-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
}
.matrice-table th {
  font-family: 'Cinzel', serif; font-size: .62rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .8rem 1rem; border: 1px solid rgba(255,255,255,.06);
  white-space: nowrap;
}
.matrice-table th.path-h  { color: rgba(255,255,255,.35); text-align: left; }
.matrice-table th.tecar-h { color: var(--tecar-c); background: rgba(255,102,0,.06); }
.matrice-table th.tesla-h { color: var(--tesla-c); background: rgba(51,153,255,.06); }
.matrice-table th.cryo-h  { color: var(--cryo-rc); background: rgba(255,51,51,.06); }
.matrice-table th.laser-h { color: var(--laser-c2); background: rgba(0,255,157,.06); }
.matrice-table th.mtc-h   { color: var(--mtc-c); background: rgba(196,148,58,.06); }
.matrice-table td {
  padding: .75rem 1rem; border: 1px solid rgba(255,255,255,.04);
  font-size: .82rem;
}
.matrice-table td.path-label { color: rgba(255,255,255,.65); font-size: .85rem; }
.matrice-table tr:hover td { background: rgba(255,255,255,.02); }
.matrice-table td.check { text-align: center; }
.chk-tecar { color: var(--tecar-c); font-size: 1rem; }
.chk-tesla { color: var(--tesla-c); font-size: 1rem; }
.chk-cryo  { color: var(--cryo-rc); font-size: 1rem; }
.chk-laser { color: var(--laser-c2); font-size: 1rem; }
.chk-mtc   { color: var(--mtc-c); font-size: 1rem; }
.chk-empty { color: rgba(255,255,255,.1); font-size: .7rem; }

/* Responsive */
@media (max-width: 900px) {
  .synergy-grid { grid-template-columns: 1fr; gap: 3rem; }
  .validation-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .proto-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .pentagon { transform: scale(.85); }
}

/* ══════════════════════════════════════════════════════════════
   PAGES SATELLITES (header de page, après nav)
   ══════════════════════════════════════════════════════════════ */
.page-header {
  padding: 9rem 0 3rem;
  text-align: center;
  background: radial-gradient(ellipse 120% 140% at 50% -20%, rgba(26,77,46,.8) 0%, var(--dark) 75%);
  border-bottom: 1px solid rgba(196, 148, 58, .15);
}
.page-header .section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 0 auto 1.5rem;
  max-width: 900px;
}
.page-title em { font-style: italic; color: var(--gold2); }
.page-header .divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
@media (max-width: 600px) {
  .page-header { padding: 7rem 0 2rem; }
}

/* ══════════════════════════════════════════════════════════════
   SECTION #EXCLUSIF — Techniques propres à la BMTC
   ══════════════════════════════════════════════════════════════ */
#specialites {
  background: linear-gradient(180deg, #0a1a11 0%, #0f2318 100%);
  color: var(--white);
  padding: 8rem 0;
}
#specialites .section-eyebrow { color: rgba(196,148,58,.6); }
#specialites .section-title   { color: var(--white); }

.anti-douleur-banner {
  margin-bottom: 4rem;
}
.anti-douleur-banner-inner {
  border: 1px solid rgba(196,148,58,.3);
  border-left: 4px solid var(--gold);
  background: rgba(196,148,58,.05);
  padding: 2.5rem 3rem;
}
.anti-douleur-banner-label {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,148,58,.6);
  margin-bottom: .8rem;
}
.anti-douleur-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.anti-douleur-banner-title em { color: var(--gold-light); font-style: italic; }
.anti-douleur-banner-desc {
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(245,240,232,.68);
  max-width: 780px;
  margin-bottom: 1.5rem;
}
.anti-douleur-banner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.anti-douleur-banner-tags span {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,240,232,.55);
  border: 1px solid rgba(196,148,58,.2);
  padding: .3rem .85rem;
}
@media (max-width: 560px) {
  .anti-douleur-banner-inner { padding: 1.6rem 1.4rem; }
  .anti-douleur-banner-title { font-size: 1.5rem; }
}

.exclusif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.exclusif-card {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid;
  transition: transform .3s, border-color .3s, background .3s;
}
.exclusif-card:hover { transform: translateY(-4px); }
.exclusif-card--gold { border-color: rgba(196,148,58,.3); background: rgba(196,148,58,.03); }
.exclusif-card--gold:hover { border-color: rgba(196,148,58,.5); background: rgba(196,148,58,.06); }
.exclusif-card--jade { border-color: rgba(76,175,116,.25); background: rgba(26,77,46,.04); }
.exclusif-card--jade:hover { border-color: rgba(76,175,116,.45); background: rgba(76,175,116,.08); }

.exclusif-card-badge {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: .6rem; letter-spacing: .2em;
  color: rgba(196,148,58,.4);
}
.exclusif-card--jade .exclusif-card-badge { color: rgba(76,175,116,.5); }

.exclusif-card-icon { font-size: 2rem; margin-bottom: 1.5rem; }

.exclusif-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.exclusif-card--gold h3 em { font-style: italic; color: var(--gold); }
.exclusif-card--jade h3 em { font-style: italic; color: var(--jade-light); }

.exclusif-divider { width: 40px; height: 1px; margin-bottom: 1.5rem; }
.exclusif-card--gold .exclusif-divider { background: var(--gold); }
.exclusif-card--jade .exclusif-divider { background: var(--jade-light); }

.exclusif-card p {
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(255,255,255,.65);
  margin-bottom: 1.2rem;
}
.exclusif-card--gold p strong { color: var(--gold-light); }
.exclusif-card--jade p strong { color: var(--jade-light); }

.exclusif-list {
  display: flex; flex-direction: column;
  gap: .8rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}
.exclusif-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.exclusif-bullet {
  flex-shrink: 0;
  font-size: .85rem;
}
.exclusif-card--gold .exclusif-bullet { color: var(--gold); }
.exclusif-card--jade .exclusif-bullet { color: var(--jade-light); }

/* Citation finale */
.exclusif-quote {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
}
.exclusif-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 1rem;
}
.exclusif-quote-author {
  font-family: 'Cinzel', serif !important;
  font-size: .72rem !important;
  font-style: normal !important;
  letter-spacing: .15em;
  color: var(--gold) !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  #specialites { padding: 5rem 0; }
  .exclusif-grid { grid-template-columns: 1fr; gap: 2rem; }
  .exclusif-card { padding: 2.5rem; }
  .exclusif-card h3 { font-size: 1.6rem; }
  .exclusif-quote { margin-top: 3rem; padding: 2rem; }
  .exclusif-quote p { font-size: 1.15rem; }
}

/* ══════════════════════════════════════════════════════════════
   SPLASH (charte BMTCA)
   ══════════════════════════════════════════════════════════════ */
@keyframes dragonFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}
@keyframes ripple {
  0%   { transform: scale(.8); opacity: .6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes textReveal {
  from { opacity: 0; letter-spacing: 12px; transform: translateY(10px); }
  to   { opacity: 1; letter-spacing: 6px; transform: none; }
}
@keyframes goldLine {
  from { width: 0; }
  to   { width: 180px; }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
@keyframes splashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 148, 58, .4); }
  50%      { box-shadow: 0 0 0 14px rgba(196, 148, 58, 0); }
}

#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(ellipse 120% 120% at 50% -10%, rgba(26, 77, 46, .8) 0%, var(--dark) 60%) var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 100px;
  transition: opacity .8s ease, transform .8s ease;
}
@media (max-width: 600px) {
  #splash { padding-bottom: 40px !important; }
  .splash-info { margin-bottom: 16px !important; }
  .splash-footer { bottom: 8px !important; }
}
#splash.hiding {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

/* Ripple rings */
.splash-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.splash-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(196, 148, 58, .08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 4s ease-out infinite;
}
.splash-ring:nth-child(2) { animation-delay: 1.3s; }
.splash-ring:nth-child(3) { animation-delay: 2.6s; }

/* Dragon logo */
.splash-dragon {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
  animation: dragonFloat 5s ease-in-out infinite;
}
.dragon-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(44, 122, 75, .6)) drop-shadow(0 0 40px rgba(196, 148, 58, .2));
}
.dragon-chars-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}
.dragon-chi-over {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .7), 0 0 20px rgba(196, 148, 58, .5);
  display: block;
}
.dragon-wa-over {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: rgba(196, 148, 58, .85);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
  display: block;
  margin-top: 2px;
}

/* Text */
.splash-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: rgba(196, 148, 58, .6);
  margin-bottom: 14px;
  animation: fadeSlideUp .8s .4s ease both;
  position: relative;
  z-index: 2;
}
.splash-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 6vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
  animation: textReveal .9s .6s ease both;
  position: relative;
  z-index: 2;
  letter-spacing: 4px;
}
.splash-title2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(16px, 3.5vw, 28px);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 8px;
  animation: fadeSlideUp .8s .85s ease both;
  position: relative;
  z-index: 2;
}
.splash-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-style: italic;
  color: rgba(245, 240, 232, .55);
  letter-spacing: 2px;
  margin-bottom: 8px;
  animation: fadeSlideUp .8s 1s ease both;
  position: relative;
  z-index: 2;
}

/* Gold divider */
.splash-line-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  animation: fadeSlideUp .8s 1.1s ease both;
  position: relative;
  z-index: 2;
}
.splash-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: goldLine 1.2s 1.2s ease both;
  width: 0;
}
.splash-diamond {
  color: var(--gold);
  font-size: 8px;
  animation: fadeSlideUp .5s 1.4s ease both;
  opacity: 0;
  animation-fill-mode: both;
}

/* Subtitle info */
.splash-info {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: rgba(245, 240, 232, .35);
  letter-spacing: 3px;
  margin-bottom: 40px;
  animation: fadeSlideUp .8s 1.3s ease both;
  position: relative;
  z-index: 2;
}

/* CTA button */
.splash-cta {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s;
  animation: fadeSlideUp .8s 1.5s ease both, splashPulse 3s 2.5s infinite;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(196, 148, 58, .35);
}
.splash-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(196, 148, 58, .55);
}

/* Footer logos area */
.splash-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeSlideUp .8s 1.8s ease both;
  z-index: 2;
}
.splash-footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 3px;
  color: rgba(245, 240, 232, .25);
}
.splash-footer-partners {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.splash-partner {
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 2px;
  color: rgba(245, 240, 232, .2);
  padding: 3px 10px;
  border: 1px solid rgba(245, 240, 232, .08);
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════════
   PHOTOS DU CABINET (assets site-live)
   ══════════════════════════════════════════════════════════════ */

/* Hero — photo de consultation en fond du panneau visuel */
.hero-photo {
  position: absolute;
  inset: 0;
  background: url('assets/site-live/hero-consultation.jpg') center / cover no-repeat;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,35,24,.5) 0%, rgba(26,77,46,.35) 50%, rgba(15,35,24,.88) 100%);
}
@media (max-width: 900px) {
  .hero-photo {
    position: relative;
    height: 300px;
    background-position: 30% 22%;
  }
}

/* Portrait du Dr — page consultation */
.consult-intro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 5rem;
}
.consult-portrait {
  margin: 0;
}
.consult-portrait-frame {
  position: relative;
}
.consult-portrait img {
  display: block;
  width: 100%;
  border: 1px solid rgba(196,148,58,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative;
  z-index: 1;
}
.consult-portrait-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(196,148,58,.3);
  pointer-events: none;
}
.consult-portrait figcaption {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(196,148,58,.7);
  margin-top: 1.1rem;
  text-align: center;
}
@media (max-width: 900px) {
  .consult-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .consult-portrait { max-width: 380px; margin: 0 auto; }
}

/* Galerie « le cabinet en images » — page soins */
.cabinet-gallery-label {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(196,148,58,.6);
  margin-bottom: 1.2rem;
}
.cabinet-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.cabinet-shot { margin: 0; }
.cabinet-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(196,148,58,.3);
  filter: saturate(.9);
  transition: transform .4s, filter .4s, border-color .4s;
}
.cabinet-shot:hover img {
  transform: scale(1.02);
  filter: saturate(1);
  border-color: rgba(196,148,58,.55);
}
.cabinet-shot figcaption {
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,240,232,.45);
  margin-top: .7rem;
  text-align: center;
}
@media (max-width: 700px) {
  .cabinet-gallery { grid-template-columns: 1fr; }
  .cabinet-shot img { aspect-ratio: 16 / 9; }
}

/* Photo d'appareil dans une brand-card (technologies) */
.brand-photo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: auto;
  border: 1px solid rgba(0,255,157,.25);
  border-radius: 4px;
}
@media (max-width: 900px) {
  .brand-photo { margin-left: 0; }
}

/* ══════════════════════════════════════════════════════════════
   ACTUALITÉS
   ══════════════════════════════════════════════════════════════ */
#actualites { background: var(--dark-bg); }

.actu-card {
  background: var(--panel);
  border: 1px solid rgba(196,148,58,.2);
  padding: 3.5rem;
  margin-bottom: 3rem;
}
.actu-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  border: 1px solid rgba(196,148,58,.35);
  padding: .35rem .9rem;
  margin-bottom: 1.4rem;
}
.actu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.actu-title em { font-style: italic; color: var(--gold2); }
.actu-card h4 {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin: 1.8rem 0 .8rem;
}
.actu-card > p, .actu-text p {
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(245,240,232,.68);
  margin-bottom: 1rem;
}
.actu-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin: 1.2rem 0;
  padding: 0;
}
.actu-points li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: .9rem;
  color: rgba(245,240,232,.65);
  line-height: 1.6;
}
.actu-points li::before {
  content: '✦';
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.actu-points strong {
  color: var(--gold2);
  font-weight: 400;
}
.actu-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.actu-gallery figure { margin: 0; }
.actu-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(196,148,58,.3);
  filter: saturate(.92);
  transition: transform .4s, filter .4s;
}
.actu-gallery figure:hover img { transform: scale(1.02); filter: saturate(1); }
.actu-gallery figcaption {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,240,232,.45);
  margin-top: .6rem;
  text-align: center;
}

/* Split texte + visuel (protocole perte de poids) */
.actu-split {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 3.5rem;
  align-items: start;
}
.actu-visual { margin: 0; }
.actu-visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(196,148,58,.3);
}
.actu-visual figcaption {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,240,232,.45);
  margin-top: .6rem;
  text-align: center;
}
.actu-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.6rem 0;
  padding: 1.2rem 1.6rem;
  border: 1px solid rgba(196,148,58,.35);
  background: rgba(196,148,58,.07);
  width: fit-content;
}
.actu-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold2);
  line-height: 1;
}
.actu-price-label {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.6);
}

/* Encart « Nouveau » */
.actu-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.actu-new-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  background: var(--panel);
  border: 1px solid rgba(196,148,58,.25);
  border-left: 3px solid var(--gold);
  text-decoration: none;
  transition: background .3s, transform .2s;
}
.actu-new-card:hover { background: #1a3b26; transform: translateX(4px); }
.actu-new-icon { font-size: 1.6rem; flex-shrink: 0; }
.actu-new-title {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .25rem;
}
.actu-new-sub { font-size: .8rem; color: rgba(245,240,232,.55); line-height: 1.5; }
.actu-new-arrow { margin-left: auto; color: rgba(196,148,58,.6); font-size: 1.1rem; }

@media (max-width: 900px) {
  .actu-card { padding: 2rem 1.4rem; }
  .actu-title { font-size: 1.7rem; }
  .actu-gallery { grid-template-columns: 1fr; }
  .actu-split { grid-template-columns: 1fr; gap: 2rem; }
  .actu-visual { max-width: 340px; margin: 0 auto; }
  .actu-new-grid { grid-template-columns: 1fr; }
}

/* Actualités — raffinements mise en page */
.actu-card { padding: 4rem 4.5rem; }
.actu-title { font-size: 2.5rem; max-width: 30ch; }
.actu-card > p, .actu-text p { max-width: 74ch; }
.actu-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 1.4rem 0 2.4rem;
}
.actu-trio-item {
  background: rgba(15,35,24,.55);
  border: 1px solid rgba(196,148,58,.16);
  border-top: 2px solid var(--gold);
  padding: 1.5rem 1.6rem;
}
.actu-trio-item h5 {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .6rem;
}
.actu-trio-item .actu-trio-sub {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(245,240,232,.5);
  margin: -.35rem 0 .5rem;
}
.actu-trio-item p {
  font-size: .85rem;
  color: rgba(245,240,232,.62);
  line-height: 1.7;
  margin: 0;
}
.actu-card h4 { margin: 2.4rem 0 1rem; }
.actu-new-card { padding: 2.1rem 2.2rem; }
.actu-new-title { font-size: .92rem; }
.actu-new-sub { font-size: .85rem; }
.actu-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(245,240,232,.75) !important;
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(26,77,46,.25);
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .actu-card { padding: 2rem 1.4rem; }
  .actu-title { font-size: 1.7rem; }
  .actu-trio { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   BILAN ÉNERGÉTIQUE RÉINVENTÉ (repris de BMTCA)
   ══════════════════════════════════════════════════════════════ */
.section-bilan {
  background: linear-gradient(160deg, rgba(15, 35, 24, .98) 0%, rgba(5, 20, 30, .99) 50%, rgba(15, 35, 24, .98) 100%);
  border-top: 2px solid rgba(196, 148, 58, .3);
  border-bottom: 2px solid rgba(196, 148, 58, .3);
  position: relative;
  overflow: hidden;
}

.section-bilan::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 148, 58, .07) 0%, transparent 65%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(44, 122, 75, .08) 0%, transparent 60%);
}

.bilan-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media(max-width:900px) {
  .bilan-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bilan-badge-exclu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(196, 148, 58, .15), rgba(196, 148, 58, .05));
  border: 1px solid rgba(196, 148, 58, .4);
  border-radius: 60px;
  padding: 8px 22px;
  margin-bottom: 20px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
}

.bilan-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Tongue + Pulse visual */
.bilan-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.bilan-diagram {
  background: rgba(10, 25, 10, .7);
  border: 1px solid rgba(196, 148, 58, .2);
  border-radius: 14px;
  padding: 28px 24px;
  width: 100%;
  max-width: 340px;
  position: relative;
}

.bilan-diagram::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.bd-title {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bd-title::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Tongue SVG zones */
.tongue-svg {
  width: 120px;
  height: 140px;
  margin: 0 auto 16px;
  display: block;
}

.tongue-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.tongue-zone {
  background: rgba(26, 77, 46, .4);
  border: 1px solid rgba(196, 148, 58, .15);
  border-radius: 6px;
  padding: 7px 10px;
  text-align: center;
}

.tz-organ {
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}

.tz-desc {
  font-size: 10px;
  color: rgba(245, 240, 232, .55);
}

/* Pulse positions */
.pulse-diagram {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pulse-position {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 35, 24, .6);
  border: 1px solid rgba(196, 148, 58, .1);
  border-radius: 8px;
  padding: 10px 14px;
}

.pp-pos {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  min-width: 28px;
}

.pp-bar-wrap {
  flex: 1;
  height: 6px;
  background: rgba(196, 148, 58, .1);
  border-radius: 3px;
  overflow: hidden;
}

.pp-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.pp-organs {
  font-size: 11px;
  color: rgba(245, 240, 232, .65);
}

.pp-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  min-width: 32px;
  text-align: right;
}

/* Digital badge */
.digital-badge {
  background: linear-gradient(135deg, rgba(196, 148, 58, .12), rgba(26, 77, 46, .3));
  border: 1px solid rgba(196, 148, 58, .3);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.db-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.db-text {
  font-size: 12px;
  color: rgba(245, 240, 232, .75);
  line-height: 1.5;
}

.db-text strong {
  color: var(--gold);
}

/* Content */
.bilan-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.bilan-content h2 em {
  color: var(--gold);
  font-style: italic;
}

.bilan-content p {
  font-size: 15px;
  color: rgba(245, 240, 232, .68);
  line-height: 1.82;
  margin-bottom: 22px;
}

.bilan-innovations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.bilan-innov {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 8px;
  transition: border-color .3s;
}

.bilan-innov.langue {
  background: rgba(26, 77, 46, .2);
  border-left: 3px solid var(--gold);
}

.bilan-innov.pouls {
  background: rgba(10, 25, 60, .3);
  border-left: 3px solid #7ecfff;
}

.bilan-innov.digital {
  background: rgba(120, 60, 10, .15);
  border-left: 3px solid var(--gold2);
}

.bi-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bi-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}

.bi-body p {
  font-size: 13px;
  color: rgba(245, 240, 232, .6);
  line-height: 1.55;
  margin: 0;
}

.bi-body .bi-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 2px;
  background: rgba(196, 148, 58, .12);
  color: var(--gold);
  border: 1px solid rgba(196, 148, 58, .25);
  padding: 2px 8px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.pouls .bi-body .bi-tag {
  background: rgba(37, 99, 184, .15);
  color: #7ecfff;
  border-color: rgba(100, 180, 255, .25);
}

/* Intérêt box */
.bilan-interest {
  background: linear-gradient(135deg, rgba(196, 148, 58, .12), rgba(26, 77, 46, .2));
  border: 1px solid rgba(196, 148, 58, .35);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 28px;
}

.bi-interest-title {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.bi-interest-text {
  font-size: 14px;
  color: rgba(245, 240, 232, .8);
  line-height: 1.7;
  font-style: italic;
}

.bi-interest-text strong {
  color: var(--cream);
  font-style: normal;
}

/* CTA demand */
.bilan-demand-box {
  background: rgba(196, 148, 58, .08);
  border: 1px solid rgba(196, 148, 58, .3);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bdb-text {
  flex: 1;
  min-width: 200px;
}

.bdb-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.bdb-text p {
  font-size: 12px;
  color: rgba(245, 240, 232, .5);
  margin: 0;
}

