/* ===================================================
   VARIABLES & RESET
=================================================== */
:root {
  --teal:        #1A8A7D;
  --teal-dark:   #136860;
  --teal-light:  #E6F5F3;
  --teal-mid:    #A8D5CF;
  --terra:       #C4704B;
  --terra-dark:  #A55A38;
  --terra-light: #FAF0EA;
  --bg:          #FDFBF8;
  --bg-alt:      #F5F2EE;
  --text:        #1E1E1E;
  --text-muted:  #6B6B6B;
  --text-light:  #9E9E9E;
  --white:       #FFFFFF;
  --border:      #E8E4DF;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-body:   'DM Sans', sans-serif;
  --font-display:'DM Serif Display', serif;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ===================================================
   LAYOUT
=================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: .75rem auto 0;
  font-size: 1.05rem;
}
.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .9em;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.section-grid { display: grid; gap: 2.5rem; align-items: start; }
.section-grid.two-col { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .section-grid.two-col { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ===================================================
   HEADER / NAV
=================================================== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,251,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; }
.logo-text { color: var(--teal); }

.nav-links { display: none; gap: 1.75rem; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: .25rem 0;
}
.nav-links a:hover { color: var(--teal); }

.btn-nav {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: .5rem 1.1rem !important;
  border-radius: 100px !important;
  font-size: .85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: .5rem 0 1rem;
  animation: slideDown .2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-link {
  padding: .75rem 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-link:hover { color: var(--teal); background: var(--teal-light); }
.mobile-link.highlight {
  color: var(--teal);
  font-weight: 600;
  margin: .5rem 1.25rem 0;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  text-align: center;
}

/* ===================================================
   HERO
=================================================== */
#hero {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 4rem 1.25rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}
@media (min-width: 900px) {
  #hero { grid-template-columns: 1fr 1fr; padding: 4rem 1.25rem; }
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--terra-light);
  color: var(--terra-dark);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .35em .9em;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

#hero h1 { margin-bottom: 1.1rem; color: var(--text); }
#hero h1 em { font-style: italic; color: var(--teal); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }

.hero-stats { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}
.stat-label { font-size: .75rem; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-visual {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) { .hero-visual { height: 480px; } }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .5;
}
.blob-1 { width: 300px; height: 300px; background: var(--teal-light); top: -40px; right: -60px; }
.blob-2 { width: 200px; height: 200px; background: var(--terra-light); bottom: 20px; left: 0; }

.hero-illustration { position: relative; width: 260px; height: 260px; }
@media (min-width: 900px) { .hero-illustration { width: 340px; height: 340px; } }

.illu-circle { position: absolute; border-radius: 50%; opacity: .7; }
.c1 {
  width: 100%; height: 100%;
  background: radial-gradient(circle at 30% 30%, var(--teal-light), var(--teal-mid));
  animation: float 6s ease-in-out infinite;
}
.c2 {
  width: 70%; height: 70%;
  background: var(--white);
  top: 15%; left: 15%;
  opacity: .8;
  animation: float 6s ease-in-out infinite reverse;
}
.c3 {
  width: 40%; height: 40%;
  background: radial-gradient(circle, var(--terra-light), #f5c4aa);
  bottom: 0; right: 0;
  opacity: .9;
  animation: floatAlt 5s ease-in-out infinite;
}
.illu-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 3rem;
  color: var(--teal);
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(26,138,125,.3));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatAlt {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(8px) rotate(5deg); }
}
@keyframes pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.08); }
}

/* ===================================================
   BUTTONS
=================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .75rem 1.6rem;
  border-radius: 100px;
  border: 2px solid var(--teal);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,138,125,.25);
}
.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-muted);
  font-weight: 500;
  font-size: .95rem;
  padding: .75rem 1.2rem;
  border-radius: 100px;
  border: 2px solid var(--border);
  transition: border-color var(--transition), color var(--transition);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.2rem;
  border-radius: 100px;
  border: 2px solid var(--teal);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  margin-top: auto;
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }

.btn-reset {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}
.btn-reset:hover { color: var(--terra); border-color: var(--terra); }

/* ===================================================
   POURQUOI
=================================================== */
.section-text h2 { margin-bottom: 1rem; }
.section-text p { color: var(--text-muted); }

