:root {
  --navy: #06265b;
  --deep: #031945;
  --blue: #075dcc;
  --blue-2: #0b73f6;
  --gold: #f5ad18;
  --gold-2: #d98d00;
  --ink: #17243a;
  --muted: #5f6c7f;
  --line: #d7dfeb;
  --soft: #f6f9fd;
  --white: #fff;
  --shadow: 0 12px 34px rgba(6, 38, 91, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 8px max(24px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(215, 223, 235, 0.88);
}

.brand img {
  width: 96px;
  height: 64px;
  object-fit: contain;
  border-radius: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: #14233c;
  font-size: 0.86rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.phone-link svg {
  width: 18px;
  height: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #096be8, #004eb8);
  box-shadow: 0 10px 20px rgba(7, 93, 204, 0.22);
}

.button-gold {
  color: #121b2d;
  background: linear-gradient(135deg, #ffc84a, var(--gold));
  box-shadow: 0 10px 20px rgba(245, 173, 24, 0.22);
}

.button-outline {
  color: var(--blue);
  background: var(--white);
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle svg {
  width: 30px;
  height: 30px;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 43% 57%;
  max-width: 1120px;
  min-height: 392px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #fff 35%, rgba(255, 255, 255, 0.88) 43%, rgba(255, 255, 255, 0) 55%),
    #eef5fb;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0 36px 26px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 460px;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--blue);
}

h2 {
  color: var(--navy);
  font-size: 1.62rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  letter-spacing: 0;
}

.hero-lede {
  max-width: 465px;
  margin-bottom: 16px;
  color: #33435b;
  font-size: 0.92rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0 0 22px;
}

.trust-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0b224e;
  font-size: 0.78rem;
  font-weight: 900;
}

.trust-pills svg {
  width: 20px;
  height: 20px;
  padding: 5px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.hero-actions .button {
  min-width: 172px;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #4b596d;
  font-size: 0.82rem;
  font-weight: 750;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 25px;
  height: 25px;
  margin-right: -7px;
  place-items: center;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 950;
  background: var(--navy);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.stars {
  color: var(--gold);
  white-space: nowrap;
}

.hero-media {
  position: relative;
  min-height: 392px;
}

.hero-composite {
  width: 100%;
  height: 100%;
  min-height: 392px;
  object-fit: cover;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 22px 24px;
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 22px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-width: 0;
  padding: 10px 10px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 7px 18px rgba(3, 25, 69, 0.08);
}

.service-card img {
  width: 100%;
  height: 94px;
  object-fit: cover;
  border-radius: 6px;
}

.service-icon {
  position: absolute;
  top: -2px;
  left: 16px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 38, 91, 0.14);
}

.service-icon svg {
  width: 29px;
  height: 29px;
}

.service-card h3 {
  margin: 12px 0 4px;
  font-size: 0.92rem;
}

.service-card p {
  min-height: 62px;
  margin-bottom: 9px;
  color: #4d5a6d;
  font-size: 0.74rem;
  line-height: 1.3;
}

.service-card a {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--blue));
}

.feature-band > h2 {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.94rem;
  text-align: center;
  text-transform: uppercase;
}

.feature-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.36);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item svg {
  grid-row: span 2;
  width: 50px;
  height: 50px;
}

.feature-item h3 {
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
}

.feature-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  line-height: 1.28;
}

.process {
  display: grid;
  grid-template-columns: 32% minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.process h2 {
  margin-bottom: 8px;
}

.process > div > p:not(.eyebrow) {
  color: #5f6c7f;
  font-size: 0.85rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article {
  position: relative;
  min-height: 108px;
  padding: 28px 12px 14px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-grid article span {
  position: absolute;
  top: -18px;
  left: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  font-weight: 950;
  background: var(--blue);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
}

.process-grid h3 {
  margin-bottom: 4px;
  font-size: 0.78rem;
}

.process-grid p {
  margin: 0;
  color: #687589;
  font-size: 0.69rem;
  line-height: 1.25;
}

.reviews {
  display: grid;
  grid-template-columns: 28% minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  background: #fff;
}

.reviews-heading {
  display: grid;
  gap: 10px;
}

.review-score {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5c687b;
  font-size: 0.82rem;
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  min-height: 116px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 18px rgba(3, 25, 69, 0.05);
}

.review-card p {
  margin-bottom: 8px;
  color: #3a4658;
  font-size: 0.82rem;
}

.review-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.82rem;
}

.area-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 8px;
  padding: 26px 32px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 38, 91, 0.98), rgba(6, 38, 91, 0.84)),
    url("assets/images/area-truck.jpg") center right / auto 100% no-repeat,
    var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pin-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
}

