/* ==========================================================================
   Cabinet Orthodontie Dr Virginie Durieux - Draguignan
   shared.css - Tous les styles communs
   Réalisation : Seesmile
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   1. VARIABLES
   ========================================================================== */
:root {
  /* Palette identité Seesmile */
  --violet: #8389CF;          /* Couleur principale */
  --violet-dark: #6571BF;     /* Hover */
  --violet-darker: #424D95;   /* Texte sombre */
  --violet-light: #B0B5E0;    /* Tons soutenus */

  --rose: #D3BBE2;            /* Rose pâle - accent */
  --rose-light: #E5D5EE;      /* Rose pâle clair */
  --rose-pale: #F5F1F9;       /* Rose très clair - fonds */

  /* Alias rétro-compat (réutilisent les nouvelles valeurs) */
  --violet-pale: #F5F1F9;     /* alias rose-pale */
  --violet-fade: #FAF7FC;     /* alias rose pâle ultra-clair */

  --white: #FFFFFF;
  --cream: #FAFAFC;
  --light-gray: #F4F5FA;
  --border: #E8E9F2;
  --text: #2A2D52;
  --text-light: #6E7196;
  --text-soft: #9A9DBA;

  --accent: #C4A574;
  --gold-light: #E4D4A8;
  --google-blue: #4285F4;

  --shadow-xs: 0 1px 3px rgba(131, 137, 207, 0.06);
  --shadow-sm: 0 2px 8px rgba(131, 137, 207, 0.08);
  --shadow-md: 0 8px 24px rgba(131, 137, 207, 0.12);
  --shadow-lg: 0 16px 48px rgba(131, 137, 207, 0.18);
  --shadow-violet: 0 12px 32px rgba(131, 137, 207, 0.35);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 200ms ease;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1360px;
  --nav-height: 88px;
}

/* ==========================================================================
   2. RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video, iframe, svg { max-width: 100%; display: block; }
img { height: auto; }

a {
  color: var(--violet-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--violet-darker); }

button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ==========================================================================
   3. TYPOGRAPHIE
   Par défaut tout en Nunito (sans-serif). Pour mettre un mot en valeur
   dans un titre, utiliser <em>mot</em> qui passera en Cormorant italic.
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
}

h5 { font-size: 1.15rem; font-weight: 700; }
h6 { font-size: 1rem; font-weight: 700; }

/* Mots clés en valeur dans les titres : Cormorant Garamond italique */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em,
.section-title em, .hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--violet-dark);
}

p { margin: 0 0 1em 0; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; color: var(--text); }

em {
  font-style: italic;
  color: var(--violet-dark);
}

/* ==========================================================================
   4. LAYOUT - CONTAINERS & SECTIONS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

.section-bg-white { background: var(--white); }
.section-bg-cream { background: var(--cream); }
.section-bg-light { background: var(--light-gray); }
.section-bg-violet-pale { background: var(--violet-pale); }
.section-bg-violet-fade { background: var(--violet-fade); }

.section-bg-violet {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dark) 100%);
  color: var(--white);
}
.section-bg-violet h1, .section-bg-violet h2, .section-bg-violet h3,
.section-bg-violet h4, .section-bg-violet p, .section-bg-violet strong {
  color: var(--white);
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 680px;
}

/* ==========================================================================
   5. SECTION TAG
   ========================================================================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--violet-dark);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--violet);
}

.section-tag[style*="justify-content: center"]::after,
.section-tag.centered::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--violet);
}

/* ==========================================================================
   6. GRIDS & LAYOUTS
   ========================================================================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.layout-2col-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.layout-text-image {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.flex-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-row-center { justify-content: center; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */
.btn-primary, .btn-secondary, .btn-ghost, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
  text-decoration: none;
}

.btn-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(131, 137, 207, 0.32);
}
.btn-primary:hover {
  background: var(--violet-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(131, 137, 207, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--violet-dark);
  border-color: var(--violet);
}
.btn-secondary:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--violet-dark);
  border-color: var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
}

.btn-sm { padding: 12px 22px; font-size: 0.85rem; }
.btn-lg { padding: 20px 40px; font-size: 1rem; }

