/* ============================================
   Pododiana — Feuille de styles v4
   ============================================ */
:root {
  --color-primary: #2a9d8f;
  --color-primary-dark: #238b7e;
  --color-primary-light: #e8f5f3;
  --color-primary-subtle: #f0faf8;
  --color-dark: #2d3436;
  --color-text: #4a5568;
  --color-text-light: #718096;
  --color-border: #e2e8f0;
  --color-bg: #ffffff;
  --color-bg-alt: #f7fafa;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title: 'Playfair Display', Georgia, serif;
  --fs-xs: 0.8rem;
  --fs-sm: 0.9rem;
  --fs-base: 1rem;
  --fs-md: 1.063rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 5rem;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, .1);
  --shadow-card: 0 2px 16px rgba(42, 157, 143, .08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --tr-fast: .2s ease;
  --tr-base: .3s ease;
  --tr-slow: .5s ease;
  --max-w: 1200px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px
}

::-webkit-scrollbar-track {
  background: transparent
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark)
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

::selection {
  background: rgba(42, 157, 143, .25);
  color: inherit
}

::-moz-selection {
  background: rgba(42, 157, 143, .25);
  color: inherit
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast)
}

ul,
ol {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-xl)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  font-weight: 700;
  line-height: 1.25
}

h1 {
  font-family: var(--font-title);
  font-size: var(--fs-4xl);
  font-weight: 600;
  letter-spacing: -.02em
}

h1 em {
  font-style: italic;
  font-weight: 500
}

h2 {
  font-family: var(--font-title);
  font-size: var(--fs-3xl);
  font-weight: 600;
  letter-spacing: -.01em
}

h2 em {
  font-style: italic;
  font-weight: 500;
  position: relative;
  display: inline-block
}

h3 {
  font-size: var(--fs-lg);
  font-weight: 600
}

p+p {
  margin-top: var(--sp-sm)
}

/* Animated gradient highlight on em in h2 on section hover */
h2 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 40%;
  background: linear-gradient(120deg, rgba(42, 157, 143, .15) 0%, rgba(42, 157, 143, .25) 100%);
  border-radius: 3px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1)
}

section:hover h2 em::after {
  transform: scaleX(1)
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: .8rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--tr-base);
  white-space: nowrap
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(42, 157, 143, .25)
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 4px 16px rgba(42, 157, 143, .35);
  transform: translateY(-1px)
}

.btn-secondary {
  background: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid transparent
}

.btn-secondary:hover {
  background: #d4eeeb;
  border-color: var(--color-primary)
}

.btn-outline {
  border: 1.5px solid var(--color-border);
  color: var(--color-dark);
  background: var(--color-bg)
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary)
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto
}

.section-header h2 {
  margin-bottom: var(--sp-sm)
}

.section-header p {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  line-height: 1.7
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--tr-base)
}

.header.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, .06)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--color-dark);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px; /* space between icon and text */
}


.logo-icon {
  height: 26px; /* adjust size so it roughly matches the font height visually */
  width: auto;
  display: block;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl)
}

.nav-desktop>a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: var(--sp-xs) 0
}

.nav-desktop>a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: width var(--tr-base)
}

.nav-desktop>a:hover {
  color: var(--color-primary)
}

.nav-desktop>a:hover::after {
  width: 100%
}

.nav-laser-btn {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding: var(--sp-xs) 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr-base);
}

.nav-laser-btn:hover {
  color: var(--color-primary-dark);
}

.nav-badge-new {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-primary);
  color: #fff;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1;
  position: relative;
  top: -1px;
}

.nav-dropdown {
  position: relative
}

.nav-dropdown-trigger {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: var(--sp-xs) 0;
  cursor: pointer;
  transition: color var(--tr-fast);
  text-decoration: none
}

.nav-dropdown-trigger svg {
  transition: transform var(--tr-fast)
}

.nav-dropdown-trigger:hover,
.nav-dropdown.open .nav-dropdown-trigger {
  color: var(--color-primary)
}

.nav-dropdown.open .nav-dropdown-trigger svg {
  transform: rotate(180deg)
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-base);
  pointer-events: none;
  z-index: 100
}

.nav-dropdown-menu-inner {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
  padding: var(--sp-sm) 0
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto
}

.nav-dropdown-menu a {
  display: block;
  padding: .55rem 1.2rem;
  font-size: var(--fs-sm);
  color: var(--color-text);
  transition: all var(--tr-fast)
}

.nav-dropdown-menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary)
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-md)
}

.header-cta .btn {
  padding: .6rem 1.3rem;
  font-size: var(--fs-sm)
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  height: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1001
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--tr-base);
  transform-origin: center
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr-base), visibility var(--tr-base);
  padding: 80px var(--sp-lg) var(--sp-xl);
  overflow-y: auto;
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  visibility: visible
}

.nav-mobile-link {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-dark);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile-link:hover, .nav-mobile-link:active {
  color: var(--color-primary);
}

.nav-mobile-laser {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.nav-mobile-group {
  width: 100%;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 0;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--color-dark);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-mobile-toggle svg {
  transition: transform 0.3s ease;
}

.nav-mobile-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-mobile-sub a {
  font-size: var(--fs-base);
  color: var(--color-text);
  padding: 8px 0;
  display: block;
  text-align: center;
}

.nav-mobile-sub a:hover {
  color: var(--color-primary);
}

.nav-mobile .btn {
  margin-top: var(--sp-lg);
  font-size: var(--fs-md);
  padding: .9rem 2rem;
  width: auto;
}

/* ===================== HERO ===================== */
.hero {
  padding-top: calc(68px + var(--sp-2xl));
  padding-bottom: var(--sp-3xl);
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center
}

.hero-images {
  position: relative;
  min-height: 420px
}

.hero-img-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1.12;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg)
}

.hero-img-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-img-overlay {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 44%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
  border: 3px solid #fff;
  animation: heroFloat 5s ease-in-out infinite;
  transform: rotate(2deg)
}

