/* ============================================================
   DOCTO — Styles des pages publiques (accueil, recherche, profil...)
   ============================================================ */

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,44,107,0.08);
  transition: box-shadow .2s ease;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.logo-icon::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 33%; background: var(--red); }
.logo-icon::after { content: ''; position: absolute; top: 33%; left: 0; right: 0; height: 33%; background: var(--gold); }
.logo-cross {
  position: relative; z-index: 2;
  color: white; font-size: 18px; font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  padding: 2px 4px; border-radius: 4px;
}
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -0.5px; }
.logo-text span { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--dark); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-outline {
  padding: 9px 20px; border: 2px solid var(--navy); border-radius: 8px;
  color: var(--navy); font-weight: 600; font-size: 14px; text-decoration: none; transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-primary {
  padding: 9px 20px; background: var(--red); border-radius: 8px;
  color: white; font-weight: 600; font-size: 14px; text-decoration: none; transition: all .2s;
  border: 2px solid var(--red);
}
.btn-primary:hover { background: #b52323; border-color: #b52323; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 100px 5% 60px;
  background: linear-gradient(135deg, #EBF3FF 0%, #F8FAFE 60%, #FFF8E7 100%);
  position: relative; overflow: hidden; gap: 40px;
}
.hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(245,194,0,0.15) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: 30%; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(10,126,164,0.1) 0%, transparent 70%); pointer-events: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,126,164,0.1); color: var(--teal); border: 1px solid rgba(10,126,164,0.25);
  padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.4); } }

.hero h1 { font-size: clamp(36px, 4.5vw, 58px); line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero h1 .accent { color: var(--red); }
.hero h1 .underline-gold { position: relative; display: inline-block; }
.hero h1 .underline-gold::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 4px; background: var(--gold); border-radius: 2px; }
.hero p { font-size: 17px; color: var(--gray); line-height: 1.7; max-width: 480px; margin-bottom: 36px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero { padding: 15px 32px; border-radius: 12px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all .25s; display: inline-flex; align-items: center; gap: 8px; }
.btn-hero-primary { background: var(--red); color: white; box-shadow: 0 8px 24px rgba(212,43,43,.3); }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,43,43,.4); }
.btn-hero-secondary { background: white; color: var(--navy); border: 2px solid rgba(26,44,107,0.15); }
.btn-hero-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }

.hero-trust { display: flex; align-items: center; gap: 12px; }
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid white;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  margin-left: -10px; background: linear-gradient(135deg, var(--teal), var(--navy)); color: white; font-weight: 700;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--gray); }
.trust-text strong { color: var(--dark); }

