/* Blog article layout: deep cleaning vs regular cleaning */
.article-shell {
  background: #ffffff;
}

.article-intro-card {
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 760px;
  color: #d7e0ee;
  font-size: 15px;
  line-height: 1.85;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.article-intro-card strong {
  color: #ffffff;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-content h2,
.article-content h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.article-content h2 {
  font-size: clamp(30px, 3vw, 40px);
  margin-top: 0;
}

.article-content h3 {
  font-size: 22px;
  margin-top: 0;
}

.article-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #4f607d;
  margin: 0 0 18px;
}

.article-content strong {
  color: var(--navy-deep);
}

.article-block {
  margin-bottom: 72px;
}

.article-block:last-child {
  margin-bottom: 0;
}

.article-aside {
  position: sticky;
  top: 110px;
}

.aside-card {
  background: #fff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(11, 30, 58, 0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.aside-card:last-child {
  margin-bottom: 0;
}

.aside-title {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-deep);
  margin: 0 0 16px;
}

.aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aside-list a {
  color: #4f607d;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.aside-list a:hover,
.aside-list a:focus {
  color: var(--navy-deep);
  border-bottom-color: rgba(11, 30, 58, 0.2);
}

.insight-note {
  border-left: 3px solid var(--gold);
  padding: 18px 20px;
  background: #f8fafc;
  border-radius: 0 14px 14px 0;
  margin: 26px 0;
}

.insight-note p {
  margin: 0;
  font-size: 15px;
  color: #43526d;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.comparison-column {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
  background: #fff;
}

.comparison-column.highlight {
  border-color: rgba(212, 175, 55, 0.36);
  box-shadow: 0 18px 40px rgba(11, 30, 58, 0.08);
}

.comparison-head {
  padding: 20px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: #0b1e3a;
}

.comparison-column.highlight .comparison-head {
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #051329;
}

.comparison-body {
  padding: 22px;
}

.comparison-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-body li {
  position: relative;
  padding-left: 26px;
  color: #465876;
  font-size: 15px;
  line-height: 1.7;
}

.comparison-body li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.4;
}

.mini-chart-wrap {
  margin-top: 28px;
  background: #fff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
  padding: 24px;
}

.mini-chart-title {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy-deep);
  margin: 0 0 18px;
}

.chart-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chart-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 56px;
  gap: 14px;
  align-items: center;
}

.chart-label {
  font-size: 14px;
  font-weight: 700;
  color: #31415d;
}

.chart-track {
  height: 14px;
  border-radius: 999px;
  background: #e8edf5;
  overflow: hidden;
  position: relative;
}

.chart-fill {
  height: 100%;
  border-radius: 999px;
}