/* Boutons sur fond violet/sombre */
.section-bg-violet .btn-outline,
.cta-section .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.section-bg-violet .btn-outline:hover,
.cta-section .btn-outline:hover {
  background: var(--white);
  color: var(--violet-dark);
}

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 0;
  overflow: hidden;
  background: var(--violet-darker);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 77, 149, 0.85) 0%, rgba(131, 137, 207, 0.72) 55%, rgba(211, 187, 226, 0.62) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-content {
  width: 100%;
  text-align: center;
  color: var(--white);
  padding: 40px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.1); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  line-height: 1.1;
}

.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose-light);
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 760px;
  margin: 0 auto 44px;
  line-height: 1.65;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* HERO QUICK LINKS BAR (sous le hero) */
.hero-quick-links {
  position: relative;
  z-index: 5;
  background: var(--white);
  box-shadow: 0 -20px 50px rgba(66, 77, 149, 0.15);
}

.hero-quick-links-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  border-right: 1px solid var(--border);
  transition: all var(--transition);
}

.hero-quick-link:last-child { border-right: none; }

.hero-quick-link:hover {
  background: var(--violet-pale);
  color: var(--violet-darker);
}

.hero-quick-link svg {
  width: 22px;
  height: 22px;
  fill: var(--violet-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.hero-quick-link:hover svg {
  transform: scale(1.15);
}

/* ==========================================================================
   9. CARDS GÉNÉRIQUES
   ========================================================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
  text-align: center;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--violet-light);
}

.card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--violet-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
  overflow: hidden;
}

.card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform var(--transition);
}

.card:hover .card-icon {
  background: var(--violet);
  transform: scale(1.05);
}

.card h4 {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-sans);
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   10. ABOUT (image + texte avec badges)
   ========================================================================== */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  isolation: isolate;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--violet);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.4;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--violet-pale);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-badges {
  position: absolute;
  bottom: 30px;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}

.about-badge {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 130px;
  border: 1px solid var(--border);
}

.about-badge-num {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--violet-darker);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
}

/* ==========================================================================
   11. PARTNERS LOGOS
   ========================================================================== */
.partners {
  padding: 50px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.partners-logo {
  height: 50px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all var(--transition);
}

.partners-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ==========================================================================
   12. TREATMENT CARDS (avec image + overlay)
   ========================================================================== */
.treatment-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  color: var(--white);
  isolation: isolate;
  transition: transform var(--transition);
}

.treatment-card:hover {
  transform: translateY(-6px);
}

.treatment-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.treatment-card:hover .treatment-card-img {
  transform: scale(1.08);
}

.treatment-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(42, 45, 82, 0.92) 0%,
    rgba(66, 77, 149, 0.5) 50%,
    rgba(131, 137, 207, 0.1) 100%);
  z-index: 2;
  transition: background var(--transition);
}

.treatment-card:hover .treatment-card-overlay {
  background: linear-gradient(to top,
    rgba(66, 77, 149, 0.95) 0%,
    rgba(131, 137, 207, 0.7) 50%,
    rgba(131, 137, 207, 0.3) 100%);
}

.treatment-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 26px;
  z-index: 3;
  color: var(--white);
}

.treatment-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.treatment-card-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.25;
}

.treatment-card-desc {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.treatment-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.treatment-card-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.treatment-card:hover .treatment-card-arrow svg {
  transform: translateX(6px);
}

/* ==========================================================================
   13. AVANT/APRÈS (Cas cliniques)
   ========================================================================== */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.before-after-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.before-after-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.before-after-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.before-after-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.before-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.before-after-card:hover .before-after-img img {
  transform: scale(1.05);
}

.before-after-img-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--violet-darker);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.before-after-img-label.after {
  background: var(--violet);
  color: var(--white);
}

/* ==========================================================================
   14. AVIS GOOGLE (carousel)
   ========================================================================== */
.reviews-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.reviews-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.reviews-google-logo {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.reviews-google-logo svg {
  width: 28px;
  height: 28px;
}

.reviews-rating-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviews-rating-num {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--violet-darker);
  line-height: 1;
}

.reviews-rating-stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.reviews-rating-count {
  font-size: 0.82rem;
  color: var(--text-light);
}

.reviews-cta {
  background: var(--violet-pale);
  padding: 28px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--violet-light);
}

.reviews-cta h5 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--text);
}

.reviews-cta p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 80s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  width: 360px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--violet-light);
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}

.review-author {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.review-stars {
  color: #FBBC04;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-light);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
}

.review-source svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   15. FAQ ACCORDÉON
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--violet-light);
}

.faq-item.open {
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  background: transparent;
}

.faq-question:hover {
  color: var(--violet-darker);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--violet-pale);
  color: var(--violet-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
}