.hero-img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@keyframes heroFloat {

  0%,
  100% {
    transform: rotate(2deg) translate(0, 0)
  }

  50% {
    transform: rotate(-1deg) translate(-6px, -10px)
  }
}

.hero-content {
  max-width: 540px
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: var(--sp-md);
  padding: .35rem .9rem;
  background: var(--color-primary-light);
  border-radius: var(--radius-xl)
}

.hero-content h1 {
  margin-bottom: var(--sp-md)
}

.hero-text {
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: var(--sp-sm)
}

.hero-subtext {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.55;
  margin-bottom: var(--sp-xl)
}

.hero-buttons {
  display: flex;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap
}

.hero-reassurance {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  align-items: center
}

.hero-reassurance-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  padding: .25rem .6rem;
  border-radius: var(--radius-sm)
}

.hero-reassurance-item svg {
  width: 12px;
  height: 12px;
  color: var(--color-primary);
  flex-shrink: 0
}

/* ===================== INTERVENTIONS ===================== */
.section-interventions {
  padding: var(--sp-3xl) 0;
  background: var(--color-bg-alt)
}

.interventions-scroll {
  overflow: visible;
  margin-bottom: var(--sp-xl)
}

.interventions-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg)
}

.icard {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm)
}

.icard>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr-slow)
}

.icard-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg);
  background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 100%);
  transition: opacity var(--tr-base);
  z-index: 1
}

.icard-overlay h3 {
  color: #fff;
  font-size: var(--fs-lg);
  margin: 0
}

.icard-expand {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: rgba(42, 157, 143, .94);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-lg) var(--sp-xl);
  opacity: 0;
  transition: opacity var(--tr-base);
  z-index: 2;
  border-radius: var(--radius-lg)
}

.icard-expand h3 {
  font-size: var(--fs-md);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  color: #fff
}

.icard-expand p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
  opacity: .95
}

.icard-link {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #fff;
  padding: .45rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius-md);
  transition: all var(--tr-fast)
}

.icard-link:hover {
  background: rgba(255, 255, 255, .2);
  border-color: #fff
}

/* Hover uniquement sur dispositifs avec pointeur réel (pas tactile) */
@media (hover: hover) {
  .icard:hover .icard-overlay {
    opacity: 0
  }

  .icard:hover .icard-expand {
    opacity: 1
  }
}

/* Mobile tap: active state */
.icard.active .icard-overlay {
  opacity: 0
}

.icard.active .icard-expand {
  opacity: 1
}

/* ===================== BLOC CRÉATIF PRATICIENNE ===================== */
.praticienne-creative {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: var(--sp-3xl) 0 var(--sp-lg) 0;
  margin: var(--sp-2xl) 0 var(--sp-md) 0;
  gap: var(--sp-2xl);
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

/* Zen Floating Flora */
.zen-bg-icon {
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
  color: var(--color-primary);
}

.zen-opt-1 {
  top: -20px;
  left: 0%;
  animation: floatZen 7s ease-in-out infinite;
  --z-rot: -15deg;
}

.zen-opt-2 {
  bottom: -30px;
  right: -5%;
  animation: floatZen 9s ease-in-out infinite reverse;
  --z-rot: 15deg;
}

.zen-opt-3 {
  top: -20px;
  right: 15%;
  animation: floatZen 6s ease-in-out infinite 1.5s;
  --z-rot: 25deg;
  opacity: 0.15;
}

.zen-opt-4 {
  bottom: -10px;
  right: 35%;
  animation: floatZen 8s ease-in-out infinite 3s reverse;
  --z-rot: -10deg;
}

.zen-opt-5 {
  top: -20px;
  left: 35%;
  animation: floatZen 9s ease-in-out infinite 2s;
  --z-rot: 10deg;
  opacity: 0.15;
}

@keyframes floatZen {

  0%,
  100% {
    transform: translateY(0) rotate(var(--z-rot, 0deg));
  }

  50% {
    transform: translateY(-16px) rotate(var(--z-rot, 0deg));
  }
}

.pc-profile {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.pc-profile img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.pc-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pc-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-dark);
  font-size: 18px;
}

.pc-sep {
  display: none;
}

.pc-role {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pc-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 38px;
  line-height: 1.4;
  color: var(--color-dark);
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pc-dynamic-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 64px;
  width: 460px;
  padding: 0 4px;
  text-align: left;
}

.pc-dynamic-text {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  height: 100%;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 30px;
  border-radius: 8px;
  padding: 0 20px;
  background: rgba(42, 157, 143, 0.12);
  transform: translateY(0);
  opacity: 1;
  white-space: nowrap;
}

.inner-word {
  display: inline-block;
}

@media(max-width:900px) {
  .zen-opt-1 {
    top: 0px;
    left: 5%;
  }

  .zen-opt-2 {
    bottom: 10px;
    right: 5%;
  }

  .zen-opt-3 {
    top: 0px;
    right: 5%;
  }

  .zen-opt-4 {
    bottom: 40px;
    left: 5%;
  }

  /* Move sparkle away from text */
  .zen-opt-5 {
    top: auto;
    bottom: -45px;
    left: 40%;
    right: auto;
  }

  /* Move foot below carousel */

  .praticienne-creative {
    flex-direction: column;
    padding: var(--sp-xl) 0 var(--sp-lg) 0;
    gap: var(--sp-xl);
  }

  .pc-profile {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    background: var(--color-bg);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
  }

  .pc-profile img {
    width: 48px;
    height: 48px;
    border: none;
    box-shadow: none;
  }

  .pc-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .pc-sep {
    display: none;
  }

  .pc-name {
    font-size: 16px;
  }

  .pc-role {
    font-size: 11px;
    text-align: left;
  }

  .pc-headline {
    font-size: 26px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: center;
    text-align: center;
  }

  .pc-dynamic-wrapper {
    height: 48px;
    width: 100%;
    max-width: 380px;
    display: flex;
    justify-content: center;
    margin: 8px auto 0 auto;
  }

  .pc-dynamic-text {
    font-size: 20px;
    padding: 0 16px;
  }
}

