:root {
  --ink: #0c2231;
  --ink-soft: rgba(12, 34, 49, 0.7);
  --primary: #0f4c81;
  --primary-dark: #0b3a63;
  --accent: #1b6fb3;
  --sand: #f3ede4;
  --sand-deep: #efe6da;
  --warm-gray: #e8e1d8;
  --surface: #f8f5f0;
  --surface-alt: #f2f5f7;
  --border: rgba(15, 42, 67, 0.12);
  --mist: #f9fbfd;
  --shadow: 0 18px 40px rgba(11, 29, 40, 0.16);
  --shadow-soft: 0 10px 22px rgba(11, 29, 40, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f6fbff 0%, #f4f2ec 45%, #efe7dc 100%);
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center 20%;
  background: #fff;
  padding: 4px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15, 42, 67, 0.12);
  flex: 0 0 auto;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 101;
}

.nav-trigger {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav a:hover,
.nav-trigger:hover {
  background: #efe7dc;
}

.nav a[aria-current="page"] {
  background: #e9e1d7;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle-bar:nth-child(2) {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle-bar:nth-child(3) {
  opacity: 0;
}

.nav-open .nav-toggle-bar:nth-child(4) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 38, 0.45);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 300;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  width: min(92vw, 360px);
  background: #f9f6f1;
  border-radius: 20px;
  padding: 22px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.mobile-nav-inner a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--ink);
  background: #f1ebe1;
  display: block;
}

.mobile-nav-inner a[aria-current="page"] {
  background: #e6ded2;
  color: var(--primary-dark);
}

.mobile-nav-inner a.btn {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  color: #fff;
  display: inline-flex;
  justify-content: center;
}

.mobile-nav-group {
  display: grid;
  gap: 8px;
  padding: 8px 0;
}

.mobile-nav-title {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.patient-locked {
  overflow: hidden;
}

body.patient-locked .protected-content {
  display: none;
}

.patient-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
}

.patient-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 38, 0.55);
  backdrop-filter: blur(6px);
}

.patient-gate-modal {
  position: relative;
  width: min(92vw, 520px);
  background: #fbf8f2;
  border-radius: 24px;
  border: 1px solid rgba(15, 42, 67, 0.12);
  box-shadow: 0 28px 70px rgba(9, 24, 37, 0.28);
  padding: 28px;
  z-index: 1;
}

.patient-gate-modal h2 {
  margin-top: 0;
}

.patient-gate-modal p {
  color: rgba(28, 27, 25, 0.8);
}

.patient-gate-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15, 42, 67, 0.12);
  background: #fff;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.patient-gate-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.patient-gate-form input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 42, 67, 0.18);
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.patient-gate-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(120, 169, 186, 0.18);
}

.patient-gate-feedback {
  margin: 0;
  min-height: 1.25em;
  font-weight: 600;
  color: #b33a3a;
}

body.patient-unlocked .patient-gate {
  display: none;
}

body.patient-unlocked .protected-content {
  display: block;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #f9f6f1;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 12px 24px rgba(15, 42, 67, 0.12);
  z-index: 200;
}

.nav-menu a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-menu a:hover {
  background: #efe7dc;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  color: var(--mist);
  font-weight: 600;
  border: 1px solid rgba(15, 42, 67, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15, 42, 67, 0.25);
}

#prevention .btn.ghost {
  display: none;
}

#prevention .btn.ghost::after {
  content: none;
}

#prevention .btn.ghost:hover {
  background: none;
}


.btn.small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.hero {
  padding: 96px 0 70px;
}

.hero-compact {
  padding: 70px 0 50px;
}

.hero-compact .container {
  max-width: 760px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 12px;
}

.hero-card {
  background: linear-gradient(145deg, #f7f4ee 0%, #f3f0ea 55%, #e7f0f7 100%);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card-inner {
  border: 1px solid rgba(28, 27, 25, 0.1);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-card h2 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(28, 27, 25, 0.7);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust span {
  background: #e9e1d7;
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.image-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 42, 67, 0.08);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(243, 237, 228, 0.7);
  border: 1px solid rgba(47, 110, 165, 0.14);
  margin-bottom: 12px;
}

.link-row p {
  margin: 0;
  color: rgba(15, 42, 67, 0.86);
}

.link-row a {
  color: var(--accent);
  font-weight: 600;
}

.quiz-actions .btn,
.quiz-actions .btn.ghost {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

.quiz-actions .btn.ghost:hover,
.quiz-actions .btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.stat-value {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(28, 27, 25, 0.7);
}

.section {
  padding: 88px 0;
  background: var(--surface);
}

.section.alt {
  background: var(--sand);
}

.section:nth-of-type(even):not(.alt) {
  background: var(--surface-alt);
}

.section-head {
  max-width: 620px;
  margin-bottom: 32px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.benefit-grid,
.testimonial-grid,
.insight-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.benefit-card {
  background: linear-gradient(160deg, #e9f2fb 0%, #f3e9dc 100%);
  border: 4px solid rgba(20, 61, 100, 0.3);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-home .home-benefits .benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (hover: hover) {
  .page-home .home-benefits .benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 61, 100, 0.42);
    box-shadow: 0 24px 50px rgba(77, 58, 45, 0.16);
  }
}

.insight-card {
  border-left: 4px solid var(--accent);
}

.testimonial-card {
  background: #f7fbff;
  border: 1px solid rgba(15, 42, 67, 0.12);
}

.testimonial-quote {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  margin: 0;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.media-card {
  margin: 0;
  background: #fbf9f6;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 67, 0.1);
  box-shadow: 0 10px 24px rgba(15, 42, 67, 0.08);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}

.media-card figcaption {
  padding: 12px 14px;
  font-size: 0.9rem;
  color: rgba(15, 42, 67, 0.8);
}

.media-credit {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(15, 42, 67, 0.6);
}

.audience-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  justify-items: center;
}

.audience-card {
  background: linear-gradient(135deg, #eef5ff 0%, #ffffff 55%, #fbf7ef 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47, 110, 165, 0.22);
  box-shadow: 0 18px 40px rgba(10, 38, 64, 0.1);
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
  min-height: 100%;
  width: 100%;
  max-width: 980px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  border: 1px solid rgba(28, 92, 148, 0.55);
  box-shadow: 0 24px 46px rgba(10, 38, 64, 0.16);
}

.audience-card img,
.audience-image {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(47, 110, 165, 0.12);
  border-right: 1px solid rgba(47, 110, 165, 0.12);
}

.audience-body {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.audience-body h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.audience-body p {
  margin: 0;
  line-height: 1.6;
}

.audience-body strong {
  color: var(--accent);
  background: rgba(47, 110, 165, 0.18);
  padding: 0 6px;
  border-radius: 999px;
  font-weight: 700;
}

.audience-body h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(31, 91, 142, 0.18);
}

@media (max-width: 900px) {
  .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-card img,
  .audience-image {
    height: 220px;
    border-right: none;
  }
}

.motifs {
  margin-top: 28px;
  padding: 22px;
  border-radius: 18px;
  background: #f6fbff;
  border: 1px solid rgba(47, 110, 165, 0.18);
}

.timeline {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(31, 91, 142, 0.4), rgba(31, 91, 142, 0.1));
}

.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  position: relative;
}

.timeline-index {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #e9f2ff;
  color: var(--primary);
  font-weight: 700;
  border: 1px solid rgba(31, 91, 142, 0.35);
  box-shadow: 0 8px 18px rgba(15, 42, 67, 0.08);
  position: relative;
  z-index: 1;
}

.timeline-content {
  background: #f5faff;
  border-radius: 18px;
  border: 1px solid rgba(47, 110, 165, 0.18);
  box-shadow: 0 12px 28px rgba(15, 42, 67, 0.08);
  padding: 18px 22px;
  display: grid;
  gap: 8px;
}

.timeline-content h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.timeline-content p {
  margin: 0;
  color: rgba(15, 42, 67, 0.86);
}

@media (max-width: 700px) {
  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
  }

  .timeline-index {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 0.85rem;
  }
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #f7f2ea;
  border-radius: 16px;
  border: 1px solid rgba(47, 110, 165, 0.18);
  box-shadow: 0 10px 26px rgba(15, 42, 67, 0.08);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--primary-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgba(15, 42, 67, 0.86);
}

.faq-image {
  width: min(100%, 720px);
  display: block;
  margin: 0 20px 20px;
  border-radius: 14px;
  border: 1px solid rgba(47, 110, 165, 0.18);
  box-shadow: 0 12px 26px rgba(15, 42, 67, 0.08);
}

.motifs-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.motifs-cards .card-title {
  grid-column: 1 / -1;
  margin: 8px 0 0;
}

.motif-detail {
  grid-column: 1 / -1;
  background: #f7fbff;
  border: 1px solid rgba(47, 110, 165, 0.18);
}

.motif-details {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.motif-detail {
  display: none;
}

.motif-detail:target {
  display: block;
}

.motif-more {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

.detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-close {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(47, 110, 165, 0.4);
}

.detail-title {
  font-weight: 800;
  color: var(--primary-dark);
  margin-top: 0;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: grid;
  gap: 6px;
}

.detail-list li {
  padding-left: 18px;
  position: relative;
}

.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.detail-note {
  font-size: 0.92rem;
  color: rgba(15, 42, 67, 0.75);
}

.motifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 14px;
}

.motifs-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.motifs-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed rgba(47, 110, 165, 0.35);
}

.motifs-list a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.muted {
  color: rgba(15, 42, 67, 0.65);
  font-size: 0.92rem;
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: linear-gradient(140deg, #e3eff9 0%, #ffffff 100%);
  border: 1px solid rgba(15, 42, 67, 0.14);
  display: inline-grid;
  place-items: center;
  position: relative;
}

.card-icon::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(27, 111, 179, 0.12);
}

.theme-warm .hero {
  background: radial-gradient(circle at top, #fff7ee 0%, #f3f2ea 55%, #eef4fb 100%);
}

.prevention-hero .hero-copy h1 {
  color: var(--primary-dark);
}

.prevention-card {
  background: linear-gradient(160deg, #fff4e6 0%, #f7f1e7 55%, #e7f1fb 100%);
}

.accent-card {
  border-left: 4px solid #e89a6f;
  background: #fffaf4;
}

.warm-band {
  background: #fdf5ec;
}

.prevention-visual .visual-card {
  border-radius: 24px;
  min-height: 260px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 42, 67, 0.12);
}

.prevention-visual .visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 42, 67, 0.55), rgba(15, 42, 67, 0.15));
}

