.carpet-cleaning-customer-page {
  --cc-navy: #0f2233;
  --cc-muted: #51677a;
  --cc-blue: #2563eb;
  --cc-blue-dark: #1d4ed8;
  --cc-teal: #0f9aa8;
  --cc-green: #16a34a;
  --cc-soft: #f6fbff;
  --cc-border: #d9e8f5;
  --cc-shadow: 0 20px 52px rgba(15, 34, 51, 0.08);
  color: var(--cc-navy);
  background: var(--cc-soft);
}

.carpet-cleaning-customer-page .cc-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.carpet-cleaning-customer-page .cc-icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cc-container {
  width: min(1360px, calc(100% - 48px));
  margin: 0 auto;
}

.cc-main {
  overflow: hidden;
  background: var(--cc-soft);
}

.cc-hero {
  position: relative;
  padding: 40px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 35%, rgba(181, 218, 255, 0.44) 0 118px, transparent 119px),
    radial-gradient(circle at 72% 15%, rgba(255, 255, 255, 0.98) 0 180px, transparent 181px),
    radial-gradient(circle at 100% 48%, rgba(195, 226, 255, 0.48) 0 220px, transparent 221px),
    linear-gradient(135deg, #fbfeff 0%, #edf7ff 54%, #f8fcff 100%);
}

.cc-hero::before,
.cc-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cc-hero::before {
  top: 58px;
  right: 4.5%;
  width: 136px;
  height: 136px;
  opacity: 0.55;
  background-image: radial-gradient(circle, #8cc4f7 3px, transparent 3.7px);
  background-size: 20px 20px;
}

.cc-hero::after {
  bottom: 100px;
  left: 45%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(198, 228, 255, 0.34);
}

.cc-breadcrumb {
  position: relative;
  z-index: 4;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 30px;
  color: var(--cc-blue-dark);
  font-size: 1.06rem;
  font-weight: 850;
}

.cc-breadcrumb:hover {
  color: #143ea8;
  text-decoration: none;
}

.cc-breadcrumb .cc-icon {
  width: 20px;
  height: 20px;
}

.cc-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
  gap: 50px;
  align-items: center;
}

.cc-hero-copy {
  position: relative;
  z-index: 3;
}

.cc-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-pill-row span {
  display: inline-flex;
  min-height: 36px;
  padding: 6px 15px;
  align-items: center;
  border: 1px solid #acd1ff;
  border-radius: 999px;
  color: #1555c5;
  background: #eaf4ff;
  font-size: 0.96rem;
  font-weight: 850;
}

.cc-pill-row span + span {
  border-color: #ccece4;
  color: #0b785d;
  background: #e9f8f3;
}

.cc-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  color: var(--cc-navy);
  font-size: clamp(4rem, 6vw, 6.4rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.cc-hero-copy h1 span {
  display: block;
}

.cc-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--cc-muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.cc-hero-art {
  position: relative;
  min-width: 0;
  min-height: 520px;
  isolation: isolate;
}

.cc-art-blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: rgba(174, 213, 255, 0.46);
  filter: blur(1px);
}

.cc-art-blob-one {
  top: 28px;
  left: 50px;
  width: 235px;
  height: 235px;
}

.cc-art-blob-two {
  right: 35px;
  bottom: 22px;
  width: 300px;
  height: 300px;
  background: rgba(215, 237, 255, 0.62);
}

.cc-hero-illustration {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cc-hero-summary {
  position: absolute;
  top: 110px;
  left: 20px;
  z-index: 5;
  width: 196px;
  padding: 20px;
  border: 1px solid rgba(185, 213, 238, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 45px rgba(29, 78, 140, 0.15);
  backdrop-filter: blur(12px);
}

.cc-hero-summary > strong,
.cc-hero-summary > span,
.cc-hero-summary > b {
  display: block;
}

.cc-hero-summary > strong {
  margin-bottom: 15px;
  color: #14283d;
  font-size: 0.98rem;
}

.cc-hero-summary > span {
  color: #657b8f;
  font-size: 0.76rem;
}

.cc-hero-summary > b {
  margin: 2px 0 14px;
  color: var(--cc-blue-dark);
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.cc-hero-summary > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid #e0eaf3;
}

.cc-hero-summary > div span {
  color: #668094;
  font-size: 0.72rem;
}

.cc-hero-summary em {
  display: block;
  margin-top: 2px;
  color: #0f8a4c;
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 900;
}

.cc-hero-summary span + span em {
  color: var(--cc-blue-dark);
}

.cc-calculator-section {
  position: relative;
  z-index: 5;
  padding: 0 0 38px;
  background:
    linear-gradient(180deg, rgba(238, 248, 255, 0.84), rgba(246, 251, 255, 0.98));
}

.cc-calculator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  gap: 32px;
  align-items: start;
}

.cc-card,
.cc-content-card {
  min-width: 0;
  border: 1px solid var(--cc-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--cc-shadow);
}

.cc-form-card,
.cc-results-card {
  padding: 32px;
}

.cc-card-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.cc-heading-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: var(--cc-blue-dark);
  background: #e6f0ff;
}

