.page-home {
  background: rgb(253 253 251);
  color: rgb(var(--zoa-dark));
}

.container {
  width: min(var(--max-width), 100% - 56px);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgb(76 145 96);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid rgb(225 230 224);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgb(var(--zoa-slate));
  font-size: 0.93rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: rgb(76 145 96);
  transition: width 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 840px);
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.9) sepia(0.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgb(16 24 20 / 0.66) 0%, rgb(16 24 20 / 0.18) 58%, rgb(16 24 20 / 0.06) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(54px, 9vh, 110px);
  color: rgb(255 255 255);
}

.hero__content h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.3rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero__content p {
  margin: 18px 0 0;
  max-width: 560px;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  color: rgb(237 242 238);
}

.hero__actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.btn--primary {
  background: rgb(var(--zoa-green));
  color: rgb(var(--zoa-white));
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: rgb(63 142 84);
}

.btn--ghost {
  background: rgb(var(--zoa-white));
  color: rgb(var(--zoa-dark));
  border-color: rgb(200 209 199);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgb(130 161 143);
  color: rgb(31 44 36);
}

.hero__link {
  color: rgb(241 245 242);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: rgb(255 255 255);
}

.accreditation-strip {
  padding-top: 44px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, rgb(248 245 239) 0%, rgb(252 250 246) 100%);
  border-bottom: 1px solid rgb(229 233 228);
  overflow: hidden;
}

.accreditation-strip__intro {
  max-width: 760px;
}

.accreditation-strip__stage {
  margin-top: 32px;
}

.accreditation-strip__rail {
  background: rgb(255 255 255);
  border-top: 1px solid rgb(224 228 223);
  border-bottom: 1px solid rgb(224 228 223);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgb(189 196 190) rgb(255 255 255);
}

.accreditation-strip__rail::-webkit-scrollbar {
  height: 10px;
}

.accreditation-strip__rail::-webkit-scrollbar-track {
  background: rgb(255 255 255);
}

.accreditation-strip__rail::-webkit-scrollbar-thumb {
  background: rgb(189 196 190);
  border-radius: 999px;
}

.accreditation-strip__grid {
  list-style: none;
  margin: 0;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(7, minmax(148px, 1fr));
  align-items: center;
  gap: 0;
  width: max(100%, 1180px);
}

.accreditation-card-item {
  border-left: 1px solid rgb(234 238 233);
  scroll-snap-align: center;
  background: transparent;
}

.accreditation-card-item:last-child {
  border-right: 1px solid rgb(234 238 233);
}

.accreditation-card {
  min-height: 98px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  outline: none;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.accreditation-card:hover,
.accreditation-card:focus-visible {
  background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(247 250 246) 100%);
  box-shadow: inset 0 -3px 0 rgb(85 172 104 / 0.22);
}

.accreditation-card img {
  width: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.18s ease;
}

.accreditation-card:hover img,
.accreditation-card:focus-visible img {
  transform: scale(1.03);
}

.accreditation-strip__detail {
  position: relative;
  isolation: isolate;
  width: min(780px, calc(100% - 40px));
  margin: 26px auto 0;
  padding: 18px 28px 10px;
  text-align: center;
  min-height: 110px;
}

.accreditation-strip__detail::before {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, rgb(76 145 96 / 0) 0%, rgb(76 145 96 / 0.82) 50%, rgb(76 145 96 / 0) 100%);
}

.accreditation-strip__detail::after {
  content: "";
  position: absolute;
  inset: 8px 18% auto;
  height: 94px;
  background: radial-gradient(circle, rgb(111 164 120 / 0.2) 0%, rgb(111 164 120 / 0.08) 42%, rgb(111 164 120 / 0) 75%);
  filter: blur(18px);
  z-index: -1;
  pointer-events: none;
}

.accreditation-strip__detail-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: rgb(27 52 38);
  font-weight: 600;
}

.accreditation-strip__detail-copy {
  margin: 12px auto 0;
  max-width: 580px;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.7;
  color: rgb(71 84 75);
}

.estimate-entry {
  background: rgb(255 255 255);
}

.about-strip {
  background: rgb(250 247 240);
}

