/* ============================================================
 * Medikor Landing — CSS commun (Chantier 1 : thème premium)
 * Partagé par les 6 pages (index + 5 métiers). Tokens premium alignés
 * sur l'app (public/themes/medikor-premium.css). Règle : AUCUNE box-shadow
 * sur les surfaces UI (profondeur = contraste warm-white/white + bordures
 * fines) ; les ombres de MAQUETTES d'appareils sont conservées (imagerie).
 * Typo Outfit/DM Sans conservée.
 * ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Tokens premium (source : app medikor-premium.css) ── */
  --mk-teal-deep: #2C5F5D;
  --mk-teal-pale: #E8EFED;
  --mk-anthracite: #0F2A2E;
  --mk-gray-dark: #6B7572;
  --mk-gray-border: #E5E7E5;
  --mk-warm-white: #FBFAF6;
  --mk-white: #FFFFFF;
  --mk-success: #4A8266;
  --mk-amber: #B5772D;
  --mk-critical: #A23E3E;

  /* ── Alias legacy repointés vers le premium ──
   * Les règles existantes consomment ces noms ; les repointer re-thème
   * automatiquement tous leurs usages TEXTE/ACCENT. Les usages FOND SOMBRE
   * (hero/footer via var(--navy)) sont réécrits explicitement plus bas. */
  --navy: var(--mk-anthracite);
  --blue-mid: var(--mk-teal-deep);
  --blue: var(--mk-teal-deep);
  --blue-light: var(--mk-teal-deep);
  --blue-pale: var(--mk-teal-pale);
  --green: var(--mk-success);
  --amber: var(--mk-amber);
  --bg: var(--mk-warm-white);
  --card: var(--mk-white);
  --border: var(--mk-gray-border);
  --text: var(--mk-anthracite);
  --text2: var(--mk-gray-dark);
  --text3: var(--mk-gray-dark);
  --radius: 16px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--mk-warm-white); color: var(--text); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251,250,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mk-gray-border);
  padding: 0 5vw;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color 0.2s;
}
nav.scrolled { border-bottom-color: var(--mk-teal-deep); }
.nav-logo {
  font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--mk-anthracite), var(--mk-teal-deep));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text2);
  text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover { color: var(--mk-teal-deep); }
.nav-cta {
  background: var(--mk-teal-deep);
  color: white !important; padding: 9px 20px; border-radius: 99px;
  font-weight: 700 !important; font-size: 14px !important;
  transition: transform 0.15s !important;
}
.nav-cta:hover { transform: translateY(-1px); }
.lang-select-nav {
  background: var(--mk-warm-white); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 6px 10px; font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: var(--text2); cursor: pointer; outline: none;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── HERO (dark → warm-white) ── */
.hero {
  min-height: 100vh;
  background: var(--mk-warm-white);
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5vw 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,95,93,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,130,102,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--mk-teal-pale); border: 1px solid var(--mk-teal-pale);
  border-radius: 99px; padding: 6px 14px; margin-bottom: 20px;
  font-size: 12px; font-weight: 600; color: var(--mk-teal-deep); letter-spacing: 0.05em; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: var(--mk-anthracite); line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--mk-teal-deep); }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); color: var(--mk-gray-dark);
  line-height: 1.7; margin-bottom: 20px;
}
/* Ligne d'essai sous le sous-titre : accent teal, discrète mais lisible. */
.hero-trial {
  font-size: 15px; font-weight: 600; color: var(--mk-teal-deep);
  line-height: 1.5; margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--mk-teal-deep);
  color: white; padding: 14px 28px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 16px;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: var(--mk-white); border: 1.5px solid var(--mk-gray-border);
  color: var(--mk-teal-deep); padding: 14px 28px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px;
  text-decoration: none; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--mk-teal-pale); border-color: var(--mk-teal-deep); }
.hero-trust {
  margin-top: 28px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--mk-gray-dark);
}
.hero-trust-dots { display: flex; gap: -4px; }
.hero-trust-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--mk-white);
  background: var(--mk-teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white; margin-left: -6px;
}
.hero-trust-dot:first-child { margin-left: 0; }