.visual-people {
  background-image: url("https://images.pexels.com/photos/4148931/pexels-photo-4148931.jpeg?auto=compress&cs=tinysrgb&w=1400");
}

.visual-copy {
  position: relative;
  z-index: 1;
  color: #fffaf4;
  max-width: 520px;
}

.callout {
  background: linear-gradient(135deg, #f3ece2 0%, #e9f1f7 100%);
  border-radius: 22px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(15, 42, 67, 0.1);
}

.callout h2 {
  margin-top: 0;
}

.cta {
  background: linear-gradient(135deg, #f1ebe1 0%, #e8f1f7 100%);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

.card {
  background: #fbf9f6;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(15, 42, 67, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
  }
}

.exercise-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.exercise-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
}

.exercise-thumb {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(47, 110, 165, 0.2);
  background: #f2f7ff;
  display: grid;
  place-items: center;
}

.exercise-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exercise-content h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.exercise-content p {
  margin: 0 0 10px;
  color: rgba(15, 42, 67, 0.82);
}

.exercise-index {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(47, 110, 165, 0.3);
}

@media (max-width: 700px) {
  .exercise-card {
    grid-template-columns: 1fr;
  }

  .exercise-thumb {
    width: 100%;
    height: 180px;
  }
}

.cabinet-list {
  display: grid;
  gap: 28px;
}

.cabinet-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(240px, 1fr) minmax(240px, 1fr);
  gap: 22px;
  padding: 22px;
  background: #fbf9f6;
  border-radius: 20px;
  border: 1px solid rgba(15, 42, 67, 0.1);
  box-shadow: 0 10px 28px rgba(15, 42, 67, 0.08);
  align-items: start;
}

.cabinet-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
}

.cabinet-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: cabinetFade 20s infinite;
}

.cabinet-slider[data-count="4"] .cabinet-slide {
  animation-duration: 20s;
}

.cabinet-slider[data-count="4"] .cabinet-slide:nth-child(2) {
  animation-delay: 5s;
}

.cabinet-slider[data-count="4"] .cabinet-slide:nth-child(3) {
  animation-delay: 10s;
}

.cabinet-slider[data-count="4"] .cabinet-slide:nth-child(4) {
  animation-delay: 15s;
}

.cabinet-slider[data-count="3"] .cabinet-slide {
  animation-duration: 18s;
}

.cabinet-slider[data-count="3"] .cabinet-slide:nth-child(2) {
  animation-delay: 6s;
}

.cabinet-slider[data-count="3"] .cabinet-slide:nth-child(3) {
  animation-delay: 12s;
}

.cabinet-slider[data-count="7"] .cabinet-slide {
  animation-duration: 35s;
}

.cabinet-slider[data-count="7"] .cabinet-slide:nth-child(2) {
  animation-delay: 5s;
}

.cabinet-slider[data-count="7"] .cabinet-slide:nth-child(3) {
  animation-delay: 10s;
}

.cabinet-slider[data-count="7"] .cabinet-slide:nth-child(4) {
  animation-delay: 15s;
}

.cabinet-slider[data-count="7"] .cabinet-slide:nth-child(5) {
  animation-delay: 20s;
}

.cabinet-slider[data-count="7"] .cabinet-slide:nth-child(6) {
  animation-delay: 25s;
}

.cabinet-slider[data-count="7"] .cabinet-slide:nth-child(7) {
  animation-delay: 30s;
}

.cabinet-slider[data-count="8"] .cabinet-slide {
  animation-duration: 40s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(2) {
  animation-delay: 5s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(3) {
  animation-delay: 10s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(4) {
  animation-delay: 15s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(5) {
  animation-delay: 20s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(6) {
  animation-delay: 25s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(7) {
  animation-delay: 30s;
}

.cabinet-slider[data-count="8"] .cabinet-slide:nth-child(8) {
  animation-delay: 35s;
}

.cabinet-info h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
}

.cabinet-address {
  font-weight: 600;
}

.cabinet-actions {
  margin: 14px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cabinet-links {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
}

.cabinet-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 42, 67, 0.12);
}

.cabinet-map {
  background: #f7fafc;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 42, 67, 0.08);
}

.map-header {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-card {
  text-align: center;
  background: linear-gradient(180deg, #f7f2ea 0%, #fbf9f6 100%);
  border: 12px solid rgba(20, 61, 100, 0.5);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  padding-top: 48px;
}

.profile-card h3 {
  color: var(--primary-dark);
}

.profile-card .btn.ghost {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  border-color: rgba(15, 42, 67, 0.2);
}

.profile-card .btn.ghost:hover {
  background: linear-gradient(135deg, #0c355a, #1c6aa2);
}

.profile-card::before {
  content: none;
}

.profile-photo {
  width: clamp(140px, 24vw, 190px);
  height: clamp(140px, 24vw, 190px);
  object-fit: contain;
  object-position: center top;
  display: block;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 24px;
  margin: 0 auto 18px;
  border: 1px solid rgba(15, 42, 67, 0.12);
  background: #fff;
  box-shadow: 0 16px 28px rgba(15, 42, 67, 0.16);
}

.home-team {
  position: relative;
  overflow: hidden;
}

.home-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 54, 70, 0.58) 0%, rgba(28, 54, 70, 0.44) 45%, rgba(28, 54, 70, 0.52) 100%),
    url("assets/Accueil /1.jpg") center center / cover no-repeat;
}

.home-team .container {
  position: relative;
  z-index: 1;
}

.home-team .section-head {
  text-align: center;
  margin: 0 auto 36px;
}

.home-team .section-head .eyebrow,
.home-team .section-head h2 {
  color: #f7f4ef;
}

.home-team .section-head h2 {
  position: relative;
  display: inline-block;
}

.home-team .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 169, 186, 0.95), rgba(223, 191, 162, 0.9));
}

.home-team .cards {
  align-items: stretch;
}

.home-team .profile-card {
  background: linear-gradient(180deg, rgba(252, 249, 243, 0.92) 0%, rgba(237, 245, 246, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(8, 23, 32, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-team .profile-card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -1px -1px 22px;
  background: linear-gradient(90deg, rgba(120, 169, 186, 0.95), rgba(223, 191, 162, 0.9));
}

.home-team .profile-photo {
  border: 4px solid rgba(248, 245, 240, 0.92);
  box-shadow:
    0 18px 30px rgba(22, 48, 63, 0.14),
    0 0 0 1px rgba(96, 131, 147, 0.14);
}

.home-team .profile-card h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.home-team .profile-card .btn.ghost.small {
  min-width: 210px;
  background: linear-gradient(135deg, #21556f 0%, #4b8aa2 100%);
  color: #fffaf4;
  border-color: rgba(39, 66, 82, 0.2);
  box-shadow: 0 12px 24px rgba(39, 66, 82, 0.16);
}

.home-team .profile-card .btn.ghost.small:hover {
  background: linear-gradient(135deg, #1d4c63 0%, #3f7f98 100%);
}

.page-home {
  position: relative;
  background: #dbe5e7;
}

.page-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(248, 244, 239, 0.22) 0%, rgba(229, 238, 240, 0.34) 34%, rgba(220, 228, 225, 0.48) 100%),
    url("assets/Accueil /2.png") center center / cover no-repeat;
  transform: scale(1.03);
}

.page-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(226, 172, 129, 0.18) 0%, rgba(226, 172, 129, 0) 26%),
    radial-gradient(circle at left 28%, rgba(121, 168, 184, 0.14) 0%, rgba(121, 168, 184, 0) 24%),
    linear-gradient(180deg, rgba(10, 28, 40, 0.02) 0%, rgba(10, 28, 40, 0.02) 42%, rgba(10, 28, 40, 0.06) 100%);
  pointer-events: none;
}

.page-home .site-header {
  background: rgba(247, 244, 240, 0.38);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(39, 79, 102, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 56, 0.04);
}

.page-home .section,
.page-home .section.alt {
  background: transparent;
}

.page-home .section .container {
  position: relative;
}

.page-home .section .container::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.1) 0%, rgba(234, 172, 120, 0) 32%),
    linear-gradient(180deg, rgba(249, 242, 235, 0.42) 0%, rgba(235, 243, 242, 0.26) 100%);
  border: 1px solid rgba(133, 111, 95, 0.08);
  box-shadow: 0 18px 40px rgba(70, 55, 44, 0.06);
  backdrop-filter: blur(6px);
}