.carousel-progress-container {
  display: none;
}

/* ===================== THERAPIE LASER FEATURED ===================== */
.interventions-featured {
  margin-top: var(--sp-2xl);
  margin-bottom: var(--sp-2xl)
}

.laser-card-clean {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr-base);
  overflow: hidden;
  min-height: 240px;
  transform: translateZ(0)
}

.laser-card-content-clean {
  flex: 1;
  padding: var(--sp-xl);
  padding-right: 50%;
  position: relative;
  z-index: 2
}

.laser-card-image-clean {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1
}

.laser-card-image-clean::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
  z-index: 2
}

.laser-card-image-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center
}

.laser-badge-clean {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-xs)
}

.pulse-dot-green {
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 50%;
  position: relative
}

.pulse-dot-green::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  animation: pulseGreen 1.5s infinite
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.6);
    opacity: 1
  }

  100% {
    transform: scale(2.5);
    opacity: 0
  }
}

.laser-card-content-clean h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  color: var(--color-dark);
  margin-bottom: var(--sp-xs)
}

.laser-card-content-clean p {
  color: var(--color-text-light);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: var(--sp-md)
}

.btn-laser-fancy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: all var(--tr-fast);
  box-shadow: 0 4px 12px rgba(42, 157, 143, .2)
}

.btn-laser-fancy:hover {
  background: var(--color-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .15);
  transform: translateY(-1px)
}

.btn-laser-fancy svg {
  width: 14px;
  height: 14px;
  transition: transform var(--tr-fast)
}

.btn-laser-fancy:hover svg {
  transform: translateX(3px)
}

@media(max-width:900px) {
  .laser-card-clean {
    min-height: 240px;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black)
  }

  .laser-card-content-clean {
    padding: var(--sp-md);
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
  }

  .laser-card-image-clean {
    width: 100%;
    left: 0
  }

  .laser-card-image-clean::before {
    display: none
  }

  .laser-card-image-clean img {
    filter: brightness(90%)
  }

  .laser-card-image-clean::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 80, 72, 0.95) 0%, rgba(42, 157, 143, 0.7) 45%, transparent 75%);
    z-index: 2
  }

  .laser-badge-clean {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: fit-content;
    margin-bottom: 6px;
    font-size: 9px
  }

  .pulse-dot-green {
    background: #fff;
    width: 4px;
    height: 4px
  }

  .pulse-dot-green::after {
    border-color: #fff
  }

  .laser-card-content-clean h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3)
  }

  .laser-card-content-clean p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)
  }

  .btn-laser-fancy {
    background: #fff;
    color: var(--color-dark);
    box-shadow: none;
    padding: 6px 14px;
    width: fit-content;
    font-size: 11px
  }

  .btn-laser-fancy:hover {
    background: var(--color-bg-alt);
    color: var(--color-dark)
  }

  /* --- Carousel Progress Mobile Tracker --- */
  .interventions-featured {
    margin-top: var(--sp-sm);
  }

  .carousel-progress-container {
    display: block;
    width: 80px;
    height: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    margin: var(--sp-md) auto 0 auto;
    overflow: hidden;
  }

  .carousel-progress-thumb {
    width: 33.33%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    transition: transform 0.15s ease-out;
  }
}

/* ===================== EXPERTISES ===================== */
.section-expertises {
  padding: var(--sp-3xl) 0
}

.expertises-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg)
}

.expertise-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center
}

.expertise-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.3) 0%, rgba(42, 157, 143, 0.05) 50%, transparent 80%);
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none
}

.expertise-card:hover::before {
  opacity: 1
}

.expertise-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0
}

.expertise-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 80, 72, .92) 0%, rgba(42, 157, 143, .65) 100%)
}

.expertise-card:nth-child(2) .expertise-card-bg::after {
  background: linear-gradient(to top, rgba(40, 75, 68, .92) 0%, rgba(58, 125, 115, .65) 100%)
}

.expertise-card:nth-child(3) .expertise-card-bg::after {
  background: linear-gradient(to top, rgba(35, 85, 75, .92) 0%, rgba(52, 135, 123, .65) 100%)
}

.expertise-card:nth-child(4) .expertise-card-bg::after {
  background: linear-gradient(to top, rgba(32, 90, 80, .92) 0%, rgba(69, 168, 156, .65) 100%)
}

.expertise-card-content {
  position: relative;
  z-index: 3;
  padding: var(--sp-xl);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center
}

.expertise-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .18);
  padding: .25rem .65rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--sp-sm)
}

.expertise-badge svg {
  color: #7dffcc;
  flex-shrink: 0
}

.expertise-card-content h3 {
  color: #fff;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-xs);
  line-height: 1.35
}

.expertise-card-content p {
  font-size: var(--fs-xs);
  line-height: 1.6;
  opacity: .85;
  max-width: 340px
}

/* ===================== RÉASSURANCE ===================== */
.section-reassurance {
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border)
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md)
}

.reassurance-item {
  text-align: center;
  padding: var(--sp-md) var(--sp-sm)
}

.reassurance-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--sp-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  color: var(--color-primary)
}

.reassurance-icon svg {
  width: 20px;
  height: 20px
}

.reassurance-item h4 {
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: 2px
}

.reassurance-item p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.5
}

/* ===================== FAQ ===================== */
.section-faq {
  padding: var(--sp-3xl) 0
}

.faq-list {
  max-width: 750px;
  margin: 0 auto
}

.faq-item {
  border-bottom: 1px solid var(--color-border)
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border)
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-md) 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  gap: var(--sp-md);
  transition: color var(--tr-fast)
}

.faq-question:hover {
  color: var(--color-primary)
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--tr-base);
  color: var(--color-text-light)
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-base)
}

.faq-answer-inner {
  padding-bottom: var(--sp-md);
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.7
}