.chart-fill.regular {
  width: 42%;
  background: linear-gradient(90deg, #6d84b8 0%, #4f6696 100%);
}

.chart-fill.deep {
  width: 78%;
  background: linear-gradient(90deg, #d4af37 0%, #b89628 100%);
}

.chart-fill.reno {
  width: 96%;
  background: linear-gradient(90deg, #0b2347 0%, #071a36 100%);
}

.chart-value {
  font-size: 13px;
  font-weight: 800;
  color: #31415d;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.article-cta-box {
  padding: 34px 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #0b2347 0%, #071a36 100%);
  color: #d9e3f3;
  box-shadow: 0 20px 48px rgba(5, 19, 41, 0.18);
}

.article-cta-box h3 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 28px;
}

.article-cta-box p {
  color: #d9e3f3;
  margin-bottom: 24px;
}

.faq-answer ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.faq-answer li {
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .article-intro-card {
    padding: 20px 18px;
    font-size: 14px;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chart-value {
    text-align: left;
  }
}

/* Deep Cleaning vs Regular Cleaning page refinements */
.article-intro-card {
  margin-bottom: 36px;
}

.hero-content .hero-btns {
  margin-top: 0;
}

.service-links-bridge {
  position: relative;
  margin-top: -8px;
  padding: 18px 0 34px;
  background: #ffffff;
}

.service-links-bridge-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 28px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.10);
  box-shadow: 0 14px 30px rgba(11, 30, 58, 0.10);
}

.service-links-bridge-text {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: #0b1e3a;
  font-weight: 500;
}


.service-links-bridge-text a {
  color: var(--navy-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 30, 58, 0.18);
}

.service-links-bridge-text a:hover,
.service-links-bridge-text a:focus {
  border-bottom-color: rgba(11, 30, 58, 0.42);
}

.mini-chart-wrap {
  padding: 28px 28px 24px;
}

.chart-rows {
  gap: 16px;
}

.chart-row {
  grid-template-columns: 190px minmax(0, 1fr) 92px;
  gap: 16px;
}

.chart-label {
  line-height: 1.35;
}

.chart-track {
  min-width: 0;
}

.chart-value {
  text-align: left;
  white-space: nowrap;
}

.side-industry .comp-title,
.side-industry .comp-title a,
.side-industry .comp-title strong {
  color: #0b1e3a !important;
}

.side-lgc .comp-title,
.side-lgc .comp-title a,
.side-lgc .comp-title strong {
  color: #ffffff !important;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
}

.faq-item .faq-icon {
  transition: transform 0.24s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .article-intro-card {
    margin-bottom: 28px;
  }

  .service-links-bridge {
    margin-top: -4px;
    padding: 14px 0 16px;
    background: #ffffff;
  }

  .service-links-bridge-card {
    padding: 16px 18px;
    border-radius: 14px;
    background: #ffffff;
  }

  .service-links-bridge-text {
    font-size: 14px;
    line-height: 1.65;
    color: #0b1e3a;
  }

  .mini-chart-wrap {
    padding: 22px 18px 18px;
  }

  .chart-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .chart-value {
    text-align: left;
  }
}
/* Premium dark bridge styling on blog article pages */
.article-shell .service-links-bridge {
  position: relative;
  margin-top: -18px;
  padding: 0 0 22px;
  background: linear-gradient(180deg, #051329 0%, #0b1e3a 64%, #eef2f7 82%, #f5f7fb 100%) !important;
}

.article-shell .service-links-bridge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 110px;
  background: linear-gradient(180deg, rgba(245, 247, 251, 0) 0%, rgba(245, 247, 251, 0.72) 58%, #f5f7fb 100%);
  pointer-events: none;
}

.article-shell .service-links-bridge::after,
.article-shell .service-links-bridge::before {
  content: none !important;
  display: none !important;
}

.article-shell .service-links-bridge .lux-container {
  position: relative;
  z-index: 2;
  transform: translateY(10px);
}

.article-shell .service-links-bridge-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(11, 30, 58, 0.94) 0%, rgba(7, 24, 50, 0.98) 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.16) !important;
  box-shadow: 0 20px 46px rgba(5, 19, 41, 0.24) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.article-shell .service-links-bridge-text {
  max-width: 620px;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #d9e3f3 !important;
  font-weight: 500 !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

.article-shell .service-links-bridge-text a,
.article-shell .service-links-bridge-text a:visited {
  color: #f2d574 !important;
  font-weight: 700 !important;
  border-bottom: 1px solid rgba(242, 213, 116, 0.36) !important;
}

.article-shell .service-links-bridge-text a:hover,
.article-shell .service-links-bridge-text a:focus {
  color: #ffffff !important;
  border-bottom-color: rgba(255, 255, 255, 0.58) !important;
}

@media (max-width: 768px) {
  .article-shell .service-links-bridge {
    margin-top: -10px;
    padding: 0 0 16px;
    background: linear-gradient(180deg, #051329 0%, #0b1e3a 66%, #eef2f7 86%, #f5f7fb 100%) !important;
  }

  .article-shell .service-links-bridge::after {
    height: 72px;
    background: linear-gradient(180deg, rgba(245, 247, 251, 0) 0%, rgba(245, 247, 251, 0.78) 62%, #f5f7fb 100%);
  }

  .article-shell .service-links-bridge-card {
    max-width: 100%;
    padding: 18px 18px;
    border-radius: 16px;
  }

  .article-shell .service-links-bridge-text {
    max-width: 100%;
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .article-shell .service-links-bridge .lux-container {
    transform: translateY(6px);
  }
}
/* Practical content additions for deep-cleaning-vs-regular-cleaning */
.practical-checklist {
  margin: 22px 0 0;
  padding-left: 20px;
}

.practical-checklist li {
  margin-bottom: 10px;
  color: #465876;
  line-height: 1.75;
}

.at-a-glance-box,
.signs-box,
.not-included-box,
.real-examples-box {
  margin-top: 34px;
  padding: 26px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.at-a-glance-box h3,
.signs-box h3,
.not-included-box h3,
.real-examples-box h3 {
  margin-bottom: 12px;
}

.at-a-glance-box p,
.signs-box p,
.not-included-box p,
.real-examples-box p {
  margin-bottom: 0;
}

.comparison-overview-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.comparison-overview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-overview-table th,
.comparison-overview-table td {
  text-align: left;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(11, 30, 58, 0.08);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.6;
  color: #465876;
}

.comparison-overview-table th {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b1e3a;
  background: #f8fafc;
}

.comparison-overview-table td strong {
  color: #0b1e3a;
}

@media (max-width: 768px) {
  .at-a-glance-box,
  .signs-box,
  .not-included-box,
  .real-examples-box {
    padding: 20px 18px;
  }

  .comparison-overview-table th,
  .comparison-overview-table td {
    padding: 12px 12px;
    font-size: 13px;
  }
}
/* ================= BLOG HUB PAGE OVERRIDES ================= */
body .blog-hub-intro-strip {
  position: relative;
  margin-top: -22px;
  padding: 0 0 34px;
  background: linear-gradient(180deg, #051329 0%, #0b1e3a 54%, #f8fafc 54%, #f8fafc 100%);
}

body .blog-hub-intro-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(11, 30, 58, 0.96) 0%, rgba(7, 24, 50, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: 0 18px 42px rgba(5, 19, 41, 0.20);
}

body .blog-hub-intro-text {
  margin: 0;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
  color: #d9e3f3;
}

body .blog-hub-intro-text a {
  color: #f2d574;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 213, 116, 0.36);
}

body .blog-hub-intro-text a:hover,
body .blog-hub-intro-text a:focus {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.58);
}

body .blog-start-here-strip,
body section.blog-start-here-strip,
body .combined-executive-wrapper .blog-start-here-strip {
  position: relative;
  padding: 8px 0 44px;
  background: #f8fafc;
}

body .blog-start-here-strip .lux-container,
body section.blog-start-here-strip .lux-container,
body .combined-executive-wrapper .blog-start-here-strip .lux-container {
  max-width: 1240px;
}

body .blog-start-here-card,
body .blog-start-here-strip .blog-start-here-card,
body .combined-executive-wrapper .blog-start-here-strip .blog-start-here-card {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 34px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%) !important;
  border: 1px solid rgba(11, 30, 58, 0.08) !important;
  box-shadow: 0 22px 50px rgba(11, 30, 58, 0.08) !important;
  box-sizing: border-box;
}

body .blog-start-here-card .lux-eyebrow-gold,
body .blog-start-here-strip .blog-start-here-card .lux-eyebrow-gold {
  display: inline-flex;
  margin-bottom: 16px;
}

body .blog-start-here-card .lux-h2-navy,
body .blog-start-here-strip .blog-start-here-card .lux-h2-navy {
  margin: 0 0 14px;
}

body .blog-start-here-text,
body .blog-start-here-strip .blog-start-here-text {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #4f607d;
}

body .blog-start-here-grid,
body .blog-start-here-strip .blog-start-here-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

body .blog-start-here-item,
body .blog-start-here-strip .blog-start-here-item {
  min-width: 0;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #ffffff !important;
  border: 1px solid rgba(11, 30, 58, 0.08) !important;
  box-shadow: 0 12px 30px rgba(11, 30, 58, 0.05) !important;
  box-sizing: border-box;
}

body .blog-start-here-item h3,
body .blog-start-here-strip .blog-start-here-item h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b1e3a;
  letter-spacing: -0.01em;
}

body .blog-start-here-item p,
body .blog-start-here-strip .blog-start-here-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #5c6c88;
}

body .blog-start-here-item a,
body .blog-start-here-strip .blog-start-here-item a {
  color: #0b1e3a;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 30, 58, 0.16);
}

body .blog-start-here-item a:hover,
body .blog-start-here-item a:focus,
body .blog-start-here-strip .blog-start-here-item a:hover,
body .blog-start-here-strip .blog-start-here-item a:focus {
  border-bottom-color: rgba(11, 30, 58, 0.34);
}

body .featured-article-hub {
  padding: 56px 0 34px;
  background: transparent;
}

body .featured-article-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 24px 54px rgba(11, 30, 58, 0.08);
}

body .featured-article-copy .lux-eyebrow-gold {
  margin-bottom: 18px;
}

body .featured-article-copy .lux-h2-navy {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  color: #0b1e3a;
  letter-spacing: -0.02em;
}

body .featured-article-text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.85;
  color: #4f607d;
}

body .featured-article-image-wrap {
  position: relative;
}

body .featured-article-image {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 44px rgba(11, 30, 58, 0.12);
}

body .blog-topic-clusters {
  padding: 14px 0 26px;
}

body .topic-clusters-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

body .topic-clusters-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

body .topic-cluster-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

body .topic-cluster-title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0b1e3a;
}