.page-home .hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(10, 31, 42, 0.2) 0%, rgba(10, 31, 42, 0.12) 42%, rgba(10, 31, 42, 0.08) 100%),
    radial-gradient(circle at right center, rgba(238, 184, 141, 0.14) 0%, rgba(238, 184, 141, 0) 34%),
    linear-gradient(115deg, rgba(10, 31, 42, 0.08) 0%, rgba(10, 31, 42, 0.05) 42%, rgba(10, 31, 42, 0.02) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .hero .container::before {
  content: none;
}

.page-home .hero-copy {
  max-width: 640px;
  padding: 40px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(120, 169, 186, 0.18) 0%, rgba(120, 169, 186, 0) 42%),
    linear-gradient(180deg, rgba(38, 50, 58, 0.82) 0%, rgba(45, 59, 64, 0.64) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 76px rgba(4, 14, 23, 0.28);
  backdrop-filter: blur(14px);
}

.page-home .hero-copy .eyebrow,
.page-home .hero-copy h1,
.page-home .hero-copy p {
  color: var(--mist);
}

.page-home .hero-card {
  background: rgba(251, 244, 237, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(8, 23, 32, 0.16);
  backdrop-filter: blur(12px);
}

.page-home .hero-card-inner {
  background: rgba(252, 248, 243, 0.9);
  border-color: rgba(130, 104, 84, 0.1);
}

.page-home .hero-card h2,
.page-home .hero-card li,
.page-home .hero-card p {
  color: #17394c;
}

.page-home .hero-trust span {
  background: rgba(248, 245, 240, 0.16);
  color: #f7f4ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.page-home .section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-home .section-head h2 {
  position: relative;
  display: inline-block;
}

.page-home .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ca8b60, #78a9ba);
}

.page-home .cards > .card,
.page-home .panel,
.page-home .link-row,
.page-home .callout {
  background: linear-gradient(180deg, rgba(250, 244, 238, 0.88) 0%, rgba(236, 244, 242, 0.78) 100%);
  border: 1px solid rgba(149, 111, 83, 0.12);
  box-shadow: 0 18px 38px rgba(77, 58, 45, 0.1);
  backdrop-filter: blur(12px);
}

.page-home .cards > .card:hover {
  box-shadow: 0 24px 48px rgba(77, 58, 45, 0.14);
}

.page-home .home-expertise,
.page-home .home-benefits,
.page-home .home-blog,
.page-home .home-quiz {
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-home .home-team::before {
  content: none;
}

.page-home .home-team .container::before {
  background:
    radial-gradient(circle at top right, rgba(120, 169, 186, 0.18) 0%, rgba(120, 169, 186, 0) 30%),
    linear-gradient(180deg, rgba(34, 54, 68, 0.7) 0%, rgba(47, 72, 89, 0.56) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 56px rgba(8, 23, 32, 0.16);
}

.page-home .home-team .section-head .eyebrow,
.page-home .home-team .section-head h2 {
  color: #f7f4ef;
}

.page-home .home-team .profile-card {
  background: linear-gradient(180deg, rgba(252, 248, 242, 0.94) 0%, rgba(236, 244, 245, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 54px rgba(8, 23, 32, 0.18);
}

.page-home .image-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 42px rgba(20, 41, 54, 0.12);
}

.page-home main {
  display: grid;
  gap: 34px;
  padding-bottom: 34px;
}

.page-home .home-landing {
  min-height: 80vh;
}

.page-home .home-landing .hero-copy {
  max-width: 680px;
  background:
    radial-gradient(circle at top left, rgba(120, 169, 186, 0.18) 0%, rgba(120, 169, 186, 0) 42%),
    linear-gradient(180deg, rgba(35, 47, 54, 0.84) 0%, rgba(44, 58, 62, 0.66) 100%);
}

.page-home .home-landing .hero-card {
  transform: translateY(28px);
}

.page-home .home-expertise .container::before {
  background:
    radial-gradient(circle at top left, rgba(120, 169, 186, 0.14) 0%, rgba(120, 169, 186, 0) 30%),
    linear-gradient(180deg, rgba(239, 246, 248, 0.74) 0%, rgba(248, 242, 236, 0.56) 100%);
}

.page-home .home-expertise .cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.page-home .home-expertise .card:nth-child(1) {
  background: rgba(228, 240, 247, 0.94);
}

.page-home .home-expertise .card:nth-child(2) {
  background: rgba(246, 238, 229, 0.94);
}

.page-home .home-expertise .card:nth-child(3) {
  background: rgba(231, 243, 239, 0.94);
}

.page-home .home-expertise .card:nth-child(4) {
  background: rgba(235, 241, 246, 0.94);
}

.page-home .home-expertise .card {
  position: relative;
  overflow: hidden;
  padding-top: 30px;
}

.page-home .home-expertise .card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, rgba(89, 143, 170, 0.95), rgba(208, 156, 113, 0.8));
}

.page-home .home-expertise .card h3 {
  color: #17394c;
}

.page-home .home-team .container::before {
  background:
    radial-gradient(circle at top right, rgba(120, 169, 186, 0.16) 0%, rgba(120, 169, 186, 0) 30%),
    linear-gradient(180deg, rgba(37, 58, 72, 0.66) 0%, rgba(48, 72, 87, 0.5) 100%);
}

.page-home .home-team .cards {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
  gap: 28px;
}

.page-home .home-team .profile-card h3 {
  font-size: 1.5rem;
}

.page-home .home-team .profile-card .btn.ghost.small {
  background: linear-gradient(135deg, #1e4e67 0%, #4f89a3 100%);
  color: #f7fbfd;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(18, 43, 57, 0.16);
}

.page-home .home-prevention .container::before {
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.18) 0%, rgba(234, 172, 120, 0) 30%),
    linear-gradient(180deg, rgba(248, 238, 230, 0.54) 0%, rgba(237, 245, 243, 0.34) 100%);
}

.page-home .home-prevention .panel {
  background:
    radial-gradient(circle at top right, rgba(228, 176, 133, 0.18) 0%, rgba(228, 176, 133, 0) 34%),
    linear-gradient(180deg, rgba(44, 73, 91, 0.88) 0%, rgba(65, 104, 124, 0.8) 100%);
  color: #f7f4ef;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 50px rgba(20, 41, 54, 0.16);
}

.page-home .home-prevention .split > div:first-child {
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(250, 245, 239, 0.78) 0%, rgba(239, 246, 244, 0.7) 100%);
  border: 1px solid rgba(149, 111, 83, 0.1);
  box-shadow: 0 18px 38px rgba(77, 58, 45, 0.08);
}

.page-home .home-prevention .panel h3,
.page-home .home-prevention .panel p {
  color: #f7f4ef;
}

.page-home .home-trust .container::before {
  background:
    radial-gradient(circle at top right, rgba(120, 169, 186, 0.18) 0%, rgba(120, 169, 186, 0) 30%),
    linear-gradient(180deg, rgba(231, 240, 245, 0.42) 0%, rgba(246, 240, 233, 0.28) 100%);
}

.page-home .home-trust .split {
  align-items: stretch;
  gap: 28px;
}

.page-home .home-trust .split > div:last-child {
  padding: 30px 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(120, 169, 186, 0.1) 0%, rgba(120, 169, 186, 0) 32%),
    linear-gradient(180deg, rgba(250, 246, 241, 0.84) 0%, rgba(239, 246, 244, 0.76) 100%);
  border: 1px solid rgba(149, 111, 83, 0.1);
  box-shadow: 0 20px 42px rgba(77, 58, 45, 0.08);
}

.page-home .home-benefits .container::before {
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.14) 0%, rgba(234, 172, 120, 0) 30%),
    linear-gradient(180deg, rgba(245, 237, 228, 0.56) 0%, rgba(241, 246, 247, 0.34) 100%);
}