.faq-item.open .faq-icon {
  background: var(--violet);
  color: var(--white);
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

/* ==========================================================================
   16. BLOG POST CARDS
   ========================================================================== */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.post-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--violet-light);
}

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

.post-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.post-card:hover .post-card-img img {
  transform: scale(1.08);
}

.post-card-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-date {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--violet-dark);
  margin-bottom: 12px;
}

.post-card-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
  flex: 1;
}

.post-card:hover .post-card-title {
  color: var(--violet-darker);
}

.post-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: auto;
}

.post-card-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.post-card:hover .post-card-arrow svg {
  transform: translateX(6px);
}

/* ==========================================================================
   17. GALERIE PHOTOS CABINET
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ==========================================================================
   18. CTA SECTION FINALE
   ========================================================================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(66, 77, 149, 0.88) 0%, rgba(131, 137, 207, 0.78) 100%);
  z-index: 2;
}

.cta-section .container {
  position: relative;
  z-index: 3;
}

.cta-content {
  text-align: center;
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--violet-dark);
}

.cta-section .btn-primary:hover {
  background: var(--violet-pale);
  color: var(--violet-darker);
}

/* ==========================================================================
   19. MODAL (horaires)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 45, 82, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition);
}

.modal-close:hover {
  background: var(--violet);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 700; color: var(--text); }
.hours-list .time { color: var(--text-light); }
.hours-list .closed { color: var(--violet-dark); font-style: italic; }

/* ==========================================================================
   20. SCROLL REVEAL
   ========================================================================== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   21. SCROLL PROGRESS
   ========================================================================== */
#scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--violet), var(--violet-dark));
  width: 0;
  z-index: 9999;
  transition: width 0.1s ease;
}

/* ==========================================================================
   22. FORMS
   ========================================================================== */
.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(131, 137, 207, 0.12);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-checkbox-wrap input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: var(--violet);
}

.form-success, .form-error {
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #2e7d32;
}

.form-error {
  background: #ffebee;
  color: #c62828;
  border-left: 4px solid #c62828;
}

/* Honeypot */
input[name="website_url"] {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   23. DISCLAIMER MÉDICAL
   ========================================================================== */
.disclaimer-box {
  background: var(--violet-pale);
  border-left: 4px solid var(--violet);
  padding: 22px 26px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
}

.disclaimer-box strong {
  color: var(--violet-darker);
}

/* ==========================================================================
   24. UTILITIES
   ========================================================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.text-violet { color: var(--violet-dark); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text); }

/* ==========================================================================
   25. RESPONSIVE - TABLET
   ========================================================================== */
@media (max-width: 1100px) {
  .reviews-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .container, .container-narrow { padding: 0 28px; }

  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }

  .layout-2col,
  .layout-2col-start,
  .layout-text-image {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after-grid > :nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-quick-links-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-quick-link:nth-child(2) {
    border-right: none;
  }
  .hero-quick-link:nth-child(1),
  .hero-quick-link:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  .partners-grid { gap: 50px; }

  .review-card { width: 320px; }

  .about-badges {
    position: relative;
    right: auto;
    bottom: auto;
    flex-direction: row;
    margin-top: 20px;
    justify-content: center;
  }

  .about-img-wrap::before,
  .about-img-wrap::after {
    display: none;
  }
}

/* ==========================================================================
   26. RESPONSIVE - MOBILE
   ========================================================================== */
@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  html { font-size: 15px; }

  .container, .container-narrow { padding: 0 18px; }

  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .section-lg { padding: 72px 0; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 60px;
  }

  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost,
  .hero-cta-group .btn-outline {
    width: 100%;
  }

  .hero-quick-links-inner {
    grid-template-columns: 1fr;
  }

  .hero-quick-link {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 18px 16px;
  }
  .hero-quick-link:last-child { border-bottom: none; }

  .card { padding: 28px 22px; }

  .treatment-card { aspect-ratio: 3/4; }
  .treatment-card-title { font-size: 1.3rem; }

  .before-after-grid {
    grid-template-columns: 1fr;
  }
  .before-after-grid > :nth-child(3) {
    max-width: 100%;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners { padding: 36px 0; }
  .partners-grid { gap: 32px; }
  .partners-logo { height: 36px; }

  .review-card { width: 280px; padding: 22px 20px; }

  .modal-content { padding: 36px 24px; }

  .cta-section { padding: 72px 0; }

  .btn-primary, .btn-secondary, .btn-outline, .btn-ghost {
    width: 100%;
  }

  .btn-row .btn-primary,
  .btn-row .btn-secondary,
  .btn-row .btn-outline,
  .btn-row .btn-ghost {
    flex: 1;
    min-width: 180px;
  }

  .reviews-cta {
    text-align: center;
  }

  .reviews-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   27. RESPONSIVE - SMALL MOBILE
   ========================================================================== */
@media (max-width: 380px) {
  html { font-size: 14px; }

  .container, .container-narrow { padding: 0 14px; }

  .section { padding: 48px 0; }

  .hero h1 { font-size: 1.85rem; }

  .review-card { width: 260px; }

  .card { padding: 22px 18px; }

  .gallery { grid-template-columns: 1fr; }
}

/* ==========================================================================
   28. PRINT
   ========================================================================== */
@media print {
  .nav, .footer, .cta-section, #scroll-bar { display: none; }
  body { color: #000; background: #fff; }
}


/* ==========================================================================
   NAV & HEADER
   ========================================================================== */
/* ==========================================================================
   NAV STYLES - injectés depuis nav.php
   ========================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(66, 77, 149, 0.1);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--violet-dark);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
}

.nav-link:hover,
.nav-item.active > .nav-link {
  background: var(--violet-pale);
  color: var(--violet-darker);
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.nav-item:hover .nav-link .chevron {
  transform: rotate(180deg);
}

/* MEGA MENU */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 16px;
  min-width: 580px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}

.mega-menu-item:hover {
  background: var(--violet-pale);
}

.mega-menu-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--violet-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-dark);
  flex-shrink: 0;
  transition: all var(--transition);
}