.callout-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--teal);
}
.callout-icon { font-size: 2rem; margin-bottom: 1rem; }
.callout-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.callout-list { display: flex; flex-direction: column; gap: .75rem; }
.callout-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.callout-list li .fa-check-circle { color: var(--teal); flex-shrink: 0; margin-top: .2rem; }

/* ===================================================
   FILTERS
=================================================== */
.filters-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 1px solid var(--border);
}

.search-wrapper { position: relative; display: flex; align-items: center; }
.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-light);
  font-size: .9rem;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: .85rem 3rem .85rem 2.75rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.search-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,138,125,.12);
  background: var(--white);
}
.search-input::placeholder { color: var(--text-light); }
.search-clear {
  position: absolute;
  right: .75rem;
  color: var(--text-light);
  padding: .4rem;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.search-clear:hover { color: var(--text); background: var(--bg-alt); }

.filter-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .filter-row { grid-template-columns: repeat(3,1fr); } }

.filter-group { display: flex; flex-direction: column; gap: .5rem; }
.filter-group.full-width { grid-column: 1/-1; }
.filter-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.select-wrapper { position: relative; }
.filter-select {
  width: 100%;
  padding: .65rem 2.2rem .65rem .9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  background: var(--bg);
  color: var(--text);
  appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
  outline: none;
}
.filter-select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,138,125,.1); }
.select-arrow {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  font-size: .75rem;
}

/* Toggle */
.toggle-switch {
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  user-select: none;
  padding: .65rem .9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
}
.toggle-switch:has(input:checked) { border-color: var(--teal); background: var(--teal-light); }
.toggle-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: relative;
  display: inline-block;
  width: 40px; height: 22px;
  background: var(--border);
  border-radius: 100px;
  flex-shrink: 0;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: var(--white);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--teal); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-label { font-size: .88rem; font-weight: 500; color: var(--text-muted); }

/* Chips */
.chip-group { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .4em .9em;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--bg);
  transition: all var(--transition);
}
.chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.chip.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

.chip-accent {
  border-color: rgba(196,112,75,.3);
  color: var(--terra-dark);
  background: var(--terra-light);
}
.chip-accent:hover { border-color: var(--terra); background: var(--terra); color: var(--white); }
.chip-accent.active { background: var(--terra); color: var(--white); border-color: var(--terra); }

.filters-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.results-count { font-size: .9rem; color: var(--text-muted); }
.results-count strong { color: var(--teal); font-size: 1.1rem; }

/* ===================================================
   CARDS GRID
=================================================== */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .cards-grid { grid-template-columns: repeat(3,1fr); } }

.therapist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: fadeInUp .4s ease both;
}
.therapist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-mid);
}
.therapist-card:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-header { display: flex; align-items: flex-start; gap: 1rem; }
.card-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.card-identity { flex: 1; min-width: 0; }
.card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.card-titre {
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: .15em .6em;
  border-radius: 100px;
  display: inline-block;
}

.card-meta { display: flex; flex-direction: column; gap: .4rem; }
.card-meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.card-meta-item i { color: var(--teal); width: 14px; flex-shrink: 0; }