.cc-heading-icon .cc-icon {
  width: 30px;
  height: 30px;
  stroke-width: 2.2;
}

.cc-card-heading h2,
.cc-results-card h2 {
  margin: 0;
  color: #102338;
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.cc-card-heading p {
  margin: 7px 0 0;
  color: var(--cc-muted);
  font-size: 1rem;
  line-height: 1.5;
}

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

.cc-input-group {
  display: grid;
  gap: 9px;
}

.cc-input-group label,
.cc-addons legend {
  color: #20364a;
  font-size: 1rem;
  font-weight: 850;
}

.cc-input-group label {
  display: flex;
  gap: 9px;
  align-items: center;
}

.cc-input-group label .cc-icon {
  width: 20px;
  height: 20px;
  color: #377bb9;
  stroke-width: 2.15;
}

.cc-input-group select {
  min-height: 58px;
  padding: 0 48px 0 16px;
  border: 1px solid #cbdce9;
  border-radius: 12px;
  color: #253b4f;
  font-size: 1rem;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23425b71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-shadow: 0 4px 12px rgba(28, 76, 112, 0.03);
  appearance: none;
}

.cc-input-group select:focus {
  border-color: #66a7e9;
  outline: 3px solid rgba(37, 99, 235, 0.13);
}

.cc-addons {
  grid-column: 1 / -1;
  padding: 0;
  margin: 2px 0 0;
  border: 0;
}

.cc-addons legend {
  margin-bottom: 11px;
}

.cc-addons legend span {
  color: #6d8193;
  font-size: 0.92rem;
  font-weight: 650;
}

.cc-check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cc-check-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  min-height: 54px;
  padding: 12px 13px;
  border: 1px solid #d5e2ed;
  border-radius: 12px;
  color: #20364a;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.cc-check-option:hover {
  border-color: #9fc7e8;
  transform: translateY(-1px);
}

.cc-check-option:has(input:checked) {
  border-color: #78aef0;
  background: #f0f6ff;
}

.cc-check-option input {
  width: 19px;
  height: 19px;
  min-height: 0;
  margin: 0;
  accent-color: var(--cc-blue);
}

.cc-check-option b {
  color: var(--cc-blue-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.cc-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(150px, 0.65fr);
  gap: 12px;
  margin-top: 26px;
}

.cc-button {
  display: inline-flex;
  min-height: 60px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.cc-button:hover {
  transform: translateY(-1px);
}

.cc-button .cc-icon {
  width: 19px;
  height: 19px;
}

.cc-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cc-blue), var(--cc-blue-dark));
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.23);
}

.cc-button-primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1d5bd7, #173eaf);
}

.cc-button-reset {
  color: #25394c;
  border-color: #cbdbe8;
  background: #ffffff;
}

.cc-button-reset:hover {
  background: #f3f8fc;
}

.cc-trust-note {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin: 17px 0 0;
  color: #6a8093;
  font-size: 0.94rem;
}

.cc-trust-note .cc-icon {
  width: 18px;
  height: 18px;
  color: var(--cc-blue);
}

.cc-results-card {
  position: sticky;
  top: 108px;
  background:
    radial-gradient(circle at 90% 8%, rgba(204, 232, 255, 0.6), transparent 31%),
    linear-gradient(150deg, #f7fbff, #edf7ff);
}

.cc-results-card h2 {
  margin-bottom: 24px;
  text-align: center;
}

.cc-featured-result {
  display: flex;
  min-height: 242px;
  padding: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdcf5;
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(190, 236, 232, 0.42), transparent 38%),
    #ffffff;
  box-shadow: 0 12px 30px rgba(35, 111, 158, 0.08);
  text-align: center;
}

.cc-result-kicker {
  display: inline-flex;
  min-height: 34px;
  padding: 6px 17px;
  align-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #16844e;
  background: #e5f8ed;
  font-size: 0.94rem;
  font-weight: 850;
}

.cc-result-label {
  color: #40566b;
  font-size: 1rem;
  font-weight: 800;
}

