@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;700;900&family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --primary:        #0a0a0a;
  --accent:         #1e44d6;
  --accent-hover:   #1636b0;
  --accent-dim:     #1e44d620;
  --ink:            #0a0a0a;
  --ink-mid:        #2a2a2a;
  --ink-soft:       #5a5a5a;
  --paper:          #fafaf7;
  --sand:           #e8e6df;
  --sand-dark:      #d4d1c7;
  --white:          #ffffff;
  --cobalt:         #1e44d6;
  --rule:           1px solid var(--ink);
  --rule-accent:    2px solid var(--accent);
  --mono:           'IBM Plex Mono', monospace;
  --sans:           'IBM Plex Sans', sans-serif;
  --display:        'Archivo', sans-serif;
  --spacing-xs:     12px;
  --spacing-s:      24px;
  --spacing-m:      48px;
  --spacing-l:      96px;
  --spacing-xl:     128px;
  --container:      1200px;
  --container-wide: 1400px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.25) brightness(0.92);
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ─── UTILITY ─── */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.wide-container {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: 20px;
}

.bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.mono {
  font-family: var(--mono);
}

.label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 12px;
}

.label::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
}

.section-rule {
  border: none;
  border-top: var(--rule);
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 14px 32px;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--ink:hover {
  background: var(--ink-mid);
}

.btn--lg {
  font-size: 13px;
  padding: 18px 48px;
}

/* ─── FORMS ─── */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-field label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-error {
  font-family: var(--mono);
  font-size: 11px;
  color: #c0392b;
  letter-spacing: 0.05em;
}

.form-success {
  display: none;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 18px 24px;
  margin-top: 16px;
  text-transform: uppercase;
}

/* ─── ANIMATION UTILITIES ─── */

.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.96); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }

/* ─── NAV ─── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--paper);
  border-bottom: var(--rule);
  height: 60px;
  display: flex;
  align-items: center;
}

.site-nav .wide-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--accent);
}

#navLinks {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--paper);
  border-bottom: var(--rule);
  padding: 20px;
  gap: 16px;
}

#navLinks.open {
  display: flex;
}

#navLinks a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s;
}

#navLinks a:hover {
  color: var(--accent);
}

.nav-phone {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
  display: none;
}

#navToggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

#navToggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#navToggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#navToggle.open span:nth-child(2) { opacity: 0; }
#navToggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ─── */

.hero {
  padding-top: 60px;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-m) 20px var(--spacing-s);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 13vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 36px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--sand);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-phone {
  font-family: var(--mono);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.15s;
}

.hero-phone:hover {
  color: #5a78e0;
}

/* ─── TRUST STRIP ─── */

.trust-strip {
  background: var(--ink);
  border-top: 1px solid #333;
  border-bottom: var(--rule);
  padding: 14px 0;
}

.trust-strip .wide-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.trust-item {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  padding: 4px 20px;
  white-space: nowrap;
}

.trust-item + .trust-item {
  border-left: 1px solid #444;
}

/* ─── MANIFESTO ─── */

.manifesto {
  background: var(--paper);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-m);
}

.manifesto-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.manifesto-body {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 600px;
}

.manifesto-body p + p {
  margin-top: 16px;
}

/* ─── SERVICES TABLE ─── */

.services-table {
  background: var(--paper);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13px, 1.3vw, 15px);
}

.spec-table thead tr {
  border-bottom: var(--rule);
}

.spec-table thead th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 0;
  text-align: left;
}

.spec-table thead th.price-col {
  text-align: right;
}

.spec-table tbody tr {
  border-bottom: 1px solid var(--sand-dark);
  transition: background 0.12s ease;
}

.spec-table tbody tr:hover {
  background: var(--sand);
}

.spec-table tbody td {
  padding: 18px 0;
  vertical-align: top;
  line-height: 1.5;
}

.spec-table .service-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(14px, 1.4vw, 16px);
  color: var(--ink);
  padding-right: 20px;
  min-width: 160px;
}

.spec-table .service-desc {
  color: var(--ink-soft);
  font-size: clamp(13px, 1.2vw, 14px);
  padding-right: 20px;
}

