/* MedCab Pro landing — base styles */
:root {
  --ink-900: #0F172A;
  --ink-700: #1E293B;
  --ink-800: #172033;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --surface: #FFFFFF;
  --surface-subtle: #F8FAFC;
  --surface-deep: #F1F5F9;
  --brand-primary: #2563EB;
  --brand-deep: #1E40AF;
  --brand-soft: #DBEAFE;
  --accent-clinical: #10B981;
  --accent-clinical-soft: #D1FAE5;
  --accent-warm: #F59E0B;
  --accent-warm-soft: #FEF3C7;
  --danger: #DC2626;
  --danger-soft: #FEE2E2;
  --stroke: #E2E8F0;
  --stroke-strong: #CBD5E1;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px -20px rgba(15, 23, 42, 0.25), 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 40px 80px -30px rgba(15, 23, 42, 0.35), 0 16px 40px rgba(15, 23, 42, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  --font-arabic: 'Noto Naskh Arabic', 'IBM Plex Arabic', serif;

  --maxw: 1200px;
  --section-pad: 112px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--surface);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section-tight { padding-top: 72px; padding-bottom: 72px; }
.section-alt { background: var(--surface-subtle); }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

h1, h2, h3, h4 { font-family: var(--font-sans); color: var(--ink-900); margin: 0; letter-spacing: -0.02em; }
h1 { font-size: clamp(40px, 5.4vw, 64px); font-weight: 800; line-height: 1.04; letter-spacing: -0.035em; }
h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: -0.028em; }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; }
h4 { font-size: 15px; font-weight: 600; }

p { margin: 0; color: var(--ink-600); }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-600); max-width: 60ch; }

.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink-900);
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-primary);
  color: white;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.3), 0 6px 16px -6px rgba(37, 99, 235, 0.5);
}
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-secondary {
  background: white;
  border-color: var(--stroke);
  color: var(--ink-900);
}
.btn-secondary:hover { border-color: var(--stroke-strong); background: var(--surface-subtle); }
.btn-ghost {
  background: transparent;
  color: var(--brand-primary);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--brand-deep); }