body .topic-cluster-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: #5c6c88;
}

body .topic-cluster-links {
  margin: 0;
  padding-left: 18px;
}

body .topic-cluster-links li {
  margin-bottom: 10px;
  color: #465876;
}

body .topic-cluster-links a {
  color: #0b1e3a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

body .topic-cluster-links a:hover,
body .topic-cluster-links a:focus {
  border-bottom-color: rgba(11, 30, 58, 0.2);
}

body .combined-executive-wrapper .insights-executive {
  padding-top: 72px;
}

body .cta-pretext {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.75;
  color: #d9e3f3;
}

body .combined-executive-wrapper .featured-article-card,
body .combined-executive-wrapper .topic-cluster-card,
body .combined-executive-wrapper .blog-hub-intro-card {
  box-sizing: border-box;
}

body .combined-executive-wrapper .topic-clusters-grid,
body .combined-executive-wrapper .featured-article-card {
  width: 100%;
}

@media (max-width: 991px) {
  body .featured-article-card {
    grid-template-columns: 1fr;
  }

  body .blog-start-here-grid,
  body .blog-start-here-strip .blog-start-here-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  body .blog-hub-intro-strip {
    margin-top: -10px;
    padding-bottom: 18px;
  }

  body .blog-hub-intro-card {
    padding: 18px 16px;
    border-radius: 16px;
  }

  body .blog-hub-intro-text {
    font-size: 14px;
    line-height: 1.75;
  }

  body .blog-start-here-strip,
  body section.blog-start-here-strip,
  body .combined-executive-wrapper .blog-start-here-strip {
    padding: 4px 0 26px;
  }

  body .blog-start-here-card,
  body .blog-start-here-strip .blog-start-here-card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }

  body .blog-start-here-text,
  body .blog-start-here-strip .blog-start-here-text {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.75;
  }

  body .blog-start-here-item,
  body .blog-start-here-strip .blog-start-here-item {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }

  body .blog-start-here-item h3,
  body .blog-start-here-strip .blog-start-here-item h3 {
    font-size: 18px;
  }

  body .blog-start-here-item p,
  body .blog-start-here-strip .blog-start-here-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  body .featured-article-hub {
    padding: 46px 0 24px;
  }

  body .featured-article-card {
    padding: 22px 18px;
    border-radius: 20px;
    gap: 22px;
  }

  body .topic-cluster-card {
    padding: 22px 18px;
  }

  body .topic-clusters-grid {
    grid-template-columns: 1fr;
  }
}
/* Move-out cleaning article quick summary block */
.quick-summary-strip {
  position: relative;
  padding: 18px 0 28px;
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.quick-summary-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow:
    0 22px 54px rgba(11, 30, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.quick-summary-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d36b 45%, #d4af37 100%);
}

.quick-summary-title {
  margin: 0 0 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0b1e3a;
  letter-spacing: -0.01em;
}

.quick-summary-list {
  margin: 0;
  padding-left: 22px;
}

.quick-summary-list li {
  margin-bottom: 12px;
  color: #4f607d;
  line-height: 1.8;
}

.quick-summary-list li:last-child {
  margin-bottom: 0;
}

.quick-summary-list strong {
  color: #0b1e3a;
}

@media (max-width: 768px) {
  .quick-summary-strip {
    padding: 12px 0 18px;
  }

  .quick-summary-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .quick-summary-title {
    font-size: 21px;
  }

  .quick-summary-list {
    padding-left: 18px;
  }
}
/* Move-out cleaning article enhancements */
.seller-responsibility-strip {
  padding: 8px 0 0;
  background: #ffffff;
}

.seller-responsibility-card,
.seller-checklist-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.seller-responsibility-title,
.seller-checklist-box h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0b1e3a;
  letter-spacing: -0.01em;
}