/* ===================== AVIS — Carousel with faded edges ===================== */
.section-avis {
  padding: var(--sp-3xl) 0;
  background: var(--color-bg-alt);
  position: relative;
  overflow: hidden
}

.avis-bg-decor-1 {
  position: absolute;
  top: -40px;
  right: 8%;
  font-size: 380px;
  font-family: var(--font-title);
  color: var(--color-primary);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  animation: floatDecor1 16s ease-in-out infinite
}

@keyframes floatDecor1 {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(24px) rotate(6deg)
  }
}

.avis-intro {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-top: var(--sp-sm)
}

.avis-intro strong {
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9em
}

.avis-rating-compact {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--color-bg);
  padding: 6px 14px 6px 6px;
  border-radius: var(--radius-xl);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
  margin-top: var(--sp-sm);
  border: 1px solid rgba(42, 157, 143, .1);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.avis-rating-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .06)
}

.arc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  flex-shrink: 0
}

.arc-score {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark)
}

.arc-stars {
  color: #F5A623;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  margin-top: -2px
}

.arc-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light);
  margin-left: 4px
}

.avis-carousel {
  position: relative;
  overflow: hidden
}

.avis-carousel::before,
.avis-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none
}

.avis-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-alt), transparent)
}

.avis-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-alt), transparent)
}

.avis-track {
  display: flex;
  gap: var(--sp-md);
  width: max-content;
  padding: var(--sp-sm) 0;
  transition: transform .4s ease;
  align-items: flex-start
}

.avis-track::-webkit-scrollbar {
  display: none
}

.avis-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--tr-base), transform var(--tr-base), height var(--tr-base);
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
  height: fit-content;
  align-self: flex-start
}

.avis-card:hover {
  box-shadow: var(--shadow-card)
}

.avis-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-xs)
}

.avis-card-stars {
  color: #F5A623;
  font-size: var(--fs-xs);
  letter-spacing: 1px;
  line-height: 1
}

.avis-card-date {
  font-size: 11px;
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-weight: 500
}

.avis-card h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xs);
  font-family: var(--font-title);
  font-weight: 600
}

.avis-card p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
  max-height: 84px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease
}

.avis-card.truncatable {
  cursor: pointer
}

.avis-card.truncatable:not(.expanded) p::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--color-bg));
  pointer-events: none
}

.avis-card.expanded p {
  max-height: 800px
}

.avis-author {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-dark)
}

/* Avis carousel navigation */
.avis-nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-lg)
}

.avis-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
  color: var(--color-text-light)
}

.avis-nav-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-light)
}

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

/* ===================== TARIFS ===================== */
.section-tarifs {
  padding: var(--sp-3xl) 0
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  margin-bottom: var(--sp-lg)
}

.tarifs-column {
  display: flex;
  flex-direction: column
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  gap: var(--sp-md)
}

.tarif-info {
  flex: 1
}

.tarif-info h4 {
  font-size: var(--fs-md);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--color-dark)
}

.tarif-info p {
  font-size: 13px;
  color: var(--color-text-light)
}

.tarif-price {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.price-prefix {
  font-size: 0.65em;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 1px
}

.tarifs-disclaimer {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--sp-xl);
  line-height: 1.6
}

.tarifs-actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-md);
  flex-wrap: wrap
}

/* ===================== CONTACT ===================== */
.section-contact {
  padding: var(--sp-3xl) 0;
  background: var(--color-bg-alt)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-xl);
  align-items: start
}

.contact-info-block {
  font-size: var(--fs-sm)
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm)
}

.contact-detail-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  color: var(--color-primary);
  flex-shrink: 0
}

.contact-detail-icon svg {
  width: 14px;
  height: 14px
}

.contact-detail-text p {
  font-size: var(--fs-sm);
  color: var(--color-text)
}

.contact-detail-text a {
  color: var(--color-primary);
  font-weight: 500
}

.contact-detail-text a:hover {
  text-decoration: underline
}

.contact-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
  margin: var(--sp-md) 0;
  padding: var(--sp-md);
  background: var(--color-bg);
  border: 1px solid rgba(42, 157, 143, .15);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .03)
}

.contact-compact h4 {
  font-size: var(--fs-xs);
  font-weight: 600;
  margin-bottom: var(--sp-xs);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-dark)
}

.contact-compact p,
.access-list li {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5
}

.access-list li {
  margin-bottom: 2px
}

.access-list li strong {
  color: var(--color-dark)
}

/* Tableau horaires compact */
.horaires-table {
  margin: 0
}

.horaires-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-sm);
  padding: 3px 0
}

.horaires-row dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap
}

.horaires-row dd {
  font-size: 13px;
  color: var(--color-text-light);
  text-align: right;
  margin: 0;
  white-space: nowrap
}

.horaires-closed dd {
  color: var(--color-primary);
  font-weight: 500
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-buttons .btn {
  width: 100%;
  justify-content: center;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 360px
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--color-bg-alt);
  padding-top: var(--sp-2xl);
  border-top: 1px solid var(--color-border)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl)
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: var(--sp-sm);
  color: var(--color-text-light)
}

.footer h4 {
  color: var(--color-dark);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: .06em
}

.footer ul li {
  margin-bottom: 4px
}

.footer ul li a {
  font-size: 13px;
  color: var(--color-text-light)
}

.footer ul li a:hover {
  color: var(--color-primary)
}

.footer-contact-info p {
  font-size: 13px;
  margin-bottom: 3px;
  color: var(--color-text-light)
}

.footer-contact-info a {
  color: var(--color-primary)
}

