/* ============================================
   Professional Research Center — Stylesheet
   Swiss-influenced, premium financial design
   ============================================ */

/* ---------- Design tokens ---------- */
:root {
  --primary: #0D3B66;
  --primary-dark: #092a49;
  --accent: #0F766E;
  --success: #16A34A;
  --bg: #F8FAFC;
  --card: #FFFFFF;
  --text: #111827;
  --text-soft: #6B7280;
  --border: #E5E7EB;

  --radius: 12px;
  --radius-lg: 20px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.04), 0 1px 3px rgba(17, 24, 39, 0.06);
  --shadow-md: 0 4px 12px rgba(13, 59, 102, 0.08), 0 2px 4px rgba(13, 59, 102, 0.04);
  --shadow-lg: 0 16px 40px rgba(13, 59, 102, 0.12), 0 4px 12px rgba(13, 59, 102, 0.06);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', 'Inter', serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.18; }
h3 { font-size: 1.1rem; line-height: 1.35; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-sub {
  color: var(--text-soft);
  font-size: 1.02rem;
  max-width: 560px;
  margin-top: var(--space-2);
}

.section-head { margin-bottom: var(--space-5); }
.section-head.light .eyebrow { color: #7FD6C9; }
.section-head.light .eyebrow::before { background: #7FD6C9; }
.section-head.light h2 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-whatsapp { color: var(--success); }
.btn-whatsapp:hover { border-color: var(--success); color: var(--success); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(13, 59, 102, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: inline-flex; }
.brand-text { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--primary); display: flex; flex-direction: column; line-height: 1.1; }
.brand-text em { font-style: normal; font-weight: 500; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); }
.brand-text.light { color: #fff; flex-direction: row; align-items: center; gap: 10px; }

.main-nav ul { display: flex; gap: var(--space-4); }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
  border-radius: 2px;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--space-7) 0 var(--space-6);
  overflow: hidden;
}
.hero-field { position: absolute; inset: 0; z-index: 0; }
.hero-grid { width: 100%; height: 100%; opacity: 0.9; }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-sub { color: var(--text-soft); font-size: 1.1rem; margin-top: var(--space-3); max-width: 460px; }
.hero-actions { display: flex; gap: var(--space-2); margin-top: var(--space-4); flex-wrap: wrap; }
.hero-note { margin-top: var(--space-3); font-size: 0.82rem; color: var(--text-soft); }

/* Dashboard card — signature hero element */
.dashboard-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-3);
  max-width: 420px;
  margin-left: auto;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.dashboard-topbar { display: flex; align-items: center; gap: 6px; margin-bottom: var(--space-3); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-a { background: #F87171; } .dot-b { background: #FBBF24; } .dot-c { background: #34D399; }
.dashboard-title { margin-left: auto; font-size: 0.76rem; font-weight: 600; color: var(--text-soft); letter-spacing: 0.03em; }
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: var(--space-3); }
.dash-stat { background: var(--bg); border-radius: 10px; padding: 10px 8px; display: flex; flex-direction: column; gap: 2px; }
.dash-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.04em; color: var(--text-soft); }
.dash-value { font-size: 1.02rem; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.dash-delta { font-size: 0.68rem; font-weight: 600; }
.dash-delta.up { color: var(--success); }
.dash-delta.down { color: #DC2626; }
.dashboard-chart { border-radius: 10px; overflow: hidden; background: var(--bg); padding: 8px 4px 0; }
.dashboard-chart svg { width: 100%; height: 90px; }
.chart-line { stroke-dasharray: 700; stroke-dashoffset: 700; animation: drawLine 2s var(--ease) 0.4s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.dashboard-footer { display: flex; align-items: center; gap: 6px; margin-top: var(--space-2); font-size: 0.72rem; color: var(--text-soft); }
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); position: relative; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1.5px solid var(--success);
  animation: pulseRing 1.8s ease-out infinite;
}
@keyframes pulseRing { 0% { opacity: 0.8; transform: scale(0.6);} 100% { opacity: 0; transform: scale(1.8);} }

/* ---------- Trust ---------- */
.trust { padding: var(--space-6) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(15,118,110,0.3); }
.trust-icon {
  width: 48px; height: 48px; border-radius: 10px; background: rgba(13,59,102,0.06);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-2);
}
.trust-card h3 { margin-bottom: 6px; font-size: 1rem; }
.trust-card p { color: var(--text-soft); font-size: 0.9rem; }

.counters {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--primary);
  border-radius: var(--radius-lg);
}
.counter { text-align: center; color: #fff; }
.counter-value { display: block; font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; font-variant-numeric: tabular-nums; }
.counter-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 4px; letter-spacing: 0.02em; }

