/* Marco's Auto Repair — Design System */
/* Color: Deep charcoal + warm red accent + clean whites */
/* Type: Space Grotesk + Inter */

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

:root {
  --charcoal: #1c1f26;
  --charcoal-mid: #2a2e38;
  --charcoal-light: #3a3f4d;
  --red: #c0392b;
  --red-hover: #a93226;
  --red-light: #f8e8e6;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f2f1ee;
  --gray-200: #e5e3df;
  --gray-400: #9b9790;
  --gray-600: #6b6760;
  --text-primary: #1c1f26;
  --text-secondary: #5a5955;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  --max-width: 1180px;
  --section-pad: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--tinted { background: var(--gray-100); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(192,57,43,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--charcoal-light);
}
.btn--outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--lg { padding: 18px 36px; font-size: 17px; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.2;
}
.nav__logo-sub {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  transition: color 0.15s;
}
.nav__phone:hover { color: var(--red); }
.nav__phone svg { flex-shrink: 0; }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav drawer */
.nav__mobile {
  display: none;
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.nav__mobile a:hover { background: rgba(255,255,255,0.06); }
.nav__mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,31,38,0.97) 40%, rgba(28,31,38,0.75) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: #f08070;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--red);
}
.hero__subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
}
.hero__trust-item svg { color: var(--red); flex-shrink: 0; }

/* ─── CALLOUT BAR ─── */
.callout-bar {
  background: var(--red);
  color: var(--white);
}
.callout-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 16px 24px;
}
.callout-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}
.callout-bar__divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.3);
}

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s ease;
  cursor: default;
}
.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card__name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─── SECTION HEADINGS ─── */
.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}
.section-body--white { color: rgba(255,255,255,0.7); }

/* ─── SPLIT SECTION (about preview) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split__img {
  position: relative;
}
.split__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.split__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
}
.split__badge-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.split__badge-text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  display: block;
  margin-top: 3px;
}

/* ─── TRUST STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
}
.stat-item { text-align: center; padding: 24px 16px; }
.stat-item__num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}
.stat-item--white .stat-item__label { color: rgba(255,255,255,0.65); }

/* ─── HOURS CARD ─── */
.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hours-card__header {
  background: var(--charcoal);
  padding: 20px 28px;
}
.hours-card__header h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}
.hours-card__body { padding: 8px 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { font-weight: 600; color: var(--charcoal); }
.hours-row__time { color: var(--text-secondary); }
.hours-row__time--closed { color: var(--gray-400); font-style: italic; }
.hours-row__time--open {
  color: #2a7a4b;
  font-weight: 600;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--charcoal);
  padding: 64px 0;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-band__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.cta-band__text p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── LOCATION CARD ─── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 24px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.info-item__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.info-item__value {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.info-item__value a { color: var(--red); }
.info-item__value a:hover { text-decoration: underline; }

/* map embed */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
  background: var(--gray-100);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── CONTACT FORM ─── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-form p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FOOTER ─── */
.footer {
  background: #12151b;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer__heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.footer__contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer__ase {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
}

/* ─── ABOUT PAGE ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.team-card__body { padding: 24px; }
.team-card__name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.team-card__bio { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }

/* ─── SERVICES PAGE ─── */
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
}
.service-detail-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
}
.service-detail-card__icon {
  width: 72px;
  height: 72px;
  background: var(--red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.service-detail-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-detail-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-detail-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: var(--gray-100);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--charcoal);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 520px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  :root { --section-pad: 60px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__badge { right: 0; }
  .location-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card__icon { width: 56px; height: 56px; font-size: 26px; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__phone { font-size: 14px; }
  .nav__toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .map-embed { height: 280px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .callout-bar__divider { display: none; }
  .contact-form { padding: 24px; }
  .split__badge { position: static; margin-top: 16px; display: inline-block; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