/* ── APP MOCKUP (hero) — INTÉRIEURS INCHANGÉS (D2=a, imagerie) ── */
.hero-mockup {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.mockup-phone {
  width: 260px; height: 540px;
  background: linear-gradient(170deg, #2a4a7f 0%, #1a3a6e 30%, #1e3a8a 60%, #2563eb 100%);
  border-radius: 40px;
  border: 8px solid rgba(255,255,255,0.15);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden; position: relative; display: flex; flex-direction: column;
}
.mockup-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px 4px; flex-shrink: 0;
}
.mockup-statusbar-time { font-size: 11px; font-weight: 700; color: white; }
.mockup-statusbar-icons { font-size: 9px; color: rgba(255,255,255,0.8); }
.mockup-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 14px 10px; flex-shrink: 0;
}
.mockup-topbar-left { display: flex; align-items: center; gap: 8px; }
.mockup-app-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}
.mockup-app-name { font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800; color: white; }
.mockup-app-date { font-size: 9px; color: rgba(255,255,255,0.5); margin-top: 1px; }
.mockup-avatar-top {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.mockup-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; padding: 0 10px; flex-shrink: 0;
}
.mockup-stat-card {
  background: rgba(255,255,255,0.12); border-radius: 12px; padding: 8px 6px;
  border: 1px solid rgba(255,255,255,0.1); text-align: center;
  backdrop-filter: blur(4px);
}
.mockup-stat-icon { font-size: 13px; margin-bottom: 3px; }
.mockup-stat-num {
  font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 900; line-height: 1;
}
.mockup-stat-num.blue { color: #60a5fa; }
.mockup-stat-num.green { color: #34d399; }
.mockup-stat-num.amber { color: #fbbf24; }
.mockup-stat-label { font-size: 8px; color: rgba(255,255,255,0.55); margin-top: 2px; line-height: 1.2; }
.mockup-chart-card {
  margin: 8px 10px 0; background: rgba(255,255,255,0.08); border-radius: 12px; padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0;
}
.mockup-chart-title {
  font-size: 7px; font-weight: 700; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
  display: flex; align-items: center; gap: 4px;
}
.mockup-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 36px;
}
.mockup-bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.mockup-bar {
  width: 100%; border-radius: 3px 3px 0 0;
  background: rgba(59,130,246,0.7);
  min-height: 2px;
}
.mockup-bar.has-val { background: #3b82f6; }
.mockup-bar-day { font-size: 7px; color: rgba(255,255,255,0.4); }
.mockup-bar-count { font-size: 7px; color: rgba(255,255,255,0.7); font-weight: 700; }
.mockup-patients-card {
  margin: 8px 10px 0; background: rgba(255,255,255,0.07); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1); overflow: hidden; flex: 1;
}
.mockup-patients-header {
  display: flex; align-items: center; gap: 6px; padding: 8px 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mockup-patients-title { font-size: 9px; font-weight: 800; color: rgba(255,255,255,0.85); }
.mockup-patients-count {
  background: #3b82f6; color: white; font-size: 8px; font-weight: 700;
  padding: 1px 5px; border-radius: 99px;
}
.mockup-patient-row {
  display: flex; align-items: center; gap: 8px; padding: 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-patient-row:last-child { border-bottom: none; }
.mockup-pat-avatar {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: #16a34a;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 800; color: white;
}
.mockup-pat-name { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.9); }
.mockup-pat-info { font-size: 8px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.mockup-pat-right { margin-left: auto; text-align: right; }
.mockup-pat-sessions { font-size: 9px; color: rgba(255,255,255,0.5); }
.mockup-pat-arrow { font-size: 8px; color: rgba(255,255,255,0.3); }
.mockup-search {
  margin: 6px 10px 0; background: white; border-radius: 10px; padding: 6px 10px;
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.mockup-search-icon { font-size: 10px; color: #94a3b8; }
.mockup-search-text { font-size: 9px; color: #94a3b8; }
.mockup-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,95,93,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.mockup-float {
  position: absolute; background: white; border-radius: 12px;
  padding: 10px 14px; border: 1px solid var(--mk-gray-border);
}
.mockup-float-1 {
  top: 30px; right: -20px;
  display: flex; align-items: center; gap: 8px;
}
.mockup-float-icon { font-size: 20px; }
.mockup-float-text { font-size: 11px; font-weight: 700; color: var(--mk-anthracite); }
.mockup-float-sub { font-size: 10px; color: var(--text3); }
.mockup-float-2 {
  bottom: 60px; left: -30px;
  display: flex; align-items: center; gap: 8px;
}

/* ── SECTION BASE ── */
section { padding: 90px 5vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mk-teal-pale); border: 1px solid var(--mk-teal-pale);
  border-radius: 99px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--mk-teal-deep);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(28px, 3vw, 42px);
  font-weight: 900; color: var(--mk-anthracite); line-height: 1.2; margin-bottom: 14px;
}
.section-title span { color: var(--mk-teal-deep); }
.section-sub {
  font-size: clamp(15px, 1.3vw, 18px); color: var(--text2);
  line-height: 1.7; max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── PROBLEM / SOLUTION ── */
.problem-section { background: var(--bg); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px;
}
.problem-card {
  background: var(--mk-white); border-radius: var(--radius); padding: 28px;
  border: 1.5px solid var(--border);
}
.problem-card.is-solution {
  background: var(--mk-teal-pale);
  border-color: var(--mk-teal-deep);
}
.problem-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.problem-icon { font-size: 28px; }
.problem-card-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--mk-anthracite); }
.problem-card-subtitle { font-size: 12px; font-weight: 600; color: var(--text3); margin-top: 2px; }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.problem-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text2); line-height: 1.5;
}
.problem-list li::before { content: '—'; color: var(--mk-critical); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.solution-list li::before { content: '✓'; color: var(--mk-success); }

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
}
.feature-card {
  background: var(--mk-white); border-radius: var(--radius); padding: 28px;
  border: 1.5px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--mk-teal-deep);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.feature-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--mk-anthracite); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── SCREENSHOTS / DEMO (dark → warm-white) ── */
.screenshots-section { background: var(--mk-warm-white); }
.screenshots-section .section-title { color: var(--mk-anthracite); }
.screenshots-section .section-sub { color: var(--mk-gray-dark); }
.screenshots-section .section-badge { background: var(--mk-teal-pale); border-color: var(--mk-teal-pale); color: var(--mk-teal-deep); }
.tabs {
  display: flex; gap: 8px; margin-top: 40px; margin-bottom: 32px;
  background: var(--mk-white); border: 1px solid var(--mk-gray-border); border-radius: 12px; padding: 6px;
  width: fit-content;
}
.tab-btn {
  padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--mk-gray-dark); background: transparent;
  transition: all 0.2s;
}
.tab-btn.active { background: var(--mk-teal-deep); color: white; }
.tab-content { display: none; }
.tab-content.active { display: block; }
.screen-demo {
  background: var(--mk-white); border-radius: 20px;
  border: 1px solid var(--mk-gray-border);
  padding: 24px; overflow: hidden;
  display: grid; grid-template-columns: 220px 1fr; gap: 20px;
  min-height: 400px;
}
.screen-sidebar {
  background: var(--mk-warm-white); border-radius: 12px; padding: 16px;
  border: 1px solid var(--mk-gray-border);
}
.screen-sidebar-title {
  font-size: 10px; font-weight: 700; color: var(--mk-gray-dark);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: 8px; margin-bottom: 4px; cursor: pointer;
  transition: background 0.15s;
}
.sidebar-item.active { background: var(--mk-teal-pale); }
.sidebar-item-icon { font-size: 14px; }
.sidebar-item-name { font-size: 12px; font-weight: 600; color: var(--mk-anthracite); }
.sidebar-item-info { font-size: 10px; color: var(--mk-gray-dark); margin-left: auto; }
.screen-main {
  display: flex; flex-direction: column; gap: 12px;
}
.screen-card {
  background: var(--mk-white); border-radius: 12px; padding: 16px;
  border: 1px solid var(--mk-gray-border);
}
.screen-card-title { font-size: 11px; font-weight: 700; color: var(--mk-gray-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.screen-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--mk-gray-border);
}
.screen-row:last-child { border-bottom: none; }
.screen-row-name { font-size: 12px; color: var(--mk-anthracite); font-weight: 500; }
.screen-row-meta { font-size: 11px; color: var(--mk-gray-dark); }
.screen-pill {
  font-size: 10px; font-weight: 700; padding: 2px 9px; border-radius: 99px;
}
.pill-green { background: rgba(74,130,102,0.14); color: var(--mk-success); }
.pill-blue { background: var(--mk-teal-pale); color: var(--mk-teal-deep); }
.pill-amber { background: rgba(181,119,45,0.14); color: var(--mk-amber); }