.cc-featured-result strong {
  margin-top: 7px;
  color: var(--cc-blue);
  font-size: clamp(4rem, 6vw, 5.7rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.cc-secondary-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.cc-secondary-results > div {
  display: flex;
  min-height: 126px;
  padding: 21px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5e3ef;
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
}

.cc-secondary-results strong {
  margin-top: 5px;
  color: var(--cc-blue);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.cc-secondary-results > div:first-child strong {
  color: #07843c;
}

.cc-result-note {
  margin: 24px 3px 20px;
  color: #4d6479;
  font-size: 1rem;
  line-height: 1.65;
}

.cc-disclaimer {
  display: flex;
  gap: 13px;
  padding: 18px;
  border: 1px solid #cfe2f4;
  border-radius: 15px;
  color: #4e667c;
  background: rgba(255, 255, 255, 0.7);
}

.cc-disclaimer .cc-icon {
  width: 27px;
  height: 27px;
  padding: 3px;
  border-radius: 8px;
  color: var(--cc-blue);
  background: #e4efff;
}

.cc-disclaimer p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.cc-results-updated .cc-featured-result strong,
.cc-results-updated .cc-secondary-results strong {
  animation: cc-result-pop 360ms ease;
}

@keyframes cc-result-pop {
  0% { opacity: 0.45; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}

.cc-content-section {
  padding: 8px 0 46px;
  background: var(--cc-soft);
}

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

.cc-content-card {
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(38, 85, 120, 0.065);
}

.cc-how-card {
  grid-column: span 4;
}

.cc-factors-card {
  grid-column: span 8;
}

.cc-comparison-card,
.cc-related-card,
.cc-example-card {
  grid-column: span 4;
}

.cc-guides-card {
  grid-column: span 12;
}

.cc-guides-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.cc-section-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.cc-section-heading h2,
.cc-content-card h2 {
  margin: 0;
  color: #102338;
  font-size: clamp(1.38rem, 1.8vw, 1.85rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.cc-section-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
}

.cc-section-icon .cc-icon {
  width: 27px;
  height: 27px;
  stroke-width: 2.2;
}

.cc-icon-blue {
  color: #1d65c1;
  background: #e5f0ff;
}

.cc-icon-green {
  color: #168550;
  background: #e6f7ed;
}

.cc-icon-teal {
  color: #087f94;
  background: #e2f7fa;
}

.cc-icon-purple {
  color: #6946d5;
  background: #efeaff;
}

.cc-content-card p,
.cc-content-card li,
.cc-content-card table {
  font-size: 1rem;
  line-height: 1.65;
}

.cc-content-card p {
  margin: 0 0 15px;
  color: #53697c;
}

.cc-content-card p:last-child {
  margin-bottom: 0;
}

.cc-coming-link {
  color: var(--cc-blue-dark) !important;
  font-weight: 850;
}

.cc-table-wrap {
  overflow: hidden;
  border: 1px solid #d8e5f0;
  border-radius: 15px;
}

.cc-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.cc-table-wrap th,
.cc-table-wrap td {
  padding: 12px 14px;
  border-bottom: 1px solid #e0e9f1;
  text-align: left;
  vertical-align: top;
}

.cc-table-wrap th {
  color: #1559ab;
  background: linear-gradient(90deg, #e8f2ff, #eff7ff);
  font-weight: 900;
}

.cc-table-wrap td:first-child {
  width: 29%;
  color: #1a3144;
  font-weight: 850;
}

.cc-table-wrap tr:nth-child(even) td {
  background: #fbfdff;
}

.cc-table-wrap tr:last-child td {
  border-bottom: 0;
}

.cc-related-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cc-related-card li + li {
  border-top: 1px solid #e1eaf2;
}

.cc-related-card a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--cc-blue-dark);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.4;
}

.cc-related-card a:hover {
  color: #143ea8;
  text-decoration: none;
}

.cc-related-card a .cc-icon {
  width: 18px;
  height: 18px;
  transition: transform 150ms ease;
}

.cc-related-card a:hover .cc-icon {
  transform: translateX(3px);
}

.cc-faq-card {
  margin-top: 24px;
}

.cc-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
}

.cc-faq-column {
  min-width: 0;
}

.cc-faq-list details {
  border: 0;
  border-bottom: 1px solid #dfe8f0;
  border-radius: 0;
  background: #ffffff;
}

.cc-faq-column details:last-child {
  border-bottom: 0;
}

.cc-faq-list summary {
  display: flex;
  min-height: 66px;
  padding: 14px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #1c3448;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.cc-faq-list summary::-webkit-details-marker {
  display: none;
}

.cc-faq-list summary:focus {
  outline: none;
}

.cc-faq-list summary:focus-visible {
  border-radius: 10px;
  outline: 3px solid rgba(37, 99, 235, 0.16);
  outline-offset: 2px;
  background: #f5f9ff;
}

.cc-faq-list summary .cc-icon {
  width: 18px;
  height: 18px;
  color: #385d7d;
  transition: transform 160ms ease;
}

.cc-faq-list details[open] summary .cc-icon {
  transform: rotate(180deg);
}

.cc-faq-list details p {
  padding: 0 38px 20px 4px;
  margin: 0;
  color: #53697c;
  font-size: 0.96rem;
  line-height: 1.68;
}

.carpet-cleaning-customer-page .site-footer {
  padding: 52px 0;
  margin-top: 0;
  color: #dce8f0;
  background: #071d2b;
}

.cc-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(150px, 0.8fr));
  gap: 42px;
}

.carpet-cleaning-customer-page .footer-brand,
.carpet-cleaning-customer-page .site-footer h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 900;
}