.page-home .home-benefits .benefit-card {
  border: 1px solid rgba(149, 111, 83, 0.12);
  background: linear-gradient(180deg, rgba(250, 242, 235, 0.92) 0%, rgba(243, 247, 248, 0.84) 100%);
  box-shadow: 0 18px 38px rgba(77, 58, 45, 0.1);
}

.page-home .home-blog .container::before {
  background:
    radial-gradient(circle at top right, rgba(120, 169, 186, 0.16) 0%, rgba(120, 169, 186, 0) 30%),
    linear-gradient(180deg, rgba(233, 241, 246, 0.4) 0%, rgba(245, 240, 235, 0.24) 100%);
}

.page-home .home-blog .blog-card {
  background: linear-gradient(180deg, rgba(247, 250, 252, 0.92) 0%, rgba(239, 246, 244, 0.8) 100%);
  border: 1px solid rgba(120, 169, 186, 0.16);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-blog .blog-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(121, 168, 184, 0.9), rgba(229, 175, 132, 0.82));
}

.page-home .home-blog .card-kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  font-weight: 700;
}

.page-home .home-blog .blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.page-home .home-blog .section-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.page-home .home-blog .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-home .home-shortcuts .container::before {
  background:
    linear-gradient(180deg, rgba(240, 246, 248, 0.38) 0%, rgba(247, 241, 234, 0.24) 100%);
}

.page-home .home-shortcuts .link-row {
  background: linear-gradient(180deg, rgba(248, 244, 239, 0.86) 0%, rgba(238, 246, 244, 0.74) 100%);
}

.page-home .home-quiz .container::before {
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.16) 0%, rgba(234, 172, 120, 0) 30%),
    linear-gradient(180deg, rgba(244, 237, 229, 0.44) 0%, rgba(238, 246, 244, 0.28) 100%);
}

.page-home .home-quiz .quiz {
  background: linear-gradient(180deg, rgba(252, 248, 243, 0.94) 0%, rgba(239, 246, 244, 0.86) 100%);
  border-color: rgba(149, 111, 83, 0.1);
  box-shadow: 0 20px 40px rgba(77, 58, 45, 0.08);
}

.page-home .home-cta .container::before {
  content: none;
}

.page-home .home-cta .callout {
  background:
    radial-gradient(circle at top right, rgba(120, 169, 186, 0.16) 0%, rgba(120, 169, 186, 0) 30%),
    linear-gradient(135deg, rgba(58, 76, 84, 0.86) 0%, rgba(83, 115, 130, 0.74) 100%);
  color: #f7f4ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 52px rgba(18, 43, 57, 0.16);
}

.page-home .home-cta .eyebrow,
.page-home .home-cta h2,
.page-home .home-cta p {
  color: #f7f4ef;
}

.page-home .home-contact .container::before {
  background:
    linear-gradient(180deg, rgba(238, 245, 249, 0.42) 0%, rgba(247, 241, 234, 0.28) 100%);
}

.page-home .home-contact .split > div:first-child {
  padding: 28px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(250, 246, 241, 0.84) 0%, rgba(239, 246, 244, 0.76) 100%);
  border: 1px solid rgba(149, 111, 83, 0.1);
  box-shadow: 0 20px 40px rgba(77, 58, 45, 0.08);
}

.page-vos-chiropracteurs .hero {
  background: radial-gradient(circle at top, #f3efe7 0%, #e9f2f7 55%, #f0ebe3 100%);
}

.page-vos-chiropracteurs {
  position: relative;
  background: #d7e4ea;
}

.page-vos-chiropracteurs::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(241, 246, 248, 0.32) 0%, rgba(232, 239, 242, 0.44) 36%, rgba(228, 234, 229, 0.58) 100%),
    url("assets/cabinets/nice-promenade-fond.jpg") center 18% / cover no-repeat;
  transform: scale(1.02);
}

.page-vos-chiropracteurs::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(255, 247, 238, 0.18) 0%, rgba(255, 247, 238, 0) 28%),
    linear-gradient(180deg, rgba(10, 28, 40, 0.03) 0%, rgba(10, 28, 40, 0.01) 35%, rgba(10, 28, 40, 0.06) 100%);
  pointer-events: none;
}

.page-vos-chiropracteurs .site-header {
  background: rgba(248, 245, 240, 0.44);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(39, 79, 102, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 56, 0.04);
}

.page-vos-chiropracteurs main {
  position: relative;
}

.page-vos-chiropracteurs .team-hero {
  position: relative;
  color: var(--mist);
  min-height: 68vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(245, 227, 205, 0.06) 0%, rgba(245, 227, 205, 0) 34%),
    linear-gradient(115deg, rgba(10, 31, 42, 0.12) 0%, rgba(10, 31, 42, 0.08) 42%, rgba(10, 31, 42, 0.02) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-vos-chiropracteurs .team-hero .hero-copy {
  max-width: 620px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 31, 41, 0.64) 0%, rgba(9, 31, 41, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(4, 14, 23, 0.24);
}

.page-vos-chiropracteurs .team-hero .eyebrow,
.page-vos-chiropracteurs .team-hero h1,
.page-vos-chiropracteurs .team-hero p,
.page-vos-chiropracteurs .team-hero a {
  color: var(--mist);
}

.page-vos-chiropracteurs .team-hero .eyebrow {
  color: rgba(244, 249, 253, 0.8);
}

.page-vos-chiropracteurs .team-hero .hero-card {
  background: rgba(241, 247, 248, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(8, 23, 32, 0.14);
}

.page-vos-chiropracteurs .team-hero .hero-card-inner {
  background: rgba(252, 251, 248, 0.94);
  border-color: rgba(59, 90, 106, 0.1);
}

.page-vos-chiropracteurs .team-hero .hero-card h2,
.page-vos-chiropracteurs .team-hero .hero-card li,
.page-vos-chiropracteurs .team-hero .hero-card p {
  color: #17394c;
}

.page-vos-chiropracteurs .team-hero .hero-card ul {
  margin: 0;
}

.page-vos-chiropracteurs .hero-attribution {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: rgba(244, 249, 253, 0.82);
}

.page-vos-chiropracteurs .hero-attribution a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-vos-chiropracteurs .section-head h2 {
  position: relative;
  display: inline-block;
}

.page-vos-chiropracteurs .section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #78a9ba, #d8b89a);
  border-radius: 999px;
}

.page-vos-chiropracteurs .team-directory .section-head {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  margin: 0 auto 42px;
  padding: 30px 28px 10px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(134, 179, 194, 0.14) 0%, rgba(134, 179, 194, 0) 46%),
    linear-gradient(180deg, rgba(15, 42, 57, 0.82) 0%, rgba(19, 50, 66, 0.66) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(18, 43, 57, 0.22);
  backdrop-filter: blur(14px);
}

.page-vos-chiropracteurs .team-directory .section-head p {
  margin: 0;
  color: rgba(232, 242, 246, 0.78);
}

.page-vos-chiropracteurs .team-directory .section-head h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: #f7f4ef;
}

.page-vos-chiropracteurs .team-directory .section-head h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-vos-chiropracteurs .team-directory .cards {
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 32px;
}

.page-vos-chiropracteurs .team-directory .container::before {
  content: none;
}

.page-vos-chiropracteurs .team-directory,
.page-vos-chiropracteurs .team-directory .container,
.page-vos-chiropracteurs .team-directory .cards {
  background: transparent !important;
  box-shadow: none;
}

.page-vos-chiropracteurs .card {
  background: linear-gradient(180deg, rgba(253, 250, 245, 0.84) 0%, rgba(244, 248, 248, 0.8) 100%);
  border: 1px solid rgba(69, 104, 122, 0.14);
  box-shadow: 0 18px 40px rgba(26, 53, 68, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 26px;
  overflow: hidden;
}

.page-vos-chiropracteurs .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 53, 68, 0.14);
}

.page-vos-chiropracteurs .hero-card {
  background: linear-gradient(145deg, #f7fbff 0%, #eef6ff 55%, #f5efe6 100%);
}

.page-vos-chiropracteurs .profile-card {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(248, 245, 239, 0.72) 0%, rgba(229, 239, 242, 0.58) 100%);
}

.page-vos-chiropracteurs .profile-card::before,
.page-vos-chiropracteurs .cards > .card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -1px -1px 22px;
  background: linear-gradient(90deg, rgba(119, 163, 179, 0.9), rgba(223, 191, 162, 0.82));
}

.page-vos-chiropracteurs .team-directory .profile-card {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 54px rgba(17, 42, 57, 0.14);
}

.page-vos-chiropracteurs .team-directory .profile-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(230, 239, 241, 0.04) 100%);
  border: 1px solid rgba(97, 132, 147, 0.06);
}

.page-vos-chiropracteurs .team-directory .profile-card h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #14384b;
  text-wrap: balance;
}