.mega-menu-item:hover .mega-menu-icon {
  background: var(--violet);
  color: var(--white);
}

.mega-menu-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mega-menu-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.mega-menu-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--violet-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-phone:hover {
  background: var(--violet-pale);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--violet);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(131, 137, 207, 0.3);
}

.nav-btn:hover {
  background: var(--violet-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(131, 137, 207, 0.4);
}

/* BURGER MOBILE */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--violet-pale);
  color: var(--violet-dark);
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}

.nav-burger:hover {
  background: var(--violet);
  color: var(--white);
}

.nav-burger span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-burger span:nth-child(1) { transform: translateY(-6px); }
.nav-burger span:nth-child(2) { width: 14px; }
.nav-burger span:nth-child(3) { transform: translateY(6px); width: 16px; }

.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  width: 20px;
}

/* MENU MOBILE DRAWER */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 90px 24px 32px;
  overflow-y: auto;
  transition: right var(--transition);
  box-shadow: -20px 0 50px rgba(66, 77, 149, 0.2);
}

.nav-mobile.open {
  right: 0;
}

.nav-mobile-section {
  margin-bottom: 28px;
}

.nav-mobile-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  padding: 0 16px;
  margin-bottom: 8px;
}

.nav-mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
  background: var(--violet-pale);
  color: var(--violet-darker);
}

.nav-mobile-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--violet-pale);
  color: var(--violet-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-mobile-link-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-mobile-cta {
  margin-top: 24px;
  padding: 24px 16px;
  background: var(--violet-pale);
  border-radius: var(--radius-lg);
  text-align: center;
}

.nav-mobile-cta-phone {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--violet-darker);
  margin-bottom: 12px;
}

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 45, 82, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE NAV */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-phone { display: none; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 18px; }
  .nav-logo img { width: 44px; height: 44px; }
  .nav-logo-name { font-size: 1rem; }
  .nav-logo-sub { font-size: 0.62rem; }
  .nav-btn { padding: 10px 16px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .nav-btn .nav-btn-text { display: none; }
  .nav-btn { padding: 10px; width: 44px; height: 44px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.footer {
  background: linear-gradient(180deg, var(--violet-darker) 0%, #2A2D52 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-brand-logo img {
  width: 56px;
  height: 56px;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--violet-light);
  margin-top: 4px;
  display: block;
}

.footer-brand-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.footer-brand-text strong {
  color: var(--white);
  font-weight: 700;
}

.footer-brand-text a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color var(--transition);
}

.footer-brand-text a:hover {
  text-decoration-color: var(--white);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--white);
  color: var(--violet-darker);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 22px;
  display: block;
  position: relative;
  padding-bottom: 14px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--violet-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
  flex-shrink: 0;
}