.carpet-cleaning-customer-page .footer-disclaimer {
  max-width: 440px;
  margin: 0;
  color: #bdd0dc;
  font-size: 0.94rem;
  line-height: 1.7;
}

.carpet-cleaning-customer-page .footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.carpet-cleaning-customer-page .footer-list li + li {
  margin-top: 8px;
}

.carpet-cleaning-customer-page .site-footer a {
  color: #d5e8f3;
  font-size: 0.9rem;
  line-height: 1.45;
}

.carpet-cleaning-customer-page .site-footer a:hover {
  color: #ffffff;
}

@media (max-width: 1220px) {
  .cc-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
    gap: 28px;
  }

  .cc-hero-copy h1 {
    font-size: clamp(3.8rem, 6vw, 5.2rem);
  }

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

  .cc-footer-grid {
    grid-template-columns: minmax(260px, 1.4fr) repeat(2, minmax(180px, 0.8fr));
  }
}

@media (max-width: 1040px) {
  .cc-hero {
    padding-top: 30px;
  }

  .cc-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cc-hero-copy {
    max-width: 860px;
  }

  .cc-hero-copy h1 {
    font-size: clamp(4rem, 9vw, 5.8rem);
  }

  .cc-hero-art {
    width: min(100%, 820px);
    min-height: 520px;
    margin: 0 auto;
  }

  .cc-calculator-grid {
    grid-template-columns: 1fr;
  }

  .cc-results-card {
    position: static;
  }

  .cc-how-card,
  .cc-comparison-card,
  .cc-related-card,
  .cc-example-card {
    grid-column: span 6;
  }

  .cc-guides-card {
    grid-column: span 12;
  }

  .cc-factors-card {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .cc-content-grid {
    gap: 18px;
  }

  .cc-how-card,
  .cc-factors-card,
  .cc-comparison-card,
  .cc-related-card,
  .cc-example-card {
    grid-column: span 12;
  }

  .cc-guides-card ul {
    grid-template-columns: 1fr;
  }

  .cc-faq-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cc-faq-column:first-child details:last-child {
    border-bottom: 1px solid #dfe8f0;
  }

  .cc-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  .cc-footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .cc-container {
    width: min(calc(100% - 32px), 1360px);
  }

  .cc-hero {
    padding: 24px 0 34px;
  }

  .cc-breadcrumb {
    margin-bottom: 20px;
  }

  .cc-hero-copy h1 {
    margin: 18px 0;
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .cc-hero-copy p {
    font-size: 1.06rem;
    line-height: 1.65;
  }

  .cc-hero-art {
    min-height: 350px;
  }

  .cc-hero-summary {
    top: 48px;
    left: 0;
    width: 162px;
    padding: 15px;
  }

  .cc-hero-summary > strong {
    margin-bottom: 10px;
    font-size: 0.8rem;
  }

  .cc-hero-summary > b {
    font-size: 1.35rem;
  }

  .cc-hero-summary > div {
    gap: 5px;
  }

  .cc-calculator-grid {
    gap: 20px;
  }

  .cc-form-card,
  .cc-results-card,
  .cc-content-card {
    padding: 22px;
    border-radius: 22px;
  }

  .cc-card-heading {
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .cc-heading-icon {
    width: 50px;
    height: 50px;
  }

  .cc-card-heading h2,
  .cc-results-card h2 {
    font-size: 1.55rem;
  }

  .cc-form-grid,
  .cc-check-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cc-addons {
    grid-column: auto;
  }

  .cc-check-option {
    font-size: 0.94rem;
  }

  .cc-form-actions {
    grid-template-columns: 1fr;
  }

  .cc-button {
    width: 100%;
  }

  .cc-trust-note {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .cc-featured-result {
    min-height: 210px;
    padding: 24px 16px;
  }

  .cc-featured-result strong {
    font-size: clamp(3.5rem, 17vw, 4.5rem);
  }

  .cc-secondary-results {
    grid-template-columns: 1fr;
  }

  .cc-secondary-results > div {
    min-height: 100px;
  }

  .cc-section-heading {
    align-items: flex-start;
  }

  .cc-table-wrap {
    overflow-x: auto;
  }

  .cc-table-wrap table {
    min-width: 620px;
  }

  .cc-footer-grid {
    grid-template-columns: 1fr;
  }

  .cc-footer-intro {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carpet-cleaning-customer-page *,
  .carpet-cleaning-customer-page *::before,
  .carpet-cleaning-customer-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