.page-vos-chiropracteurs .team-directory .profile-photo {
  width: clamp(168px, 24vw, 210px);
  height: clamp(168px, 24vw, 210px);
  margin-bottom: 22px;
  border: 4px solid rgba(248, 245, 240, 0.92);
  box-shadow:
    0 18px 30px rgba(22, 48, 63, 0.14),
    0 0 0 1px rgba(96, 131, 147, 0.14);
}

.page-vos-chiropracteurs .team-directory .btn.small {
  min-width: 220px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #21556f 0%, #4b8aa2 100%);
  border-color: rgba(26, 65, 85, 0.9);
  box-shadow: 0 14px 28px rgba(28, 62, 80, 0.16);
}

.page-vos-chiropracteurs .team-directory .btn.small:hover {
  box-shadow: 0 18px 30px rgba(28, 62, 80, 0.22);
}

.page-vos-chiropracteurs .team-directory {
  padding-top: 104px;
}

.page-vos-chiropracteurs .team-directory .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.page-vos-chiropracteurs .checklist li::before {
  color: var(--accent);
}

.profile-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(15, 42, 67, 0.85);
}

.profile-list li {
  padding-left: 20px;
  position: relative;
}

.profile-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.lead {
  font-size: 1.02rem;
  font-weight: 600;
}

.card .card-title {
  margin: 10px 0 8px;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dfefff;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 110, 165, 0.25);
  box-shadow: 0 6px 12px rgba(15, 42, 67, 0.08);
}

.highlight-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.highlight {
  background: rgba(232, 240, 241, 0.46);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(70, 108, 126, 0.12);
}


.card p strong {
  color: #21475c;
  font-weight: 900;
  background: #e7f0ee;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(70, 108, 126, 0.24);
  box-shadow: 0 4px 10px rgba(15, 42, 67, 0.05);
}

.page-vos-chiropracteurs .section,
.page-vos-chiropracteurs .section.alt {
  background: transparent;
}

.page-vos-chiropracteurs .section .container {
  position: relative;
}

.page-vos-chiropracteurs .section:not(.team-hero):not(.team-directory) .container::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.56) 0%, rgba(243, 247, 247, 0.44) 100%);
  border: 1px solid rgba(78, 108, 122, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 54px rgba(20, 41, 54, 0.08);
  backdrop-filter: blur(7px);
  z-index: -1;
}

.page-vos-chiropracteurs .section-head,
.page-vos-chiropracteurs .lead,
.page-vos-chiropracteurs .card,
.page-vos-chiropracteurs .split > div:first-child {
  position: relative;
  z-index: 1;
}

.page-vos-chiropracteurs .split > div:first-child {
  padding: 10px 4px;
}

.page-vos-chiropracteurs .hero-actions .btn.ghost {
  background: rgba(247, 244, 239, 0.72);
  color: #183546;
  border-color: rgba(65, 101, 119, 0.18);
  backdrop-filter: blur(8px);
}

.page-vos-chiropracteurs .hero-actions .btn.ghost:hover {
  background: rgba(252, 250, 247, 0.9);
}

.page-vos-chiropracteurs .hero-card ul {
  padding-left: 18px;
}

.page-vos-chiropracteurs .hero-card li + li {
  margin-top: 10px;
}

.page-prevention {
  position: relative;
  background: #d9e5ea;
}

.page-prevention::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(250, 239, 230, 0.34) 0%, rgba(239, 233, 223, 0.4) 36%, rgba(227, 236, 232, 0.54) 100%),
    url("assets/prevention/chiro-3-background.jpg") center center / cover no-repeat;
  transform: scale(1.03);
}

.page-prevention::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.18) 0%, rgba(234, 172, 120, 0) 28%),
    radial-gradient(circle at left 30%, rgba(120, 170, 165, 0.12) 0%, rgba(120, 170, 165, 0) 24%),
    linear-gradient(180deg, rgba(10, 28, 40, 0.02) 0%, rgba(10, 28, 40, 0.01) 35%, rgba(10, 28, 40, 0.04) 100%);
  pointer-events: none;
}

.page-prevention .site-header {
  background: rgba(248, 245, 240, 0.46);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(39, 79, 102, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 56, 0.04);
}

.page-prevention .section,
.page-prevention .section.alt {
  background: transparent;
}

.page-prevention .section .container {
  position: relative;
}

.page-prevention .section .container::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.18) 0%, rgba(234, 172, 120, 0) 34%),
    linear-gradient(180deg, rgba(198, 174, 154, 0.58) 0%, rgba(202, 219, 214, 0.42) 100%);
  border: 1px solid rgba(133, 111, 95, 0.14);
  box-shadow: 0 24px 52px rgba(70, 55, 44, 0.12);
  backdrop-filter: blur(10px);
}

.page-prevention .hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(238, 184, 141, 0.14) 0%, rgba(238, 184, 141, 0) 34%),
    linear-gradient(115deg, rgba(10, 31, 42, 0.12) 0%, rgba(10, 31, 42, 0.07) 42%, rgba(10, 31, 42, 0.02) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-prevention .hero .container::before {
  content: none;
}

.page-prevention .hero-copy {
  max-width: 640px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(57, 65, 67, 0.72) 0%, rgba(44, 55, 58, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(4, 14, 23, 0.24);
  backdrop-filter: blur(12px);
}

.page-prevention .hero-copy .eyebrow,
.page-prevention .hero-copy h1,
.page-prevention .hero-copy p {
  color: var(--mist);
}

.page-prevention .hero-copy .eyebrow {
  color: rgba(244, 249, 253, 0.82);
}

.page-prevention .hero-copy h1 {
  max-width: 11ch;
}

.page-prevention .hero-card {
  background: rgba(250, 242, 234, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(8, 23, 32, 0.14);
  backdrop-filter: blur(10px);
}

.page-prevention .hero-card-inner {
  background: rgba(252, 248, 243, 0.94);
  border-color: rgba(130, 104, 84, 0.12);
}

.page-prevention .hero-card h2,
.page-prevention .hero-card li,
.page-prevention .hero-card p {
  color: #17394c;
}

.page-prevention .hero-card ul {
  margin: 0;
  padding-left: 18px;
}

.page-prevention .hero-card li + li {
  margin-top: 10px;
}

.page-prevention .hero-trust span {
  background: rgba(248, 245, 240, 0.18);
  color: #f7f4ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.page-prevention .section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-prevention .section-head h2 {
  position: relative;
  display: inline-block;
}

.page-prevention .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ca8b60, #78a9ba);
}

.page-prevention .cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.page-prevention .card {
  background: linear-gradient(180deg, rgba(252, 243, 234, 0.86) 0%, rgba(239, 246, 244, 0.76) 100%);
  border: 1px solid rgba(149, 111, 83, 0.14);
  box-shadow: 0 18px 38px rgba(77, 58, 45, 0.11);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.page-prevention .card::before {
  content: "";
  display: block;
  height: 5px;
  margin: -1px -1px 22px;
  background: linear-gradient(90deg, rgba(202, 139, 96, 0.92), rgba(120, 169, 186, 0.84));
}

.page-prevention .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 53, 68, 0.14);
}

.page-prevention .story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.page-prevention .story-copy,
.page-prevention .focus-panel,
.page-prevention .routine-copy {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 235, 225, 0.9) 0%, rgba(232, 242, 239, 0.76) 100%);
  border: 1px solid rgba(134, 105, 84, 0.14);
  box-shadow: 0 20px 44px rgba(64, 49, 40, 0.1);
  backdrop-filter: blur(10px);
}

.page-prevention .focus-panel {
  height: auto;
}

.page-prevention .prevention-focus .focus-panel.soft {
  max-width: 400px;
  justify-self: start;
  align-self: start;
  padding: 24px 24px 22px;
}

.page-prevention .focus-panel.soft {
  background: linear-gradient(180deg, rgba(92, 72, 60, 0.92) 0%, rgba(70, 93, 98, 0.82) 100%);
  color: #f7f4ef;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 46px rgba(48, 36, 30, 0.18);
}

.page-prevention .focus-panel.soft h3,
.page-prevention .focus-panel.soft li,
.page-prevention .focus-panel.soft p {
  color: #f7f4ef;
}

.page-prevention .focus-panel.soft .checklist li::before {
  color: #d8b89a;
}

.page-prevention .prevention-insight .container::before {
  content: none;
}

.page-prevention .prevention-insight-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 36px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(238, 184, 141, 0.2) 0%, rgba(238, 184, 141, 0) 32%),
    linear-gradient(135deg, rgba(79, 93, 97, 0.86) 0%, rgba(108, 82, 65, 0.8) 100%);
  color: #f7f4ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 52px rgba(46, 36, 29, 0.18);
  backdrop-filter: blur(12px);
}

.page-prevention .prevention-insight-card .eyebrow,
.page-prevention .prevention-insight-card h2,
.page-prevention .prevention-insight-card p {
  color: #f7f4ef;
}