.footer-contact-icon svg { width: 16px; height: 16px; fill: currentColor; }

.footer-contact-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer-contact-text a:hover { color: var(--white); }

.footer-contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--violet-light);
  margin-bottom: 2px;
  display: block;
}

.footer-cta {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 12px;
}

.footer-cta-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--violet-darker);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}

.footer-cta a:hover {
  background: var(--violet-light);
  color: var(--violet-darker);
  transform: translateY(-2px);
}

.footer-disclaimer {
  background: rgba(0, 0, 0, 0.2);
  padding: 24px 0;
  margin-top: 40px;
}

.footer-disclaimer-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

.footer-seesmile {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-seesmile a {
  color: var(--violet-light);
  font-weight: 700;
}

.footer-seesmile a:hover { color: var(--white); }

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

@media (max-width: 768px) {
  .footer { padding: 60px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer-legal {
    justify-content: center;
    gap: 14px 20px;
  }
}

/* ==========================================================================
   SECTIONS HOME REFAITES (v1.2)
   ========================================================================== */

/* ----- ENGAGEMENTS (4 icônes) ----- */
.engagements-header {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 80px;
}
.engagements-header .section-tag {
  justify-content: center;
  margin-bottom: 24px;
}
.engagements-header .section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 28px;
}
.engagements-header .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 920px;
  margin: 0 auto;
}
.engagements-header .section-subtitle strong {
  color: var(--text);
  font-weight: 700;
}
.engagements-header .section-subtitle a {
  color: var(--violet-dark);
  text-decoration: underline;
  text-decoration-color: var(--violet-light);
  text-underline-offset: 3px;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.engagement-item {
  text-align: center;
}
.engagement-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.engagement-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.engagement-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}
.engagement-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 280px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .engagements-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }
}
@media (max-width: 640px) {
  .engagements-grid { grid-template-columns: 1fr; gap: 48px; }
  .engagement-icon { width: 110px; height: 110px; }
}