.seller-responsibility-text {
  margin: 0 0 14px;
  color: #4f607d;
  line-height: 1.85;
}

.seller-responsibility-text:last-child {
  margin-bottom: 0;
}

.seller-checklist-box {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .seller-responsibility-card,
  .seller-checklist-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .seller-responsibility-title,
  .seller-checklist-box h3 {
    font-size: 21px;
  }
}
/* Carpet & upholstery cleaning process article */
.carpet-process-bridge .service-links-bridge-card {
  max-width: 820px;
}

.carpet-process-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.carpet-process-summary-card {
  max-width: 1020px;
}

.carpet-process-editorial {
  background: #f5f7fb;
}

.carpet-process-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.carpet-process-stage-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.carpet-process-stage-card h3 {
  margin-bottom: 10px;
}

.carpet-process-stage-card p {
  margin-bottom: 0;
}

.carpet-stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #051329;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.carpet-method-box,
.carpet-signs-box,
.carpet-limit-box,
.carpet-example-box {
  margin-top: 34px;
}

.carpet-method-chart .chart-fill.carpet-low-moisture-fill {
  width: 68%;
  background: linear-gradient(90deg, #d4af37 0%, #b89628 100%);
}

.carpet-method-chart .chart-fill.carpet-extraction-fill {
  width: 92%;
  background: linear-gradient(90deg, #0b2347 0%, #071a36 100%);
}

@media (max-width: 991px) {
  .carpet-process-stage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .carpet-process-stage-card {
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .carpet-stage-number {
    min-width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 13px;
  }
}

/* ================= CARPET ARTICLE VISUAL REFINEMENT OVERRIDES ================= */
.article-shell .carpet-process-bridge {
  margin-top: -16px;
  padding-bottom: 28px;
}

.article-shell .carpet-process-bridge .lux-container {
  transform: translateY(14px);
}

.article-shell .carpet-process-bridge .service-links-bridge-card {
  max-width: 860px;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(5, 19, 41, 0.24) !important;
}

.article-shell .carpet-process-summary-strip {
  padding: 26px 0 34px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.article-shell .carpet-process-summary-card {
  max-width: 1060px;
  padding: 32px 34px;
  border-radius: 26px;
  border: 1px solid rgba(11, 30, 58, 0.09);
  box-shadow: 0 24px 54px rgba(11, 30, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.article-shell .carpet-process-editorial {
  padding-top: 96px;
}

.article-shell .carpet-process-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.article-shell .carpet-process-stage-card {
  position: relative;
  padding: 28px 26px 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(11, 30, 58, 0.09);
  box-shadow: 0 18px 40px rgba(11, 30, 58, 0.07);
  overflow: hidden;
}

.article-shell .carpet-process-stage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d36b 45%, #d4af37 100%);
}

.article-shell .carpet-process-stage-card h3 {
  margin-bottom: 10px;
  color: #0b1e3a;
}

.article-shell .carpet-process-stage-card p {
  margin-bottom: 0;
  color: #4f607d;
}

.article-shell .carpet-stage-number {
  min-width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(212, 175, 55, 0.22);
}

.article-shell .carpet-method-box,
.article-shell .carpet-signs-box,
.article-shell .carpet-limit-box,
.article-shell .carpet-example-box {
  margin-top: 36px;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 18px 40px rgba(11, 30, 58, 0.07);
}

.article-shell .carpet-method-box h3,
.article-shell .carpet-signs-box h3,
.article-shell .carpet-limit-box h3,
.article-shell .carpet-example-box h3 {
  margin-bottom: 14px;
}

.article-shell .carpet-method-chart {
  margin-top: 34px;
  padding: 28px 28px 24px;
}

.article-shell .carpet-method-chart .chart-row {
  grid-template-columns: 200px minmax(0, 1fr) 96px;
}

.article-shell .carpet-method-chart .chart-value {
  white-space: nowrap;
}

.article-shell .carpet-process-editorial .article-block {
  margin-bottom: 80px;
}

.article-shell .carpet-process-editorial .article-block:last-child {
  margin-bottom: 0;
}

.article-shell .carpet-process-editorial .article-content h2 {
  max-width: 16ch;
}

.article-shell .carpet-process-editorial .article-content p,
.article-shell .carpet-process-editorial .practical-checklist li,
.article-shell .carpet-process-editorial .comparison-overview-table td,
.article-shell .carpet-process-editorial .comparison-body li {
  color: #4f607d;
}

@media (max-width: 991px) {
  .article-shell .carpet-process-stage-grid {
    grid-template-columns: 1fr;
  }

  .article-shell .carpet-process-editorial .article-content h2 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .article-shell .carpet-process-bridge {
    margin-top: -10px;
    padding-bottom: 18px;
  }

  .article-shell .carpet-process-bridge .lux-container {
    transform: translateY(8px);
  }

  .article-shell .carpet-process-summary-strip {
    padding: 18px 0 22px;
  }

  .article-shell .carpet-process-summary-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .article-shell .carpet-process-editorial {
    padding-top: 72px;
  }

  .article-shell .carpet-process-stage-card,
  .article-shell .carpet-method-box,
  .article-shell .carpet-signs-box,
  .article-shell .carpet-limit-box,
  .article-shell .carpet-example-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .article-shell .carpet-method-chart {
    padding: 22px 18px 18px;
  }

  .article-shell .carpet-method-chart .chart-row {
    grid-template-columns: 1fr;
  }
}
/* ================= CARPET ARTICLE LOWER-SECTIONS UPGRADE ================= */
.article-shell .carpet-signs-box,
.article-shell .carpet-limit-box,
.article-shell .carpet-example-box {
  position: relative;
  margin-top: 38px;
  padding: 30px 28px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(11, 30, 58, 0.09);
  box-shadow: 0 22px 48px rgba(11, 30, 58, 0.08);
  overflow: hidden;
}

.article-shell .carpet-signs-box::before,
.article-shell .carpet-limit-box::before,
.article-shell .carpet-example-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d36b 45%, #d4af37 100%);
}

.article-shell .carpet-signs-box h3,
.article-shell .carpet-limit-box h3,
.article-shell .carpet-example-box h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0b1e3a;
  letter-spacing: -0.01em;
}

.article-shell .carpet-signs-box p,
.article-shell .carpet-limit-box p,
.article-shell .carpet-example-box p {
  color: #4f607d;
}

.article-shell .carpet-signs-box .practical-checklist,
.article-shell .carpet-limit-box .practical-checklist,
.article-shell .carpet-example-box .practical-checklist {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.article-shell .carpet-signs-box .practical-checklist li,
.article-shell .carpet-limit-box .practical-checklist li,
.article-shell .carpet-example-box .practical-checklist li {
  position: relative;
  margin-bottom: 0;
  padding: 0 0 0 30px;
  font-size: 15px;
  line-height: 1.75;
  color: #465876;
}

.article-shell .carpet-signs-box .practical-checklist li::before,
.article-shell .carpet-limit-box .practical-checklist li::before,
.article-shell .carpet-example-box .practical-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: 900;
  font-size: 16px;
}

.article-shell .carpet-process-editorial #when-to-book,
.article-shell .carpet-process-editorial #what-it-will-not-fix,
.article-shell .carpet-process-editorial #final-decision {
  position: relative;
  padding: 42px 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 24px 54px rgba(11, 30, 58, 0.08);
}

.article-shell .carpet-process-editorial #when-to-book::before,
.article-shell .carpet-process-editorial #what-it-will-not-fix::before,
.article-shell .carpet-process-editorial #final-decision::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #0b2347 0%, #1a3667 100%);
}

.article-shell .carpet-process-editorial #when-to-book .lux-eyebrow,
.article-shell .carpet-process-editorial #what-it-will-not-fix .lux-eyebrow,
.article-shell .carpet-process-editorial #final-decision .lux-eyebrow {
  margin-bottom: 18px;
}

