.subhero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.subhero-media {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.04);
}

.subhero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 13, 19, .96) 0%, rgba(3, 13, 19, .82) 48%, rgba(3, 13, 19, .22) 78%),
    linear-gradient(0deg, rgba(3, 13, 19, .8), transparent 58%);
}

.subhero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  padding: 160px clamp(22px, 7vw, 110px) 88px;
}

.subhero h1,
.pricing-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 132px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .8;
  text-transform: uppercase;
}

.subhero-lead {
  max-width: 760px;
  margin: 36px 0 34px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .65fr);
  gap: clamp(55px, 9vw, 140px);
  background: var(--white);
}

.service-detail-main h2 {
  max-width: 820px;
}

.check-list,
.factor-list,
.fit-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.check-list li {
  min-height: 86px;
  padding: 22px 24px 22px 44px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.check-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  color: var(--blue);
  font-weight: 800;
}

.service-quote-panel {
  align-self: start;
  padding: 36px;
  background: var(--ink);
  color: var(--white);
  border-top: 5px solid var(--copper);
  box-shadow: 0 28px 65px rgba(7, 23, 34, .16);
}

.panel-label,
.service-quote-panel > a,
.related-card > span,
.price-card > span {
  color: #75d9ce;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-quote-panel h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.factor-list {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.factor-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
}

.factor-list li::before {
  content: "—";
  margin-right: 10px;
  color: var(--copper);
}

.service-quote-panel > a {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  color: #aee8f0;
}

.fit-section {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(50px, 9vw, 140px);
  background: var(--blue);
  color: var(--white);
}

