@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS Variables ─── */
:root {
  --primary:       #0c2340;
  --primary-light: #1a3a5c;
  --accent:        #d97706;
  --accent-hover:  #b45309;
  --blue:          #1e40af;
  --blue-light:    #3b82f6;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --bg:            #f8fafc;
  --surface:       #ffffff;
  --border:        rgba(0,0,0,.06);
  --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-lg:     0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.03);
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     24px;
  --transition:    all .28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }

/* ─── Typography ─── */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; color: var(--primary); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(59,130,246,.08);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title { font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; }
.centered { text-align: center; }
.centered .section-subtitle { margin: 0 auto; }

/* ─── Layout ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5.5rem 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-size: .975rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  box-shadow: 0 4px 18px rgba(217,119,6,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(217,119,6,.38); }

.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-cta {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  box-shadow: 0 4px 24px rgba(245,158,11,.35);
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(245,158,11,.45); }

/* ─── Header ─── */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: .9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* ─── HERO ─── */
.hero {
  padding-top: 9rem;
  padding-bottom: 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(150deg, var(--primary) 0%, var(--blue) 55%, #1e3a6e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(59,130,246,.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(30,64,175,.2) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .section-label { color: #93c5fd; background: rgba(147,197,253,.12); }

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.1);
  padding: .3rem .75rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.1);
}

.hero-card-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.case-list { list-style: none; }
.case-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .95rem;
}
.case-list li:last-child { border-bottom: none; }
.case-dot {
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.stat-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-item { text-align: center; flex: 1; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: #fff; display: block; }
.stat-label { font-size: .75rem; color: rgba(255,255,255,.6); }

/* ─── Intro / Qué es ─── */
.intro { background: var(--surface); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.highlight-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue-light);
}

.hi-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: .05rem;
}
.hi-label { font-weight: 600; font-size: .95rem; color: var(--primary); display: block; }
.hi-text  { font-size: .88rem; color: var(--text-muted); }

.visual-box {
  background: linear-gradient(145deg, var(--primary), var(--blue));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.visual-box::after {
  content: '⚕';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 9rem;
  opacity: .06;
  line-height: 1;
}

.visual-box-tag { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .5rem; }
.visual-box h3 { color: #fff; font-size: 1.5rem; margin-bottom: .75rem; }
.visual-box p  { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 2rem; }

.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  color: rgba(255,255,255,.85);
  padding: .5rem 0;
  font-size: .93rem;
}
.check-icon { color: #4ade80; flex-shrink: 0; margin-top: .1rem; }

/* ─── Cases / Tipos ─── */
.cases { background: var(--bg); }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.case-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue-light);
  opacity: 0;
  transition: var(--transition);
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-card:hover::before { opacity: 1; }

.case-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
.case-card h3 { font-size: 1.1rem; margin-bottom: .65rem; color: var(--primary); }
.case-card p  { font-size: .9rem; color: var(--text-muted); }

/* ─── Process ─── */
.process { background: var(--surface); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1.5rem;
}

.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--blue));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(30,64,175,.3);
}

.step-body h4 { font-size: 1rem; color: var(--primary); margin-bottom: .3rem; }
.step-body p  { font-size: .9rem; color: var(--text-muted); }

.process-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timing-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.timing-icon { font-size: 1.75rem; }
.timing-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.timing-value { font-size: 1.05rem; font-weight: 700; color: var(--primary); }