.article-shell .carpet-process-editorial #when-to-book h2,
.article-shell .carpet-process-editorial #what-it-will-not-fix h2,
.article-shell .carpet-process-editorial #final-decision h2 {
  max-width: none;
  margin-bottom: 18px;
}

.article-shell .carpet-process-editorial #when-to-book > p:last-of-type,
.article-shell .carpet-process-editorial #what-it-will-not-fix > p:last-of-type,
.article-shell .carpet-process-editorial #final-decision > p:last-of-type {
  margin-bottom: 0;
}

.article-shell .carpet-process-editorial .article-block + .article-block {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .article-shell .carpet-process-editorial #when-to-book,
  .article-shell .carpet-process-editorial #what-it-will-not-fix,
  .article-shell .carpet-process-editorial #final-decision {
    padding: 26px 18px;
    border-radius: 20px;
  }

  .article-shell .carpet-signs-box,
  .article-shell .carpet-limit-box,
  .article-shell .carpet-example-box {
    margin-top: 28px;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .article-shell .carpet-signs-box h3,
  .article-shell .carpet-limit-box h3,
  .article-shell .carpet-example-box h3 {
    font-size: 21px;
  }
}
/* ================= HARD OVERRIDES FOR CARPET ARTICLE LOWER SECTIONS ================= */
body .article-shell section#when-to-book.article-block,
body .article-shell section#what-it-will-not-fix.article-block,
body .article-shell section#final-decision.article-block {
  display: block;
  position: relative;
  margin-bottom: 80px;
  padding: 42px 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%) !important;
  border: 1px solid rgba(11, 30, 58, 0.08) !important;
  box-shadow: 0 24px 54px rgba(11, 30, 58, 0.08) !important;
  overflow: hidden;
}

