:root {
  --yellow: #ffc525;
  --yellow-dark: #e2a600;
}

body {
  background: var(--soft);
}

.primary-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--yellow), #ffd95b);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 14px 26px rgba(255, 197, 37, 0.28);
}

.hero-badges svg,
.coverage-grid svg,
.industry-grid svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 23, 53, 0.98) 0%, rgba(2, 23, 53, 0.9) 38%, rgba(2, 23, 53, 0.34) 68%, rgba(2, 23, 53, 0.08) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 197, 37, 0.16), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 58px 0 100px;
}

.hero-copy {
  max-width: 660px;
  color: var(--white);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero h2 {
  margin: 20px 0 0;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  text-transform: uppercase;
}

.hero p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
}

.hero-badges span {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 150px;
}

.hero-badges svg {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  color: var(--yellow);
}

.hero-badges strong {
  display: block;
  text-transform: uppercase;
}

.primary-btn {
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 1rem;
}

.coverage-section {
  margin-top: -76px;
  position: relative;
  z-index: 4;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.coverage-grid article {
  min-height: 280px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  padding: 24px 14px 20px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.coverage-grid article > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #eef4fb;
  border-radius: 50%;
}

.coverage-grid svg {
  width: 34px;
  height: 34px;
}

.coverage-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.coverage-grid h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--yellow);
  border-radius: 999px;
}

.coverage-grid p {
  margin: 0;
  color: #263451;
  font-size: 0.88rem;
  font-weight: 650;
}

.coverage-grid a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 950;
}

.industries {
  padding: 34px 0 26px;
  background: var(--white);
}

.industries h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-align: center;
  text-transform: uppercase;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.industry-grid span {
  min-height: 84px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 900;
}

.industry-grid span:last-child {
  border-right: 0;
}

.industry-grid svg {
  width: 36px;
  height: 36px;
  color: var(--navy);
}

.builders-risk {
  padding: 16px 0 22px;
  background: var(--white);
}

.builders-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: stretch;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.builders-copy {
  padding: 34px;
}

.builders-copy p {
  margin: 0 0 6px;
  color: var(--yellow);
  font-weight: 950;
  text-transform: uppercase;
}

.builders-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.builders-copy h3 {
  margin: 12px 0 18px;
  color: var(--yellow);
  text-transform: uppercase;
}

.builders-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.builders-copy li {
  position: relative;
  padding-left: 28px;
}

.builders-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 950;
}

.builders-panel picture,
.builders-panel img {
  width: 100%;
  height: 100%;
}

.builders-panel img {
  object-fit: cover;
}

.quote-section {
  padding: 0 0 30px;
  background: var(--white);
}

.quote-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.65fr;
  gap: 28px;
  align-items: center;
  padding: 28px 34px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(6, 33, 75, 0.1);
}

.quote-copy p {
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: 950;
  text-transform: uppercase;
}

.quote-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.quote-copy h2 span {
  display: block;
  color: var(--yellow-dark);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 1.25em;
  text-transform: none;
}

.quote-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  color: var(--navy);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 850;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cbd6e4;
  border-radius: 6px;
}

.quote-form button {
  min-height: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #073d86);
  border: 0;
  border-radius: 7px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-form p {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 650;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.worker-photo {
  height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.worker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1120px) {
  .coverage-grid,
  .industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .builders-panel,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .worker-photo {
    height: 430px;
  }
}

@media (max-width: 760px) {
  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 0 92px;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .coverage-grid,
  .industry-grid,
  .quote-icons,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .coverage-section {
    margin-top: -56px;
  }

  .coverage-grid article {
    min-height: 230px;
  }

  .industry-grid span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .builders-copy,
  .quote-panel {
    padding: 22px;
  }

  .worker-photo {
    height: 300px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.65rem;
  }
}