/* ─── Advantages ─── */
.advantages { background: var(--bg); }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.adv-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.adv-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(30,64,175,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.adv-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.adv-card p  { font-size: .9rem; color: var(--text-muted); }

/* ─── When to ask ─── */
.when-to-ask { background: var(--surface); }

.when-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.signal-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.signal-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.signal-item:hover { background: #e0f2fe; }

.signal-emoji { font-size: 1.35rem; flex-shrink: 0; }
.signal-text strong { display: block; font-size: .95rem; color: var(--primary); margin-bottom: .15rem; }
.signal-text span   { font-size: .86rem; color: var(--text-muted); }

.when-aside-box {
  background: linear-gradient(145deg, var(--primary), var(--blue));
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  color: #fff;
  position: sticky;
  top: 6rem;
}

.when-aside-box h3 { color: #fff; font-size: 1.3rem; margin-bottom: .75rem; }
.when-aside-box p  { color: rgba(255,255,255,.75); font-size: .92rem; margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1rem; }
.form-group label { font-size: .82rem; color: rgba(255,255,255,.7); display: block; margin-bottom: .35rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .9rem;
  padding: .65rem .9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); }
.form-group select option { color: var(--text); background: #fff; }

.form-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  margin-top: .75rem;
  text-align: center;
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.3) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.cta-inner h2    { font-size: clamp(1.75rem, 4vw, 2.75rem); color: #fff; max-width: 700px; }
.cta-inner p     { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 540px; }
.cta-inner .btn-cta { font-size: 1.1rem; padding: 1.1rem 2.5rem; }

.cta-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}

/* ─── Footer ─── */
.site-footer {
  background: #0a1628;
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ─── Scroll animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease-out, transform .65s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-grid, .intro-grid, .process-grid, .when-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: auto; padding-top: 8rem; padding-bottom: 4rem; }
  .hero-card-wrap { display: none; }
  .when-aside-box { position: static; }
}

/* ─── Floating contact buttons ─── */
.floating-contacts {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.28);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.float-btn--wa  { background: #25d366; }
.float-btn--ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

/* Tooltip */
.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,23,42,.85);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .35rem .7rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.float-btn:hover::before { opacity: 1; }

@media (max-width: 640px) {
  .floating-contacts { bottom: 1.25rem; right: 1.25rem; }
  .float-btn { width: 50px; height: 50px; }
  .float-btn svg { width: 24px; height: 24px; }
  .float-btn::before { display: none; }
}

/* ─── Calculadora de Indemnización ─── */
.calculator { background: var(--surface); padding-top: 3rem; }
.calc-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  overflow: hidden;
}
.calc-info {
  flex: 1;
  padding: 3.5rem 3rem;
  background: var(--bg);
  border-right: 1px solid var(--border);
}
.calc-info h2 { font-size: 2rem; margin-bottom: 1.2rem; }
.calc-info p { color: var(--text-muted); margin-bottom: 1.5rem; }
.calc-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.calc-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--text); }

.calc-box {
  flex: 1.2;
  padding: 3.5rem 3rem;
}
.calc-row { display: flex; gap: 1.5rem; margin-bottom: 1.2rem; }
.calc-field { flex: 1; position: relative; }
.calc-field.full-width { width: 100%; margin-bottom: 1.2rem; }
.calc-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--border);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: 0.7rem;
  cursor: help;
  margin-left: 0.3rem;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  background: #fdfdfd;
}
.calc-field input:focus, .calc-field select:focus {
  border-color: var(--blue-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.calc-result { text-align: center; }
.calc-result h3 { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 1rem; }
.est-amount-box {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
#est-amount { font-size: 2.8rem; font-weight: 800; color: #10b981; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.calc-disclaimer { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; padding: 0 1rem; }
.calc-cta p { font-weight: 600; margin-bottom: 1rem; color: var(--primary); }

@media (max-width: 900px) {
  .calc-wrapper { flex-direction: column; }
  .calc-info { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 1.5rem; }
  .calc-box { padding: 2.5rem 1.5rem; }
  .calc-row { flex-direction: column; gap: 1.2rem; }
}

/* ─── B2B Para Abogados ─── */
.b2b-lawyers { background: var(--primary); padding-top: 5rem; padding-bottom: 5rem; margin-top: 0; }
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.b2b-text h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.b2b-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.b2b-list li { color: rgba(255,255,255,0.85); font-size: 1rem; }
.b2b-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.b2b-shield {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  text-align: center;
}
.shield-icon { font-size: 4rem; display: block; margin-bottom: 1rem; }
.b2b-shield h4 { color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; }
.b2b-shield p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

@media (max-width: 900px) {
  .b2b-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .b2b-shield { padding: 3rem 2rem; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero-buttons { flex-direction: column; }
  .cta-trust { flex-direction: column; align-items: center; }
  .stat-row { gap: 1rem; }
}
