:root {
  /* Palette premium santé : crème chaleureux + vert forêt profond + terracotta,
     inspirée des acteurs santé haut de gamme plutôt que d'un look "tech". */
  --primary: #1F5D52;
  --primary-dark: #123D35;
  --primary-soft: #E4ECE8;
  --teal: #C97B4A;
  --teal-soft: #F4E6D8;
  --text: #26302A;
  --text-muted: #756D62;
  --bg: #FAF6F0;
  --surface: #FFFFFF;
  --border: #E9E1D3;
  --amber: #B8862E;
  --amber-soft: #F5EBD5;
  --success: #4B7F63;
  --success-soft: #E7F0EA;
  --danger: #B5453B;
  --danger-soft: #F6E7E4;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 28px rgba(38, 48, 42, 0.08);
  --max-width: 1140px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 251, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--text);
}

.brand .mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 61, 53, 0.22);
}
.btn-primary:hover { background: var(--primary-dark); }

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

.btn-block { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text);
}
@media (min-width: 860px) {
  .menu-toggle { display: none; }
  .nav-links { display: flex; }
}
@media (max-width: 859px) {
  .nav-links { display: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
}
.hero-decor {
  position: absolute;
  top: -160px;
  right: -120px;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-width: 0;
}
.hero-grid > * { min-width: 0; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
@media (max-width: 640px) {
  .hero-decor { opacity: 0.35; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.hero p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
  box-shadow: var(--shadow);
}

/* Widget de réservation dans le hero : fond blanc pour accueillir le planning et le formulaire */
.booking-card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.booking-card-head {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}
.booking-card-head strong { font-size: 15px; color: var(--text); }
.booking-card-sub { font-size: 13px; color: var(--text-muted); }
.booking-card .booking-summary { color: var(--primary-dark); }
.form-row-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.form-row-inline input { flex: 1; min-width: 0; }
.booking-card input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}
.booking-card input:focus { outline: 2px solid var(--primary); outline-offset: 1px; }
.booking-card .form-success { text-align: center; padding: 12px 0; }
.booking-card .form-success .form-success-icon { font-size: 40px; }
.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 14px;
}
.hero-card:last-child { margin-bottom: 0; }
.hero-card .label { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.hero-card .value { font-size: 17px; font-weight: 700; }

/* Sections */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); margin: 0 0 12px; font-weight: 600; }
.section-head p { color: var(--text-muted); font-size: 17px; margin: 0; }

.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.step-card .step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0 0 8px; font-size: 19px; }
.step-card p { margin: 0; color: var(--text-muted); font-size: 15px; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.offers { background: var(--surface); }
.offer-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--bg);
  position: relative;
}
.offer-card.highlight {
  border-color: var(--primary);
  background: var(--primary-soft);
}
.offer-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.offer-card .price {
  font-size: 40px;
  font-weight: 800;
  margin: 12px 0 4px;
}
.offer-card .price span { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.offer-title { font-family: var(--font-display); font-weight:600; font-size: 20px; color: var(--text); }
.offer-card ul { list-style: none; padding: 0; margin: 20px 0 26px; }
.offer-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-muted);
}
.offer-card li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 8px;
  flex-shrink: 0;
}

/* Testimonials */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.stars { color: var(--amber); font-size: 15px; margin-bottom: 12px; }
.testimonial-card p.quote { font-size: 15px; color: var(--text); margin: 0 0 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.avatar-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px;
}

/* FAQ */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 15px;
}
.faq-item.open .faq-answer {
  max-height: 240px;
  padding: 0 20px 18px;
}
.faq-icon { transition: transform 0.2s ease; font-size: 20px; color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Final CTA */
.cta-final {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  margin: 0 24px;
  max-width: calc(var(--max-width) - 48px);
  margin: 0 auto;
}
.cta-final h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 4vw, 34px); margin: 0 0 12px; }
.cta-final p { opacity: 0.92; margin: 0 0 28px; font-size: 16px; }
.cta-final .btn-primary { background: #fff; color: var(--primary-dark); box-shadow: none; }

/* Booking calendar */
.booking-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .booking-grid { grid-template-columns: 1.3fr 1fr; align-items: start; }
}

.booking-calendar-head { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.booking-calendar-head strong { color: var(--text); }

/* Calendrier mensuel */
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-head strong { font-size: 15px; color: var(--text); text-transform: capitalize; }
.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-nav:hover { background: var(--primary-soft); border-color: var(--primary-soft); }

.cal-dow-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.cal-dow-row span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-cell {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.cal-cell.empty { visibility: hidden; }
.cal-cell.disabled { color: #C9C1B4; }
.cal-cell.available {
  color: var(--text);
  background: var(--primary-soft);
  cursor: pointer;
  position: relative;
}
.cal-cell.available:hover { background: var(--teal-soft); }
.cal-cell.selected {
  background: var(--primary) !important;
  color: #fff !important;
}

/* Créneaux du jour sélectionné */
.slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slot-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background: var(--surface);
  color: var(--text);
}
.slot-chip.video { border-color: var(--primary-soft); }
.slot-chip.domicile { border-color: var(--teal-soft); }
.slot-chip.selected { background: var(--primary); color: #fff; border-color: var(--primary); }
.slot-chip.domicile.selected { background: var(--teal); border-color: var(--teal); }

.booking-summary {
  background: var(--primary-soft);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14px;
}
.muted { color: var(--text-muted); font-weight: 600; font-size: 14px; }

.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* Lead form */
.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 1px;
}
.radio-group { display: flex; gap: 12px; }
.radio-option {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.radio-option input { display: none; }
.radio-option.selected {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-dark);
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success.visible { display: block; }
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  opacity: 0.55;
  cursor: default;
}
.app-badge-small { font-size: 10px; opacity: 0.75; }
.app-badge strong { font-size: 14px; }

.emergency-banner {
  background: var(--danger-soft);
  border-top: 1px solid #E4C6C0;
  border-bottom: 1px solid #E4C6C0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
}

/* Barre flottante persistante */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(18,32,61,0.08);
  padding: 12px 0;
  transform: translateY(120%);
  transition: transform 0.25s ease;
  z-index: 60;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
@media (max-width: 420px) {
  .sticky-bar-status { font-size: 12px; }
  .sticky-bar-inner .btn { padding: 10px 14px; font-size: 13px; }
}
.sticky-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
}

/* Footer */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 14px; margin: 0 0 14px; }
.footer-col a { display: block; font-size: 14px; margin-bottom: 10px; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.legal-page { padding: 48px 0 80px; }
/* Icônes duotone (badge rond + glyphe SVG) réutilisées sur le site et le blog */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-badge.sm { width: 44px; height: 44px; }
.icon-badge.md { width: 64px; height: 64px; }
.icon-badge.lg { width: 96px; height: 96px; }

.blog-hero {
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card h3 { font-size: 18px; margin: 0 0 8px; }
.blog-card p { color: var(--text-muted); font-size: 14px; flex: 1; }
.blog-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
.article-meta { display:flex; align-items:center; gap:10px; color:var(--text-muted); font-size:13px; margin-bottom:20px; }
.article-body h2 { font-family: var(--font-display); font-weight:600; font-size:24px; margin-top:36px; }
.article-body p, .article-body li { color: var(--text); font-size:16px; line-height:1.7; }
.article-disclaimer {
  background: var(--amber-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 14px;
  color: #7A5A05;
  margin: 28px 0;
}

.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.legal-page h2 { font-size: 20px; margin-top: 32px; }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 15px; }