/* ---------- About ---------- */
.about { padding: var(--space-7) 0; }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-6); align-items: center; }
.about-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-copy p { color: var(--text-soft); margin-top: var(--space-2); max-width: 540px; }
.about-points { margin-top: var(--space-3); display: flex; flex-direction: column; gap: 10px; }
.about-points li { position: relative; padding-left: 26px; font-size: 0.95rem; color: var(--text); }
.about-points li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); opacity: 0.14;
}
.about-points li::after {
  content: ''; position: absolute; left: 5px; top: 11px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* ---------- Services ---------- */
.services { padding: var(--space-6) 0; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 46px; height: 46px; border-radius: 10px; background: rgba(15,118,110,0.08);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-2);
}
.service-card h3 { margin-bottom: 6px; }
.service-card p { color: var(--text-soft); font-size: 0.9rem; }

/* ---------- Why Us ---------- */
.why-us { padding: var(--space-7) 0; background: var(--primary); position: relative; overflow: hidden; }
.why-us::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.why-us .wrap { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4) var(--space-3); }
.why-item { border-top: 1px solid rgba(255,255,255,0.14); padding-top: var(--space-3); }
.why-num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: #7FD6C9; }
.why-item h3 { color: #fff; margin: 10px 0 6px; }
.why-item p { color: rgba(255,255,255,0.68); font-size: 0.9rem; }

/* ---------- Process / Timeline ---------- */
.process { padding: var(--space-7) 0; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 22px; left: 6%; right: 6%;
  height: 1px;
  background: var(--border);
}
.timeline-step { position: relative; padding-top: var(--space-6); }
.timeline-index {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--accent);
  color: var(--accent); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.02em;
}
.timeline-step h3 { margin-bottom: 6px; }
.timeline-step p { color: var(--text-soft); font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonials { padding: var(--space-7) 0; }
.slider { position: relative; }
.slider-track {
  display: flex;
  transition: transform 0.5s var(--ease);
}
.testimonial-card {
  flex: 0 0 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.testimonial-card figcaption { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: var(--space-3); font-size: 0.88rem; color: var(--text-soft); }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem;
}
.slider-controls { display: flex; align-items: center; justify-content: center; gap: var(--space-3); margin-top: var(--space-4); }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--primary);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.slider-btn:hover { background: var(--primary); color: #fff; }
.slider-dots { display: flex; gap: 8px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.slider-dots button.active { background: var(--accent); transform: scale(1.3); }

/* ---------- FAQ / Accordion ---------- */
.faq { padding: var(--space-7) 0; }
.accordion { max-width: 780px; margin: 0 auto; border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-3) 4px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}
.accordion-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-left: var(--space-3); }
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; background: var(--primary); border-radius: 2px; transition: transform 0.3s var(--ease);
}
.accordion-icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
.accordion-icon::after { width: 2px; height: 18px; top: 0; left: 8px; }
.accordion-trigger[aria-expanded="true"] .accordion-icon::after { transform: rotate(90deg); opacity: 0; }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.accordion-panel p { padding: 0 4px var(--space-3); color: var(--text-soft); font-size: 0.94rem; max-width: 640px; }

/* ---------- Contact ---------- */
.contact { padding: var(--space-7) 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); align-items: start; }
.contact-list { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.contact-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(13,59,102,0.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-list a:hover { color: var(--accent); }
.map-frame { margin-top: var(--space-4); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: var(--space-3); display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.form-row input, .form-row textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15,118,110,0.12);
  outline: none;
}
.form-status { margin-top: var(--space-2); font-size: 0.88rem; color: var(--success); min-height: 1.2em; }

/* ---------- Disclaimer ---------- */
.disclaimer { padding: var(--space-5) 0 var(--space-6); }
.disclaimer h3 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-soft); margin-bottom: 10px; }
.disclaimer p { font-size: 0.82rem; line-height: 1.7; color: var(--text-soft); max-width: 900px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding-top: var(--space-6); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: var(--space-5); padding-bottom: var(--space-5); }
.footer-brand p { margin-top: var(--space-2); font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-links h4, .footer-legal h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-2); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-legal p { font-size: 0.84rem; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: var(--space-3) 0; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-align: center; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  z-index: 90;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .dashboard-card { margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 380px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .main-nav.open { max-height: 400px; box-shadow: var(--shadow-md); }
  .main-nav ul { flex-direction: column; gap: 0; padding: var(--space-2) var(--space-3); }
  .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
}

@media (max-width: 640px) {
  .counters { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: var(--space-6) 0 var(--space-5); }
  .dashboard-grid { grid-template-columns: repeat(3, 1fr); }
  .dash-value { font-size: 0.86rem; }
}