.page-prevention .story-image-card,
.page-prevention .media-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(250, 247, 242, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 46px rgba(17, 42, 57, 0.14);
  backdrop-filter: blur(10px);
}

.page-prevention .story-image-card img,
.page-prevention .media-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.page-prevention .story-image-card img {
  min-height: 420px;
}

.page-prevention .media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.page-prevention .media-card figcaption {
  padding: 16px 18px 20px;
  color: #21475c;
  line-height: 1.6;
}

.page-prevention .media-credit {
  margin-top: 18px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(21, 54, 70, 0.76);
}

.page-prevention .media-credit a {
  color: #21475c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-prevention .prevention-callout {
  background: linear-gradient(135deg, rgba(86, 78, 72, 0.86) 0%, rgba(71, 108, 117, 0.72) 100%);
  color: #f7f4ef;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 52px rgba(18, 43, 57, 0.16);
  backdrop-filter: blur(12px);
}

.page-prevention .prevention-callout .eyebrow,
.page-prevention .prevention-callout h2,
.page-prevention .prevention-callout p {
  color: #f7f4ef;
}

.page-prevention .checklist li::before {
  color: #5d97ab;
}

.page-chiropraxie {
  position: relative;
  background:
    radial-gradient(circle at top, #eef6fb 0%, #e8f1f6 42%, #dbe7ef 100%);
}

.page-chiropraxie::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top right, rgba(122, 165, 191, 0.16) 0%, rgba(122, 165, 191, 0) 26%),
    radial-gradient(circle at left 30%, rgba(182, 211, 228, 0.14) 0%, rgba(182, 211, 228, 0) 24%);
  pointer-events: none;
}

.page-chiropraxie .site-header {
  background: rgba(241, 247, 251, 0.58);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(39, 79, 102, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 56, 0.04);
}

.page-chiropraxie .section,
.page-chiropraxie .section.alt {
  background: transparent;
}

.page-chiropraxie .section .container {
  position: relative;
}

.page-chiropraxie .section .container::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(122, 165, 191, 0.1) 0%, rgba(122, 165, 191, 0) 32%),
    linear-gradient(180deg, rgba(238, 245, 249, 0.62) 0%, rgba(231, 240, 246, 0.48) 100%);
  border: 1px solid rgba(92, 132, 156, 0.1);
  box-shadow: 0 22px 48px rgba(39, 66, 82, 0.09);
  backdrop-filter: blur(8px);
}

.page-chiropraxie .hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(122, 165, 191, 0.12) 0%, rgba(122, 165, 191, 0) 34%),
    linear-gradient(115deg, rgba(10, 31, 42, 0.06) 0%, rgba(10, 31, 42, 0.03) 42%, rgba(10, 31, 42, 0.01) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-chiropraxie .hero .container::before {
  content: none;
}

.page-chiropraxie .hero-copy {
  max-width: 620px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(32, 61, 82, 0.76) 0%, rgba(38, 73, 96, 0.6) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(4, 14, 23, 0.24);
  backdrop-filter: blur(12px);
}

.page-chiropraxie .hero-copy .eyebrow,
.page-chiropraxie .hero-copy h1,
.page-chiropraxie .hero-copy p {
  color: var(--mist);
}

.page-chiropraxie .hero-card {
  background: rgba(237, 245, 249, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(8, 23, 32, 0.14);
  backdrop-filter: blur(10px);
}

.page-chiropraxie .hero-card-inner {
  background: rgba(245, 249, 252, 0.94);
  border-color: rgba(92, 132, 156, 0.12);
}

.page-chiropraxie .hero-card h2,
.page-chiropraxie .hero-card li {
  color: #17394c;
}

.page-chiropraxie .section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-chiropraxie .section-head h2 {
  position: relative;
  display: inline-block;
}

.page-chiropraxie .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4f88aa, #8ec0d8);
}

.page-chiropraxie .cards .card,
.page-chiropraxie .motif-card,
.page-chiropraxie .motif-detail {
  background: linear-gradient(180deg, rgba(246, 250, 253, 0.96) 0%, rgba(235, 243, 248, 0.92) 100%);
  border: 1px solid rgba(79, 136, 170, 0.22);
  box-shadow: 0 18px 38px rgba(39, 66, 82, 0.13);
  border-radius: 26px;
  backdrop-filter: blur(12px);
}

.page-chiropraxie .cards .card:hover,
.page-chiropraxie .motif-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(39, 66, 82, 0.14);
}

.page-chiropraxie .insight-card,
.page-chiropraxie .motif-card,
.page-chiropraxie .motif-detail {
  padding: 22px 22px 20px;
}

.page-chiropraxie .insight-card:nth-child(1) {
  background: rgba(219, 238, 248, 0.96);
  border-color: rgba(79, 136, 170, 0.26);
}

.page-chiropraxie .insight-card:nth-child(2) {
  background: rgba(228, 243, 249, 0.96);
  border-color: rgba(95, 149, 171, 0.24);
}

.page-chiropraxie .insight-card:nth-child(3) {
  background: rgba(212, 232, 245, 0.96);
  border-color: rgba(70, 124, 158, 0.26);
}

.page-chiropraxie .motif-card h3,
.page-chiropraxie .motif-detail h3,
.page-chiropraxie .insight-card h3 {
  color: #17394c;
}

.page-chiropraxie .motif-card p,
.page-chiropraxie .motif-detail p,
.page-chiropraxie .insight-card p,
.page-chiropraxie .motif-detail li {
  color: rgba(23, 57, 76, 0.92);
}

.page-chiropraxie .motif-card {
  text-decoration: none;
  color: inherit;
}

.page-chiropraxie .motifs-cards .card-title {
  color: #3e6c87;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.82rem;
}

.page-chiropraxie #premiere-visite .container::before {
  background:
    radial-gradient(circle at top right, rgba(122, 165, 191, 0.12) 0%, rgba(122, 165, 191, 0) 30%),
    linear-gradient(180deg, rgba(238, 245, 249, 0.72) 0%, rgba(229, 239, 246, 0.56) 100%);
}

.page-chiropraxie #premiere-visite > .container > .eyebrow,
.page-chiropraxie #premiere-visite > .container > h2,
.page-chiropraxie #premiere-visite > .container > p {
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.page-chiropraxie #premiere-visite > .container > p {
  color: rgba(23, 57, 76, 0.88);
}

.page-chiropraxie .timeline {
  margin-top: 34px;
  gap: 22px;
}

.page-chiropraxie .timeline::before {
  left: 26px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, rgba(79, 136, 170, 0.65) 0%, rgba(142, 192, 216, 0.26) 100%);
}

.page-chiropraxie .timeline-item {
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}

.page-chiropraxie .timeline-index {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(79, 136, 170, 0.96) 0%, rgba(103, 162, 193, 0.92) 100%);
  color: #f7fbfd;
  box-shadow: 0 14px 26px rgba(39, 66, 82, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  z-index: 1;
}

.page-chiropraxie .timeline-content {
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(246, 250, 253, 0.96) 0%, rgba(235, 243, 248, 0.92) 100%);
  border: 1px solid rgba(79, 136, 170, 0.2);
  box-shadow: 0 18px 38px rgba(39, 66, 82, 0.11);
}

.page-chiropraxie .timeline-content h3 {
  color: #17394c;
  margin-bottom: 10px;
}

.page-chiropraxie .timeline-content p,
.page-chiropraxie .timeline-content li {
  color: rgba(23, 57, 76, 0.92);
  line-height: 1.7;
}

.page-chiropraxie #pour-qui .container::before {
  background:
    radial-gradient(circle at top right, rgba(122, 165, 191, 0.12) 0%, rgba(122, 165, 191, 0) 30%),
    linear-gradient(180deg, rgba(238, 245, 249, 0.72) 0%, rgba(229, 239, 246, 0.56) 100%);
}

.page-chiropraxie .section-heading {
  max-width: 760px;
  margin: 0 auto 12px;
  text-align: center;
}

.page-chiropraxie .audience-grid {
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.page-chiropraxie .audience-card {
  background: linear-gradient(180deg, rgba(245, 250, 253, 0.96) 0%, rgba(232, 241, 247, 0.9) 100%);
  border: 1px solid rgba(79, 136, 170, 0.2);
  box-shadow: 0 20px 42px rgba(39, 66, 82, 0.12);
  border-radius: 28px;
  grid-template-columns: 1fr;
  max-width: none;
  position: relative;
}

.page-chiropraxie .audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #4f88aa, #8ec0d8);
}

.page-chiropraxie .audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 136, 170, 0.32);
  box-shadow: 0 26px 50px rgba(39, 66, 82, 0.16);
}

.page-chiropraxie .audience-card img,
.page-chiropraxie .audience-image {
  height: 240px;
  border-right: none;
  border-bottom: 1px solid rgba(79, 136, 170, 0.12);
}

.page-chiropraxie .audience-body {
  padding: 22px 24px 24px;
  gap: 10px;
}

