/* ══════════════════════════════════════════════
   TELECONSULT – FEUILLE DE STYLE PRINCIPALE
   ══════════════════════════════════════════════ */

/* ===== VARIABLES ===== */
:root {
  --primary:       #1D4ED8;
  --primary-dark:  #1E3A8A;
  --primary-light: #EFF6FF;
  --primary-mid:   #BFDBFE;
  --secondary:     #0284C7;
  --accent:        #059669;
  --accent-dark:   #047857;
  --accent-light:  #D1FAE5;
  --danger:        #EF4444;
  --danger-dark:   #DC2626;
  --warning:       #F59E0B;
  --navy:          #0F172A;
  --bg:            #F8FAFC;
  --card:          #FFFFFF;
  --text:          #0F172A;
  --text-muted:    #64748B;
  --border:        #E2E8F0;
  --border-light:  #F1F5F9;
  --shadow:        0 4px 24px rgba(29, 78, 216, 0.08);
  --shadow-md:     0 8px 32px rgba(29, 78, 216, 0.14);
  --shadow-lg:     0 16px 48px rgba(29, 78, 216, 0.18);
  --shadow-nav:    0 2px 20px rgba(0,0,0,0.08);
  --radius:        16px;
  --radius-sm:     10px;
  --radius-lg:     24px;
  --radius-xl:     32px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════
   NAVBAR – avec dropdowns et burger mobile
   ══════════════════════════════════════════════ */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-light);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35);
  flex-shrink: 0;
}

/* Nav links list */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.nav-link:hover { color: var(--primary); background: var(--primary-light); }

.nav-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s;
  display: inline-block;
  opacity: 0.7;
}
.nav-item:hover .nav-arrow,
.nav-item.open .nav-arrow { transform: rotate(90deg); }

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  border: 1px solid var(--border);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
}

.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.7rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--primary-light); }
.dropdown-item:hover .dropdown-item-title { color: var(--primary); }

.dropdown-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.15s;
}
.dropdown-item-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
  line-height: 1.3;
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 0.35rem 0.875rem;
}

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-burger:hover { background: var(--primary-light); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav overlay */
@media (max-width: 900px) {
  .navbar { padding: 0 1.25rem; }

  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-top: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-item { width: 100%; }
  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--primary-light);
    margin-left: 1rem;
    margin-top: 0.25rem;
    padding: 0.25rem 0;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .nav-item:hover .dropdown-menu { display: none; }
  .nav-item.open > .dropdown-menu { display: block; }

  .dropdown-item { padding: 0.5rem 0.75rem; }
  .dropdown-icon { width: 28px; height: 28px; font-size: 1rem; }

  .nav-links .btn { width: 100%; justify-content: center; margin-top: 0.25rem; }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
  user-select: none;
  letter-spacing: 0.01em;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 18px rgba(29, 78, 216, 0.35);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
}

