:root {
  --bg-cream: #f7f8f2;
  --bg-mint: #e2f2eb;
  --bg-sky: #d9edf5;
  --ink: #12333a;
  --muted: #4f6a70;
  --brand: #1f9d8b;
  --brand-dark: #177467;
  --accent: #ffb16a;
  --card: rgba(255, 255, 255, 0.75);
  --border: rgba(18, 51, 58, 0.12);
  --shadow: 0 20px 40px rgba(23, 116, 103, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: linear-gradient(130deg, var(--bg-cream) 0%, var(--bg-sky) 52%, var(--bg-mint) 100%);
  background-image:
    linear-gradient(130deg, rgba(247, 248, 242, 0.96), rgba(217, 237, 245, 0.94) 52%, rgba(226, 242, 235, 0.94) 100%),
    linear-gradient(45deg, rgba(31, 157, 139, 0.04) 25%, transparent 25%, transparent 50%, rgba(31, 157, 139, 0.04) 50%, rgba(31, 157, 139, 0.04) 75%, transparent 75%, transparent);
  background-size: auto, 36px 36px;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 10%, rgba(31, 157, 139, 0.18), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(255, 177, 106, 0.22), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(31, 157, 139, 0.14), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(247, 248, 242, 0.74);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}

.site-header.scrolled {
  border-color: var(--border);
  background: rgba(247, 248, 242, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 5px rgba(31, 157, 139, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.nav-doctolib-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-doctolib-logo {
  width: 118px;
  height: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: var(--ink);
  margin: 0.25rem 0;
}

.btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 10px 25px rgba(23, 116, 103, 0.24);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

main {
  padding-top: 2.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 3.8rem 0 2.6rem;
}

.kicker {
  color: var(--brand-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.hero-content > p {
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.7;
}

.hero-cta {
  margin: 1.55rem 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-trust li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
}

/* Halo vert derrière la carte hero — sur le wrapper pour ne pas être rogné */
.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 0.85rem;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  z-index: -1;
  border-radius: 2.8rem;
  background: radial-gradient(ellipse at 50% 65%, rgba(31, 157, 139, 0.72) 0%, rgba(23, 116, 103, 0.38) 42%, transparent 70%);
  filter: blur(38px);
  pointer-events: none;
}

.hero-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(23, 116, 103, 0.32);
  transform-style: preserve-3d;
}

.hero-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-card-info {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(247, 248, 242, 0.82);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.85rem;
  backdrop-filter: blur(8px);
}

.hero-card-info p {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-map-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 12px 28px rgba(23, 116, 103, 0.16);
}

.hero-map-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.hero-map-card iframe {
  width: 100%;
  height: 170px;
  border: 0;
  border-radius: 0.8rem;
  display: block;
}

.stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ---- Bandeau avis Google défilant ---- */
.reviews-belt {
  width: 100%;
  overflow: hidden;
  margin: 1.6rem 0 0;
  padding: 0.8rem 0 1.2rem;
  position: relative;
  /* Fondu sur les bords */
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-belt-track {
  display: inline-flex;
  gap: 1rem;
  animation: beltScroll 54s linear infinite;
  will-change: transform;
}

.reviews-belt:hover .reviews-belt-track {
  animation-play-state: paused;
}

.review-bubble {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  padding: 0.9rem 1.1rem;
  width: 260px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(18, 51, 58, 0.08);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.review-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(23, 116, 103, 0.18);
}

.rb-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.rb-avatar {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--c, var(--brand));
  color: #fff;
  font-weight: 700;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.rb-name {
  display: block;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--ink);
  line-height: 1.2;
}

.rb-stars {
  display: block;
  color: #f5a623;
  font-size: 0.78rem;
  letter-spacing: 1px;
  line-height: 1;
}

.rb-text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
  white-space: normal;
}

.rb-short {
  display: inline;
}

.rb-full {
  display: inline;
}

.rb-full.hidden {
  display: none;
}

.rb-more,
.rb-less {
  background: none;
  border: none;
  padding: 0;
  color: #1a73e8;
  font: inherit;
  font-size: 0.84rem;
  text-decoration: underline;
  cursor: pointer;
}

@keyframes beltScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-belt-track {
    animation: none;
  }
}

.stats article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.2rem;
}

.counter {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--brand-dark);
}