.estimate-entry__mission {
  margin: 0;
  padding: 20px 22px;
  border: 2px solid rgb(67 145 88);
  background: linear-gradient(160deg, rgb(246 251 246) 0%, rgb(242 248 244) 100%);
}

.estimate-entry__mission h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgb(27 52 38);
}

.estimate-entry__mission p {
  margin: 12px 0 0;
  max-width: 940px;
  font-size: 1rem;
  line-height: 1.62;
  color: rgb(64 81 70);
}

.estimate-entry__gallery-link {
  display: inline-flex;
  margin-top: 22px;
  color: rgb(36 121 63);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.estimate-entry__intro {
  max-width: 760px;
  margin: 0 0 28px;
}

.price-estimator {
  border: 1px solid rgb(223 228 222);
  background: rgb(252 253 250);
  box-shadow: 0 24px 38px rgb(22 39 30 / 0.06);
}

.price-estimator__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 0;
}

.price-estimator__controls {
  padding: 26px;
  background: linear-gradient(160deg, rgb(248 251 247) 0%, rgb(243 248 243) 100%);
  border-right: 1px solid rgb(223 228 222);
}

.price-estimator__results {
  padding: 26px;
  background: rgb(255 255 255);
}

.price-estimator__results h3 {
  margin: 8px 0 0;
  font-size: 1.2rem;
}

.estimate-entry__step {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(82 141 99);
  font-weight: 700;
}

.estimate-total {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgb(24 49 34);
}

.estimate-price-card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgb(205 216 206);
  background: linear-gradient(160deg, rgb(245 249 245) 0%, rgb(252 253 250) 100%);
}

.estimate-price-card__label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(76 134 93);
  font-weight: 700;
}

.estimate-secondary {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgb(216 225 216);
}

.estimate-secondary__label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgb(82 125 95);
  font-weight: 700;
}

.estimate-secondary__value {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgb(27 52 38);
}

.estimate-secondary__caption {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: rgb(88 101 93);
}

.estimate-secondary__value--saving {
  color: rgb(39 108 70);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.estimate-savings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgb(216 225 216);
}

.estimate-savings-item {
  padding: 14px;
  border: 1px solid rgb(214 223 214);
  background: rgb(250 252 249);
}

.estimate-savings-item__value {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: rgb(30 57 42);
}

.estimate-projection {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgb(216 225 216);
}

.estimate-projection__chart {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}

.estimate-projection__axis {
  stroke: rgb(163 176 166);
  stroke-width: 1.2;
}

.estimate-projection__grid-line {
  stroke: rgb(224 232 224);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.estimate-projection__line {
  fill: none;
  stroke: rgb(55 127 76);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.estimate-projection__area {
  fill: rgb(93 165 111 / 0.12);
}

.estimate-projection__point {
  fill: rgb(255 255 255);
  stroke: rgb(55 127 76);
  stroke-width: 2;
}

.estimate-projection__tick,
.estimate-projection__x-label {
  fill: rgb(92 104 97);
  font-size: 11px;
}

.estimate-projection__caption,
.estimate-disclaimer {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgb(88 101 93);
}

.estimate-range {
  margin: 12px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgb(65 75 69);
}

.range-number-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 12px;
  align-items: center;
}

.range-number-control input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, rgb(86 164 104) 0%, rgb(144 196 157) 100%);
  padding: 0;
}

.range-number-control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgb(255 255 255);
  background: rgb(55 127 76);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
  cursor: pointer;
}

.range-number-control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgb(255 255 255);
  background: rgb(55 127 76);
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.2);
  cursor: pointer;
}

.form-hint {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: rgb(99 111 104);
}

.form-hint--warn {
  color: rgb(134 88 30);
  font-weight: 700;
}

.choice-group {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 8px;
}