.btn-success {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.35);
}
.btn-success:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-dark));
  color: white;
  box-shadow: 0 4px 18px rgba(239, 68, 68, 0.35);
}
.btn-danger:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover:not(:disabled) { background: var(--primary); color: white; }

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
}
.btn-outline-white:hover:not(:disabled) { background: rgba(255,255,255,0.15); border-color: white; }

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover:not(:disabled) { background: rgba(255,255,255,0.22); }

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-icon { padding: 0.9rem; border-radius: 50%; aspect-ratio: 1; font-size: 1.3rem; min-width: 52px; min-height: 52px; }
.btn-wide { width: 100%; }

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  font-family: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge-waiting   { background: #FEF3C7; color: #92400E; }
.badge-calling   { background: #D1FAE5; color: #065F46; animation: pulseBadge 1.5s ease infinite; }
.badge-connected { background: #DBEAFE; color: #1D4ED8; }
.badge-primary   { background: var(--primary-light); color: var(--primary); }

/* ===== ALERTES ===== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.alert-info    { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.alert-danger  { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ===== PULSE WAITING ===== */
.pulse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}
.pulse-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  position: relative;
  box-shadow: 0 6px 24px rgba(29, 78, 216, 0.4);
}
.pulse-ring::before, .pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--primary);
  animation: ripple 2.2s ease-out infinite;
}
.pulse-ring::after { animation-delay: 1.1s; }
@keyframes ripple {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===== SECTION TITLE ===== */
.section-title    { font-size: 1.75rem; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.section-subtitle { color: var(--text-muted); margin-top: 0.4rem; font-size: 1rem; }
.section-eyebrow  {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

/* ===== AVATAR ===== */
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}

/* ===== PATIENT CARD (queue) ===== */
.patient-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
  margin-bottom: 0.875rem;
}
.patient-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(29, 78, 216, 0.12); transform: translateX(4px); }
.patient-info      { flex: 1; }
.patient-name      { font-weight: 700; font-size: 1.05rem; color: var(--text); }
.patient-meta      { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ===== EMPTY STATE ===== */
.empty-state       { text-align: center; padding: 3rem 2rem; color: var(--text-muted); }
.empty-state-icon  { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.empty-state-text  { font-size: 0.9rem; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
  color: white;
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 30px;
  background: var(--bg);
  border-radius: 30px 30px 0 0;
}
.page-header-title { font-size: 1.8rem; font-weight: 800; }
.page-header-sub   { opacity: 0.85; margin-top: 0.4rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 40%, #1D4ED8 70%, #0284C7 100%);
  color: white;
  padding: 5.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}
.hero-title span {
  background: linear-gradient(90deg, #7DD3FC, #BAE6FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc { font-size: 1.1rem; opacity: 0.85; max-width: 500px; line-height: 1.75; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  opacity: 0.8;
  font-weight: 500;
}
.hero-trust-item span:first-child { font-size: 1rem; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-top: 0.35rem; }

/* ===== IMAGE FRAME PLACEHOLDER ===== */
.img-frame {
  position: relative;
  background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed #94A3B8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #94A3B8;
  overflow: visible;
  min-height: 220px;
  transition: all 0.3s;
}
.img-frame:hover { border-color: var(--primary); background: var(--primary-light); }
.img-frame:hover .img-frame-icon { color: var(--primary); }

.img-frame-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.45);
  border: 3px solid white;
  z-index: 2;
}

.img-frame-icon {
  font-size: 2.5rem;
  transition: color 0.3s;
}
.img-frame-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.4;
}
.img-frame-hint {
  font-size: 0.7rem;
  color: #CBD5E1;
  text-align: center;
  padding: 0 1rem;
}

/* Tailles */
.img-frame-hero  { min-height: 380px; }
.img-frame-md    { min-height: 240px; }
.img-frame-sm    { min-height: 160px; }
.img-frame-sq    { min-height: 220px; aspect-ratio: 1; }
.img-frame-round { border-radius: 50%; aspect-ratio: 1; min-height: 120px; max-width: 120px; }
.img-frame-round .img-frame-badge { top: -8px; left: -8px; width: 28px; height: 28px; font-size: 0.78rem; }

/* ===== FEATURES ===== */
.features { padding: 5rem 0; background: white; border-top: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature-item:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  margin: 0 auto 1rem;
}
.feature-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.feature-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 5rem 0; background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.step-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: visible;
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  transition: all 0.3s;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.step-number-badge {
  position: absolute;
  top: -18px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4);
  border: 3px solid white;
}