.footer-contact-info a:hover {
  text-decoration: underline
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: var(--sp-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  font-size: 12px;
  color: var(--color-text-light)
}

.footer-bottom a {
  color: var(--color-text-light)
}

.footer-bottom a:hover {
  color: var(--color-primary)
}

.footer-author-link {
  color: inherit;
  font-weight: 500;
  font-style: normal !important;
  transition: color var(--tr-fast)
}

.footer-author-link:hover {
  color: var(--color-primary);
  text-decoration: underline
}

/* ===================== COMPONENTS ===================== */
.scroll-top-btn {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom));
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all var(--tr-base);
  z-index: 99
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.scroll-top-btn:hover {
  background: var(--color-dark);
  transform: translateY(-3px)
}

.mobile-sticky-cta {
  display: none
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===================== PAGE INTÉRIEURE (PÉDICURIE ELEGANT) ===================== */

.page-interieure { background: #fff; }

.pedi-section {
  padding: var(--sp-4xl) 0;
}
.pb-4xl { padding-bottom: var(--sp-4xl); }
.bg-white { background-color: #ffffff; }
.bg-subtle { background-color: #f7faf9; } 
.container-sm { max-width: 800px; }

/* --- Hero --- */
.pedi-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--sp-2xl)) 0 var(--sp-xl);
  background: var(--color-surface);
}
.pedi-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.pedi-hero-text {
  padding-right: var(--sp-xl);
}
.pedi-hero-text h1 {
  font-size: var(--fs-4xl);
  color: var(--color-dark);
  margin-bottom: var(--sp-md);
  line-height: 1.15;
}
.pedi-hero-text h1 em {
  font-family: var(--font-title);
  font-weight: normal;
  color: var(--color-primary);
}
.pedi-hero-subtext {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--sp-xl);
}
.pedi-hero-visual {
  position: relative;
  border-radius: var(--radius-2xl) 0 var(--radius-2xl) 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(8, 61, 74, 0.08);
}
.pedi-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

/* --- Intro --- */
.elegant-title {
  font-size: var(--fs-3xl);
  color: var(--color-dark);
  font-family: var(--font-title);
  font-weight: 500;
  margin-bottom: var(--sp-md);
}
.elegant-text {
  font-size: 20px;
  color: var(--color-dark);
  font-weight: 400;
  line-height: 1.6;
}
.elegant-text-small {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* --- Audience (Compact List) --- */
.audience-compact-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-lg) auto 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.audience-compact-list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.5;
}
.audience-compact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.6;
}
/* --- Pathologies (Section Container) --- */
.section-pathologies {
  padding: var(--sp-3xl) 0 var(--sp-2xl) 0;
}

/* --- Pathologies (Tabs) --- */
/* --- Pathologies (Tabs Navigation) --- */
.tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--color-border);
}
.patho-tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  padding: 12px 10px;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  box-shadow: none;
}
.patho-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.patho-tab-btn:hover {
  color: var(--color-dark);
}
.patho-tab-btn.active {
  color: var(--color-primary);
}
.patho-tab-btn.active::after {
  transform: scaleX(1);
}
.patho-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}
.patho-panel.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Déroulement d'une séance (Stepper) --- */
.section-deroulement {
  padding: var(--sp-4xl) 0;
}
.stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--sp-2xl);
}
.stepper-item {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex: 0 1 auto;
}
.stepper-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  flex-shrink: 0;
}
.stepper-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stepper-info strong {
  font-size: var(--fs-md);
  color: var(--color-dark);
  font-weight: 600;
}
.stepper-info span {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.45;
}
.stepper-line {
  width: 48px;
  height: 1px;
  background: rgba(42, 157, 143, 0.25);
  flex-shrink: 0;
  margin: 18px 20px 0;
}

/* Scroll-triggered staggered reveal — slide from left + scale */
.reveal-step {
  opacity: 0;
  transform: translateX(-30px) scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--step-delay, 0s);
}
.stepper.in-view .reveal-step {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media (max-width: 900px) {
  .section-deroulement {
    padding: var(--sp-3xl) 0;
  }
  .stepper {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0;
    margin: var(--sp-xl) auto 0;
    justify-content: center;
  }
  .stepper-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
  }
  .stepper-num {
    width: 32px;
    height: 32px;
    font-size: var(--fs-xs);
  }
  .stepper-info strong {
    font-size: var(--fs-sm);
  }
  .stepper-info span {
    font-size: 11px;
    line-height: 1.3;
  }
  .stepper-line {
    width: 24px;
    height: 1px;
    margin: 16px 6px 0;
  }
}
/* --- CTA Banner Split --- */
.section-cta-compact {
  padding: var(--sp-3xl) 0 var(--sp-4xl);
}
.cta-banner-split {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
  padding: var(--sp-xl) var(--sp-2xl);
  border: 1px solid rgba(42, 157, 143, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(42, 157, 143, 0.03);
}
.cta-banner-img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 90%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 90%);
}
.cta-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-banner-body h3 {
  font-size: var(--fs-lg);
  color: var(--color-dark);
  margin-bottom: var(--sp-xs);
  font-family: var(--font-body);
  font-weight: 600;
}
.cta-banner-body h3 em {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: normal;
}
.cta-banner-body p {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--sp-md);
}

@media(max-width: 768px) {
  .cta-banner-split {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-lg);
    padding: var(--sp-xl);
  }
}

.semelles-strip {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 24px -6px rgba(8, 61, 74, 0.08);
  border: 1px solid rgba(42, 157, 143, 0.15);
  overflow: hidden;
}
.semelles-strip-content {
  flex: 1;
  padding: var(--sp-xl) var(--sp-2xl);
}
.semelles-strip-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-xs);
  color: var(--color-dark);
}
.semelles-strip-content h3 em {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: normal;
  white-space: nowrap;
}
.semelles-strip-content p {
  font-size: var(--fs-xs); /* Reduced from fs-sm to be more compact */
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: var(--sp-sm);
}
.semelles-strip-img {
  width: 38%;
  align-self: stretch;
  position: relative;
}
.semelles-strip-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .semelles-strip {
    flex-direction: column-reverse;
    border-radius: var(--radius-xl);
  }
  .semelles-strip-content {
    padding: var(--sp-xl) var(--sp-xl);
    text-align: center;
  }
  .semelles-strip-img {
    width: 100%;
    height: 160px;
    align-self: auto;
  }
  .semelles-strip-img img {
    position: relative;
  }
}