/* ── PRICING ── */
.pricing-section { background: var(--bg); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 20px; margin-top: 50px; align-items: start;
}
.pricing-card {
  background: var(--mk-white); border-radius: 20px; padding: 32px;
  border: 1.5px solid var(--border);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--mk-teal-deep);
  border-width: 2px;
  background: var(--mk-teal-pale);
}
.pricing-popular {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--mk-teal-deep);
  color: white; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 99px;
  letter-spacing: 0.05em; white-space: nowrap;
}
.founder-banner { background: var(--mk-amber); color: white; padding: 10px 16px; border-radius: 10px; margin-bottom: 14px; text-align: center; font-size: 13px; font-weight: 700; line-height: 1.4; }
.founder-banner span { display: block; font-size: 11px; font-weight: 500; opacity: 0.9; margin-top: 2px; }
.pricing-tier { font-size: 12px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pricing-price {
  font-family: 'Outfit', sans-serif; font-size: 44px; font-weight: 900; color: var(--mk-anthracite);
  line-height: 1; margin-bottom: 4px;
}
.pricing-price span { font-size: 20px; font-weight: 600; color: var(--text3); vertical-align: super; }
.pricing-period { font-size: 13px; color: var(--text3); margin-bottom: 6px; }
.pricing-trial { font-size: 12px; font-weight: 700; color: var(--mk-success); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); }
.pricing-list li .check { color: var(--mk-success); font-weight: 700; flex-shrink: 0; }
.pricing-list li .cross { color: var(--text3); flex-shrink: 0; }
.btn-pricing {
  display: block; text-align: center; padding: 13px 20px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: all 0.15s; border: none; cursor: pointer; width: 100%;
}
.btn-pricing-primary {
  background: var(--mk-teal-deep);
  color: white;
}
.btn-pricing-primary:hover { transform: translateY(-2px); }
.btn-pricing-outline {
  background: transparent; color: var(--mk-teal-deep); border: 1.5px solid var(--mk-teal-deep);
}
.btn-pricing-outline:hover { background: var(--mk-teal-pale); }
.btn-pricing-ghost {
  background: var(--bg); color: var(--text2); border: 1.5px solid var(--border);
}
.btn-pricing-ghost:hover { border-color: var(--mk-teal-deep); color: var(--mk-teal-deep); }