.btn-sm { padding: 9px 14px; font-size: 13px; }
.btn-lg { padding: 16px 24px; font-size: 16px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: var(--brand-soft); color: var(--brand-deep);
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.chip-green { background: var(--accent-clinical-soft); color: #047857; border-color: rgba(16, 185, 129, 0.2); }
.chip-amber { background: var(--accent-warm-soft); color: #92400E; border-color: rgba(245, 158, 11, 0.2); }
.chip-red { background: var(--danger-soft); color: #991B1B; border-color: rgba(220, 38, 38, 0.2); }
.chip-neutral { background: var(--surface-deep); color: var(--ink-700); border-color: var(--stroke); }

.card {
  background: white;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--stroke-strong);
}

.divider { height: 1px; background: var(--stroke); width: 100%; }

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--stroke);
}
.nav-inner {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.nav-brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--brand-primary);
  display: grid; place-items: center; color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 2px 6px rgba(37,99,235,0.35);
}
.nav-links { display: flex; gap: 28px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink-600); transition: color .15s; }
.nav-link:hover { color: var(--ink-900); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.lang-toggle {
  display: inline-flex; border: 1px solid var(--stroke); border-radius: 8px; overflow: hidden;
  font-size: 12px; font-weight: 600; background: white;
}
.lang-toggle button {
  padding: 6px 10px; background: transparent; border: 0; color: var(--ink-500);
}
.lang-toggle button.active { background: var(--ink-900); color: white; }

/* ============== HERO ============== */
.hero {
  padding-top: 96px;
  padding-bottom: 120px;
  background:
    radial-gradient(1100px 500px at 50% -10%, rgba(37, 99, 235, 0.10), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { text-align: center; max-width: 860px; margin: 0 auto; }
.hero h1 { margin-top: 18px; }
.hero .lead { margin: 22px auto 0; font-size: 20px; }
.hero-ctas { margin-top: 32px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.trust-strip {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-500);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent-clinical); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15); }

.hero-mockup-wrap {
  perspective: 2400px;
  margin-top: 8px;
}
.hero-mockup {
  transform: rotateX(4deg) rotateY(-3deg) rotateZ(0.5deg);
  transform-origin: 50% 0%;
  filter: drop-shadow(0 60px 80px rgba(15, 23, 42, 0.18));
  transition: transform .6s ease;
}
.hero-mockup:hover { transform: rotateX(2deg) rotateY(-1.5deg); }

/* ============== APP MOCKUP (shared chrome) ============== */
.app-frame {
  background: white;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.app-titlebar {
  height: 36px;
  background: linear-gradient(180deg, #F8FAFC, #F1F5F9);
  border-bottom: 1px solid var(--stroke);
  display: flex; align-items: center; padding: 0 12px;
  gap: 8px;
}
.tl-dots { display: flex; gap: 6px; }
.tl-dot { width: 11px; height: 11px; border-radius: 999px; background: #E2E8F0; }
.tl-dot.r { background: #EF4444; }
.tl-dot.y { background: #F59E0B; }
.tl-dot.g { background: #10B981; }
.tl-title {
  flex: 1; text-align: center; font-size: 11px; color: var(--ink-500); font-weight: 600;
  letter-spacing: 0.02em;
}
.app-body { display: grid; grid-template-columns: 200px 1fr; min-height: 540px; background: #FAFBFC; }
.app-sidebar {
  background: white;
  border-right: 1px solid var(--stroke);
  padding: 18px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.side-brand { display: flex; align-items: center; gap: 8px; padding: 4px 8px 16px; font-weight: 700; font-size: 14px; }
.side-brand-mark { width: 22px; height: 22px; border-radius: 6px; background: var(--brand-primary); display: grid; place-items: center; color: white; }
.side-section { padding: 12px 8px 6px; font-size: 10px; font-weight: 700; color: var(--ink-400); letter-spacing: 0.1em; text-transform: uppercase; }
.side-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--ink-600); font-weight: 500;
}
.side-item.active { background: var(--brand-soft); color: var(--brand-deep); font-weight: 600; }
.side-item .badge { margin-left: auto; font-size: 10px; background: var(--ink-900); color: white; padding: 2px 6px; border-radius: 999px; }
.app-main { padding: 22px 24px; overflow: hidden; }

.app-toolbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.app-toolbar h2 { font-size: 18px; font-weight: 700; }
.app-toolbar .right { margin-left: auto; display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--ink-500); }

.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
.kpi {
  background: white;
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px;
}
.kpi-label { font-size: 11px; color: var(--ink-500); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.kpi-value { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-top: 4px; font-feature-settings: "tnum"; }
.kpi-delta { font-size: 11px; color: #047857; margin-top: 4px; font-weight: 600; }

/* ============== PROBLEM ============== */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.pain-card { padding: 28px; }
.pain-card h3 { font-size: 18px; margin-bottom: 10px; }
.pain-card .num {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600; color: var(--ink-400);
  margin-bottom: 18px; letter-spacing: 0.1em;
}
.pain-card p { font-size: 14.5px; line-height: 1.6; }

/* ============== SOLUTION 3 STEPS ============== */
.flow {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.flow-step {
  padding: 24px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.flow-step .num {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink-900); color: white;
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  margin-bottom: 14px;
}
.flow-step h3 { font-size: 17px; margin-bottom: 6px; }
.flow-step p { font-size: 13.5px; color: var(--ink-500); }
.flow-arrow {
  align-self: center;
  color: var(--ink-300);
  font-size: 22px;
}

/* ============== MODULES GRID ============== */
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.module-card {
  display: flex; flex-direction: column;
  padding: 22px;
  cursor: pointer;
  background: white;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  transition: all .2s ease;
}
.module-card:hover { transform: translateY(-2px); border-color: var(--stroke-strong); box-shadow: var(--shadow-md); }
.module-card .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-subtle);
  display: grid; place-items: center; color: var(--brand-primary);
  margin-bottom: 18px;
  border: 1px solid var(--stroke);
}
.module-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.module-card p { font-size: 13px; color: var(--ink-500); line-height: 1.5; }

/* ============== DEEP-DIVE SECTION ============== */
.deepdive {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.deepdive.flip { grid-template-columns: 1.15fr 1fr; }
.deepdive.flip .deepdive-copy { order: 2; }
.deepdive.flip .deepdive-visual { order: 1; }
.deepdive-copy h2 { margin-top: 14px; margin-bottom: 16px; }
.deepdive-copy .lead { margin-bottom: 28px; font-size: 17px; }
.feat-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.feat-item { display: flex; gap: 14px; }
.feat-item .feat-icon {
  width: 28px; height: 28px; flex: 0 0 28px;
  border-radius: 8px;
  background: var(--accent-clinical-soft); color: #047857;
  display: grid; place-items: center;
  margin-top: 2px;
}
.feat-item h4 { font-size: 15px; margin-bottom: 3px; font-weight: 700; }
.feat-item p { font-size: 14px; color: var(--ink-600); line-height: 1.5; }

/* ============== SECURITY ============== */
.security {
  background:
    radial-gradient(700px 350px at 80% 50%, rgba(16, 185, 129, 0.08), transparent 60%),
    #0F172A;
  color: white;
}
.security h2 { color: white; }
.security .eyebrow { color: #6EE7B7; }
.security .lead { color: #CBD5E1; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 56px; }
.security-card {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.security-card .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(16, 185, 129, 0.18);
  color: #6EE7B7;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.security-card h4 { color: white; font-size: 16px; margin-bottom: 6px; }
.security-card p { color: #94A3B8; font-size: 13.5px; line-height: 1.5; }
.security-subbullets {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  justify-content: center;
  color: #94A3B8; font-size: 13px;
}
.security-subbullets span { display: inline-flex; align-items: center; gap: 8px; }
.security-subbullets .check { color: #6EE7B7; }

/* ============== PRICING ============== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.price-card {
  padding: 32px;
  display: flex; flex-direction: column;
  background: white;
  border: 1px solid var(--stroke);
  border-radius: 18px;
}
.price-card.featured {
  border-color: var(--ink-900);
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
  position: relative;
}
.price-card .pill {
  position: absolute; top: -12px; left: 32px;
  background: var(--ink-900); color: white;
  padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.price-tier { font-size: 13px; font-weight: 600; color: var(--brand-primary); letter-spacing: 0.05em; text-transform: uppercase; }
.price-name { font-size: 22px; font-weight: 800; margin: 8px 0 4px; }
.price-sub { font-size: 13.5px; color: var(--ink-500); }
.price-line { margin: 22px 0; height: 1px; background: var(--stroke); }
.price-price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.price-price-sub { font-size: 13px; color: var(--ink-500); font-weight: 500; margin-left: 6px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.price-features li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-700); list-style: none; }
.price-features li .ck { color: var(--accent-clinical); flex: 0 0 18px; }
.price-features ul { padding: 0; margin: 0; }

/* ============== FAQ ============== */
.faq { max-width: 820px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1px solid var(--stroke); border-radius: 12px; background: white; overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer;
  font-size: 16px; font-weight: 600;
}
.faq-q .plus { color: var(--ink-400); transition: transform .25s; }
.faq-item.open .plus { transform: rotate(45deg); color: var(--brand-primary); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px;
  font-size: 14.5px; color: var(--ink-600); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 20px; }

/* ============== FINAL CTA ============== */
.final-cta {
  background: var(--ink-900);
  color: white;
  border-radius: 28px;
  padding: 80px 64px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px 280px at 90% 30%, rgba(37, 99, 235, 0.3), transparent 60%);
  pointer-events: none;
}
.final-cta h2 { color: white; }
.final-cta p { color: #94A3B8; margin-top: 16px; font-size: 17px; }
.final-cta .btn-primary { background: white; color: var(--ink-900); }
.final-cta .btn-primary:hover { background: var(--surface-subtle); }
.final-cta .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.2); color: white; }
.final-cta .btn-secondary:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.cta-form { position: relative; z-index: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 24px; }
.cta-form label { font-size: 12px; color: #94A3B8; font-weight: 600; display: block; margin-bottom: 6px; letter-spacing: 0.04em; }
.cta-form input, .cta-form select {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  color: white; font-family: inherit; font-size: 14px; margin-bottom: 12px;
  outline: none; transition: border-color .15s;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus, .cta-form select:focus { border-color: var(--brand-primary); }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ============== FOOTER ============== */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--stroke); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 40px; }
.footer-brand p { margin-top: 14px; font-size: 13.5px; max-width: 32ch; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-900); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--ink-600); margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--ink-900); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--ink-500); padding-top: 24px; border-top: 1px solid var(--stroke); }
.footer-edited { display: inline-flex; align-items: center; gap: 8px; }
.flag-mar { width: 18px; height: 12px; background: #C1272D; border-radius: 2px; position: relative; display: inline-block; }
.flag-mar::after { content: '✦'; position: absolute; inset: 0; display: grid; place-items: center; color: #006233; font-size: 9px; }

/* ============== SECTION HEADER ============== */
.section-head { max-width: 760px; margin: 0 auto; text-align: center; }
.section-head h2 { margin-top: 14px; margin-bottom: 18px; }
.section-head .lead { margin: 0 auto; }

/* ============== UTILITY ============== */
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1180px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .deepdive, .deepdive.flip { grid-template-columns: 1fr; gap: 56px; }
  .deepdive.flip .deepdive-copy, .deepdive.flip .deepdive-visual { order: 0; }
  /* keep mockup overflow contained on narrower viewports */
  .app-main { overflow-x: auto; }
  .deepdive-visual { min-width: 0; }
}
@media (max-width: 880px) {
  :root { --section-pad: 72px; }
  .hero { padding-top: 64px; padding-bottom: 80px; }
  .nav-links { display: none; }
  .pain-grid, .pricing-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self: center; }
  .security-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .final-cta { grid-template-columns: 1fr; padding: 48px 28px; gap: 32px; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .app-body { grid-template-columns: 1fr; }
  .app-sidebar { display: none; }
}

/* RTL */
html[dir="rtl"] body { font-family: var(--font-arabic), var(--font-sans); }
html[dir="rtl"] .deepdive.flip { grid-template-columns: 1fr 1.15fr; }
html[dir="rtl"] .nav-link, html[dir="rtl"] .footer-col a { text-align: right; }

/* Safety net for inline grids declared inside JSX (PC, tablet, urgence, comms) */
@media (max-width: 1180px) {
  .pc-grid,
  .tablet-grid,
  .urg-grid,
  .comms-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* Density */
body.density-compact { --section-pad: 80px; }
body.density-roomy { --section-pad: 140px; }