.fit-list {
  margin: 0;
  counter-reset: fit;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.fit-list li {
  counter-increment: fit;
  min-height: 92px;
  padding: 26px 0 24px 58px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
}

.fit-list li::before {
  content: "0" counter(fit);
  position: absolute;
  left: 0;
  color: #9ce5dd;
  font-family: var(--display);
  font-size: 24px;
}

.service-flow,
.related,
.pricing-intro,
.quote-prep {
  background: var(--mist);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
}

.flow-grid li {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.flow-grid li:last-child {
  border-right: 0;
}

.flow-grid span {
  color: var(--copper);
  font-family: var(--display);
  font-size: 26px;
}

.flow-grid h3,
.related-card h3,
.price-card h2,
.factor-stack h3 {
  margin: 35px 0 12px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.flow-grid p,
.related-card p,
.price-card p,
.factor-stack p {
  margin: 0;
  color: #52626a;
  font-size: 14px;
}

.related-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-card,
.price-card {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.related-card:hover,
.related-card:focus-visible,
.price-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 22px 55px rgba(7, 23, 34, .1);
}

.related-card p,
.price-card p {
  flex: 1;
}

.related-card strong,
.price-card a {
  margin-top: 28px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-pricing {
  background: var(--ice);
}

.footer-brand-wrap .brand {
  color: var(--white);
}

.pricing-hero {
  min-height: 720px;
  padding: 175px clamp(22px, 7vw, 110px) 90px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(35, 103, 131, .72), transparent 30%),
    linear-gradient(135deg, #052b36 0%, #083c49 60%, #123c50 100%);
  color: var(--white);
}

.pricing-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.pricing-hero-content > p:not(.eyebrow) {
  max-width: 670px;
  margin: 34px 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.4vw, 21px);
}

.pricing-orbit {
  position: absolute;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  right: -6vw;
  top: 90px;
  border: 1px solid rgba(142, 208, 222, .24);
  border-radius: 50%;
}

.pricing-orbit::before,
.pricing-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(142, 208, 222, .18);
  border-radius: 50%;
}

.pricing-orbit::after {
  inset: 28%;
}

.pricing-orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 12px rgba(185, 119, 69, .12);
}

.pricing-orbit span:nth-child(1) { top: 11%; left: 24%; }
.pricing-orbit span:nth-child(2) { top: 58%; left: 5%; }
.pricing-orbit span:nth-child(3) { right: 17%; bottom: 13%; }

.pricing-grid {
  margin-top: 62px;
}

.price-card {
  min-height: 360px;
}

.price-card > strong {
  margin: 28px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
}

.price-card i {
  font-style: normal;
}

.quote-factors {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: clamp(55px, 10vw, 150px);
  background: var(--ink);
  color: var(--white);
}

.factor-stack {
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.factor-stack article {
  display: grid;
  grid-template-columns: 50px minmax(170px, .55fr) 1fr;
  gap: 22px;
  align-items: start;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.factor-stack span {
  color: #75d9ce;
  font-family: var(--display);
  font-size: 23px;
}

.factor-stack h3 {
  margin: 0;
  color: var(--white);
  font-size: 25px;
}

.factor-stack p {
  color: rgba(255, 255, 255, .64);
}

.quote-prep {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(55px, 10vw, 150px);
}

.quote-prep ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: prep;
  border-top: 1px solid var(--line);
}

.quote-prep li {
  counter-increment: prep;
  padding: 22px 0 22px 58px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.quote-prep li::before {
  content: "0" counter(prep);
  position: absolute;
  left: 0;
  color: var(--copper);
  font-family: var(--display);
  font-size: 23px;
}

.legal-page {
  background: var(--mist);
}

.legal-hero {
  min-height: 500px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 35%, rgba(91, 174, 192, .24), transparent 28%),
    linear-gradient(135deg, #06131c 0%, #0b2735 60%, #0a1a24 100%);
}

.legal-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 700px;
  right: 10%;
  top: -180px;
  transform: rotate(18deg);
  border-left: 1px solid rgba(152, 220, 232, .24);
  border-right: 1px solid rgba(152, 220, 232, .1);
  background: linear-gradient(90deg, transparent, rgba(104, 197, 214, .08), transparent);
}

.legal-hero-inner {
  width: min(1180px, 100%);
  padding: 150px clamp(22px, 7vw, 110px) 70px;
  position: relative;
  z-index: 2;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 24px 0 18px;
  font-family: var(--display);
  font-size: clamp(68px, 10vw, 138px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .82;
  text-transform: uppercase;
}

.legal-hero-inner > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.25fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 28px;
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-top: 5px solid var(--copper);
  box-shadow: 0 28px 65px rgba(7, 23, 34, .14);
}

.legal-summary h2 {
  margin: 12px 0 22px;
  font-size: 35px;
  line-height: .98;
}

.legal-summary p:not(.panel-label) {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.legal-summary a {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  color: #aee8f0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-copy {
  padding: 10px 0;
}

.legal-copy section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section:last-child {
  margin-bottom: 0;
}

.legal-copy h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  text-transform: uppercase;
}

.legal-copy p {
  margin: 0 0 16px;
  color: #40515a;
  font-size: 15px;
  line-height: 1.85;
}

.legal-copy a {
  color: #196b7d;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 1000px) {
  .service-detail,
  .fit-section,
  .quote-factors,
  .quote-prep,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
    width: min(620px, 100%);
  }

  .service-quote-panel {
    width: min(620px, 100%);
  }

  .related-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-card:last-child,
  .price-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .subhero {
    min-height: 820px;
  }

  .subhero-shade {
    background: linear-gradient(0deg, rgba(3, 13, 19, .98) 0%, rgba(3, 13, 19, .8) 72%, rgba(3, 13, 19, .46) 100%);
  }

  .subhero-content {
    padding: 132px 22px 68px;
  }

  .subhero .hero-actions {
    display: none;
  }

  .subhero h1,
  .pricing-hero h1 {
    font-size: 56px;
    line-height: .86;
  }

  .subhero-lead {
    font-size: 14px;
    line-height: 1.65;
  }

  .check-list,
  .flow-grid,
  .related-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .check-list li:nth-child(odd) {
    border-right: 0;
  }

  .flow-grid li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-grid li:last-child {
    border-bottom: 0;
  }

  .related-card:last-child,
  .price-card:last-child {
    grid-column: auto;
  }

  .pricing-hero {
    min-height: 740px;
    padding: 140px 22px 72px;
  }

  .pricing-orbit {
    width: 580px;
    right: -360px;
    top: 50px;
  }

  .legal-hero {
    min-height: 430px;
  }

  .legal-hero-inner {
    padding: 125px 22px 55px;
  }

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-summary {
    padding: 26px;
  }

  .legal-copy section {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .factor-stack article {
    grid-template-columns: 42px 1fr;
  }

  .factor-stack article p {
    grid-column: 2;
  }
}
