/* ============================================
   B2BMédical — Maquette Statique Vue.js
   Réponse Codeur.com #484443 — by absoluinfo.fr
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; color: #2C3E50; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

/* --- Conteneur --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Boutons --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  outline: none;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: #2980B9; color: #fff; border-color: #2980B9; }
.btn-primary:hover { background: #1F618D; border-color: #1F618D; color: #fff; }
.btn-outline { background: transparent; border-color: #2980B9; color: #2980B9; padding: 10px 26px; }
.btn-outline:hover { background: #EBF5FB; }
.btn-accent { background: #E74C3C; color: #fff; border-color: #E74C3C; }
.btn-accent:hover { background: #C0392B; }
.btn-white { background: #fff; color: #2980B9; border-radius: 50px; padding: 16px 48px; border: none; }
.btn-white:hover { background: #F8FAFC; box-shadow: 0 4px 16px rgba(0,0,0,.15); }

/* --- Badge certifié --- */
.badge-certifie {
  display: inline-flex; align-items: center; gap: 4px;
  background: #D5F5E3; color: #1E8449;
  border-radius: 50px; padding: 4px 12px;
  font-family: 'Open Sans', sans-serif; font-weight: 600; font-size: 12px;
}

/* --- Étoiles --- */
.stars { color: #F39C12; letter-spacing: 1px; }

/* --- Titre section --- */
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 36px;
  color: #2C3E50; text-align: center; margin-bottom: 56px;
}
@media (max-width: 768px) { .section-title { font-size: 24px; margin-bottom: 36px; } }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo { display: flex; align-items: center; gap: 8px; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: #2C3E50; }
.logo-text span { color: #2980B9; }
.logo-cross {
  width: 44px; height: 44px; background: #2980B9; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px; font-weight: 700; font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: 'Open Sans', sans-serif; font-size: 15px; color: #2C3E50;
  cursor: pointer; transition: color .2s; padding-bottom: 2px;
}
.nav-link:hover, .router-link-active.nav-link { color: #2980B9; border-bottom: 2px solid #2980B9; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #2C3E50; transition: .3s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid #ECF0F1; padding: 16px 24px; flex-direction: column; gap: 12px; }
.mobile-menu.open { display: flex; }
@media (max-width: 900px) {
  .header-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 90vh;
  background-image: url('https://images.unsplash.com/photo-1538108149393-fbbd81895907?w=1600&q=80');
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: center; margin-top: 72px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(41,128,185,.78), rgba(44,62,80,.88));
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 52px; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.hero p { font-size: 20px; color: rgba(255,255,255,.9); margin-bottom: 40px; }
.hero-search {
  display: flex; max-width: 600px; margin: 0 auto 32px;
  background: #fff; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero-search input { flex: 1; padding: 16px 20px; font-size: 16px; border: none; outline: none; font-family: 'Open Sans', sans-serif; color: #2C3E50; min-width: 0; }
.hero-search input::placeholder { color: #95A5A6; }
.hero-search button { padding: 0 28px; background: #E74C3C; color: #fff; border: none; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.hero-search button:hover { background: #C0392B; }
.hero-badges { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 15px; }
.hero-badge .check { width: 22px; height: 22px; background: #1ABC9C; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
@media (max-width: 768px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .hero-search { flex-direction: column; }
  .hero-search button { padding: 14px; }
}

/* ============================================
   COMMENT CA MARCHE
   ============================================ */
.how-it-works { background: #F8FAFC; padding: 80px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; gap: 32px; } }
.step-item { text-align: center; }
.step-number {
  width: 64px; height: 64px; background: #2980B9; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 24px; margin: 0 auto 20px;
}
.step-icon { font-size: 48px; display: block; margin: 0 auto 16px; line-height: 1; }
.step-item h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 18px; color: #2C3E50; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.step-item p { font-size: 15px; color: #7F8C8D; }
.section-cta { text-align: center; }

/* ============================================
   CATEGORIES
   ============================================ */
.categories { background: #fff; padding: 80px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .categories-grid { grid-template-columns: 1fr; } }
.category-card {
  border: 1px solid #ECF0F1; border-radius: 12px; padding: 24px; text-align: center;
  cursor: pointer; transition: all .25s ease; display: block;
}
.category-card:hover { box-shadow: 0 8px 24px rgba(41,128,185,.15); border-left: 4px solid #2980B9; transform: translateY(-2px); }
.category-icon { font-size: 44px; display: block; margin-bottom: 12px; line-height: 1; }
.category-name { font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 15px; color: #2C3E50; margin-bottom: 4px; }
.category-count { font-size: 13px; color: #95A5A6; }

/* ============================================
   ILS NOUS FONT CONFIANCE
   ============================================ */
.trust-section { background: #2C3E50; padding: 80px 0; overflow: hidden; }
.trust-section .section-title { color: #fff; }
.logos-carousel { overflow: hidden; margin-bottom: 56px; }
.logos-track { display: flex; gap: 48px; animation: scroll-logos 25s linear infinite; width: max-content; }
.logos-carousel:hover .logos-track { animation-play-state: paused; }
@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-item {
  display: flex; align-items: center; justify-content: center; padding: 10px 24px;
  background: rgba(255,255,255,.1); border-radius: 8px; min-width: 160px; height: 56px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,.7); letter-spacing: 1px; flex-shrink: 0;
}
.stats-grid { display: flex; justify-content: center; gap: 80px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 42px; color: #2980B9; display: block; }
.stat-label { font-size: 14px; color: #BDC3C7; }
@media (max-width: 600px) { .stats-grid { gap: 40px; } .stat-number { font-size: 32px; } }

/* ============================================
   TEMOIGNAGES
   ============================================ */
.testimonials { background: #F8FAFC; padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: #fff; border-radius: 16px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.testimonial-stars { color: #F39C12; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-style: italic; font-size: 15px; color: #555; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #fff; flex-shrink: 0;
}
.author-info .name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #2C3E50; }
.author-info .role { font-size: 13px; color: #7F8C8D; }

/* ============================================
   CTA FINAL
   ============================================ */
.final-cta { background: linear-gradient(135deg, #2980B9, #1ABC9C); padding: 80px 0; text-align: center; }
.final-cta h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 36px; color: #fff; margin-bottom: 14px; text-transform: uppercase; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 36px; }
@media (max-width: 768px) { .final-cta h2 { font-size: 24px; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #1A252F; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #2C3E50; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-text { color: #fff; font-size: 22px; margin-bottom: 12px; display: block; }
.footer-brand .logo-text span { color: #2980B9; }
.footer-desc { font-size: 14px; color: #95A5A6; line-height: 1.7; margin-bottom: 20px; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact li { font-size: 14px; color: #95A5A6; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #95A5A6; cursor: pointer; transition: color .2s; }
.footer-links a:hover { color: #2980B9; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px; background: #2C3E50; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: background .3s; color: #fff;
}
.social-link:hover { background: #2980B9; }
.footer-bottom { background: #0F1923; padding: 14px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copyright { font-size: 13px; color: #7F8C8D; }
.footer-by { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13px; color: #2980B9; }
.footer-by:hover { text-decoration: underline; }

/* ============================================
   PAGE WRAPPER (pages secondaires)
   ============================================ */
.page-wrapper { margin-top: 72px; min-height: calc(100vh - 72px); background: #F8FAFC; padding: 60px 0; }
.page-header { text-align: center; margin-bottom: 44px; }
.page-header h1 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 36px; color: #2C3E50; margin-bottom: 8px; }
.page-header p { font-size: 16px; color: #7F8C8D; }

/* --- Form Card --- */
.form-card { background: #fff; border-radius: 16px; padding: 48px; box-shadow: 0 4px 24px rgba(0,0,0,.08); max-width: 640px; margin: 0 auto; }
@media (max-width: 600px) { .form-card { padding: 28px 20px; } }

/* ============================================
   PAGE INSCRIPTION
   ============================================ */
.progress-steps { display: flex; align-items: center; margin-bottom: 40px; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 80px; }
.progress-step .circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  background: #ECF0F1; color: #95A5A6; transition: all .3s;
}
.progress-step.active .circle { background: #2980B9; color: #fff; }
.progress-step.completed .circle { background: #1ABC9C; color: #fff; }
.progress-step .label { font-size: 11px; color: #95A5A6; white-space: nowrap; }
.progress-step.active .label { color: #2980B9; font-weight: 600; }
.progress-line { flex: 1; height: 2px; background: #ECF0F1; margin-bottom: 22px; }
.progress-line.active { background: #2980B9; }

.account-types { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 32px; }
@media (max-width: 480px) { .account-types { grid-template-columns: 1fr; } }
.account-type-card { border: 2px solid #ECF0F1; border-radius: 12px; padding: 24px 14px; text-align: center; cursor: pointer; transition: all .2s; }
.account-type-card:hover { border-color: #2980B9; }
.account-type-card.selected { border-color: #2980B9; background: #EBF5FB; }
.account-type-icon { font-size: 36px; margin-bottom: 10px; display: block; }
.account-type-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 12px; color: #2C3E50; text-transform: uppercase; letter-spacing: .5px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 14px; color: #2C3E50; margin-bottom: 6px; }
.form-label .req { color: #E74C3C; margin-left: 2px; }
.form-control {
  width: 100%; padding: 11px 14px; border: 1px solid #ECF0F1; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 15px; color: #2C3E50;
  transition: border-color .2s; outline: none; background: #FAFAFA;
}
.form-control:focus { border-color: #2980B9; background: #fff; }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.checkbox-group input[type="checkbox"] { margin-top: 3px; width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.checkbox-group label { font-size: 14px; color: #555; cursor: pointer; }
.checkbox-group a { color: #2980B9; text-decoration: underline; }

.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }

/* ============================================
   PAGE RECHERCHE
   ============================================ */
.search-page { margin-top: 72px; min-height: calc(100vh - 72px); background: #F8FAFC; }
.search-header { background: #2C3E50; padding: 36px 0; }
.search-header h1 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 30px; color: #fff; margin-bottom: 18px; }
.search-bar-large { display: flex; background: #fff; border-radius: 8px; overflow: hidden; max-width: 680px; }
.search-bar-large input { flex: 1; padding: 13px 18px; border: none; outline: none; font-family: 'Open Sans', sans-serif; font-size: 15px; color: #2C3E50; min-width: 0; }
.search-bar-large button { padding: 0 24px; background: #2980B9; color: #fff; border: none; font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; flex-shrink: 0; }

.search-content { display: grid; grid-template-columns: 270px 1fr; gap: 28px; padding: 36px 0 60px; }
@media (max-width: 900px) { .search-content { grid-template-columns: 1fr; } }

.filters-panel { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,.06); height: fit-content; position: sticky; top: 88px; }
.filter-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px; color: #2C3E50; margin-bottom: 20px; }
.filter-group { margin-bottom: 20px; }
.filter-label { font-weight: 600; font-size: 12px; color: #7F8C8D; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; display: block; }
.filter-group select { width: 100%; padding: 9px 12px; border: 1px solid #ECF0F1; border-radius: 6px; font-family: 'Open Sans', sans-serif; font-size: 14px; color: #2C3E50; outline: none; background: #FAFAFA; cursor: pointer; }
.filter-checkbox { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-checkbox input { cursor: pointer; }
.filter-checkbox label { font-size: 14px; color: #555; cursor: pointer; }
.btn-reset { font-size: 13px; color: #E74C3C; background: none; border: none; cursor: pointer; padding: 0; font-family: 'Open Sans', sans-serif; }
.btn-reset:hover { text-decoration: underline; }

.results-count { font-size: 14px; color: #7F8C8D; margin-bottom: 16px; }
.results-count strong { color: #2C3E50; }

.provider-card {
  background: #fff; border: 1px solid #ECF0F1; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: all .25s ease;
  cursor: pointer; display: flex; gap: 18px; margin-bottom: 14px;
}
.provider-card:hover { box-shadow: 0 8px 24px rgba(41,128,185,.15); border-color: #2980B9; }
.provider-logo {
  width: 60px; height: 60px; border-radius: 10px; background: #EBF5FB;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: #2980B9; flex-shrink: 0;
}
.provider-info { flex: 1; }
.provider-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; gap: 8px; }
.provider-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px; color: #2C3E50; }
.provider-rating { font-size: 13px; color: #7F8C8D; white-space: nowrap; }
.provider-meta { font-size: 13px; color: #95A5A6; margin-bottom: 6px; }
.provider-desc { font-size: 14px; color: #555; margin-bottom: 14px; line-height: 1.6; }
.provider-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.load-more { text-align: center; margin-top: 20px; }

/* ============================================
   FICHE PRESTATAIRE
   ============================================ */
.fiche-page { margin-top: 72px; background: #F8FAFC; min-height: calc(100vh - 72px); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: #2980B9; cursor: pointer; padding: 24px 0 0; }
.back-link:hover { text-decoration: underline; }
.fiche-hero { background: #fff; padding: 32px 0; border-bottom: 1px solid #ECF0F1; margin-bottom: 28px; }
.fiche-header { display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
.fiche-logo {
  width: 110px; height: 110px; border-radius: 14px; background: #EBF5FB;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px; color: #2980B9;
  flex-shrink: 0; border: 2px solid #ECF0F1;
}
.fiche-info { flex: 1; min-width: 200px; }
.fiche-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 26px; color: #2C3E50; margin-bottom: 8px; }
.fiche-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 14px; color: #7F8C8D; }
.fiche-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
.fiche-meta-item { font-size: 14px; color: #7F8C8D; }
.fiche-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-orange { background: #FDEBD0; color: #D35400; border-radius: 50px; padding: 4px 12px; font-size: 12px; font-weight: 600; }
.fiche-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.btn-favori {
  background: transparent; border: 1px solid #ECF0F1; border-radius: 6px;
  padding: 10px 16px; font-size: 14px; color: #7F8C8D; cursor: pointer;
  display: flex; align-items: center; gap: 6px; transition: all .2s; font-family: 'Open Sans', sans-serif;
}
.btn-favori:hover { border-color: #E74C3C; color: #E74C3C; }

.fiche-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 22px; padding-bottom: 60px; }
@media (max-width: 900px) { .fiche-grid { grid-template-columns: 1fr; } }

.fiche-section { background: #fff; border-radius: 12px; padding: 26px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.fiche-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 16px; color: #2C3E50; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid #ECF0F1; text-transform: uppercase; letter-spacing: .5px; }
.fiche-section p { font-size: 15px; color: #555; line-height: 1.8; }
.fiche-section p + p { margin-top: 10px; }

.services-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; list-style: none; }
@media (max-width: 600px) { .services-list { grid-template-columns: 1fr 1fr; } }
.services-list li { font-size: 14px; color: #555; padding: 8px 12px; background: #F8FAFC; border-radius: 6px; border-left: 3px solid #2980B9; }

.review-item { padding: 14px 0; border-bottom: 1px solid #F4F4F4; }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; flex-wrap: wrap; gap: 6px; }
.review-author { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #2C3E50; }
.review-date { font-size: 12px; color: #95A5A6; margin-left: 8px; }
.review-text { font-size: 14px; color: #555; line-height: 1.6; }

.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.legal-item { font-size: 14px; color: #555; line-height: 1.7; }
.legal-item strong { color: #2C3E50; font-weight: 600; display: block; }

/* ============================================
   TABLEAU DE BORD
   ============================================ */
.dashboard-layout { margin-top: 72px; display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 72px); }
@media (max-width: 900px) { .dashboard-layout { grid-template-columns: 1fr; } }
.sidebar { background: #1A252F; padding: 28px 0; position: sticky; top: 72px; height: calc(100vh - 72px); overflow-y: auto; }
.sidebar-user { padding: 0 22px 22px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 14px; }
.sidebar-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: #2980B9;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 10px;
}
.sidebar-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #fff; }
.sidebar-role { font-size: 12px; color: #95A5A6; }
.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 12px; padding: 11px 22px;
  font-size: 14px; color: #BDC3C7; cursor: pointer; transition: all .2s;
}
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,255,255,.08); color: #fff; }
.sidebar-nav a.active { border-left: 3px solid #2980B9; }
.sidebar-nav .badge-notif { background: #E74C3C; color: #fff; border-radius: 50px; padding: 2px 8px; font-size: 11px; font-weight: 700; margin-left: auto; }

.dashboard-content { background: #F8FAFC; padding: 36px 36px 60px; overflow-y: auto; }
.dashboard-welcome { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 26px; color: #2C3E50; margin-bottom: 28px; }

.stats-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 32px; }
@media (max-width: 1100px) { .stats-cards { grid-template-columns: repeat(2,1fr); } }
.stat-card { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.stat-card .stat-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.stat-card .stat-value { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px; color: #2980B9; }
.stat-card .stat-name { font-size: 13px; color: #7F8C8D; margin-top: 4px; }

.dash-section { background: #fff; border-radius: 12px; padding: 22px; box-shadow: 0 2px 8px rgba(0,0,0,.06); margin-bottom: 22px; }
.dash-section h2 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #2C3E50; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid #ECF0F1; text-transform: uppercase; letter-spacing: .5px; }

.activity-item { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 1px solid #F8FAFC; }
.activity-item:last-child { border-bottom: none; }
.activity-icon { width: 38px; height: 38px; border-radius: 50%; background: #EBF5FB; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.activity-info .title { font-weight: 600; font-size: 14px; color: #2C3E50; }
.activity-info .time { font-size: 12px; color: #95A5A6; }

.reco-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
@media (max-width: 700px) { .reco-grid { grid-template-columns: 1fr; } }
.reco-card { border: 1px solid #ECF0F1; border-radius: 10px; padding: 16px; }
.reco-card:hover { border-color: #2980B9; }
.reco-head { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; }
.reco-logo { width: 40px; height: 40px; border-radius: 8px; background: #EBF5FB; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; color: #2980B9; flex-shrink: 0; }
.reco-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; color: #2C3E50; }

/* ============================================
   PAGE CONTACT
   ============================================ */
.contact-page { margin-top: 72px; background: #F8FAFC; min-height: calc(100vh - 72px); padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 28px; color: #2C3E50; margin-bottom: 14px; }
.contact-info p { font-size: 16px; color: #7F8C8D; margin-bottom: 28px; line-height: 1.7; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-details li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #555; }
.contact-details .icon { font-size: 20px; flex-shrink: 0; }

/* ============================================
   PAGES LEGALES
   ============================================ */
.legal-page { margin-top: 72px; background: #fff; min-height: calc(100vh - 72px); padding: 60px 0; }
.legal-page h1 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 34px; color: #2C3E50; margin-bottom: 36px; }
.legal-page h2 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 20px; color: #2C3E50; margin: 28px 0 10px; }
.legal-page p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 14px; }
.legal-max { max-width: 800px; }

/* ============================================
   PAGE CONNEXION
   ============================================ */
.connexion-card { max-width: 440px; }

/* ============================================
   TRANSITIONS
   ============================================ */
.fade-enter-active, .fade-leave-active { transition: opacity .18s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