/* ── BILLING TOGGLE ── */
.billing-toggle { display:flex; align-items:center; justify-content:center; gap:14px; margin:32px 0 40px; padding:14px 24px; background:var(--mk-warm-white); border-radius:99px; width:fit-content; margin-left:auto; margin-right:auto; border:1px solid var(--border); }
.billing-toggle-label { font-weight:600; font-size:15px; color:var(--text3); transition:color 0.2s; cursor:pointer; }
.billing-toggle-label.active { color:var(--text); }
.billing-toggle-switch { position:relative; display:inline-block; width:52px; height:28px; cursor:pointer; flex-shrink:0; }
.billing-toggle-switch input { opacity:0; width:0; height:0; position:absolute; }
.billing-toggle-slider { position:absolute; inset:0; background:var(--mk-gray-border); border-radius:28px; transition:background 0.3s; }
.billing-toggle-slider::before { content:''; position:absolute; inset-inline-start:3px; top:3px; width:22px; height:22px; background:#fff; border-radius:50%; transition:transform 0.3s; border:1px solid var(--mk-gray-border); }
.billing-toggle-switch input:checked + .billing-toggle-slider { background:var(--mk-teal-deep); }
.billing-toggle-switch input:checked + .billing-toggle-slider::before { transform:translateX(24px); }
/* RTL (he/ar) : les libellés Mensuel/Annuel s'inversent (flex-row + dir=rtl), mais le knob
   utilise des directions physiques. inset-inline-start ci-dessus place le knob du bon côté
   au repos ; ici on inverse le sens du déplacement au :checked pour qu'il pointe « Annuel »
   (physiquement à gauche en RTL). LTR inchangé (règle scopée [dir=rtl]). */
[dir="rtl"] .billing-toggle-switch input:checked + .billing-toggle-slider::before { transform:translateX(-24px); }
.billing-save-badge { background:var(--mk-teal-pale); color:var(--mk-success); font-size:12px; font-weight:700; padding:3px 8px; border-radius:99px; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--mk-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.testimonial-card {
  background: var(--bg); border-radius: var(--radius); padding: 28px;
  border: 1.5px solid var(--border);
}
.stars { color: var(--mk-amber); font-size: 16px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14px; color: var(--text2); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; color: var(--mk-anthracite); }
.author-title { font-size: 12px; color: var(--text3); margin-top: 1px; }

/* ── Testimonials MÉTIERS (scopé .metier — design distinct d'index, index protégé car son <body> n'a pas .metier) ── */
.metier .testimonial-card { background: var(--mk-white); border: 1px solid var(--mk-gray-border); border-radius: var(--radius); padding: 28px 24px; position: relative; }
.metier .testimonial-card::before { content: '"'; position: absolute; top: 12px; left: 20px; font-size: 48px; color: var(--mk-teal-pale); font-family: Georgia, serif; line-height: 1; }
.metier .testimonial-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin: 20px 0 16px; font-style: italic; }
.metier .testimonial-author { font-size: 13px; font-weight: 700; color: var(--text); }
.metier .testimonial-role { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ── FAQ (accordéon natif <details>/<summary>, zéro JS) ── */
.faq-section { padding: 80px 5vw; background: var(--mk-warm-white); }
.faq-list { max-width: 720px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--mk-white); border: 1px solid var(--mk-gray-border); border-radius: 12px; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 16px; color: var(--mk-anthracite);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Chevron VERTICAL (⌄) : direction-agnostique — pas de retournement glyphe à gérer en RTL ;
   sa POSITION passe à gauche en RTL via justify-content:space-between + dir. */
.faq-item summary::after { content: '⌄'; font-size: 20px; line-height: 1; color: var(--mk-teal-deep); transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 18px; color: var(--mk-gray-dark); line-height: 1.7; font-size: 15px; }

/* ── CTA (le SEUL bloc coloré : teal-deep plein, texte blanc conservé) ── */
.cta-section {
  background: var(--mk-teal-deep);
  text-align: center;
}
.cta-section .section-title { color: white; font-size: clamp(30px, 3.5vw, 48px); }
.cta-section .section-sub { color: rgba(255,255,255,0.85); margin: 0 auto 40px; }
.cta-section .section-badge { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); color: white; }
.cta-section .btn-primary {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid #fff;
  color: #fff;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER (dark → warm-white) ── */
footer {
  background: var(--mk-warm-white); padding: 60px 5vw 32px;
  color: var(--mk-gray-dark);
  border-top: 1px solid var(--mk-gray-border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-brand { }
.footer-logo {
  font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 800; color: var(--mk-anthracite); margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; line-height: 1.6; color: var(--mk-gray-dark); max-width: 260px; }
.footer-col-title { font-size: 12px; font-weight: 700; color: var(--mk-anthracite); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--mk-gray-dark); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--mk-teal-deep); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--mk-gray-border); padding-top: 24px;
  font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--mk-gray-dark); text-decoration: none; }