.choice-group legend {
  margin-bottom: 2px;
  font-size: 0.86rem;
  font-weight: 700;
  color: rgb(var(--zoa-slate));
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.choice-card {
  display: block;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 66px;
  border: 1px solid rgb(206 216 207);
  background: rgb(255 255 255);
  padding: 10px 11px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.choice-card__body strong {
  font-size: 0.92rem;
  color: rgb(26 44 33);
}

.choice-card__body small {
  margin-top: 2px;
  font-size: 0.77rem;
  color: rgb(92 105 97);
}

.choice-card input:checked + .choice-card__body {
  border-color: rgb(73 152 93);
  background: rgb(240 247 242);
  transform: translateY(-1px);
}

.choice-card input:focus-visible + .choice-card__body {
  outline: 2px solid rgb(var(--zoa-green) / 0.35);
  outline-offset: 2px;
}

.choice-card input:disabled + .choice-card__body {
  opacity: 0.56;
  border-color: rgb(218 223 217);
  background: rgb(248 249 248);
}

.estimate-cta {
  margin-top: 18px;
  border-top: 1px solid rgb(223 228 222);
  padding-top: 16px;
  display: grid;
  gap: 10px;
}

.estimate-cta h4 {
  margin: 0;
  font-size: 1.15rem;
}

.estimate-cta p {
  color: rgb(70 83 74);
  line-height: 1.5;
}

.estimate-cta__micro {
  margin: 0;
  font-size: 0.82rem;
  color: rgb(52 122 72);
  font-weight: 700;
}

.full-quote-stage {
  margin-top: 20px;
  border-top: 1px solid rgb(223 228 222);
  padding: 20px 26px 0;
}

.full-quote-stage__intro {
  margin-top: 10px;
  max-width: 820px;
}

.philosophy {
  background: rgb(250 247 240);
}

.philosophy__inner {
  max-width: 740px;
}

.philosophy h2,
.estimate-entry__intro h2,
.accreditation-strip h2,
.mission h2,
.process h2,
.included__copy h2,
.estimate-output__head h2,
.conversion h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.philosophy p,
.mission p,
.section-lead,
.timeline p,
.included-list li,
.metric h3,
.estimate-assumptions p {
  color: rgb(var(--zoa-slate));
}

.philosophy p {
  margin: 18px 0 0;
  font-size: 1.1rem;
  line-height: 1.62;
}

.mission {
  background: rgb(250 247 240);
}

.mission__inner {
  max-width: 760px;
}

.mission p {
  margin: 18px 0 0;
  font-size: 1.1rem;
  line-height: 1.62;
}

.included {
  background: rgb(252 252 249);
}

.included__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 46px;
  align-items: center;
}

.included__media {
  height: clamp(300px, 35vw, 380px);
}

.included__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.95) sepia(0.05);
}

.included__copy {
  max-width: 560px;
}

.included-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.included-list li {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgb(226 231 224);
  font-size: 1rem;
  line-height: 1.55;
}

.included-list strong {
  display: inline-block;
  margin-right: 8px;
  color: rgb(var(--zoa-dark));
  font-weight: 700;
}

.process {
  background: rgb(246 242 234);
}

.timeline {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline li {
  position: relative;
  padding-top: 28px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgb(86 160 105);
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 18px;
  right: -9px;
  height: 1px;
  background: rgb(191 203 194);
}

.timeline li:last-child::after {
  display: none;
}

.timeline h3 {
  margin: 0;
  font-size: 1.1rem;
}

.timeline p {
  margin: 9px 0 0;
  font-size: 0.97rem;
  line-height: 1.55;
}

.process-support {
  margin: 30px 0 0;
  max-width: 760px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgb(var(--zoa-slate));
}

.estimate-output {
  padding-top: 86px;
  background: rgb(255 255 255);
}

.estimate-output__card {
  border-top: 1px solid rgb(224 228 223);
  padding-top: 38px;
}

.estimate-output__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.estimate-output__warning {
  margin: 0;
  font-size: 0.9rem;
  color: rgb(61 132 81);
  font-weight: 700;
}

.metric-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.metric-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.metric p {
  margin: 9px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: rgb(var(--zoa-dark));
}

.estimate-assumptions {
  margin-top: 18px;
  border-top: 1px solid rgb(226 231 224);
  padding-top: 16px;
}

.estimate-assumptions summary {
  cursor: pointer;
  font-weight: 700;
}

.estimate-assumptions ul {
  margin: 10px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgb(var(--zoa-slate));
}

.full-quote-lists {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.full-quote-lists h3 {
  margin: 0;
  font-size: 0.95rem;
}

.full-quote-lists ul {
  margin: 10px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
  color: rgb(var(--zoa-slate));
}

.full-quote-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.full-quote-contact {
  margin: 12px 0 0;
  color: rgb(var(--zoa-slate));
}

.full-quote-contact a {
  color: rgb(36 121 63);
  font-weight: 700;
}

.conversion {
  padding-top: 64px;
}

.conversion__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 32px;
  align-items: start;
}

.section-lead {
  margin: 16px 0 0;
  font-size: 1.05rem;
  line-height: 1.58;
}

.lead-card {
  border-top: 1px solid rgb(226 231 224);
  padding-top: 6px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgb(var(--zoa-slate));
}

.form-field input,
.form-field select,
.lead-form input,
.lead-form select,
.estimate-wizard input:not([type="range"]),
.estimate-wizard select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgb(210 218 209);
  border-radius: 0;
  background: rgb(255 255 255);
  padding: 10px 12px;
  font-size: 0.95rem;
}