.step-img-area { margin-bottom: 1.25rem; margin-top: 0.5rem; }
.step-title   { font-weight: 800; font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-desc    { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== SPECIALTIES ===== */
.specialties-section { padding: 5rem 0; background: white; border-top: 1px solid var(--border); }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.specialty-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.specialty-card:hover {
  background: var(--primary-light);
  border-color: var(--primary-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.specialty-icon  { font-size: 1.8rem; margin-bottom: 0.5rem; }
.specialty-label { font-size: 0.82rem; font-weight: 600; color: var(--text); }

/* ===== PRICING ===== */
.pricing-section { padding: 5rem 0; background: var(--bg); }
.pricing-card {
  max-width: 480px;
  margin: 3rem auto 0;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 2px solid var(--primary-mid);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.pricing-amount  {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -2px;
  line-height: 1;
  margin: 1rem 0 0.35rem;
}
.pricing-amount sup { font-size: 1.5rem; letter-spacing: 0; vertical-align: super; }
.pricing-per     { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin: 1.5rem 0; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 5rem 0; background: white; border-top: 1px solid var(--border); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 1px; margin-bottom: 1rem; }
.testimonial-text  {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-author-info .author-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author-info .author-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section { padding: 5rem 0; background: var(--bg); }
.faq-list { max-width: 780px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
details.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
details.faq-item[open] { box-shadow: var(--shadow); border-color: var(--primary-mid); }
details.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  user-select: none;
}
details.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
  font-weight: 300;
}
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.contact-info p  { opacity: 0.85; margin-bottom: 2rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
}
.contact-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.78rem; opacity: 0.7; }
.contact-item-value { font-weight: 600; font-size: 0.95rem; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 1.5rem; }

/* ===== CHOICE CARDS (index) ===== */
.choice-section { padding: 5rem 0; background: var(--bg); }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.choice-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}
.choice-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.choice-card-icon { width: 80px; height: 80px; border-radius: 24px; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.choice-card-icon-patient { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); }
.choice-card-icon-doctor  { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); }
.choice-card-title        { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.75rem; }
.choice-card-desc         { color: var(--text-muted); line-height: 1.65; margin-bottom: 1.75rem; font-size: 0.95rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 3rem 2rem 2rem;
  font-size: 0.875rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}
.footer-brand .logo {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.875rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4  { color: white; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col li a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.2s; }
.footer-col li a:hover { color: white; }
.footer-bottom  { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* Footer simple (pages internes) */
footer.footer-simple {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
}
footer.footer-simple strong { color: white; }
footer.footer-simple a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
footer.footer-simple a:hover { color: white; }

/* ===== LAYOUT ===== */
.main-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; padding: 2rem 0 4rem; }
@media (max-width: 900px) { .main-layout { grid-template-columns: 1fr; } }

/* ===== VIDEO CALL PAGE ===== */
.video-page { background: #0F172A; min-height: 100vh; display: flex; flex-direction: column; }
.video-grid { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#remote-video { width: 100%; height: 100%; object-fit: cover; min-height: calc(100vh - 120px); }
#local-video  { position: absolute; bottom: 1.5rem; right: 1.5rem; width: 180px; height: 135px; object-fit: cover; border-radius: var(--radius); border: 3px solid rgba(255,255,255,0.8); box-shadow: 0 4px 24px rgba(0,0,0,0.5); cursor: pointer; transition: transform 0.2s; }
#local-video:hover { transform: scale(1.05); }

/* ===== COMMUNE AUTOCOMPLETE ===== */
.commune-wrapper { position: relative; }
.commune-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.15);
  z-index: 200;
  max-height: 260px;
  overflow-y: auto;
}
.commune-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1rem; cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.commune-item:last-child { border-bottom: none; }
.commune-item:hover { background: var(--primary-light); }
.commune-code   { font-weight: 700; color: var(--primary); min-width: 46px; font-size: 0.88rem; font-variant-numeric: tabular-nums; }
.commune-name   { flex: 1; color: var(--text); font-weight: 500; }
.commune-region { font-size: 0.75rem; background: var(--primary-light); color: var(--primary); padding: 0.15rem 0.5rem; border-radius: 100px; font-weight: 600; flex-shrink: 0; }
.commune-no-result { padding: 1rem; text-align: center; color: var(--text-muted); font-size: 0.9rem; }

/* ===== STEPPER ===== */
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; padding: 0.25rem 0 1.25rem; }
.step { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; opacity: 0.4; transition: opacity 0.3s; }
.step.active { opacity: 1; }
.step.done   { opacity: 0.75; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--text-muted); transition: all 0.3s;
}
.step.active .step-num { background: var(--primary); color: white; box-shadow: 0 4px 12px rgba(29, 78, 216, 0.35); }
.step.done .step-num   { background: var(--accent); color: white; }
.step.done .step-num::after { content: '✓'; }
.step.done .step-num   { font-size: 0; }
.step.done .step-num::after { font-size: 0.9rem; }
.step-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.step.active .step-label { color: var(--primary); }
.step.done .step-label   { color: var(--accent); }
.step-line { flex: 1; height: 2px; background: var(--border); min-width: 40px; max-width: 80px; margin-bottom: 20px; }

/* ===== STRIPE CARD ELEMENT ===== */
.stripe-card-element {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.875rem 1rem; background: white;
  transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 1.25rem;
}
.stripe-card-element.StripeElement--focus,
.stripe-card-element:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.1); }
.stripe-card-element.StripeElement--invalid { border-color: var(--danger); }