/* --- Intro Text (Service Pages) --- */
.section-pedi-intro .intro-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Bilan Podologique --- */
.section-bilan {
  padding: var(--sp-4xl) 0;
}
.bilan-wrap {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 6px 20px -4px rgba(0,0,0,0.04);
}
.bilan-photo {
  flex: 0 0 38%;
  min-height: 240px;
}
.bilan-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bilan-steps-list {
  padding: var(--sp-lg) var(--sp-xl);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-xs);
}
.bilan-s {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
}
.bilan-s-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bilan-s strong {
  display: block;
  font-size: var(--fs-sm);
  color: var(--color-dark);
  margin-bottom: 2px;
}
.bilan-s p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .bilan-wrap {
    flex-direction: column;
  }
  .bilan-photo {
    flex: none;
    height: 180px;
  }
  .bilan-steps-list {
    padding: var(--sp-lg);
    gap: var(--sp-sm);
  }
  .bilan-s {
    padding: var(--sp-sm);
    gap: var(--sp-sm);
  }
  .bilan-s-num {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  .bilan-s strong {
    font-size: var(--fs-xs);
  }
  .bilan-s p {
    font-size: 11px;
  }
}

/* --- Responsive Pédicurie --- */
@media(max-width: 900px) {
  .pedi-hero-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .pedi-hero-text { padding-right: 0; }
  .audience-elegant-grid { grid-template-columns: 1fr; }
}

@media(max-width: 600px) {
  .pedi-hero { padding-top: calc(80px + var(--sp-xl)); }
  .pedi-hero-text h1 { font-size: var(--fs-3xl); }
  .elegant-title { font-size: var(--fs-2xl); }
}


/* ===================== RESPONSIVE — Tablette ===================== */
@media(max-width:1024px) {
  :root {
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem
  }

  .hero-grid {
    gap: var(--sp-xl)
  }

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

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

  .footer-brand {
    grid-column: 1/-1
  }

  .avis-card {
    min-width: 260px;
    max-width: 260px
  }
}

/* ===================== RESPONSIVE — Mobile ===================== */
@media(max-width:768px) {
  :root {
    --fs-4xl: 2rem;
    --fs-3xl: 1.65rem;
    --sp-3xl: 3rem
  }

  body {
    padding-bottom: 0;
  }

  .container {
    padding: 0 var(--sp-md)
  }

  .nav-desktop,
  .header-cta,
  .nav-laser-btn {
    display: none
  }

  .menu-toggle {
    display: flex
  }

  .header-inner {
    height: 56px
  }

  .hero {
    padding-top: calc(56px + var(--sp-sm));
    padding-bottom: var(--sp-lg)
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg)
  }

  .hero-img-main {
    height: 280px !important
  }

  .hero-img-main img {
    height: 100% !important;
    object-position: center 60%;
  }

  .hero-images {
    order: 1;
    min-height: auto !important;
    margin-bottom: 2rem
  }

  .hero-content {
    order: 2
  }

  .hero-img-overlay {
    width: 38%;
    bottom: -10px;
    right: -8px
  }

  .hero-buttons {
    flex-direction: column
  }

  .hero-buttons .btn {
    text-align: center
  }

  /* Intervention cards — NO click toggle on desktop, only mobile */
  .interventions-track {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    gap: var(--sp-md);
    padding-bottom: var(--sp-sm);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .interventions-track::-webkit-scrollbar {
    display: none
  }

  .icard {
    min-width: 55vw;
    max-width: 55vw;
    flex-shrink: 0;
    scroll-snap-align: start;
    height: 230px
  }

  .icard-expand {
    padding: var(--sp-sm) var(--sp-md);
    justify-content: center;
    text-align: center;
    align-items: center
  }

  .icard-expand h3 {
    font-size: 16.5px;
    margin-bottom: var(--sp-xs)
  }

  .icard-expand p {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: var(--sp-sm)
  }

  .icard-link {
    font-size: 13px;
    padding: 7px 14px
  }

  .praticienne-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-md)
  }

  .praticienne-info {
    justify-content: center
  }

  .expertises-grid {
    grid-template-columns: 1fr
  }

  .expertise-card {
    min-height: 190px
  }

  .reassurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xs)
  }

  .reassurance-item {
    padding: var(--sp-sm) var(--sp-xs)
  }

  .avis-card {
    min-width: 60vw;
    max-width: 60vw
  }

  .tarifs-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md)
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-map {
    min-height: 280px
  }

  .contact-map iframe {
    min-height: 280px
  }

  /* Footer 2-col on mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-lg)
  }

  .footer-brand {
    grid-column: 1/-1
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .scroll-top-btn {
    right: 16px;
    width: 40px;
    height: 40px
  }
}

@media(max-width:480px) {
  :root {
    --fs-4xl: 1.7rem;
    --fs-3xl: 1.4rem
  }

  .hero {
    padding-top: calc(56px + var(--sp-xs));
    padding-bottom: var(--sp-md)
  }

  .hero-img-main {
    height: 220px !important
  }

  .hero-img-main img {
    height: 220px !important
  }

  .avis-card {
    min-width: 65vw;
    max-width: 65vw
  }

  .reassurance-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-compact {
    grid-template-columns: 1fr
  }
}

/* ===================== PAGE HERO (INNER PAGES) ===================== */
.page-hero {
  position: relative;
  padding-top: calc(68px + var(--sp-4xl));
  padding-bottom: var(--sp-4xl);
  overflow: hidden;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; overflow: hidden; pointer-events: none;
}
.blur-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}
.blur-blob.top-left {
  top: -10%; left: -10%;
  width: 50vw; height: 50vw;
  background: rgba(42, 157, 143, 0.15); /* primary */
}
.blur-blob.bottom-right {
  bottom: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: rgba(232, 245, 243, 0.8); /* primary lightish */
}
/* Floating zen icons in page-hero */
.zen-hero-1 {
  top: 15%; left: 10%;
  animation: floatZen 8s ease-in-out infinite;
  --z-rot: -15deg;
  opacity: 0.15;
}
.zen-hero-2 {
  bottom: 20%; right: 12%;
  animation: floatZen 10s ease-in-out infinite reverse;
  --z-rot: 20deg;
  opacity: 0.12;
}
.zen-hero-3 {
  top: 30%; right: 8%;
  animation: floatZen 6s ease-in-out infinite 2s;
  --z-rot: 45deg;
  opacity: 0.1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: var(--sp-4xl);
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-content {
  text-align: left;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
  justify-content: flex-start !important;
}
.page-hero-actions .btn {
  min-width: 220px;
}
.page-hero-visual {
  position: relative;
  z-index: 3;
}
.ph-img-wrapper {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 32px 64px -16px rgba(8, 61, 74, 0.3), 0 0 0 1px rgba(42, 157, 143, 0.15) inset;
  border: 6px solid #ffffff;
  animation: heroImgPediFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  aspect-ratio: 1 / 1;
}
@keyframes heroImgPediFloat {
  0% { transform: translateY(0) rotate(1.5deg); box-shadow: 0 24px 48px -12px rgba(8, 61, 74, 0.25); }
  100% { transform: translateY(-20px) rotate(-1.5deg); box-shadow: 0 40px 80px -20px rgba(8, 61, 74, 0.35); }
}
.ph-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3xl);
  }
  .page-hero-content {
    text-align: center;
  }
  .page-hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
  }
  .page-hero-actions .btn {
    width: 100%;
    max-width: 300px;
    margin: 0;
  }
  .page-hero-visual {
    margin: 0 auto;
    max-width: 300px;
    padding: 0 var(--sp-sm);
  }
  .ph-img-wrapper {
    border-radius: 32px;
    border-width: 4px;
    animation: heroImgPediFloat 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
    aspect-ratio: auto;
  }
  .ph-img-wrapper img {
    height: auto;
  }
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: var(--sp-md);
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(42, 157, 143, 0.2);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.page-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
  color: var(--color-dark);
}
.page-hero-desc {
  font-size: var(--fs-md);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--sp-2xl);
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.page-hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero-actions .btn {
  padding: 0.9rem 2rem;
  font-size: var(--fs-sm);
}
.btn-scroll-down svg {
  transition: transform var(--tr-base);
}
.btn-scroll-down:hover svg {
  transform: translateY(3px);
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 60vh;
    padding-top: calc(68px + var(--sp-2xl));
    padding-bottom: var(--sp-2xl);
  }
  .page-hero-content h1 {
    font-size: 2.2rem;
  }
  .page-hero-actions {
    flex-direction: column-reverse;
  }
  .page-hero-actions .btn {
    width: 100%;
  }
  .zen-hero-1 {
    top: 12%; left: 8%;
    width: 45px; height: 45px;
    opacity: 0.1;
  }
  .zen-hero-2 {
    bottom: 2%; right: 8%;
    width: 40px; height: 40px;
    opacity: 0.08;
  }
  .zen-hero-3 {
    top: 16%; right: 12%;
    width: 35px; height: 35px;
    opacity: 0.08;
  }
}