.footer-bottom a:hover { color: var(--mk-teal-deep); }

/* ── STATS BAND ── */
.stats-band { background: var(--mk-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 5vw; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Outfit', sans-serif; font-size: 42px; font-weight: 900; color: var(--mk-anthracite); line-height: 1; }
.stat-number span { color: var(--mk-teal-deep); }
.stat-label { font-size: 14px; color: var(--text2); margin-top: 6px; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-mockup { display: none; }
  .problem-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .screen-demo { grid-template-columns: 1fr; }
  .screen-sidebar { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 60px 4vw; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero { padding: 90px 4vw 60px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ── FEATURE BULLETS ── */
.feature-bullets { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text2); line-height: 1.5; }
.feature-bullets li::before { content: '✓'; color: var(--mk-success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 52px; }
.how-step { text-align: center; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--mk-teal-deep);
  color: white; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.how-step-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800; color: var(--mk-anthracite); margin-bottom: 8px; }
.how-step-desc { font-size: 14px; color: var(--text2); line-height: 1.6; }
.how-step-time { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 700; color: var(--mk-teal-deep); background: var(--mk-teal-pale); border-radius: 99px; padding: 3px 12px; }
@media (max-width: 900px) { .how-steps { grid-template-columns: 1fr; gap: 24px; } }

/* ── DEVICES ── */
.devices-section { background: var(--mk-warm-white); }
.devices-wrap { display: flex; align-items: flex-end; justify-content: center; gap: 28px; margin-top: 52px; flex-wrap: wrap; }

/* Desktop mockup — bezel → anthracite, INTÉRIEUR inchangé (D2=a) */
.device-desktop { display: flex; flex-direction: column; align-items: center; }
.desktop-frame {
  width: 460px; background: var(--mk-anthracite); border-radius: 12px 12px 0 0;
  padding: 8px 8px 0; box-shadow: 0 20px 60px rgba(15,42,46,0.25);
}
.desktop-bar { display: flex; gap: 5px; margin-bottom: 6px; padding: 2px 4px; }
.desktop-bar span { width: 10px; height: 10px; border-radius: 50%; }
.desktop-bar span:nth-child(1) { background: #ef4444; }
.desktop-bar span:nth-child(2) { background: #f59e0b; }
.desktop-bar span:nth-child(3) { background: #22c55e; }
.desktop-screen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  border-radius: 6px 6px 0 0; overflow: hidden; padding: 10px;
  min-height: 260px;
}
.desktop-stand { width: 60px; height: 18px; background: #334155; margin: 0 auto; border-radius: 0 0 4px 4px; }
.desktop-base { width: 120px; height: 8px; background: #475569; margin: 0 auto; border-radius: 0 0 6px 6px; }

/* Desktop inner UI — INTÉRIEUR inchangé (D2=a) */
.ui-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 8px 12px; display: flex; align-items: center; justify-content: space-between;
  border-radius: 6px 6px 0 0;
}
.ui-header-logo { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 800; color: white; display: flex; align-items: center; gap: 6px; }
.ui-header-date { font-size: 9px; color: rgba(255,255,255,0.4); }
.ui-avatar { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #1d4ed8); display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 800; color: white; }
.ui-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 8px 0 6px; }
.ui-kpi { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 7px 8px; text-align: center; }
.ui-kpi-icon { font-size: 10px; margin-bottom: 2px; }
.ui-kpi-num { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 900; line-height: 1; }
.ui-kpi-num.blue { color: #60a5fa; }
.ui-kpi-num.green { color: #34d399; }
.ui-kpi-num.amber { color: #fbbf24; }
.ui-kpi-label { font-size: 7px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.ui-widgets { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ui-widget { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px; }
.ui-widget-title { font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.ui-patient-row { display: flex; align-items: center; gap: 6px; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.ui-patient-row:last-child { border-bottom: none; }
.ui-av { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 800; color: white; flex-shrink: 0; }
.ui-pname { font-size: 8px; font-weight: 700; color: rgba(255,255,255,0.85); }
.ui-ptime { font-size: 7px; color: rgba(255,255,255,0.35); }
.ui-badge { font-size: 6px; font-weight: 700; padding: 1px 5px; border-radius: 99px; margin-left: auto; }
.badge-blue { background: rgba(59,130,246,0.25); color: #60a5fa; }
.badge-red { background: rgba(239,68,68,0.2); color: #f87171; }
.ui-ai-bubble { background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3); border-radius: 8px; padding: 6px 8px; margin-top: 6px; font-size: 7px; color: rgba(203,213,225,0.8); line-height: 1.5; }
.ui-ai-label { font-size: 7px; font-weight: 800; color: #a78bfa; margin-bottom: 3px; }

/* Tablet mockup — bezel → anthracite, INTÉRIEUR inchangé */
.device-tablet { display: flex; flex-direction: column; align-items: center; }
.tablet-frame {
  width: 220px; background: var(--mk-anthracite); border-radius: 14px;
  padding: 10px 8px; box-shadow: 0 16px 40px rgba(15,42,46,0.2);
}
.tablet-screen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  border-radius: 8px; overflow: hidden; padding: 8px; min-height: 200px;
}
.tablet-home { width: 30px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 8px auto 0; }

/* Phone mockup — bezel → anthracite, INTÉRIEUR inchangé */
.device-phone { display: flex; flex-direction: column; align-items: center; }
.phone-frame {
  width: 130px; background: var(--mk-anthracite); border-radius: 28px;
  padding: 8px 6px; box-shadow: 0 16px 40px rgba(15,42,46,0.2);
  border: 4px solid var(--mk-anthracite);
}
.phone-notch { width: 40px; height: 5px; background: var(--mk-anthracite); border-radius: 3px; margin: 0 auto 6px; }
.phone-screen {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
  border-radius: 20px; overflow: hidden; padding: 7px; min-height: 180px;
}
.phone-home { width: 24px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 6px auto 0; }
.device-label { font-size: 13px; font-weight: 700; color: var(--text2); margin-top: 12px; text-align: center; }

@media (max-width: 900px) {
  .devices-wrap { gap: 20px; }
  .desktop-frame { width: 300px; }
  .device-tablet, .device-phone { display: none; }
}
@media (max-width: 600px) { .desktop-frame { width: 100%; } }

/* ── FEATURE SHOWCASE (dark → warm-white) ── */
.showcase-section {
  background: var(--mk-warm-white);
  padding: 100px 5vw;
  position: relative;
  overflow: hidden;
}
.showcase-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(44,95,93,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.showcase-inner {
  max-width: 1200px; margin: 0 auto;
}
.showcase-header {
  text-align: center; margin-bottom: 48px;
}
.showcase-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--mk-teal-pale); border: 1px solid var(--mk-teal-pale);
  border-radius: 99px; padding: 5px 14px;
  font-size: 12px; font-weight: 700; color: var(--mk-teal-deep);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px;
}
.showcase-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(28px, 3vw, 42px);
  font-weight: 900; color: var(--mk-anthracite); line-height: 1.2; margin-bottom: 14px;
}
.showcase-title span { color: var(--mk-teal-deep); }
.showcase-sub {
  font-size: clamp(15px, 1.3vw, 18px); color: var(--mk-gray-dark);
  line-height: 1.7; max-width: 600px; margin: 0 auto;
}

/* Tabs */
.showcase-tabs {
  display: flex; gap: 6px; margin-bottom: 40px;
  background: var(--mk-white); border-radius: 14px; padding: 5px;
  width: fit-content; margin-left: auto; margin-right: auto;
  border: 1px solid var(--mk-gray-border);
}
.showcase-tab {
  padding: 10px 22px; border-radius: 10px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--mk-gray-dark); background: transparent;
  transition: all 0.25s ease; white-space: nowrap;
}
.showcase-tab:hover { color: var(--mk-anthracite); }
.showcase-tab.active {
  background: var(--mk-teal-deep); color: white;
}

/* Panel */
.showcase-panels { position: relative; }
.showcase-panel {
  display: none;
  animation: showcaseFadeIn 0.4s ease forwards;
}
.showcase-panel.active {
  display: block;
}
@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Device frames — bezels → anthracite (imagerie, ombres device conservées) */
.showcase-device-desktop {
  position: relative;
  background: var(--mk-anthracite);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.showcase-device-bar {
  display: flex; gap: 6px; padding: 10px 14px;
  background: var(--mk-anthracite); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.showcase-device-bar span {
  width: 10px; height: 10px; border-radius: 50%;
}
.showcase-device-bar span:nth-child(1) { background: #ef4444; }
.showcase-device-bar span:nth-child(2) { background: #f59e0b; }
.showcase-device-bar span:nth-child(3) { background: #22c55e; }
.showcase-screenshot-wrap {
  position: relative;
  line-height: 0;
}
.showcase-screenshot-wrap img {
  width: 100%; height: auto; display: block;
}

/* Hotspots (accent bleu → teal-deep) */
.showcase-hotspot {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mk-teal-deep);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; line-height: 1;
  transition: transform 0.2s, background 0.2s;
  z-index: 10;
}
.showcase-hotspot::before {
  content: '+'; display: block;
}
.showcase-hotspot:hover,
.showcase-hotspot.active {
  transform: scale(1.15);
  background: #3a7370;
}
.showcase-hotspot-pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(44,95,93,0.4);
  animation: hotspotPulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.showcase-hotspot-tablet {
  width: 24px; height: 24px;
  font-size: 12px;
}
.showcase-hotspot-mobile {
  width: 20px; height: 20px;
  font-size: 10px;
}

.showcase-visible-tablet .showcase-tablet-screen,
.showcase-visible-mobile .phone-screen {
  position: relative;
}

.showcase-visible-tablet .showcase-tooltip,
.showcase-visible-mobile .showcase-tooltip {
  position: fixed;
  z-index: 10000;
}

/* Tooltip (dark, sur maquette — conservé anthracite) */
.showcase-tooltip {
  position: absolute;
  background: var(--mk-anthracite);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 200px; max-width: 260px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 20;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.showcase-tooltip.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.showcase-tooltip-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700; color: white;
  margin-bottom: 4px;
}
.showcase-tooltip-text {
  font-size: 12px; color: rgba(255,255,255,0.75); line-height: 1.5;
}

/* Phone frame pour mobile responsive — bezel → anthracite */
.showcase-phone-responsive {
  display: none;
  margin: 0 auto;
  width: 260px;
  background: var(--mk-anthracite);
  border-radius: 36px;
  padding: 14px 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.06);
}
.showcase-phone-responsive .phone-notch {
  width: 56px; height: 6px; background: var(--mk-anthracite);
  border-radius: 3px; margin: 0 auto 10px;
}
.showcase-phone-responsive .phone-screen {
  border-radius: 22px; overflow-y: auto; overflow-x: hidden;
  height: 480px; line-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.showcase-phone-responsive .phone-screen::-webkit-scrollbar { width: 3px; }
.showcase-phone-responsive .phone-screen::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }
.showcase-phone-responsive .phone-screen img { width: 100%; height: auto; display: block; }
.showcase-phone-responsive .phone-home {
  width: 32px; height: 4px; background: rgba(255,255,255,0.15);
  border-radius: 2px; margin: 10px auto 0;
}

/* Tablet device frame — bezel → anthracite */
.showcase-device-tablet {
  width: 100%;
  max-width: 420px;
  background: var(--mk-anthracite);
  border-radius: 14px;
  padding: 10px 10px 10px 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  border: 3px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}
.showcase-tablet-screen {
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  flex: 1;
}
.showcase-tablet-screen img {
  width: 100%; height: 100%; display: block; object-fit: cover;
}
.showcase-tablet-home {
  width: 4px; height: 32px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: auto 0 auto 8px;
  flex-shrink: 0;
}

/* 3 devices row layout */
.showcase-devices-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.showcase-devices-row .showcase-device-desktop {
  width: 100%;
  max-width: 900px;
}
.showcase-secondary-devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.showcase-secondary-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.showcase-secondary-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--mk-gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.showcase-available-label {
  font-size: 13px;
  color: var(--mk-gray-dark);
  text-align: center;
  margin-bottom: 12px;
}
.showcase-secondary-devices .showcase-device-tablet {
  max-width: 520px;
  flex: 1;
}
.showcase-secondary-devices .showcase-phone-responsive {
  display: block;
  width: 200px;
  flex-shrink: 0;
}
.showcase-secondary-devices .showcase-phone-responsive .phone-screen {
  height: 360px;
}

.showcase-visible-tablet { display: none; }

/* Language selector mobile */
.lang-select-mobile {
  display: none;
  padding: 8px 30px 8px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--mk-gray-border);
  background: var(--mk-warm-white);
  color: var(--mk-anthracite);
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F2A2E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Responsive */
@media (max-width: 1200px) {
  .showcase-devices-row { display: none; }
  .showcase-secondary-devices { display: none !important; }
  .showcase-available-label { display: none !important; }
  .showcase-visible-tablet { display: block; }
  .showcase-visible-tablet.showcase-device-tablet { max-width: 90%; margin: 0 auto; }
  .showcase-devices-row .showcase-hotspot { display: none; }
  .showcase-devices-row .showcase-tooltip { display: none; }
  .showcase-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: fit-content; max-width: 100%;
    justify-content: center;
  }
  .showcase-tab { font-size: 13px; padding: 8px 16px; }
}
@media (max-width: 900px) {
  .lang-select-mobile { display: block; }
}
@media (max-width: 600px) {
  .showcase-section { padding: 60px 4vw; }
  .showcase-visible-tablet { display: none !important; }
  .showcase-phone-responsive.showcase-visible-mobile { display: block !important; width: 260px; margin: 0 auto; }
  .showcase-phone-responsive.showcase-visible-mobile .phone-screen { height: 480px; }
  .showcase-tabs {
    width: 100%; max-width: 100%;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .showcase-tabs::-webkit-scrollbar { display: none; }
  .showcase-tab { flex-shrink: 0; font-size: 13px; padding: 8px 14px; }
}

/* ── WHY MEDIKOR (dark → warm-white) ── */
.why-section {
    background: var(--mk-warm-white);
    padding: 80px 6vw;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.why-card {
    background: var(--mk-white);
    border: 1px solid var(--mk-gray-border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.2s;
}
.why-card:hover {
    border-color: var(--mk-teal-deep);
}
.why-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--mk-teal-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: var(--mk-teal-deep);
}
.why-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--mk-anthracite);
    margin-bottom: 8px;
}
.why-text {
    font-size: 14px; color: var(--mk-gray-dark);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-section { padding: 60px 4vw; }
}

/* ── PROFESSIONS (dark → warm-white) ── */
.professions-section {
    background: var(--mk-white);
    padding: 60px 6vw;
    text-align: center;
}
.professions-wrap {
    max-width: 900px;
    margin: 0 auto;
}
.professions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}
.profession-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--mk-warm-white);
    border: 1px solid var(--mk-gray-border);
    border-radius: 99px;
    font-size: 14px;
    color: var(--mk-gray-dark);
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, border-color 0.2s;
}
.profession-pill:hover {
    background: var(--mk-teal-pale);
    border-color: var(--mk-teal-deep);
}
.profession-pill-icon {
    font-size: 18px;
    color: var(--mk-teal-deep);
    display: inline-flex;
    align-items: center;
}
.languages-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; justify-content: center; }
.lang-pill {
  background: var(--mk-warm-white); border: 1px solid var(--border);
  color: var(--text2); font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 99px;
}

/* ── LANG MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: var(--mk-white); border-bottom: 1px solid var(--border);
  padding: 16px 5vw; z-index: 99;
  flex-direction: column; gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--text2);
  text-decoration: none; padding: 8px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