.spec-table .service-price {
  font-family: var(--mono);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  color: var(--accent);
  text-align: right;
  white-space: nowrap;
}

.spec-table .service-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ink-soft);
  color: var(--ink-soft);
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.spec-table .service-tag.urgent {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── SERVICE FEATURE ─── */

.service-feature {
  background: var(--ink);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-m);
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.split-text .label {
  color: var(--sand);
}

.split-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--paper);
}

.split-body {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: var(--sand);
  max-width: 520px;
}

.split-body p + p {
  margin-top: 14px;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ─── STATS ─── */

.stats {
  background: var(--sand);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-item {
  padding: var(--spacing-m) var(--spacing-s);
  border-right: var(--rule);
  border-bottom: var(--rule);
}

.stat-item:nth-child(even) {
  border-right: none;
}

.stat-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.stat-number {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}

.stat-number .stat-suffix {
  font-size: 0.5em;
  vertical-align: super;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── CREDENTIALS ─── */

.credentials {
  background: var(--paper);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-s);
  margin-top: var(--spacing-m);
}

.credential-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand-dark);
}

.credential-item:last-child {
  border-bottom: none;
}

.credential-code {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 2px;
  min-width: 80px;
}

.credential-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 4px;
}

.credential-detail {
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--mono);
  letter-spacing: 0.03em;
}

/* ─── TYPE BAND ─── */

.type-band {
  background: var(--ink);
  border-top: var(--rule);
  border-bottom: var(--rule);
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--paper);
  white-space: nowrap;
  padding-right: 80px;
}

.marquee-item .marquee-dot {
  color: var(--accent);
  margin-right: 80px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SERVICE AREAS ─── */

.service-areas {
  background: var(--paper);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: var(--spacing-m);
  border-top: var(--rule);
  border-left: var(--rule);
}

.area-cell {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 16px 20px;
  border-right: var(--rule);
  border-bottom: var(--rule);
  transition: background 0.12s ease, color 0.12s ease;
}

.area-cell:hover {
  background: var(--sand);
  color: var(--ink);
}

/* ─── CTA BAND ─── */

.cta-band {
  background: var(--accent);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.cta-band .wide-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
  align-items: flex-start;
}

.cta-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(32px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 900px;
}

.cta-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn--cta-primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
}

.btn--cta-primary:hover {
  background: var(--paper);
  border-color: var(--paper);
}

.btn--cta-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 40px;
}

.btn--cta-outline:hover {
  border-color: var(--white);
}

/* ─── CONTACT ─── */

.contact {
  background: var(--paper);
  padding: var(--spacing-l) 0;
  border-bottom: var(--rule);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-l);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-block {}

.contact-block-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.contact-block-value {
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.contact-block-value a {
  color: var(--accent);
  transition: opacity 0.15s;
}

.contact-block-value a:hover {
  opacity: 0.75;
}

.contact-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
}

.contact-hours dt {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-hours dd {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
}

/* ─── FOOTER ─── */

.footer {
  background: var(--ink);
  padding: var(--spacing-m) 0;
  border-top: var(--rule);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-m);
}

.footer-brand {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--sand-dark);
}

.footer-col-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dark);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--sand);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: var(--spacing-m);
  padding-top: 20px;
  border-top: 1px solid #2a2a2a;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ─── BREAKPOINTS ─── */

@media (min-width: 640px) {
  .nav-phone {
    display: block;
  }

  .hero-content {
    padding-inline: 40px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item:nth-child(even) {
    border-right: var(--rule);
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: var(--rule);
  }

  .stat-item:nth-last-child(-n+1) {
    border-bottom: none;
  }

  .stat-item:last-child {
    border-right: none;
  }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  #navLinks {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    gap: 32px;
  }

  #navToggle {
    display: none;
  }

  .hero-content {
    padding-inline: 60px;
    padding-bottom: var(--spacing-m);
  }

  .split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .split-image img {
    height: 560px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    padding-inline: 80px;
  }

  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item:nth-last-child(-n+4) {
    border-bottom: none;
  }
}