.pin-icon svg {
  width: 38px;
  height: 38px;
}

.area-cta h2,
.area-cta p {
  margin-bottom: 4px;
  color: var(--white);
}

.area-cta h2 {
  font-size: 1.18rem;
}

.area-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 850;
}

.area-actions {
  display: grid;
  gap: 9px;
  justify-items: end;
}

.area-actions > a:not(.button) {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(135px, 1fr));
  gap: 32px;
  width: 100%;
  margin: 0;
  padding: 24px max(44px, calc((100vw - 1120px) / 2 + 44px)) 10px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
}

.footer-brand img {
  width: 126px;
  height: 78px;
  margin-bottom: 8px;
  object-fit: contain;
  border-radius: 0;
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
}

.quote-page {
  background:
    radial-gradient(circle at 92% 0%, rgba(8, 69, 148, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 50%, #fff 100%);
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 22px 28px;
}

.quote-page[data-quote-step="1"] .quote-shell {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.quote-page[data-quote-step="1"] .quote-summary {
  display: none;
}

.quote-form,
.quote-summary,
.summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(3, 25, 69, 0.08);
}

.quote-form {
  padding: 24px 30px 18px;
}

.stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 12px 28px;
}

.stepper::before {
  position: absolute;
  top: 17px;
  right: 11%;
  left: 11%;
  height: 2px;
  content: "";
  background: #cfd8e6;
}

.step-dot {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  justify-items: center;
  color: #687589;
  font-size: 0.68rem;
  font-weight: 950;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.step-dot span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #687589;
  background: var(--white);
  border: 2px solid #cfd8e6;
  border-radius: 50%;
}

.step-dot.active,
.step-dot.complete {
  color: var(--blue);
}

.step-dot.active span,
.step-dot.complete span {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
}

.quote-step h2 {
  margin-bottom: 6px;
  text-align: center;
  font-size: 1.58rem;
}

.quote-step > p {
  margin-bottom: 18px;
  color: #687589;
  text-align: center;
  font-size: 0.86rem;
}

.mobile-title {
  display: none;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.choice-card,
.radio-tile {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 106px;
  padding: 16px;
  color: #344054;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.choice-card {
  min-height: 218px;
  padding: 10px 14px 16px;
  text-align: center;
}

.choice-card > img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
}

.choice-card input,
.radio-tile input {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 17px;
  height: 17px;
  accent-color: var(--blue);
}

.choice-card.active,
.choice-card:has(input:checked),
.radio-tile:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(7, 93, 204, 0.11);
}

.choice-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: -33px auto 0;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(6, 38, 91, 0.12);
}

.choice-icon svg {
  width: 28px;
  height: 28px;
}

.choice-card strong,
.radio-tile span {
  color: var(--navy);
  font-weight: 950;
}

.choice-card small,
.radio-tile small {
  color: #687589;
  font-size: 0.76rem;
}