/* ===================== INTRO PÉDICURIE ===================== */
.section-pedi-intro {
  position: relative;
  padding: var(--sp-4xl) 0;
  overflow: hidden;
  z-index: 1;
}

.intro-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.intro-content h2 {
  margin-bottom: var(--sp-lg);
  font-size: var(--fs-3xl);
}
.intro-text p {
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.intro-p-lead {
  font-size: var(--fs-lg);
  color: var(--color-dark);
  font-weight: 500;
}
.intro-p-second {
  font-size: var(--fs-md);
  color: var(--color-text-light);
}
.intro-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-pedi-intro {
    padding: var(--sp-3xl) 0;
  }
  .intro-content h2 {
    font-size: var(--fs-2xl);
  }
  .intro-p-lead {
    font-size: var(--fs-md);
  }
  .intro-p-second {
    font-size: var(--fs-base);
  }

}

/* ===================== AUDIENCE PÉDICURIE ===================== */
.section-audience {
  padding: var(--sp-4xl) 0;
  border-top: 1px solid rgba(42, 157, 143, 0.15); /* elegant line separating white sections */
}
.audience-header {
  max-width: 600px;
  margin: 0 auto var(--sp-2xl) auto;
}
.audience-header h2 {
  margin-bottom: var(--sp-sm);
}
.audience-lead {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.6;
}
.audience-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-sm);
}
.audience-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-md) var(--sp-lg);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: all var(--tr-fast);
}
.audience-list li:hover {
  border-color: rgba(42, 157, 143, 0.4);
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.06);
  background: #fbfdfd; /* extremely subtle tint */
}
.audience-list li:hover .audience-check {
  background: var(--color-primary);
  color: #fff;
}
.audience-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--tr-fast);
}
.audience-list span {
  font-size: var(--fs-sm);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .section-audience {
    padding: var(--sp-3xl) 0;
  }
  .audience-list {
    grid-template-columns: 1fr;
    gap: var(--sp-sm);
  }
  .audience-list li {
    padding: var(--sp-sm) var(--sp-md);
  }
}