/* ===== ANIMATIONS ===== */
@keyframes pulseBadge { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes slideIn   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse     { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }
@keyframes spin      { to { transform: rotate(360deg); } }

.animate-in { animation: slideIn 0.4s ease both; }
.fade-in    { animation: fadeIn 0.4s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== UTILITY ===== */
.text-center      { text-align: center; }
.text-muted       { color: var(--text-muted); }
.font-bold        { font-weight: 700; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; } .flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════
   NOUVELLES SECTIONS – INDEX.HTML
   ═══════════════════════════════════════════════════ */

/* ── Dropdown : texte fort/faible ── */
.dropdown-item > span:last-child { display: flex; flex-direction: column; }
.dropdown-item > span strong { font-size: 0.88rem; font-weight: 700; color: var(--text); display: block; line-height: 1.3; transition: color 0.15s; }
.dropdown-item > span small  { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
.dropdown-item:hover > span strong { color: var(--primary); }

/* ── Hero deux colonnes ── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-image { position: relative; }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.8;
  font-weight: 500;
  white-space: nowrap;
}

/* ── Features section (nouvelle) ── */
.features-section { padding: 5rem 0; background: var(--bg); border-top: 1px solid var(--border); }
.features-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.feature-card-icon {
  font-size: 1.7rem;
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; color: var(--text); }
.feature-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Step card texte ── */
.step-card h3 { font-weight: 800; font-size: 1.1rem; margin: 1.1rem 0 0.45rem; color: var(--text); }
.step-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Specialty cards inline ── */
.specialty-card { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; font-weight: 600; }
.specialty-card span { font-size: 1.25rem; flex-shrink: 0; }

/* ── Pricing extras ── */
.pricing-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}
.pricing-amount span { font-size: 2rem; font-weight: 900; vertical-align: super; letter-spacing: 0; }
.pricing-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-note  { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.5; }
.pricing-features { list-style: none; }
.pricing-features li::before { content: none; }

/* ── Testimonial auteur ── */
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text); }
.testimonial-author small  { font-size: 0.78rem; color: var(--text-muted); }

/* ── About section ── */
.about-section {
  padding: 5rem 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.about-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-list li { font-size: 0.95rem; font-weight: 500; color: var(--text); }

/* ── FAQ grid 2 colonnes ── */
.faq-grid {
  max-width: 900px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
details.faq-item > p {
  padding: 0 1.5rem 1.25rem;
  padding-top: 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
}
details.faq-item > p a { color: var(--primary); }
details.faq-item > p a:hover { text-decoration: underline; }

/* ── Contact section (override fond sombre → fond clair) ── */
.contact-section {
  background: white;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.contact-grid { align-items: start; }

.contact-info h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text); }
.contact-info .contact-item {
  background: var(--bg);
  border: 1px solid var(--border);
  backdrop-filter: none;
  margin-bottom: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem 1rem;
}
.contact-icon {
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.15rem; }
.contact-item a, .contact-item span { font-size: 0.82rem; color: var(--text-muted); }
.contact-item a { text-decoration: none; }
.contact-item a:hover { color: var(--primary); }
.contact-notice {
  font-size: 0.82rem;
  color: #92400E;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  margin-top: 1rem;
  line-height: 1.5;
}
.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-group { margin-bottom: 0.875rem; }
.contact-form label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  color: var(--text);
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
  background: white;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-feedback {
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}
.contact-feedback.success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

/* ── Footer main (nouvelle classe) ── */
.footer-main {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 0;
  font-size: 0.875rem;
}
.footer-main .footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
}
.footer-main .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-size: 1.3rem; font-weight: 800; color: white; margin-bottom: 0.875rem; }
.footer-brand > p { max-width: 260px; line-height: 1.7; margin-bottom: 1.25rem; color: rgba(255,255,255,0.55); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.footer-main .footer-col h4 { color: rgba(255,255,255,0.45); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 1rem; }
.footer-main .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-main .footer-col li a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.2s; }
.footer-main .footer-col li a:hover { color: white; }
.footer-main .footer-bottom span { font-size: 0.78rem; }

/* ── Responsive nouveaux éléments ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 3rem; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .faq-grid { grid-template-columns: 1fr; max-width: 640px; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-inner > .img-frame { display: none; }
  .footer-main .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main .footer-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 1.75rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero { padding: 3rem 0 4rem; }
  .hero-actions { flex-direction: column; }
  .hero-title { font-size: 2.1rem; }
  .choice-grid { grid-template-columns: 1fr; }
  #local-video { width: 120px; height: 90px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}
