/* ============================================================
   03-components.css — Componentes reutilizables (BEM)
   ============================================================ */

/* ============ Botones ============ */
.btn {
  --btn-bg: var(--color-primary);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 1.5rem;
  min-height: 3rem;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--step-0);
  line-height: 1;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: background-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: var(--shadow-xs); }

.btn--secondary {
  --btn-bg: transparent;
  --btn-fg: var(--brand-800);
  border-color: var(--brand-200);
  box-shadow: none;
}
.btn--secondary:hover { background: var(--brand-050); border-color: var(--brand-400); color: var(--brand-700); }

.btn--ghost-invert {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: none;
}
.btn--ghost-invert:hover { background: rgba(255, 255, 255, 0.16); border-color: var(--white); }

.btn--light { --btn-bg: var(--white); --btn-fg: var(--brand-800); }
.btn--light:hover { background: var(--brand-050); color: var(--brand-900); }

.btn--whatsapp { --btn-bg: var(--whatsapp); --btn-fg: #04331a; }
.btn--whatsapp:hover { background: #1fbe5b; }

.btn--block { width: 100%; }
.btn--sm { min-height: 2.5rem; padding: 0.55rem 1.1rem; font-size: var(--step--1); }

.btn__icon { width: 1.15em; height: 1.15em; flex: none; }

/* Enlace con flecha */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: var(--weight-semibold);
  font-family: var(--font-display);
  color: var(--brand-600);
  text-decoration: none;
}
.link-arrow::after {
  content: "→";
  transition: translate var(--dur-base) var(--ease-out);
}
.link-arrow:hover { color: var(--brand-800); text-decoration: underline; }
.link-arrow:hover::after { translate: 0.3rem 0; }

/* ============ Eyebrow / badge ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-display);
  font-size: var(--step--1);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: "";
  inline-size: 1.75rem;
  block-size: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section--invert .eyebrow { color: var(--brand-300); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--brand-100);
  color: var(--brand-700);
  font-size: var(--step--1);
  font-weight: var(--weight-semibold);
}
.badge--invert { background: rgba(255, 255, 255, 0.12); color: var(--brand-100); }

/* ============ Encabezado de sección ============ */
.section-head { max-width: 46rem; margin-bottom: var(--space-2xl); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: var(--space-md); }

/* ============ Logo ============ */
.logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo__mark { width: 2.4rem; height: 2.4rem; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
  font-family: var(--font-display);
  font-weight: var(--weight-extra);
  font-size: 1.05rem;
  color: var(--brand-900);
  letter-spacing: -0.01em;
}
.logo__tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: var(--weight-semibold);
}
.logo--invert .logo__name { color: var(--white); }
.logo--invert .logo__tag { color: var(--brand-300); }

/* ============ Header ============ */
.topbar {
  display: none;
  background: var(--brand-900);
  color: var(--brand-100);
  font-size: var(--step--1);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); min-height: 2.4rem; }
.topbar a { color: var(--brand-100); text-decoration: none; }
.topbar a:hover { color: var(--white); text-decoration: underline; }
.topbar__list { display: flex; gap: var(--space-lg); }
.topbar__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar__item svg { width: 1rem; height: 1rem; flex: none; color: var(--brand-400); }

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--color-border); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--white);
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brand-800);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) linear;
}
.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); }

/* Panel de navegación: drawer en móvil */
.nav__panel {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  z-index: var(--z-drawer);
  background: var(--white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg) var(--gutter) var(--space-xl);
  display: grid;
  gap: var(--space-lg);
  transform-origin: top;
  animation: nav-in var(--dur-base) var(--ease-out);
}
.nav__panel[hidden] { display: none; }

@keyframes nav-in {
  from { opacity: 0; transform: translateY(-0.75rem); }
  to { opacity: 1; transform: none; }
}

.nav__list { display: grid; gap: var(--space-2xs); }
.nav__link {
  display: block;
  padding: 0.8rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--brand-900);
  font-family: var(--font-display);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav__link:hover { background: var(--brand-050); color: var(--brand-600); }
.nav__link[aria-current="page"] { color: var(--brand-600); background: var(--brand-050); }
.nav__actions { display: grid; gap: var(--space-sm); }

.nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-sticky);
  background: rgba(4, 22, 47, 0.45);
  border: 0;
  animation: fade-in var(--dur-base) var(--ease-out);
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

body.is-locked { overflow: hidden; }