.page-chiropraxie .audience-body h3 {
  font-size: 1.16rem;
  color: #17394c;
}

.page-chiropraxie .audience-body p {
  color: rgba(23, 57, 76, 0.9);
  line-height: 1.7;
}

.page-chiropraxie .audience-body strong {
  color: #356f91;
  background: rgba(79, 136, 170, 0.12);
}

.page-chiropraxie .audience-body h3::before {
  background: #4f88aa;
  box-shadow: 0 0 0 5px rgba(79, 136, 170, 0.16);
}

.page-chiropraxie .motif-more,
.page-chiropraxie .detail-close {
  color: #5f95ab;
}

.page-chiropraxie .detail-close {
  border-bottom-color: rgba(95, 149, 171, 0.4);
}

.page-chiropraxie .detail-title {
  color: #17394c;
}

.page-chiropraxie .detail-list li::before {
  color: #4f88aa;
}

.page-faq {
  position: relative;
  background:
    radial-gradient(circle at top, #f8eee3 0%, #f1efe9 42%, #e5edf2 100%);
}

.page-faq::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top right, rgba(222, 173, 136, 0.2) 0%, rgba(222, 173, 136, 0) 26%),
    radial-gradient(circle at left 30%, rgba(190, 214, 224, 0.12) 0%, rgba(190, 214, 224, 0) 24%);
  pointer-events: none;
}

.page-faq .site-header {
  background: rgba(248, 244, 238, 0.58);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(39, 79, 102, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 56, 0.04);
}

.page-faq .section,
.page-faq .section.alt {
  background: transparent;
}

.page-faq .section .container,
.page-faq .hero .container {
  position: relative;
}

.page-faq .section .container::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(222, 173, 136, 0.12) 0%, rgba(222, 173, 136, 0) 32%),
    linear-gradient(180deg, rgba(249, 241, 234, 0.64) 0%, rgba(238, 244, 246, 0.5) 100%);
  border: 1px solid rgba(140, 114, 93, 0.1);
  box-shadow: 0 22px 48px rgba(70, 55, 44, 0.08);
  backdrop-filter: blur(8px);
}

.page-faq .hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(222, 173, 136, 0.12) 0%, rgba(222, 173, 136, 0) 34%),
    linear-gradient(115deg, rgba(10, 31, 42, 0.06) 0%, rgba(10, 31, 42, 0.03) 42%, rgba(10, 31, 42, 0.01) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-faq .hero .container::before {
  content: none;
}

.page-faq .hero-compact .container {
  max-width: 900px;
}

.page-faq .hero-compact .container > .eyebrow,
.page-faq .hero-compact .container > h1,
.page-faq .hero-compact .container > p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-faq .hero-compact .container > h1 {
  max-width: 12ch;
  color: #17394c;
}

.page-faq .hero-compact .container > p {
  max-width: 720px;
  color: rgba(23, 57, 76, 0.84);
}

.page-faq .faq {
  gap: 18px;
}

.page-faq .faq-item {
  background: linear-gradient(180deg, rgba(250, 244, 238, 0.96) 0%, rgba(241, 246, 247, 0.92) 100%);
  border: 1px solid rgba(150, 118, 92, 0.16);
  box-shadow: 0 18px 38px rgba(70, 55, 44, 0.1);
  border-radius: 22px;
}

.page-faq .faq-item summary {
  padding: 18px 22px;
  color: #17394c;
  font-weight: 700;
}

.page-faq .faq-item summary::after {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(202, 139, 96, 0.12);
  color: #b16f43;
  flex: 0 0 auto;
}

.page-faq .faq-item p {
  padding: 0 22px 20px;
  color: rgba(23, 57, 76, 0.9);
  line-height: 1.75;
}

.page-faq .faq-image {
  width: min(100%, 760px);
  margin: 0 22px 22px;
  border-radius: 18px;
  border: 1px solid rgba(150, 118, 92, 0.14);
  box-shadow: 0 16px 34px rgba(70, 55, 44, 0.1);
  background: rgba(250, 246, 241, 0.9);
}

.page-chiropraxie .muted a {
  color: #21475c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-cabinets {
  position: relative;
  background: #d9e5ea;
}

.page-cabinets::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(250, 239, 230, 0.36) 0%, rgba(239, 233, 223, 0.42) 36%, rgba(227, 236, 232, 0.56) 100%),
    url("assets/cabinets/nice-promenade-fond.jpg") center 22% / cover no-repeat;
  transform: scale(1.03);
}

.page-cabinets::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.16) 0%, rgba(234, 172, 120, 0) 28%),
    radial-gradient(circle at left 30%, rgba(120, 170, 165, 0.12) 0%, rgba(120, 170, 165, 0) 24%),
    linear-gradient(180deg, rgba(10, 28, 40, 0.02) 0%, rgba(10, 28, 40, 0.01) 35%, rgba(10, 28, 40, 0.04) 100%);
  pointer-events: none;
}

.page-cabinets .site-header {
  background: rgba(248, 245, 240, 0.46);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(39, 79, 102, 0.08);
  box-shadow: 0 10px 24px rgba(19, 42, 56, 0.04);
}

.page-cabinets .section,
.page-cabinets .section.alt {
  background: transparent;
}

.page-cabinets .section .container {
  position: relative;
}

.page-cabinets .section .container::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(234, 172, 120, 0.12) 0%, rgba(234, 172, 120, 0) 32%),
    linear-gradient(180deg, rgba(222, 204, 188, 0.42) 0%, rgba(220, 231, 227, 0.3) 100%);
  border: 1px solid rgba(133, 111, 95, 0.1);
  box-shadow: 0 22px 48px rgba(70, 55, 44, 0.09);
  backdrop-filter: blur(8px);
}

.page-cabinets .hero {
  min-height: 68vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(238, 184, 141, 0.14) 0%, rgba(238, 184, 141, 0) 34%),
    linear-gradient(115deg, rgba(10, 31, 42, 0.12) 0%, rgba(10, 31, 42, 0.07) 42%, rgba(10, 31, 42, 0.02) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.page-cabinets .hero .container::before {
  content: none;
}

.page-cabinets .hero-copy {
  max-width: 620px;
  padding: 36px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(57, 65, 67, 0.72) 0%, rgba(44, 55, 58, 0.58) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 70px rgba(4, 14, 23, 0.24);
  backdrop-filter: blur(12px);
}

.page-cabinets .hero-copy .eyebrow,
.page-cabinets .hero-copy h1,
.page-cabinets .hero-copy p {
  color: var(--mist);
}

.page-cabinets .hero-card {
  background: rgba(250, 242, 234, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(8, 23, 32, 0.14);
  backdrop-filter: blur(10px);
}

.page-cabinets .hero-card-inner {
  background: rgba(252, 248, 243, 0.94);
  border-color: rgba(130, 104, 84, 0.12);
}

.page-cabinets .hero-card h2,
.page-cabinets .hero-card li {
  color: #17394c;
}

.page-cabinets .section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.page-cabinets .section-head h2 {
  position: relative;
  display: inline-block;
}

.page-cabinets .section-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 78px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ca8b60, #78a9ba);
}

.page-cabinets .cabinet-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(224, 236, 242, 0.9) 0%, rgba(206, 223, 232, 0.82) 100%);
  border: 1px solid rgba(96, 131, 147, 0.14);
  box-shadow: 0 18px 38px rgba(39, 66, 82, 0.12);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.page-cabinets .cabinet-card:hover {
  box-shadow: 0 24px 48px rgba(39, 66, 82, 0.16);
}

.page-cabinets .cabinet-slider {
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(20, 41, 54, 0.12);
}

.page-cabinets .cabinet-info,
.page-cabinets .cabinet-map {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(239, 246, 250, 0.84) 0%, rgba(227, 238, 244, 0.72) 100%);
  border: 1px solid rgba(96, 131, 147, 0.12);
  box-shadow: 0 16px 34px rgba(39, 66, 82, 0.09);
}

.page-cabinets .cabinet-info h3 {
  color: #17394c;
  margin-bottom: 10px;
}

.page-cabinets .cabinet-address {
  color: #35586d;
}

.page-cabinets .cabinet-links a {
  color: #21475c;
  font-weight: 600;
}