.badge-online {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: #E8F8F2;
  color: #1A7A50;
  font-size: .75rem;
  font-weight: 600;
  padding: .2em .65em;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-online::before {
  content: '';
  width: 6px; height: 6px;
  background: #22C074;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.card-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.tag {
  font-size: .72rem;
  font-weight: 600;
  padding: .2em .65em;
  border-radius: 100px;
  background: var(--terra-light);
  color: var(--terra-dark);
  border: 1px solid rgba(196,112,75,.2);
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-source {
  font-size: .75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.btn-voir {
  font-size: .82rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .8rem;
  border-radius: 100px;
  border: 1.5px solid var(--teal);
  transition: background var(--transition), color var(--transition);
}
.btn-voir:hover { background: var(--teal); color: var(--white); }

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--text-muted); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: .5rem; font-family: var(--font-body); }
.empty-state p { margin-bottom: 1.5rem; }

/* ===================================================
   MODAL
=================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,30,30,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn .2s ease;
}
@media (min-width: 600px) {
  .modal-overlay { align-items: center; padding: 1.5rem; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-container {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp .3s cubic-bezier(0.34,1.56,0.64,1);
}
@media (min-width: 600px) {
  .modal-container {
    border-radius: var(--radius-xl);
    animation: scaleIn .25s cubic-bezier(0.34,1.56,0.64,1);
  }
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 1;
  font-size: 1rem;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-content { padding: 2rem; }

.modal-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.modal-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.modal-name { font-size: 1.4rem; font-family: var(--font-display); margin-bottom: .4rem; }
.modal-titre {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: .25em .8em;
  border-radius: 100px;
  margin-bottom: .5rem;
}
.modal-specialite { font-size: .9rem; color: var(--text-muted); }
.modal-section { margin-bottom: 1.25rem; }
.modal-section h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-light);
  margin-bottom: .6rem;
}
.modal-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.modal-info-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.modal-info-item i { color: var(--teal); margin-top: .15rem; flex-shrink: 0; }
.modal-tags { display: flex; flex-wrap: wrap; gap: .45rem; }
.modal-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* ===================================================
   FORM
=================================================== */
.form-layout { align-items: start; }
.info-box {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
  font-size: .88rem;
}
.info-box i { color: var(--teal); margin-top: .15rem; flex-shrink: 0; font-size: 1.1rem; }
.info-box p { margin: .25rem 0 0; color: var(--text-muted); }

.recommandation-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label { font-size: .82rem; font-weight: 600; color: var(--text-muted); }
.required { color: var(--terra); }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-input {
  width: 100%;
  padding: .72rem .9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .9rem;
  background: var(--bg);
  color: var(--text);
  appearance: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,138,125,.1);
}
textarea.form-input { resize: vertical; min-height: 100px; border-radius: var(--radius-sm); }

.form-error { font-size: .78rem; color: var(--terra); font-weight: 500; }

.radio-group { display: flex; gap: 1.25rem; }
.radio-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
}
.radio-label input[type=radio] { accent-color: var(--teal); width: 16px; height: 16px; }

.form-success {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: #E8F8F2;
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  font-size: .9rem;
  border: 1px solid #A8DFC4;
}
.form-success i { color: #22C074; font-size: 1.3rem; flex-shrink: 0; }
.form-success p { margin: .25rem 0 0; color: var(--text-muted); font-size: .85rem; }

/* ===================================================
   AIDE
=================================================== */
.aide-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .aide-grid { grid-template-columns: repeat(3,1fr); } }

.aide-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.aide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.aide-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: .25rem;
}
.aide-card h3 { font-size: 1.05rem; margin: 0; }
.aide-card p { font-size: .88rem; color: var(--text-muted); margin: 0; flex: 1; }

/* ===================================================
   FOOTER
=================================================== */
#site-footer {
  background: var(--text);
  color: rgba(255,255,255,.8);
  padding: 3rem 1.25rem 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .footer-container { grid-template-columns: 1fr auto; align-items: start; }
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: .5rem;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-creator { text-align: left; }
@media (min-width: 600px) { .footer-creator { text-align: right; } }
.footer-creator-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal-mid);
  margin-bottom: .2rem;
}
.footer-creator-role { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
.footer-social { display: flex; gap: .75rem; }
@media (min-width: 600px) { .footer-social { justify-content: flex-end; } }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); background: rgba(26,138,125,.1); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
}

/* ===================================================
   SCROLL REVEAL
=================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-right { transform: translateY(24px) translateX(16px); }
.reveal-center { transition-delay: .15s; }
.reveal.visible { opacity: 1; transform: translateY(0) translateX(0); }

/* ===================================================
   SCROLLBAR
=================================================== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--teal-mid); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

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