/* Escritorio: barra horizontal */
@media (min-width: 62rem) {
  .topbar { display: block; }
  .nav__toggle, .nav__backdrop { display: none; }
  .nav__panel {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-lg);
    max-height: none;
    overflow: visible;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    animation: none;
  }
  .nav__panel[hidden] { display: flex; }
  .nav__list { display: flex; align-items: center; gap: var(--space-2xs); }
  .nav__link { padding: 0.5rem 0.7rem; font-size: var(--step--1); }
  .nav__link[aria-current="page"] { background: none; }
  .nav__link[aria-current="page"]::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 3px;
    background: var(--brand-500);
    border-radius: 2px;
  }
  .nav__actions { display: flex; }
}

/* ============ Tarjetas ============ */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  height: 100%;
}
.card p { max-width: none; color: var(--color-text-soft); }

.card--link:hover, .card--link:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}
/* El enlace cubre toda la tarjeta manteniendo semántica */
.card__overlay { position: absolute; inset: 0; border-radius: inherit; }

.card__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-md);
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  margin-bottom: var(--space-xs);
}
.card__icon img, .card__icon svg { width: 1.75rem; height: 1.75rem; }
.card__title { font-size: var(--step-1); }
.card__list { display: grid; gap: 0.4rem; margin-top: auto; padding-top: var(--space-sm); }
.card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--step--1);
  color: var(--color-text-soft);
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0.15rem; top: 0.55em;
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--brand-400);
}
.card__foot { margin-top: auto; padding-top: var(--space-md); }

.card--invert {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.card--invert p, .card--invert .card__list li { color: var(--brand-100); }
.card--invert .card__icon { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.18); }

.card--feature { border: 0; background: transparent; box-shadow: none; padding: 0; }

/* Tarjeta destacada */
.card--highlight { border-color: var(--brand-300); box-shadow: var(--shadow-md); }
.card--highlight::before {
  content: "";
  position: absolute;
  inset-inline: var(--space-lg);
  top: 0;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 0 0 3px 3px;
}

/* ============ Pasos / proceso ============ */
.steps { counter-reset: step; display: grid; gap: var(--space-lg); }
.step { position: relative; padding-left: 3.75rem; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-md);
  background: var(--grad-brand);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--step--1);
  box-shadow: var(--shadow-sm);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.36rem; top: 3.1rem; bottom: -1.25rem;
  width: 2px;
  background: linear-gradient(var(--brand-200), transparent);
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.35rem; }
.step p { color: var(--color-text-soft); }

/* ============ Estadísticas ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9.5rem), 1fr));
  gap: var(--space-lg);
}
.stat { text-align: center; }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: var(--weight-extra);
  color: var(--brand-600);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}
.stat__label {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--step--1);
  color: var(--color-text-soft);
}
.section--invert .stat__value { color: var(--white); }
.section--invert .stat__label { color: var(--brand-200); }

/* ============ Testimonios ============ */
.quote {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  height: 100%;
}
.quote__mark { font-size: 2.5rem; line-height: 0.6; color: var(--brand-200); font-family: Georgia, serif; }
.quote blockquote { font-size: var(--step-0); color: var(--color-text); margin: 0; }
.quote__author { display: flex; align-items: center; gap: var(--space-sm); margin-top: auto; }
.quote__avatar {
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  flex: none;
  border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--step--1);
}
.quote__name { font-weight: var(--weight-semibold); color: var(--color-heading); font-size: var(--step--1); }
.quote__role { font-size: var(--step--1); color: var(--ink-500); }

/* ============ Acordeón (FAQ) ============ */
.accordion { border-top: 1px solid var(--color-border); }
.accordion__item { border-bottom: 1px solid var(--color-border); }
.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: var(--weight-bold);
  color: var(--color-heading);
  transition: color var(--dur-fast) var(--ease-out);
}
.accordion__trigger:hover { color: var(--brand-600); }
.accordion__icon {
  position: relative;
  flex: none;
  width: 1.65rem; height: 1.65rem;
  border-radius: 50%;
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  inset: 50% 25%;
  height: 2px;
  translate: 0 -1px;
  background: var(--brand-600);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast) linear;
}
.accordion__icon::after { rotate: 90deg; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { opacity: 0; rotate: 0deg; }
.accordion__panel { padding-bottom: var(--space-lg); }
.accordion__panel p { color: var(--color-text-soft); }
.accordion__panel[hidden] { display: none; }

/* ============ Formularios ============ */
.form { display: grid; gap: var(--space-lg); }
.form__row { display: grid; gap: var(--space-lg); }
@media (min-width: 44rem) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 0.4rem; }
.field__label {
  font-size: var(--step--1);
  font-weight: var(--weight-semibold);
  color: var(--brand-900);
  font-family: var(--font-display);
}
.field__req { color: var(--danger-600); }
.field__hint { font-size: var(--step--1); color: var(--ink-500); }
.field__control {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 3rem;
  background: var(--white);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field__control::placeholder { color: var(--ink-400); }
.field__control:hover { border-color: var(--brand-300); }
.field__control:focus {
  outline: none;
  border-color: var(--brand-500);
  box-shadow: var(--shadow-focus);
}
textarea.field__control { min-height: 8.5rem; resize: vertical; }
select.field__control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2312509f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1.1rem;
  padding-right: 2.75rem;
}
.field__error { font-size: var(--step--1); color: var(--danger-600); font-weight: var(--weight-medium); }
.field__error[hidden] { display: none; }
.field.is-invalid .field__control { border-color: var(--danger-600); background: var(--danger-100); }

