.home-hero {
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: min(620px, 72vh);
  padding: 5rem 1.25rem 4rem;
}

.home-hero__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.home-eyebrow {
  color: #d40000;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
  margin: 0;
  max-width: 840px;
}

.home-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 1.25rem 0 0;
  max-width: 720px;
}

.home-hero__actions {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  max-width: 760px;
}

.home-hero__actions .cta-button,
.home-hero__actions .secondary-button,
.home-cta .cta-button {
  display: inline-block;
  margin: 0.5rem 0.75rem 0 0;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  color: #fff;
  font-weight: 800;
  padding: 0.8rem 1.5rem;
}

.secondary-button:hover {
  background: #fff;
  color: #111;
  text-decoration: none;
}

.home-trust {
  background: #111;
  color: #fff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-trust div {
  background: #1a1a1a;
  padding: 1.25rem;
}

.home-trust strong,
.home-trust span {
  display: block;
}

.home-trust strong {
  color: #fff;
  font-size: 1.15rem;
}

.home-trust span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-top: 0.3rem;
}

.home-section,
.home-cta {
  margin: 0 auto;
  max-width: 1180px;
  padding: 4rem 1.25rem;
}

.home-section__header {
  max-width: 760px;
}

.home-section h2,
.home-cta h2 {
  color: #171717;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}

.home-section__header p,
.home-cta p,
.home-process li {
  color: #4a4a4a;
  line-height: 1.65;
}

.home-service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.home-service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  color: #222;
  display: block;
  min-height: 220px;
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-service-card:hover {
  border-color: #d40000;
  color: #222;
  transform: translateY(-3px);
  text-decoration: none;
}

.home-service-card span {
  color: #d40000;
  display: block;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.home-service-card h3 {
  color: #111;
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

.home-service-card p {
  color: #555;
  line-height: 1.55;
  margin: 0;
}

.home-process {
  border-top: 1px solid #e8e8e8;
  padding-top: 3rem;
}

.home-process ol {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.home-process li {
  background: #fff;
  border-left: 4px solid #d40000;
  padding: 1.25rem;
}

.home-process strong {
  color: #111;
}

.home-cta {
  background: #f4f4f4;
  border-top: 1px solid #e1e1e1;
  max-width: none;
  text-align: center;
}

.home-cta p {
  margin: 0 auto 1rem;
  max-width: 680px;
}

@media (max-width: 960px) {
  .home-trust,
  .home-service-grid,
  .home-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 0;
    padding: 3.5rem 1rem 3rem;
  }

  .home-trust,
  .home-service-grid,
  .home-process ol {
    grid-template-columns: 1fr;
  }

  .home-section,
  .home-cta {
    padding: 3rem 1rem;
  }
}