/* ----- TRAITEMENTS (4 cards colorées) ----- */
.treatments-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.treatments-header .section-tag { margin-bottom: 18px; }
.treatments-header .section-title {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin: 0;
}
.treatments-header p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.treatments-header p a { color: var(--violet-dark); text-decoration: underline; text-underline-offset: 3px; }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.treat-card {
  position: relative;
  display: block;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3/4.2;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  isolation: isolate;
}
.treat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  color: var(--white);
}
.treat-card--teal       { background: #1F6E78; }
.treat-card--rose       { background: #D7857C; }
.treat-card--green      { background: #1F5638; }
.treat-card--red        { background: #A03E3E; }

.treat-card-content {
  position: relative;
  z-index: 3;
  padding: 36px 30px 0;
}
.treat-card-title {
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.treat-card-title sup { font-size: 0.55em; vertical-align: super; }
.treat-card-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.treat-card-img {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 90%;
  height: 55%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .treatments-header { grid-template-columns: 1fr; gap: 32px; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .treat-card { aspect-ratio: 4/3; }
  .treat-card-img { width: 60%; height: 80%; right: -5%; }
}

/* ----- INVISALIGN BANNER + 2 COLONNES ----- */
.section-bg-rose-pale { background: var(--rose-pale); }

.invisalign-banner {
  margin-bottom: 60px;
  border-radius: 28px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 16px 40px rgba(131, 137, 207, 0.18);
}
.invisalign-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.invisalign-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.invisalign-grid .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.invisalign-grid .faq-question span:first-child {
  font-weight: 600;
  text-align: left;
}

.invisalign-info {
  padding-top: 12px;
}
.invisalign-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 28px;
  color: var(--text);
}
.invisalign-info-title:first-child { margin-top: 0; }
.invisalign-info p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}
.invisalign-info p a { color: var(--violet-dark); text-decoration: underline; text-underline-offset: 3px; }

.btn-outline-violet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: var(--violet-dark);
  border: 2px solid var(--violet);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-violet:hover {
  background: var(--violet);
  color: var(--white);
}

@media (max-width: 1024px) {
  .invisalign-grid { grid-template-columns: 1fr; gap: 48px; }
  .invisalign-banner { height: 280px; }
}
@media (max-width: 640px) {
  .invisalign-banner { height: 200px; border-radius: 18px; margin-bottom: 40px; }
}

/* ----- BLOG ESPACE LECTURE 3 COLONNES ----- */
.blog-section { padding: 100px 0; }

.blog-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.blog-col-left .section-tag { margin-bottom: 18px; }
.blog-section-title {
  font-size: clamp(2.5rem, 4.5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.blog-list-item {
  border-bottom: 1px solid var(--border);
}
.blog-list-item:first-child { border-top: 1px solid var(--border); }
.blog-list-link {
  display: block;
  padding: 22px 0;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}
.blog-list-link:hover { color: var(--violet-dark); }
.blog-list-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: inherit;
}
.blog-list-date {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-transform: lowercase;
}

/* Article vedette central */
.blog-feat-link {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1/1.1;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-feat-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.24);
}
.blog-feat-img { width: 100%; height: 100%; }
.blog-feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-feat-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 56px 36px 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  color: var(--white);
  text-align: center;
}
.blog-feat-title {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.blog-feat-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Mini-articles colonne droite */
.blog-side-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.blog-mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-mini-link {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
}
.blog-mini-link:hover { color: var(--violet-dark); }
.blog-mini-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-mini-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.blog-mini-title {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: inherit;
  margin-bottom: 4px;
}
.blog-mini-date {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: lowercase;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .blog-col-right {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-col-right { grid-column: auto; }
  .blog-feat-link { aspect-ratio: 16/10; }
}

/* ==========================================================================
   AJUSTEMENTS v1.3
   ========================================================================== */

/* ----- Section pleine largeur (sort du container) ----- */
.section-full {
  padding: 100px 0 0;  /* padding bottom 0 car la grille touche le bas */
}
.section-full .treatments-header {
  margin-bottom: 60px;
}

/* ----- Override : Treatments grid en pleine largeur, image full bg ----- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;  /* pas d'espacement entre les cards */
  margin: 0;
  width: 100%;
}

.treat-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none;
  color: var(--white);
  background-size: cover;       /* image complète en fond */
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;              /* plein cadre, pas de coins arrondis */
  transition: transform 0.6s ease;
  isolation: isolate;
}
.treat-card:hover {
  color: var(--white);
  transform: none;               /* on enlève le translateY pour le full-width */
  box-shadow: none;
}
.treat-card:hover .treat-card-overlay {
  background: linear-gradient(to top, rgba(66, 77, 149, 0.82) 0%, rgba(131, 137, 207, 0.45) 65%, transparent 100%);
}

/* On supprime les couleurs de fond (puisque l'image est en fond) */
.treat-card--teal,
.treat-card--rose,
.treat-card--green,
.treat-card--red {
  background-color: transparent;
}

/* Overlay sombre + violet pour lisibilité du texte */
.treat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 31, 70, 0.88) 0%, rgba(66, 77, 149, 0.45) 55%, rgba(131, 137, 207, 0.12) 100%);
  z-index: 1;
  transition: background var(--transition);
}

.treat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  z-index: 2;
  color: var(--white);
}

.treat-card-title {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.treat-card-title sup { font-size: 0.55em; vertical-align: super; }

.treat-card-desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 18px 0;
}

.treat-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.treat-card-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.treat-card:hover .treat-card-arrow svg {
  transform: translateX(5px);
}

/* On retire la treat-card-img absolue car maintenant l'image est en background */
.treat-card-img { display: none; }

@media (max-width: 1024px) {
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .treatments-grid { grid-template-columns: 1fr; }
  .treat-card { aspect-ratio: 16/9; min-height: 360px; }
}

/* ==========================================================================
   VIDÉO INVISALIGN
   ========================================================================== */
.invisalign-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
}
.invisalign-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;            /* couvre toute la largeur */
  height: 56.25vw;         /* ratio 16:9 */
  min-width: 177.77%;      /* couvre la hauteur si trop étroit */
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;    /* pas d'interaction utilisateur sur la vidéo */
  border: none;
}
.invisalign-banner {
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   HERO + CTA : overlays plus transparents
   ========================================================================== */
.hero-overlay {
  background: linear-gradient(135deg, rgba(66, 77, 149, 0.55) 0%, rgba(131, 137, 207, 0.42) 55%, rgba(211, 187, 226, 0.32) 100%);
}

.cta-bg-overlay {
  background: linear-gradient(135deg, rgba(66, 77, 149, 0.55) 0%, rgba(131, 137, 207, 0.45) 100%) !important;
}

/* CTA : "em" en blanc (au lieu du violet) pour la lisibilité sur fond sombre */
.cta-section h1 em,
.cta-section h2 em,
.cta-section h3 em {
  color: var(--white);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}