fieldset {
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

legend,
label {
  color: #14233c;
  font-weight: 900;
}

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

.option-group legend,
.add-on-list legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.cleaning-type,
.contact-method {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-method .radio-tile {
  min-height: 64px;
  align-content: center;
}

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

.full-field {
  grid-column: 1 / -1;
}

.form-grid label,
.quote-step > label {
  display: grid;
  gap: 7px;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: #26364f;
  background: var(--white);
  border: 1px solid #cbd5e3;
  border-radius: 7px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 93, 204, 0.12);
}

textarea {
  resize: vertical;
}

.add-on-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin-top: 20px;
}

.add-on-list label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #344054;
  font-size: 0.86rem;
}

.add-on-list input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--blue);
}

.add-on-list span {
  margin-left: auto;
  color: #687589;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.hidden {
  display: none !important;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  color: #687589;
  font-size: 0.78rem;
}

.privacy-note svg {
  width: 18px;
  height: 18px;
}

.success-message {
  margin-top: 16px;
  padding: 14px;
  color: #065f46;
  font-weight: 900;
  background: #ecfdf3;
  border: 1px solid #9ae6b4;
  border-radius: var(--radius);
}

.quote-summary {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.quote-summary h2 {
  margin-bottom: 16px;
  font-size: 1.14rem;
}

.quote-summary dl {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px 12px;
  margin: 0 0 18px;
}

.quote-summary dt {
  color: #687589;
  font-size: 0.78rem;
  font-weight: 950;
}

.quote-summary dd {
  min-width: 0;
  margin: 0;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 950;
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-call {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  color: var(--blue);
  font-weight: 950;
  background: #eef6ff;
  border-radius: var(--radius);
}

.summary-call svg {
  width: 22px;
  height: 22px;
}

.summary-card {
  padding: 16px;
  box-shadow: none;
}

.summary-card h3 {
  margin-bottom: 8px;
}

.summary-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #526174;
  font-size: 0.84rem;
}

.quote-benefits {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr minmax(240px, 0.9fr);
  gap: 28px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto 34px;
  padding: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-benefits h2,
.quote-benefits p {
  color: var(--white);
}

.quote-benefits h2 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.quote-benefits p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.quote-benefits svg {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.quote-benefits img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  border-radius: var(--radius);
}

.compact-footer {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.compact-footer .footer-brand img {
  margin: 0;
}

.compact-footer .footer-bottom {
  justify-content: center;
}

@media (max-width: 1160px) {
  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  body.menu-open .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    z-index: 30;
    display: grid;
    gap: 4px;
    justify-items: start;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .feature-item:nth-child(3) {
    border-right: 0;
  }

  .process,
  .reviews,
  .quote-shell {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px 18px;
  }

  .brand img {
    width: 96px;
    height: 64px;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header-actions .button {
    display: none;
  }

  .phone-link {
    font-size: 0.9rem;
  }

  body.menu-open .site-nav {
    top: 82px;
  }

  .hero {
    position: relative;
    display: block;
    min-height: 452px;
    padding: 0;
    background:
      linear-gradient(90deg, #fff 0%, #fff 50%, rgba(255, 255, 255, 0.72) 61%, rgba(255, 255, 255, 0) 100%),
      #eef5fb;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    width: 62%;
    padding: 22px 0 16px 18px;
  }

  .eyebrow {
    font-size: 0.58rem;
  }

  h1 {
    max-width: 265px;
    margin-bottom: 8px;
    font-size: 1.78rem;
    line-height: 1.04;
  }

  .hero-lede {
    max-width: 230px;
    margin-bottom: 10px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .trust-pills {
    gap: 7px 8px;
    margin-bottom: 12px;
  }

  .trust-pills span {
    gap: 5px;
    font-size: 0.55rem;
  }

  .trust-pills svg {
    width: 16px;
    height: 16px;
    padding: 4px;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
    max-width: 234px;
    margin-bottom: 12px;
  }

  .hero-actions .button {
    min-height: 34px;
    min-width: 0;
    font-size: 0.62rem;
  }

  .rating-row {
    max-width: 330px;
    gap: 6px;
    font-size: 0.62rem;
  }

  .avatar-stack span {
    width: 22px;
    height: 22px;
    font-size: 0.5rem;
  }

  .hero-media,
  .hero-composite {
    min-height: 286px;
  }

  .hero-media {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 36%;
    height: 286px;
  }

  .hero-composite {
    height: 100%;
  }

  .hero-composite {
    object-position: 39% center;
  }

  .section {
    padding: 24px 16px 20px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 1.05rem;
  }

  .service-grid {
    display: flex;
    gap: 12px;
    padding: 2px 12px 10px;
    margin: 0 -16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .service-card {
    flex: 0 0 142px;
    padding: 8px 8px 12px;
    scroll-snap-align: start;
  }

  .service-card img {
    height: 78px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    top: -2px;
    left: 10px;
  }

  .service-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-card h3 {
    font-size: 0.72rem;
  }

  .service-card p {
    min-height: 66px;
    font-size: 0.58rem;
  }

  .service-card a {
    font-size: 0.62rem;
  }

  .feature-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 16px 12px 18px;
  }

  .feature-band > h2 {
    display: none;
  }

  .feature-item {
    display: block;
    padding: 0 8px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.36);
  }

  .feature-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.36);
  }

  .feature-item svg {
    width: 34px;
    height: 34px;
    margin: 0 auto 6px;
  }

  .feature-item h3 {
    font-size: 0.55rem;
  }

  .feature-item p {
    font-size: 0.49rem;
  }

  .process {
    display: block;
  }

  .process-grid,
  .review-grid,
  .choice-grid,
  .form-grid,
  .option-group,
  .cleaning-type,
  .contact-method,
  .add-on-list,
  .quote-benefits,
  .compact-footer {
    grid-template-columns: 1fr;
  }

  .reviews {
    display: block;
  }

  .review-grid {
    margin-top: 12px;
  }

  .area-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 16px 0;
    padding: 20px;
  }

  .area-actions {
    justify-items: stretch;
  }

  .area-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px 22px 12px;
  }

  .footer-bottom {
    display: grid;
  }

  .quote-page .site-header {
    color: var(--white);
    background: linear-gradient(135deg, var(--deep), var(--blue));
  }

  .quote-page .menu-toggle,
  .quote-page .phone-link {
    color: var(--white);
  }

  .quote-page .phone-link {
    display: none;
  }

  .quote-page .header-actions .button {
    display: inline-flex;
    min-height: auto;
    padding: 0;
    color: var(--white);
    background: transparent;
    box-shadow: none;
  }

  .quote-shell {
    padding: 18px 16px 28px;
  }

  .quote-form {
    padding: 16px 18px;
  }

  .stepper {
    margin: 0 0 20px;
  }

  .step-dot {
    font-size: 0.56rem;
  }

  .step-dot span {
    width: 28px;
    height: 28px;
  }

  .quote-step h2,
  .quote-step > p {
    text-align: left;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: block;
  }

  .quote-step h2 {
    font-size: 1.32rem;
  }

  .choice-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 92px;
    padding: 14px;
    text-align: left;
  }

  .choice-card > img {
    grid-column: 3;
    grid-row: 1 / span 3;
    width: 58px;
    height: 58px;
  }

  .choice-icon {
    grid-row: 1 / span 3;
    width: 36px;
    height: 36px;
    margin: 0;
    border-radius: 7px;
    box-shadow: none;
  }

  .choice-icon svg {
    width: 23px;
    height: 23px;
  }

  .choice-card input {
    top: 18px;
    right: 14px;
    bottom: auto;
  }

  .radio-tile {
    min-height: 72px;
  }

  .form-actions {
    display: grid;
    justify-content: stretch;
  }

  .form-actions .button {
    width: 100%;
  }

  .quote-benefits {
    margin: 0 16px 28px;
  }
}