body .article-shell section#when-to-book.article-block::before,
body .article-shell section#what-it-will-not-fix.article-block::before,
body .article-shell section#final-decision.article-block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #0b2347 0%, #1a3667 100%);
}

body .article-shell section#when-to-book.article-block > .lux-eyebrow,
body .article-shell section#what-it-will-not-fix.article-block > .lux-eyebrow,
body .article-shell section#final-decision.article-block > .lux-eyebrow {
  margin-bottom: 18px;
}

body .article-shell section#when-to-book.article-block > h2,
body .article-shell section#what-it-will-not-fix.article-block > h2,
body .article-shell section#final-decision.article-block > h2 {
  max-width: none !important;
  margin-bottom: 18px;
}

body .article-shell section#when-to-book.article-block > p:last-of-type,
body .article-shell section#what-it-will-not-fix.article-block > p:last-of-type,
body .article-shell section#final-decision.article-block > p:last-of-type {
  margin-bottom: 0;
}

body .article-shell section#when-to-book .carpet-signs-box,
body .article-shell section#what-it-will-not-fix .carpet-limit-box,
body .article-shell section#final-decision .carpet-example-box {
  position: relative;
  margin-top: 38px;
  padding: 30px 28px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%) !important;
  border: 1px solid rgba(11, 30, 58, 0.09) !important;
  box-shadow: 0 22px 48px rgba(11, 30, 58, 0.08) !important;
  overflow: hidden;
}