.page-cabinets .cabinet-actions .btn.ghost {
  background: rgba(247, 244, 239, 0.72);
  color: #183546;
  border-color: rgba(65, 101, 119, 0.18);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.page-cabinets .cabinet-actions .btn.ghost:hover {
  background: rgba(252, 250, 247, 0.9);
  box-shadow: none;
}

.page-cabinets .cabinet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.page-cabinets .cabinet-links .btn.ghost.small {
  background: linear-gradient(135deg, rgba(47, 104, 141, 0.96) 0%, rgba(95, 152, 186, 0.96) 100%);
  color: #fffaf4;
  border-color: rgba(39, 66, 82, 0.18);
  box-shadow: 0 12px 24px rgba(39, 66, 82, 0.16);
}

.page-cabinets .cabinet-featured-link.btn.ghost.small {
  background: linear-gradient(135deg, rgba(47, 104, 141, 0.96) 0%, rgba(95, 152, 186, 0.96) 100%);
  color: #fffaf4;
  border-color: rgba(39, 66, 82, 0.18);
  box-shadow: 0 12px 24px rgba(39, 66, 82, 0.16);
}

.page-cabinets .cabinet-links .btn.ghost.small:hover {
  background: linear-gradient(135deg, rgba(39, 91, 125, 1) 0%, rgba(77, 137, 171, 1) 100%);
}

.page-cabinets .cabinet-featured-link.btn.ghost.small:hover {
  background: linear-gradient(135deg, rgba(39, 91, 125, 1) 0%, rgba(77, 137, 171, 1) 100%);
}

.page-cabinets .cabinet-map {
  background: linear-gradient(180deg, rgba(247, 235, 225, 0.9) 0%, rgba(232, 242, 239, 0.76) 100%);
}

.page-cabinets .map-header {
  color: #ca8b60;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.checklist li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.panel {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--accent) 100%);
  color: var(--mist);
  padding: 28px;
  border-radius: 20px;
}

.panel ul {
  padding-left: 18px;
}

.panel-highlight {
  margin-top: 20px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.blog-grid .blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-card a {
  color: var(--accent);
  font-weight: 600;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.quiz {
  background: #f9f6f1;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(15, 42, 67, 0.12);
  display: grid;
  gap: 18px;
}

.quiz-question {
  border-bottom: 1px dashed rgba(28, 27, 25, 0.12);
  padding-bottom: 14px;
}

.quiz-question:last-child {
  border-bottom: none;
}

.quiz-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.quiz-feedback {
  margin: 8px 0 0;
  font-weight: 600;
  color: var(--accent);
  min-height: 22px;
}

.quiz-score {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.contact-form {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(15, 42, 67, 0.12);
  display: grid;
  gap: 16px;
}

.contact-details a {
  color: var(--primary);
  font-weight: 600;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(15, 42, 67, 0.2);
  padding: 10px 12px;
  font-family: inherit;
}

.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(15, 42, 67, 0.1);
  background: #eff4f9;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

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

.footer-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 20%;
  background: #fff;
  padding: 4px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15, 42, 67, 0.12);
  flex: 0 0 auto;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .brand-logo {
    width: 44px;
    height: 44px;
    padding: 3px;
    border-radius: 12px;
  }

  .footer-logo {
    width: 38px;
    height: 38px;
    padding: 3px;
    border-radius: 10px;
  }
}

@keyframes cabinetFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-title {
    font-size: 1rem;
    line-height: 1.15;
  }

  .brand-subtitle {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cabinet-card {
    grid-template-columns: 1fr;
  }

  .cabinet-map iframe {
    height: 200px;
  }

  .page-cabinets .section .container::before {
    inset: -12px;
    border-radius: 24px;
  }

  .hero-grid,
  .split,
  .cards,
  .exercise-grid,
  .media-grid,
  .story-layout,
  .page-home .home-expertise .cards,
  .page-home .home-team .cards,
  .page-vos-chiropracteurs .team-directory .cards,
  .page-prevention .cards,
  .page-cabinets .cabinet-list,
  .page-chiropraxie .motifs-cards {
    grid-template-columns: 1fr;
  }

  .exercise-card {
    grid-template-columns: 1fr;
  }

  .exercise-thumb {
    width: 100%;
    height: 180px;
  }

  .callout,
  .panel,
  .hero-card {
    padding: 22px;
  }

  .link-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 10px 14px;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .hero {
    padding: 52px 0 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-vos-chiropracteurs .team-hero .hero-copy {
    padding: 24px;
  }

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

  .section {
    padding: 64px 0;
  }

  .section.alt {
    padding: 64px 0;
  }

  .hero-card,
  .hero-copy,
  .panel,
  .card,
  .callout,
  .quiz,
  .contact-form,
  .story-copy,
  .focus-panel,
  .routine-copy {
    padding: 20px;
    border-radius: 18px;
  }
}

@media (max-width: 900px) {
  .page-vos-chiropracteurs .section:not(.team-hero):not(.team-directory) .container::before {
    inset: -14px;
    border-radius: 24px;
  }

  .page-prevention .section .container::before {
    inset: -12px;
    border-radius: 24px;
  }

  .page-chiropraxie .section .container::before {
    inset: -12px;
    border-radius: 24px;
  }

  .page-faq .section .container::before {
    inset: -12px;
    border-radius: 24px;
  }

  .page-home .section .container::before {
    inset: -12px;
    border-radius: 24px;
  }

  .page-home .home-benefits .benefit-card:nth-child(1),
  .page-home .home-benefits .benefit-card:nth-child(3) {
    transform: none;
  }

  .page-chiropraxie .audience-grid {
    grid-template-columns: 1fr;
  }

  .page-chiropraxie .timeline::before {
    left: 24px;
  }

  .page-prevention .story-layout,
  .page-prevention .media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-vos-chiropracteurs::before,
  .page-vos-chiropracteurs::after,
  .page-chiropraxie::before,
  .page-faq::before,
  .page-home::before,
  .page-home::after,
  .page-cabinets::before,
  .page-cabinets::after,
  .page-prevention::before,
  .page-prevention::after {
    position: absolute;
  }

  .page-vos-chiropracteurs .team-hero {
    min-height: auto;
    background:
      radial-gradient(circle at center top, rgba(245, 227, 205, 0.12) 0%, rgba(245, 227, 205, 0) 32%),
      linear-gradient(180deg, rgba(10, 31, 42, 0.64) 0%, rgba(10, 31, 42, 0.42) 100%);
  }

  .page-vos-chiropracteurs .section:not(.team-hero):not(.team-directory) .container::before {
    inset: -10px;
  }

  .page-vos-chiropracteurs .team-hero .hero-copy {
    padding: 26px;
    border-radius: 24px;
  }

  .page-vos-chiropracteurs .card {
    border-radius: 22px;
  }

  .page-vos-chiropracteurs .team-directory .section-head {
    margin-bottom: 28px;
    padding-top: 18px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-vos-chiropracteurs .team-directory .btn.small {
    min-width: 100%;
  }

  .page-prevention .hero {
    min-height: auto;
  }

  .page-prevention .hero-copy,
  .page-prevention .story-copy,
  .page-prevention .focus-panel,
  .page-prevention .routine-copy {
    padding: 24px;
    border-radius: 24px;
  }

  .page-prevention .hero-copy h1 {
    max-width: none;
  }

  .page-prevention .media-grid {
    grid-template-columns: 1fr;
  }

  .page-prevention .story-image-card img {
    min-height: 280px;
  }

  .page-cabinets .hero {
    min-height: auto;
  }

  .page-cabinets .hero-copy {
    padding: 26px;
    border-radius: 24px;
  }

  .page-chiropraxie .hero {
    min-height: auto;
  }

  .page-chiropraxie .hero-copy {
    padding: 26px;
    border-radius: 24px;
  }

  .page-chiropraxie .audience-card img,
  .page-chiropraxie .audience-image {
    height: 220px;
  }

  .page-chiropraxie .timeline-item {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .page-chiropraxie .timeline-index {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .page-chiropraxie .timeline-content {
    padding: 20px 20px 18px;
    border-radius: 20px;
  }

  .page-faq .hero {
    min-height: auto;
  }

  .page-faq .hero-compact .container > h1 {
    max-width: none;
  }

  .page-faq .faq-item summary {
    padding: 16px 18px;
  }

  .page-faq .faq-item p {
    padding: 0 18px 18px;
  }

  .page-faq .faq-image {
    margin: 0 18px 18px;
  }

  .page-home .hero {
    min-height: auto;
  }

  .page-home .hero-copy {
    padding: 26px;
    border-radius: 24px;
  }

  .page-home main {
    gap: 24px;
    padding-bottom: 24px;
  }

  .page-home .home-prevention .split > div:first-child,
  .page-home .home-trust .split > div:last-child,
  .page-home .home-contact .split > div:first-child {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 600px) {
  .page-prevention .section .container::before {
    inset: -8px;
  }

  .page-prevention .hero-copy,
  .page-prevention .hero-card {
    padding: 0;
  }

  .page-prevention .hero-copy {
    padding: 22px;
  }

  .page-cabinets .section .container::before {
    inset: -8px;
  }

  .page-chiropraxie .section .container::before {
    inset: -8px;
  }

  .page-faq .section .container::before {
    inset: -8px;
  }

  .page-home .section .container::before {
    inset: -8px;
  }

  .page-home .home-expertise .cards,
  .page-home .home-team .cards,
  .page-prevention .cards,
  .page-vos-chiropracteurs .team-directory .cards,
  .page-chiropraxie .motifs-cards {
    grid-template-columns: 1fr;
  }
}