.checkbox { display: grid; grid-template-columns: auto 1fr; gap: var(--space-sm); align-items: start; }
.checkbox input {
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.2rem;
  accent-color: var(--brand-500);
}
.checkbox label { font-size: var(--step--1); color: var(--color-text-soft); }

/* Honeypot antispam: fuera de pantalla, sin display:none para que los bots lo lean */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: var(--weight-medium);
}
.form__status[hidden] { display: none; }
.form__status--ok { background: var(--success-100); color: var(--success-600); }
.form__status--error { background: var(--danger-100); color: var(--danger-600); }

/* ============ Barra de confianza ============ */
.trustbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  padding-block: var(--space-lg);
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--step--1);
  font-weight: var(--weight-semibold);
  color: var(--ink-600);
}
.trustbar__item svg { width: 1.15rem; height: 1.15rem; color: var(--brand-500); flex: none; }

/* ============ Banda CTA ============ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 1rem + 4vw, 3.5rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 26rem; height: 26rem;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 62%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--brand-100); margin-inline: auto; }
.cta-band .cluster { justify-content: center; margin-top: var(--space-lg); }

/* ============ Migas de pan ============ */
.breadcrumbs { font-size: var(--step--1); color: var(--ink-500); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--ink-300); }
.breadcrumbs a { color: var(--brand-100); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: rgba(255, 255, 255, 0.72); }

/* ============ Footer ============ */
.site-footer {
  background: var(--brand-950);
  color: var(--brand-200);
  padding-block: var(--space-3xl) var(--space-lg);
  font-size: var(--step--1);
}
.site-footer h3 {
  color: var(--white);
  font-size: var(--step-0);
  margin-bottom: var(--space-md);
  letter-spacing: 0;
}
.footer__grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
}
.footer__brand { max-width: 26rem; }
.footer__brand p { color: var(--brand-200); margin-top: var(--space-md); }
.footer__list { display: grid; gap: 0.6rem; }
.footer__list a, .footer__contact a { color: var(--brand-200); text-decoration: none; }
.footer__list a:hover, .footer__contact a:hover { color: var(--white); text-decoration: underline; }
.footer__contact { display: grid; gap: var(--space-sm); }
.footer__contact li { display: flex; gap: var(--space-sm); align-items: flex-start; }
.footer__contact svg { width: 1.1rem; height: 1.1rem; flex: none; margin-top: 0.2rem; color: var(--brand-400); }
.footer__social { display: flex; gap: var(--space-sm); margin-top: var(--space-lg); }
.footer__social a {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-100);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.footer__social a:hover { background: var(--brand-500); color: var(--white); }
.footer__social svg { width: 1.15rem; height: 1.15rem; }
.footer__bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  justify-content: space-between;
  align-items: center;
  color: var(--ink-400);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-md); }

/* ============ Acciones flotantes (WhatsApp) ============ */
.floating-actions {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.5rem);
  bottom: clamp(0.85rem, 2vw, 1.5rem);
  z-index: var(--z-float);
  display: grid;
  gap: var(--space-sm);
  justify-items: end;
}
.fab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--whatsapp);
  color: #04331a;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--step--1);
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.fab:hover { transform: translateY(-3px); filter: brightness(1.05); }
.fab svg { width: 1.5rem; height: 1.5rem; flex: none; }
.fab__label { display: none; }
@media (min-width: 30rem) { .fab__label { display: inline; } }

.fab--top {
  background: var(--white);
  color: var(--brand-700);
  border: 1px solid var(--color-border);
  width: 2.9rem; height: 2.9rem;
  padding: 0;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.fab--top.is-visible { opacity: 1; pointer-events: auto; }

/* ============ Tabla comparativa ============ */
.table-wrap { overflow-x: auto; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--white); }
.table { width: 100%; border-collapse: collapse; min-width: 34rem; font-size: var(--step--1); }
.table th, .table td { padding: var(--space-md); text-align: left; border-bottom: 1px solid var(--color-border); }
.table thead th {
  background: var(--brand-050);
  color: var(--brand-900);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  white-space: nowrap;
}
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: var(--brand-050); }