body .article-shell section#when-to-book .carpet-signs-box::before,
body .article-shell section#what-it-will-not-fix .carpet-limit-box::before,
body .article-shell section#final-decision .carpet-example-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d36b 45%, #d4af37 100%);
}

body .article-shell section#when-to-book .carpet-signs-box h3,
body .article-shell section#what-it-will-not-fix .carpet-limit-box h3,
body .article-shell section#final-decision .carpet-example-box h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0b1e3a;
  letter-spacing: -0.01em;
}

body .article-shell section#when-to-book .carpet-signs-box .practical-checklist,
body .article-shell section#what-it-will-not-fix .carpet-limit-box .practical-checklist,
body .article-shell section#final-decision .carpet-example-box .practical-checklist {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

body .article-shell section#when-to-book .carpet-signs-box .practical-checklist li,
body .article-shell section#what-it-will-not-fix .carpet-limit-box .practical-checklist li,
body .article-shell section#final-decision .carpet-example-box .practical-checklist li {
  position: relative;
  margin-bottom: 0;
  padding: 0 0 0 30px;
  font-size: 15px;
  line-height: 1.75;
  color: #465876;
}

body .article-shell section#when-to-book .carpet-signs-box .practical-checklist li::before,
body .article-shell section#what-it-will-not-fix .carpet-limit-box .practical-checklist li::before,
body .article-shell section#final-decision .carpet-example-box .practical-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-weight: 900;
  font-size: 16px;
}

@media (max-width: 768px) {
  body .article-shell section#when-to-book.article-block,
  body .article-shell section#what-it-will-not-fix.article-block,
  body .article-shell section#final-decision.article-block {
    padding: 26px 18px;
    border-radius: 20px;
  }

  body .article-shell section#when-to-book .carpet-signs-box,
  body .article-shell section#what-it-will-not-fix .carpet-limit-box,
  body .article-shell section#final-decision .carpet-example-box {
    margin-top: 28px;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  body .article-shell section#when-to-book .carpet-signs-box h3,
  body .article-shell section#what-it-will-not-fix .carpet-limit-box h3,
  body .article-shell section#final-decision .carpet-example-box h3 {
    font-size: 21px;
  }
}
/* Narrow the lower carpet article sections so they do not feel too wide */
body .article-shell section#when-to-book.article-block,
body .article-shell section#what-it-will-not-fix.article-block,
body .article-shell section#final-decision.article-block {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body .article-shell section#when-to-book .carpet-signs-box,
body .article-shell section#what-it-will-not-fix .carpet-limit-box,
body .article-shell section#final-decision .carpet-example-box {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  body .article-shell section#when-to-book.article-block,
  body .article-shell section#what-it-will-not-fix.article-block,
  body .article-shell section#final-decision.article-block,
  body .article-shell section#when-to-book .carpet-signs-box,
  body .article-shell section#what-it-will-not-fix .carpet-limit-box,
  body .article-shell section#final-decision .carpet-example-box {
    max-width: 100%;
  }
}

/* Carpet article SEO-depth content blocks */
.carpet-decision-box,
.carpet-results-box,
.carpet-drying-box {
  position: relative;
  margin-top: 34px;
  padding: 28px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 18px 40px rgba(11, 30, 58, 0.07);
  overflow: hidden;
}

.carpet-decision-box::before,
.carpet-results-box::before,
.carpet-drying-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #f0d36b 45%, #d4af37 100%);
}