.stats p {
  color: var(--muted);
  margin-top: 0.35rem;
}

.services,
.parcours,
.patients,
.testimonials,
.contact {
  padding: 5.4rem 0 1rem;
}

.section-head {
  max-width: 720px;
}

.section-head h2 {
  margin-top: 0.7rem;
}

.service-grid,
.testimonial-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial[data-kine] {
  cursor: pointer;
}

.testimonial[data-kine]:focus-visible {
  outline: 3px solid rgba(31, 157, 139, 0.35);
  outline-offset: 2px;
}

.service-card:hover,
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial--with-photo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--brand);
  flex-shrink: 0;
}

.team-info {
  flex: 1;
}

.kine-rdv-btn {
  margin-top: 0.8rem;
  display: inline-flex;
}

.service-card h3,
.testimonial strong {
  margin-bottom: 0.65rem;
}

.service-card h3,
.testimonial p strong,
.info-card h3 {
  color: var(--ink);
}

.service-card p,
.testimonial p,
.step p,
.contact p {
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.info-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.info-card h3 {
  margin-bottom: 0.7rem;
}

.equipements-details {
  padding: 2.2rem 0 0.8rem;
}

.equipements-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.equipement-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.1rem;
}

.equipement-card h3 {
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.equipement-card p {
  color: var(--muted);
  line-height: 1.65;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

.step {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem;
}

.step span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

/* ---- Carrousel plateau technique ---- */
.carousel-section {
  padding: 2.4rem 0 0;
}

.carousel-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: min(920px, 100%);
  margin: 0 auto;
}

.carousel-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 0.75rem;
}

.carousel-description {
  margin-top: 0.85rem;
  padding: 0.8rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
}

.carousel-description p {
  color: var(--muted);
  line-height: 1.6;
}

.carousel-card .section-head {
  margin-bottom: 0.75rem;
}

.carousel-card .section-head h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.6rem);
}

.carousel {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(23, 116, 103, 0.14);
}

.carousel-track {
  display: flex;
  transition: transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
}

.carousel-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: none;
  border-radius: 50%;
  width: 2.35rem;
  height: 2.35rem;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(18, 51, 58, 0.14);
  transition: background 180ms ease, transform 180ms ease;
  z-index: 2;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 0.9rem; }
.carousel-next { right: 0.9rem; }

.carousel-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}

.carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.contact {
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

.rdv-callout {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
}

.doctolib-logo-btn {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  transition: transform 180ms ease;
}

.doctolib-logo-btn:hover {
  transform: translateY(-2px);
}

.doctolib-logo-btn:focus-visible {
  outline: 3px solid rgba(31, 157, 139, 0.35);
  outline-offset: 6px;
}

.doctolib-logo {
  width: min(280px, 72vw);
  height: auto;
  display: block;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---- Modale profils kine ---- */
body.modal-open {
  overflow: hidden;
}

.kine-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.kine-modal.open {
  display: block;
}

.kine-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 30, 0.58);
  backdrop-filter: blur(4px);
}

.kine-modal-panel {
  position: relative;
  width: min(1060px, 94vw);
  max-height: 90vh;
  margin: 5vh auto;
  overflow: auto;
  background: linear-gradient(165deg, rgba(247, 248, 242, 0.98), rgba(226, 242, 235, 0.96));
  border: 1px solid var(--border);
  border-radius: 1.2rem;
  box-shadow: 0 28px 70px rgba(7, 23, 30, 0.4);
  padding: 1.2rem;
}