.form-field input:focus,
.form-field select:focus,
.lead-form input:focus,
.lead-form select:focus,
.estimate-wizard input:not([type="range"]):focus,
.estimate-wizard select:focus {
  outline: none;
  border-color: rgb(var(--zoa-green));
  box-shadow: 0 0 0 2px rgb(var(--zoa-green) / 0.14);
}

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

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

.form-feedback {
  margin: 0;
  min-height: 22px;
  font-size: 0.9rem;
  color: rgb(var(--zoa-slate));
}

.form-feedback.is-error {
  color: rgb(163 29 29);
}

.form-feedback.is-success {
  color: rgb(37 121 63);
}

.estimate-wizard {
  margin-top: 14px;
  display: grid;
  gap: 16px;
}

.estimate-step {
  display: grid;
  gap: 14px;
}

.estimate-wizard__actions {
  display: flex;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid rgb(226 231 224);
  padding: 30px 0 38px;
  color: rgb(var(--zoa-slate));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.media-credit {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.76rem;
  color: rgb(120 128 122);
}

@media (max-width: 1100px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline li:nth-child(2)::after,
  .timeline li:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 84px 0;
  }

  .accreditation-strip {
    padding-top: 40px;
    padding-bottom: 46px;
  }

  .accreditation-strip__grid {
    width: max(1040px, 100%);
  }

  .header__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .included__grid,
  .conversion__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero__content {
    padding-bottom: 52px;
  }

  .price-estimator__grid {
    grid-template-columns: 1fr;
  }

  .price-estimator__controls {
    border-right: 0;
    border-bottom: 1px solid rgb(223 228 222);
  }

  .price-estimator__controls,
  .price-estimator__results {
    padding: 22px;
  }

  .estimate-entry__mission {
    padding: 18px;
  }

  .full-quote-stage {
    padding: 20px 22px 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), 100% - 30px);
  }

  .accreditation-strip__stage {
    margin-top: 24px;
  }

  .accreditation-strip__grid {
    width: max(920px, 100%);
    padding: 16px 18px;
  }

  .accreditation-card {
    min-height: 82px;
    padding: 12px 14px;
  }

  .accreditation-card img {
    max-height: 40px;
  }

  .accreditation-strip__detail {
    width: min(720px, calc(100% - 30px));
    padding: 14px 18px 6px;
    min-height: 126px;
  }

  .accreditation-strip__detail::before {
    margin-bottom: 16px;
  }

  .accreditation-strip__detail::after {
    inset: 10px 12% auto;
    height: 86px;
  }

  .hero {
    min-height: 520px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn {
    width: 100%;
  }

  .timeline,
  .metric-grid,
  .lead-actions,
  .form-field--split,
  .choice-grid,
  .estimate-savings-grid {
    grid-template-columns: 1fr;
  }

  .timeline li::after {
    display: none;
  }

  .range-number-control {
    grid-template-columns: 1fr;
  }

  .price-estimator__controls,
  .price-estimator__results,
  .full-quote-stage {
    padding-left: 16px;
    padding-right: 16px;
  }

  .estimate-entry__mission {
    padding: 16px;
  }

  .estimate-wizard__actions {
    flex-direction: column;
  }
}