.carpet-decision-box h3,
.carpet-results-box h3,
.carpet-drying-box h3 {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0b1e3a;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .carpet-decision-box,
  .carpet-results-box,
  .carpet-drying-box {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .carpet-decision-box h3,
  .carpet-results-box h3,
  .carpet-drying-box h3 {
    font-size: 21px;
  }
}

/* Why deep cleaning costs article */
.pricing-process-bridge .service-links-bridge-card {
  max-width: 860px;
}

.pricing-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.pricing-summary-card {
  max-width: 1040px;
}

.pricing-article-editorial {
  background: #f5f7fb;
}

.pricing-factor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.pricing-factor-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.pricing-factor-card h3 {
  margin-bottom: 10px;
}

.pricing-factor-card p {
  margin-bottom: 0;
}

.pricing-factor-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #051329;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

.pricing-premium-box,
.pricing-questions-box,
.pricing-result-box,
.pricing-overview-box {
  margin-top: 34px;
}

@media (max-width: 991px) {
  .pricing-factor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-factor-card {
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .pricing-factor-number {
    min-width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 13px;
  }
}

/* Our deep cleaning process article */
.process-article-bridge .service-links-bridge-card {
  max-width: 860px;
}

.process-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.process-summary-card {
  max-width: 1040px;
}

.process-article-editorial {
  background: #f5f7fb;
}

.process-stage-box,
.process-result-box {
  margin-top: 34px;
}

.process-fill-setup {
  width: 44%;
}

.process-fill-detail {
  width: 84%;
}

.process-fill-finish {
  width: 64%;
}

/* SEO depth additions for process article */
.process-best-for-box,
.process-qc-box,
.process-not-included-box {
  margin-top: 34px;
}

/* How to choose the best cleaning company article */
.company-choice-bridge .service-links-bridge-card {
  max-width: 860px;
}

.company-choice-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.company-choice-summary-card {
  max-width: 1040px;
}

.company-choice-editorial {
  background: #f5f7fb;
}

.company-choice-box,
.company-choice-result-box {
  margin-top: 34px;
}

.company-choice-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.company-choice-stage-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.company-choice-stage-card h3 {
  margin-bottom: 10px;
}

.company-choice-stage-card p {
  margin-bottom: 0;
}

.company-choice-stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #051329;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

@media (max-width: 991px) {
  .company-choice-stage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .company-choice-stage-card {
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .company-choice-stage-number {
    min-width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 13px;
  }
}

/* How to choose the best cleaning company article */
.company-choice-bridge .service-links-bridge-card {
  max-width: 860px;
}

.company-choice-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.company-choice-summary-card {
  max-width: 1040px;
}

.company-choice-editorial {
  background: #f5f7fb;
}

.company-choice-box,
.company-choice-result-box,
.company-best-for-box,
.company-products-box,
.company-questions-box {
  margin-top: 34px;
}

.company-choice-stage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.company-choice-stage-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.company-choice-stage-card h3 {
  margin-bottom: 10px;
}

.company-choice-stage-card p {
  margin-bottom: 0;
}

.company-choice-stage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #051329;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

@media (max-width: 991px) {
  .company-choice-stage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .company-choice-stage-card {
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .company-choice-stage-number {
    min-width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 13px;
  }
}

/* Post-renovation process article */
.process-article-bridge .service-links-bridge-card {
  max-width: 860px;
}

.process-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.process-summary-card {
  max-width: 1040px;
}

.process-article-editorial {
  background: #f5f7fb;
}

.process-stage-box,
.process-result-box,
.process-best-for-box,
.process-qc-box,
.process-not-included-box {
  margin-top: 34px;
}

.process-fill-setup {
  width: 46%;
}

.process-fill-detail {
  width: 84%;
}

.process-fill-finish {
  width: 66%;
}

/* Commercial carpet cleaning article */
.commercial-carpet-bridge .service-links-bridge-card {
  max-width: 860px;
}

.commercial-carpet-summary-strip {
  background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.commercial-carpet-summary-card {
  max-width: 1040px;
}

.commercial-carpet-editorial {
  background: #f5f7fb;
}

.commercial-standard-box,
.commercial-overdue-box {
  margin-top: 34px;
}

.commercial-benefit-grid,
.commercial-impact-grid,
.commercial-process-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

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

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

.commercial-benefit-card,
.commercial-impact-card,
.commercial-process-card {
  position: relative;
  padding: 26px 24px 24px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11, 30, 58, 0.08);
  box-shadow: 0 14px 34px rgba(11, 30, 58, 0.06);
}

.commercial-benefit-card h3,
.commercial-impact-card h3,
.commercial-process-card h3 {
  margin-bottom: 10px;
}

.commercial-benefit-card p,
.commercial-impact-card p,
.commercial-process-card p {
  margin-bottom: 0;
}

.commercial-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4af37 0%, #b89628 100%);
  color: #051329;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.22);
}

@media (max-width: 991px) {
  .commercial-benefit-grid,
  .commercial-impact-grid,
  .commercial-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .commercial-benefit-card,
  .commercial-impact-card,
  .commercial-process-card {
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .commercial-process-number {
    min-width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 13px;
  }
}

/* Pre-listing checklist hero polish */
body .hero-ultra-luxe .article-intro-card {
  max-width: 540px;
}

body .hero-ultra-luxe .hero-content > .article-intro-card + .hero-btns {
  margin-top: 22px;
}

body .hero-ultra-luxe .hero-image-wrap .hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
}

body .hero-ultra-luxe .hero-image-wrap {
  align-self: center;
}

@media (max-width: 991px) {
  body .hero-ultra-luxe .hero-image-wrap .hero-image {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  body .hero-ultra-luxe .article-intro-card {
    max-width: 100%;
  }

  body .hero-ultra-luxe .hero-image-wrap .hero-image {
    min-height: 260px;
  }
}