.kine-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.kine-modal-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 1.4rem;
  align-items: start;
}

.kine-modal-photo-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(31, 157, 139, 0.42);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(23, 116, 103, 0.18);
  margin-top: 0.25rem;
}

.kine-modal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.kine-modal-photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  text-align: center;
  padding: 0.65rem;
  background: repeating-linear-gradient(
    -45deg,
    rgba(31, 157, 139, 0.12),
    rgba(31, 157, 139, 0.12) 14px,
    rgba(255, 255, 255, 0.5) 14px,
    rgba(255, 255, 255, 0.5) 28px
  );
}

.kine-modal-content h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 1rem;
}

.kine-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.kine-modal-grid section {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.75rem 0.85rem;
}

.kine-modal-grid section h4 {
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 0.4rem;
}

.kine-modal-grid section p,
.kine-modal-grid section li {
  color: var(--ink);
  line-height: 1.55;
  font-size: 0.95rem;
}

.kine-modal-grid section ul {
  padding-left: 1.05rem;
}

.kine-modal-wide {
  grid-column: 1 / -1;
}

/* ---- Modale prise de RDV ---- */
.rdv-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
}

.rdv-modal.open {
  display: block;
}

.rdv-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 23, 30, 0.58);
  backdrop-filter: blur(4px);
}

.rdv-modal-panel {
  position: relative;
  width: min(720px, 92vw);
  margin: 10vh auto;
  background: linear-gradient(165deg, rgba(247, 248, 242, 0.98), rgba(226, 242, 235, 0.96));
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 28px 70px rgba(7, 23, 30, 0.4);
  padding: 1.2rem;
}

.rdv-modal-close {
  position: absolute;
  right: 0.85rem;
  top: 0.75rem;
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.rdv-modal-panel h3 {
  margin-bottom: 1rem;
  padding-right: 2.4rem;
}

.phone-rdv-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.phone-rdv-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.rdv-list {
  display: grid;
  gap: 0.7rem;
}

.rdv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  padding: 0.8rem 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rdv-main {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.rdv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(31, 157, 139, 0.3);
  flex-shrink: 0;
  background: #fff;
}

.rdv-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 51, 58, 0.12);
}

.rdv-name {
  color: var(--ink);
  font-weight: 600;
}

.rdv-link {
  color: var(--brand-dark);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-card {
  animation: floatY 4.2s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.012);
  }
}

/* marqueeX supprimé — remplacé par beltScroll dans la section bandeau avis */

/* ── Banderole logos clients ── */
.clients-belt {
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.clients-belt .section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-belt .section-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ink);
}

.clients-belt-track {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-belt-inner {
  display: flex;
  width: max-content;
  animation: scrollClients 28s linear infinite;
  padding: 0.5rem 0;
}

.clients-logo-set {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding-right: 5rem; /* espace après le dernier logo = seamless loop */
}

.clients-logo-set img {
  height: 72px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scrollClients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .clients-belt-inner {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .kine-modal-layout {
    grid-template-columns: 1fr;
  }

  .rdv-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .rdv-main {
    width: 100%;
  }

  .kine-modal-photo-wrap,
  .kine-modal-photo,
  .kine-modal-photo-placeholder {
    min-height: 0;
  }

  .kine-modal-photo-wrap {
    width: 140px;
    height: 140px;
  }

  .carousel-showcase {
    grid-template-columns: 1fr;
  }

  .stats,
  .steps,
  .info-grid,
  .equipements-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .carousel-slide img {
    height: 300px;
  }
}

@media (max-width: 700px) {
  .carousel-slide img {
    height: 220px;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 4vw;
    width: min(300px, 90vw);
    background: rgba(247, 248, 242, 0.98);
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 0.9rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .stats,
  .steps,
  .info-grid,
  .equipements-grid,
  .service-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 350px;
  }

  .kine-modal-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