/* --- Split CTA Layout --- */
.cta-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-split-pitch {
  padding-right: var(--sp-xl);
}
.cta-split-pitch h2 {
  font-size: var(--fs-3xl);
  color: var(--color-dark);
  margin-bottom: var(--sp-md);
  line-height: 1.2;
}
.cta-split-pitch p {
  font-size: var(--fs-md);
  color: var(--color-text);
  margin-bottom: var(--sp-xl);
  line-height: 1.6;
}
.cta-split-engagements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  border-left: 1px solid rgba(42, 157, 143, 0.2);
  padding-left: var(--sp-3xl);
}
.cse-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.cse-check {
  color: var(--color-primary);
  flex-shrink: 0;
}
.cse-item p {
  padding-left: 24px;
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .cta-split-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-2xl);
  }
  .cta-split-pitch {
    padding-right: 0;
    text-align: center;
  }
  .cta-split-engagements {
    border-left: none;
    border-top: 1px solid rgba(42, 157, 143, 0.2);
    padding-left: 0;
    padding-top: var(--sp-2xl);
  }
}
@media (max-width: 500px) {
  .cta-split-engagements {
    grid-template-columns: 1fr;
  }
}

/* ===================== TABS SPLIT LAYOUT ===================== */
.tab-split {
  display: grid;
  grid-template-columns: 4fr 7fr; /* Image column is smaller */
  gap: var(--sp-3xl);
  align-items: center;
  padding: var(--sp-2xl) 0; /* Proper bottom padding so it breathes */
}
.tab-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: none; /* Remove harsh shadow */
  border: 1px solid rgba(42, 157, 143, 0.2); /* Very fine, elegant colored border */
  aspect-ratio: 1/1;
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.tab-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tab-split-text {
  text-align: left;
}
.tab-split-text h3 {
  font-size: var(--fs-xl);
  color: var(--color-dark);
  margin-bottom: var(--sp-md);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tab-split-text p {
  font-size: var(--fs-md);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.tab-split-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .tabs-nav {
    gap: var(--sp-sm);
    margin-bottom: var(--sp-xl);
  }
  .patho-tab-btn {
    padding: 10px 8px;
    font-size: var(--fs-sm);
  }
  .tab-split {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
    padding: var(--sp-lg) 0 0 0;
  }
  .tab-split-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }

  .reveal {
    opacity: 1;
    transform: none
  }
}

/* ===================== THERAPIE LASER ===================== */
/* ===================== THERAPIE LASER ===================== */
.laser-intro-custom {
  display: flex;
  gap: var(--sp-3xl);
  align-items: center;
}
.laser-intro-text {
  flex: 0 0 60%;
}
.laser-intro-text h2 {
  font-family: var(--font-title); 
  font-size: var(--fs-3xl); 
  margin-bottom: var(--sp-lg);
}
.laser-intro-text p {
  font-size: var(--fs-sm); 
  color: var(--color-text); 
  line-height: 1.7; 
  margin-bottom: var(--sp-md);
}
.laser-intro-image {
  flex: 0 0 35%;
  position: relative;
}
.laser-intro-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .laser-intro-custom { flex-direction: column; gap: var(--sp-xl); }
  .laser-intro-text { flex: 1; }
  .laser-intro-image { flex: 1; max-width: 100%; margin: 0; }
  .laser-intro-image img { aspect-ratio: 16/9; }
}

.laser-trust-line {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  font-weight: 500;
  margin-top: var(--sp-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}
.laser-trust-line svg {
  color: var(--color-primary);
}

.laser-info-box {
  margin-top: var(--sp-md);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--color-primary-subtle);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-primary-dark);
}

/* --- 5 Effects Grid --- */
.laser-effects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}
.laser-effect-card {
  flex: 1 1 calc(33.333% - var(--sp-md));
  min-width: 250px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--sp-md) var(--sp-lg);
  transition: all var(--tr-base);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.laser-effect-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
}
.laser-effect-bg-num {
  position: absolute;
  right: -5px;
  bottom: -15px;
  font-size: 80px;
  font-weight: 800;
  color: var(--color-primary-subtle);
  z-index: -1;
  line-height: 1;
  pointer-events: none;
}
.laser-effect-card h3 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}
.laser-effect-card p {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Visibility Utilities */
@media (max-width: 900px) {
  .hidden-mobile { display: none !important; }
}
@media (min-width: 901px) {
  .hidden-desktop { display: none !important; }
}

/* --- Vertical Timeline --- */
.vertical-timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto;
  max-width: 600px;
}
.vertical-timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 24px;
  width: 1px;
  background: var(--color-border);
}
.vt-item {
  display: flex;
  gap: var(--sp-xl);
  position: relative;
  margin-bottom: var(--sp-xl);
}
.vt-item:last-child { margin-bottom: 0; }
.vt-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1;
  padding-top: 2px;
  flex-shrink: 0;
  position: relative; z-index: 2;
  box-shadow: 0 0 0 6px rgba(42, 157, 143, 0.12);
}
.vt-content {
  padding-top: 10px;
}
.vt-content h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-xs);
  font-weight: 600;
}
.vt-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Pathologies Pure Grid --- */
.patho-pure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2xl);
  margin-top: var(--sp-2xl);
}
.patho-pure-group {
  display: flex;
  flex-direction: column;
}
.patho-pure-group h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-sm);
  border-bottom: 2px solid var(--color-border);
}
.patho-pure-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}
.patho-pure-list li {
  font-size: var(--fs-sm);
  color: var(--color-text);
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
.patho-pure-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.8;
}

/* Expandable logic */
.patho-pure-group.is-expandable .patho-pure-list {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  cursor: pointer;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}
.patho-pure-group.is-expanded .patho-pure-list {
  max-height: 600px;
  -webkit-mask-image: none;
  mask-image: none;
  cursor: default;
}
.patho-pure-group.is-expandable .expand-hint {
  display: block;
  text-align: left;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.patho-pure-group.is-expandable .expand-hint:hover {
  opacity: 0.8;
}
.patho-pure-group.is-expanded .expand-hint {
  display: none;
}

@media (max-width: 900px) {
  .patho-pure-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
}

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-md);
  left: 50%;
  transform: translateX(-50%) translateY(150%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-md);
  border-radius: var(--radius-lg);
  max-width: 450px;
  width: calc(100% - var(--sp-lg) * 2);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.5;
}

.cookie-content strong {
  color: var(--color-dark);
  display: block;
  margin-bottom: 4px;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-sm);
}