/* ── HERO VISUAL (mockup téléphone) ── */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  width: 280px; background: var(--navy); border-radius: 36px; padding: 16px;
  box-shadow: 0 40px 80px rgba(26,44,107,0.3); position: relative; z-index: 2;
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.phone-screen { background: #F4F7FB; border-radius: 24px; overflow: hidden; aspect-ratio: 9/16; display: flex; flex-direction: column; }
.phone-header { background: var(--navy); padding: 16px; color: white; font-size: 11px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.phone-status { display: flex; gap: 4px; align-items: center; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; }
.phone-body { padding: 16px; flex: 1; }
.phone-doctor-card { background: white; border-radius: 14px; padding: 14px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06); display: flex; gap: 12px; align-items: center; }
.doctor-avatar { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.doctor-info { font-size: 11px; }
.doctor-info strong { display: block; font-size: 12px; color: var(--dark); margin-bottom: 2px; }
.doctor-info span { color: var(--gray); }
.doctor-badge { margin-left: auto; background: rgba(34,197,94,.15); color: #16A34A; padding: 3px 8px; border-radius: 100px; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.phone-session { background: var(--navy); border-radius: 14px; padding: 14px; color: white; }
.session-label { font-size: 10px; opacity: .6; margin-bottom: 6px; }
.session-timer { font-size: 22px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 10px; }
.session-controls { display: flex; gap: 8px; }
.ctrl-btn { flex: 1; padding: 8px; border-radius: 8px; font-size: 10px; font-weight: 600; text-align: center; border: none; cursor: pointer; }
.ctrl-red { background: var(--red); color: white; }
.ctrl-teal { background: var(--teal); color: white; }
.ctrl-gold { background: var(--gold); color: var(--dark); }

.floating-card { position: absolute; background: white; border-radius: 16px; padding: 14px 18px; box-shadow: 0 12px 32px rgba(0,0,0,.12); font-size: 12px; z-index: 3; }
.fc-top { top: 10%; right: -40px; display: flex; align-items: center; gap: 10px; }
.fc-top-icon { font-size: 24px; }
.fc-top strong { display: block; font-size: 18px; font-weight: 800; color: var(--navy); }
.fc-top span { color: var(--gray); }
.fc-bottom { bottom: 15%; left: -50px; display: flex; align-items: center; gap: 10px; }
.fc-check { width: 32px; height: 32px; background: rgba(34,197,94,.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.fc-bottom strong { display: block; color: var(--dark); font-size: 13px; }
.fc-bottom span { color: var(--gray); }

/* ── BARRE STATISTIQUES ── */
.stats-bar { background: var(--navy); padding: 32px 5%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-item { text-align: center; border-right: 1px solid rgba(255,255,255,0.1); padding: 0 20px; }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-label { color: rgba(255,255,255,0.65); font-size: 13px; }

/* ── BARRE DE RECHERCHE RAPIDE ── */
.search-bar-section { padding: 0 5%; margin-top: -32px; position: relative; z-index: 10; }
.search-bar-card {
  background: white; border-radius: 20px; box-shadow: 0 20px 50px rgba(13,27,62,.12);
  padding: 24px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px; align-items: end;
  max-width: 1100px; margin: 0 auto;
}
.search-bar-card .form-group { margin-bottom: 0; }
.search-link-all { text-align: center; margin-top: 16px; font-size: 13.5px; }
.search-link-all a { color: var(--teal); font-weight: 700; text-decoration: none; }
@media (max-width: 800px) { .search-bar-card { grid-template-columns: 1fr; } }

/* ── SERVICES / SPÉCIALITÉS ── */
.services, .specialites-section { padding: 90px 5%; background: var(--off); }
.services-grid, .specialites-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }

.service-card, .specialite-card {
  background: white; border-radius: 20px; padding: 32px 24px;
  border: 1.5px solid transparent; transition: all .3s; position: relative; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
}
.service-card:hover, .specialite-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 20px 48px rgba(10,126,164,0.12); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.service-card.c1::before { background: linear-gradient(90deg, var(--teal), #0EA5E9); }
.service-card.c2::before { background: linear-gradient(90deg, var(--red), #F97316); }
.service-card.c3::before { background: linear-gradient(90deg, var(--navy), var(--teal)); }
.service-card.c4::before { background: linear-gradient(90deg, var(--gold), #F97316); }
.service-card.c5::before { background: linear-gradient(90deg, #8B5CF6, var(--teal)); }
.service-card.c6::before { background: linear-gradient(90deg, #22C55E, var(--teal)); }

.service-icon, .specialite-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.icon-teal { background: rgba(10,126,164,0.1); } .icon-red { background: rgba(212,43,43,0.1); }
.icon-navy { background: rgba(26,44,107,0.1); } .icon-gold { background: rgba(245,194,0,0.15); }
.icon-purple { background: rgba(139,92,246,0.1); } .icon-green { background: rgba(34,197,94,0.1); }

.service-card h3, .specialite-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 20px; }
.specialite-card .nb-medecins { font-size: 12.5px; color: var(--teal); font-weight: 700; }
.service-link { font-size: 13px; font-weight: 700; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* ── COMMENT ÇA MARCHE ── */
.how { padding: 90px 5%; background: white; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--teal), var(--red)); }
.step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: white; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; position: relative; z-index: 1; border: 4px solid white; box-shadow: 0 4px 16px rgba(26,44,107,0.25); }
.step:nth-child(2) .step-num { background: var(--teal); }
.step:nth-child(3) .step-num { background: var(--red); }
.step:nth-child(4) .step-num { background: var(--gold); color: var(--dark); }
.step h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── MÉDECINS ── */
.doctors { padding: 90px 5%; background: var(--off); }
.doctors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.doctor-card { background: white; border-radius: 20px; overflow: hidden; transition: all .3s; text-decoration: none; color: inherit; display: block; }
.doctor-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.doctor-card-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 64px; position: relative; background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%); overflow: hidden; }
.doctor-card-img img { width: 100%; height: 100%; object-fit: cover; }
.online-indicator { position: absolute; top: 12px; right: 12px; background: #22C55E; width: 10px; height: 10px; border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 3px rgba(34,197,94,.3); }
.doctor-card-body { padding: 18px; }
.doctor-card-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.doctor-card-body .spec { font-size: 12px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.doctor-card-body .rating { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.stars { color: var(--gold); }
.btn-consult { display: block; width: 100%; padding: 10px; background: var(--navy); color: white; border-radius: 10px; text-align: center; font-size: 13px; font-weight: 600; text-decoration: none; transition: background .2s; border: none; }
.btn-consult:hover { background: var(--teal); }

/* ── MOBILE MONEY ── */
.mobilemoney { padding: 70px 5%; background: white; text-align: center; }
.mm-cards { display: flex; gap: 24px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.mm-card { background: var(--off); border-radius: 18px; padding: 28px 40px; font-weight: 800; font-size: 20px; font-family: 'Plus Jakarta Sans', sans-serif; }
.mm-airtel { color: #ED1C24; } .mm-moov { color: #0072BC; }

/* ── TÉMOIGNAGES ── */
.testimonials { padding: 90px 5%; background: var(--navy); }
.testimonials .section-eyebrow { color: var(--gold); }
.testimonials .section-title { color: white; }
.testimonials .section-sub { color: rgba(255,255,255,.55); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 28px; transition: all .3s; }
.testi-card:hover { background: rgba(255,255,255,.1); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testi-text { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: white; }
.ta1 { background: var(--teal); } .ta2 { background: var(--red); } .ta3 { background: var(--gold); color: var(--dark); }
.testi-name { font-size: 14px; font-weight: 700; color: white; }
.testi-role { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── CTA BAND ── */
.cta-band { padding: 80px 5%; background: linear-gradient(135deg, #D42B2B 0%, #1A2C6B 100%); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(26px, 3vw, 40px); color: white; max-width: 520px; line-height: 1.2; }
.cta-band h2 em { color: var(--gold); font-style: normal; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; margin: 16px 0 20px; max-width: 280px; }
.footer-contacts a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; margin-bottom: 8px; }
.footer-contacts a:hover { color: var(--gold); }
.footer-col h5 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,.45); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 12px; }
.footer-flag { display: flex; gap: 4px; align-items: center; }
.flag-stripe { width: 16px; height: 16px; border-radius: 2px; }

/* ── PAGES SECONDAIRES (recherche, profil médecin, tarifs...) ── */
.page-header { padding: 130px 5% 50px; background: linear-gradient(135deg, #EBF3FF 0%, #F8FAFE 100%); text-align: center; }
.page-header h1 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; }
.page-header p { color: var(--gray); font-size: 15px; max-width: 560px; margin: 0 auto; }

.recherche-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 40px 5% 90px; align-items: start; }
.filtres-sidebar { background: white; border-radius: 18px; padding: 24px; box-shadow: var(--shadow-soft); position: sticky; top: 90px; }
.filtres-sidebar h4 { font-size: 14px; margin-bottom: 16px; }
.filtre-group { margin-bottom: 20px; }
.filtre-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--gray); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .3px; }
.resultats-liste { display: flex; flex-direction: column; gap: 16px; }
.resultat-count { font-size: 14px; color: var(--gray); margin-bottom: 16px; }

.medecin-liste-card { background: white; border-radius: 18px; padding: 20px; box-shadow: var(--shadow-soft); display: flex; gap: 18px; align-items: center; transition: var(--transition); }
.medecin-liste-card:hover { box-shadow: 0 16px 36px rgba(0,0,0,.1); transform: translateY(-2px); }
.medecin-liste-card .avatar { width: 64px; height: 64px; font-size: 26px; }
.medecin-liste-infos { flex: 1; min-width: 0; }
.medecin-liste-infos h4 { font-size: 16px; margin-bottom: 4px; }
.medecin-liste-infos .spec { color: var(--teal); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.medecin-liste-infos .meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--gray); }
.medecin-liste-actions { text-align: right; flex-shrink: 0; }
.medecin-liste-actions .tarif { font-size: 18px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 10px; }

.profil-medecin-hero { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 130px 5% 40px; background: linear-gradient(135deg, #EBF3FF 0%, #F8FAFE 100%); align-items: start; }
.profil-medecin-hero .avatar { width: 180px; height: 180px; font-size: 64px; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.profil-medecin-layout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 40px 5% 90px; align-items: start; }

/* ── PAGES AUTHENTIFICATION ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 110px 5% 60px;
  background: linear-gradient(135deg, #EBF3FF 0%, #F8FAFE 60%, #FFF8E7 100%);
}
.auth-card { background: white; border-radius: 22px; padding: 40px; max-width: 460px; width: 100%; box-shadow: 0 24px 64px rgba(13,27,62,.12); }
.auth-card.wide { max-width: 720px; }
.auth-logo { display: flex; align-items: center; gap: 10px; justify-content: center; margin-bottom: 24px; text-decoration: none; }
.auth-title { text-align: center; font-size: 24px; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--gray); font-size: 13.5px; margin-bottom: 28px; }
.auth-links { text-align: center; font-size: 13.5px; color: var(--gray); margin-top: 18px; }
.auth-links a { color: var(--teal); font-weight: 700; text-decoration: none; }
.auth-tabs { display: flex; gap: 8px; background: var(--off); border-radius: 12px; padding: 4px; margin-bottom: 24px; }
.auth-tab-btn { flex: 1; padding: 10px; border: none; background: none; border-radius: 9px; font-size: 13px; font-weight: 700; color: var(--gray); transition: var(--transition); }
.auth-tab-btn.active { background: white; color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.auth-tab-panel { display: none; }
.auth-tab-panel.active { display: block; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }
.otp-inputs input {
  width: 48px; height: 56px; text-align: center; font-size: 22px; font-weight: 800;
  border: 1.5px solid rgba(26,44,107,0.15); border-radius: 12px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.otp-inputs input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,126,164,0.12); }
.otp-timer { text-align: center; font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.otp-timer button { background: none; border: none; color: var(--teal); font-weight: 700; cursor: pointer; }
.otp-timer button:disabled { color: var(--gray); cursor: not-allowed; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.checkbox-row input { margin-top: 3px; }
.checkbox-row a { color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 110px; }
  .hero p { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }
  .services-grid, .specialites-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .step { margin-bottom: 32px; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; gap: 16px; box-shadow: 0 12px 24px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .recherche-layout, .profil-medecin-layout { grid-template-columns: 1fr; }
  .filtres-sidebar { position: static; }
  .profil-medecin-hero { grid-template-columns: 1fr; text-align: center; }
  .profil-medecin-hero .avatar { margin: 0 auto; }
}
@media (max-width: 580px) {
  .services-grid, .specialites-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { text-align: center; justify-content: center; }
  .medecin-liste-card { flex-direction: column; text-align: center; }
  .medecin-liste-actions { text-align: center; width: 100%; }
}
