/*
 * ============================================================================
 * CLEAN LAUNDRY NOW - Main Stylesheet
 * Recreated from https://cleanlaundrynow.com/ (Webflow)
 * ============================================================================
 */


/* ============================================================================
 * 1. CSS CUSTOM PROPERTIES
 * ============================================================================ */

:root {
  /* --- Neutral Palette --- */
  --neutral--100: white;
  --neutral--200: #f6faff;
  --neutral--300: #e3ecf5;
  --neutral--400: #d3dfeb;
  --neutral--500: #b1c1d3;
  --neutral--600: #6e7d91;
  --neutral--700: #273a51;
  --neutral--800: #13263d;

  /* --- Accent / Brand --- */
  --accent--primary-1: #38a5f4;
  /* Nods to the print brand indigo (#2222e0) but shifted bluer and lightened
     so it stays legible and distinct on the dark (--neutral--800) surfaces. */
  --accent--primary-2: #4f7bf5;

  /* --- Secondary --- */
  --secondary--color-1: #1a5295;
  --secondary--color-2: #aeddff;

  /* --- System Colors --- */
  --system--green-100: #def2e6;
  --system--green-200: #7fdca4;
  --system--green-300: #05c168;
  --system--green-400: #11845b;
  --system--green-500: #0a5236;

  --system--blue-100: #eaf4ff;
  --system--blue-200: #8fc3ff;
  --system--blue-300: #1d88fe;
  --system--blue-400: #086cd9;

  --system--red-100: #ffeff0;
  --system--red-200: #ffbec2;
  --system--300: #ff5a65;
  --system--red-400: #dc2b2b;
  --system--red-500: #991b1b;

  --system--orange-100: #fff3e4;
  --system--orange-200: #ffd19b;
  --system--orange-300: #ff9e2c;
  --system--orange-400: #d5691b;

  /* --- Shadows --- */
  --general--shadow-01: #13263d0f;
  --general--shadow-02: #13263d14;
  --general--shadow-03: #13263d1a;
  --general--shadow-04: #13263d24;
  --general--shadow-05: #13263d29;
  --general--shadow-06: #13263d3d;

  /* --- Button Shadows --- */
  --button-shadow--color-01: #3aacff0f;
  --button-shadow--color-02: #3aacff14;
  --button-shadow--color-03: #3aacff1f;
  --button-shadow--white-01: #13263d0a;
  --button-shadow--white-02: #13263d0f;
  --button-shadow--white-03: #13263d1a;
}


/* ============================================================================
 * 2. FONT FACE DECLARATIONS
 * ============================================================================ */

@font-face {
  font-family: Thicccboi;
  src: url("/assets/fonts/THICCCBOI-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url("/assets/fonts/THICCCBOI-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url("/assets/fonts/THICCCBOI-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url("/assets/fonts/THICCCBOI-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Thicccboi;
  src: url("/assets/fonts/THICCCBOI-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


/* ============================================================================
 * 3. RESET & BASE
 * ============================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  color: var(--neutral--600);
  font-family: Thicccboi, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.556em;
  background-color: var(--neutral--100);
}

a {
  color: var(--accent--primary-1);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--secondary--color-1);
}

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 24px;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input, textarea, select {
  font-family: inherit;
}


/* ============================================================================
 * 4. TYPOGRAPHY
 * ============================================================================ */

h1 {
  color: var(--neutral--800);
  margin-bottom: 16px;
  font-size: 54px;
  font-weight: 900;
  line-height: 1.222em;
}

h2 {
  color: var(--neutral--800);
  margin-bottom: 16px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.316em;
}

h3 {
  color: var(--neutral--800);
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.417em;
}

h4 {
  color: var(--neutral--800);
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.273em;
}

h5 {
  color: var(--neutral--800);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.333em;
}

.display-1 {
  color: var(--neutral--800);
  font-size: 68px;
  font-weight: 900;
  line-height: 1.088em;
}

.display-2 {
  color: var(--neutral--800);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.148em;
}

.display-3 {
  color: var(--neutral--800);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.316em;
}

.display-4 {
  color: var(--neutral--800);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.384em;
}

.paragraph-large {
  font-size: 24px;
  line-height: 1.583em;
}

.paragraph-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.714em;
}

.text-accent {
  color: var(--accent--primary-1);
}

.text-accent-2 {
  color: var(--accent--primary-2);
}

.text-white {
  color: var(--neutral--100);
}

.text-dark {
  color: var(--neutral--800);
}

.text-center {
  text-align: center;
}


/* ============================================================================
 * 5. LAYOUT
 * ============================================================================ */

.container {
  max-width: 1274px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.grid-3-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.grid-4-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: grid;
}

/* Background utilities */
.bg-neutral-100 {
  background-color: var(--neutral--100);
}

.bg-neutral-200 {
  background-color: var(--neutral--200);
}

.bg-neutral-300 {
  background-color: var(--neutral--300);
}

.bg-neutral-400 {
  background-color: var(--neutral--400);
}

.bg-neutral-700 {
  background-color: var(--neutral--700);
}

.bg-neutral-800 {
  background-color: var(--neutral--800);
}

.bg-accent-1 {
  background-color: var(--accent--primary-1);
}


/* ============================================================================
 * 6. BUTTONS
 * ============================================================================ */

/* --- Primary Button --- */
.btn-primary {
  display: inline-block;
  border: 2px solid var(--accent--primary-1);
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  text-align: center;
  transform-style: preserve-3d;
  border-radius: 96px;
  padding: 24px 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.111em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s, color 0.3s;
}

.btn-primary:hover {
  border-color: var(--secondary--color-1);
  background-color: var(--secondary--color-1);
  color: var(--neutral--100);
  transform: translate3d(0, -3px, 0.01px);
}

.btn-primary.small {
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1.125em;
}

.btn-primary.large {
  padding: 26px 54px;
  font-size: 20px;
  line-height: 1.1em;
}

.btn-primary.white,
.btn-primary.white:hover {
  border-color: var(--neutral--100);
  background-color: var(--neutral--100);
  color: var(--accent--primary-1);
}

/* --- Secondary Button (outline) --- */
.btn-secondary {
  display: inline-block;
  border: 2px solid var(--neutral--800);
  color: var(--neutral--800);
  text-align: center;
  transform-style: preserve-3d;
  background-color: transparent;
  border-radius: 96px;
  padding: 24px 36px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.111em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  border-color: var(--accent--primary-1);
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  transform: translate3d(0, -3px, 0.01px);
}

.btn-secondary.small {
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1.125em;
}

.btn-secondary.large {
  padding: 26px 54px;
  font-size: 20px;
  line-height: 1.1em;
}

.btn-secondary.white {
  border-color: var(--neutral--100);
  color: var(--neutral--100);
  background-color: transparent;
}

.btn-secondary.white:hover {
  border-color: var(--neutral--100);
  background-color: var(--neutral--100);
  color: var(--neutral--800);
}

/* --- Circle Button --- */
.btn-circle-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  border: none;
  border-radius: 50%;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  font-size: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.btn-circle-primary:hover {
  background-color: var(--accent--primary-1);
  transform: scale3d(0.94, 0.94, 1.01);
}

/* Button shadow utilities */
.button-shadow-color-01 {
  box-shadow: 0 4px 10px 0 var(--button-shadow--color-01);
}

.button-shadow-color-02 {
  box-shadow: 0 6px 20px 0 var(--button-shadow--color-02);
}

.button-shadow-color-03 {
  box-shadow: 0 10px 28px 0 var(--button-shadow--color-03);
}


/* ============================================================================
 * 7. PROMO BAR
 * ============================================================================ */

.promo-bar {
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  text-align: center;
  padding: 20px 72px;
  position: relative;
  z-index: 999;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.111em;
  max-height: 200px;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease, transform 0.5s ease;
}

.promo-bar.is-hidden,
.promo-bar.is-pre-reveal {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.promo-bar.is-pre-reveal {
  transform: translateY(-100%);
}

.promo-bar-flex {
  justify-content: center;
  align-items: center;
  display: flex;
}

.promo-bar-message {
  margin-right: 24px;
}

.promo-bar-message p {
  margin: 0;
}

.promo-bar-close {
  border: 2px solid var(--neutral--100);
  color: var(--neutral--100);
  cursor: pointer;
  background: none;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  max-width: 35px;
  min-height: 35px;
  max-height: 35px;
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.3s;
  display: flex;
  position: absolute;
  right: 38px;
  top: 50%;
  transform: translateY(-50%);
}

.promo-bar-close:hover {
  opacity: 0.55;
}


/* ============================================================================
 * 8. HEADER / NAV
 * ============================================================================ */

.site-header-stack {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header {
  background-color: var(--neutral--100);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.site-header-stack .promo-bar {
  z-index: 1;
}

.header.scrolled {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

.header-logo-link {
  display: block;
  width: 100%;
  max-width: 170px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.header-logo-link:hover {
  transform: scale3d(0.96, 0.96, 1.01);
}

.header-logo {
  width: 100%;
  max-width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--neutral--600);
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 0;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--accent--primary-1);
}

.nav-link.active {
  color: var(--neutral--800);
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--neutral--600);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s;
}

.nav-dropdown-toggle:hover {
  color: var(--accent--primary-1);
}

.nav-dropdown-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.nav-dropdown.open .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--neutral--100);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid var(--neutral--400);
  border-radius: 22px;
  padding: 24px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 100;
  margin-top: 12px;
  /* Menu top sits ~77px below the viewport top (sticky header); scroll inside
     the menu instead of clipping at the viewport edge in short windows */
  max-height: calc(100vh - 110px);
  max-height: calc(100dvh - 110px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  color: var(--neutral--600);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.nav-dropdown-menu a:hover {
  background-color: var(--neutral--200);
  color: var(--accent--primary-1);
}

.nav-dropdown-heading {
  display: block;
  padding: 12px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--neutral--500);
}

.nav-dropdown-menu a.nav-dropdown-item--all {
  font-weight: 700;
  color: var(--accent--primary-1);
}

/* Hamburger menu */
.hamburger-menu {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  color: var(--neutral--800);
}

.hamburger-icon {
  transition: opacity 0.2s ease;
}

.hamburger-icon--close {
  display: none;
}

.hamburger-menu.open .hamburger-icon--open {
  display: none;
}

.hamburger-menu.open .hamburger-icon--close {
  display: block;
}

/* Header dark variant */
.header.bg-neutral-800 {
  background-color: var(--neutral--800);
}

.header.bg-neutral-800 .nav-link {
  color: var(--neutral--100);
}

.header.bg-neutral-800 .nav-link:hover {
  color: var(--accent--primary-1);
}

.header.bg-neutral-800 .nav-link.active {
  color: var(--neutral--100);
}

.header.bg-neutral-800 .hamburger-menu {
  color: var(--neutral--100);
}


/* ============================================================================
 * 9. HERO SECTIONS
 * ============================================================================ */

.hero {
  text-align: center;
}

.hero.hero-left {
  text-align: left;
}

.hero-content {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero-left .hero-content {
  margin-left: 0;
  margin-right: 0;
}

.hero-description {
  color: var(--neutral--600);
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.556em;
}

.hero-description.paragraph-large {
  font-size: 24px;
  line-height: 1.583em;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-left .hero-buttons {
  justify-content: flex-start;
}

/* Service page hero with gradient */
.section.hero-page {
  background-image: linear-gradient(to bottom, white 46%, var(--secondary--color-2) 46%);
}

.section.hero-home {
  padding-top: 5px;
  padding-bottom: 0;
}

.hero-card-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/images/laundry-worker-hero.png');
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), image-set(
    url('/assets/images/laundry-worker-hero.avif') type('image/avif'),
    url('/assets/images/laundry-worker-hero.webp') type('image/webp'),
    url('/assets/images/laundry-worker-hero.png') type('image/png')
  );
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 214px 40px;
  color: var(--neutral--100);
  text-align: center;
}

.hero-card-bg .hero-content {
  max-width: 854px;
}

.hero-card-bg h1 {
  color: var(--neutral--100);
}

.hero-card-bg .hero-description {
  color: var(--neutral--300);
}

.section.hero-v7 {
  background-color: var(--neutral--200);
}

.hero-image {
  border-radius: 22px;
  overflow: hidden;
  margin-top: 48px;
}

.hero-image img {
  width: 100%;
  border-radius: 22px;
}


/* ============================================================================
 * 10. SERVICE AREA (Homepage)
 * ============================================================================ */

.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.service-area-map {
  position: relative;
  min-height: 450px;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background-color: var(--neutral--200);
  border: 2px solid var(--neutral--500);
}

.service-area-map__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  gap: 12px;
  background-color: var(--neutral--200);
  color: var(--neutral--700);
}

.service-area-map__fallback-title {
  font-weight: 600;
  color: var(--neutral--800);
  margin: 0;
}

.service-area-map__fallback-address {
  margin: 0;
  color: var(--neutral--600);
  line-height: 1.5;
}

.service-area-map__fallback-link {
  color: var(--accent--primary-1);
  font-weight: 600;
  text-decoration: none;
}

.service-area-map__fallback-link:hover {
  text-decoration: underline;
}

.service-area-info h2 {
  margin-bottom: 24px;
}

.service-area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.service-area-note,
.pricing-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background-color: var(--system--blue-100);
  border-left: 3px solid var(--accent--primary-1);
  border-radius: 8px;
  color: var(--neutral--700);
  font-size: 15px;
}

.service-area-note a,
.pricing-disclaimer a {
  color: var(--accent--primary-1);
  font-weight: 600;
  text-decoration: none;
}

.service-area-note a:hover,
.pricing-disclaimer a:hover {
  text-decoration: underline;
}

.service-area-cities h4 {
  grid-column: 1 / -1;
}

.service-area-cities li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-area-cities li a:hover {
  color: var(--accent--primary-1);
  text-decoration: underline;
}

.service-area-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-city-list li {
  padding: 4px 0;
  color: var(--neutral--600);
  font-size: 16px;
}

.service-area-trust {
  padding: 48px;
  background-color: var(--neutral--800);
  border-radius: 22px;
  color: var(--neutral--400);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "text image"
    "stats stats";
  column-gap: 28px;
  row-gap: 32px;
  align-items: start;
}

.service-area-trust h3 {
  color: var(--neutral--100);
}

.service-area-trust .stat-number {
  color: var(--neutral--100);
}

.service-area-trust .stat-label {
  color: var(--neutral--400);
}

.service-area-trust-text {
  grid-area: text;
}

.service-area-stats {
  grid-area: stats;
}

/* Full-width stat band: a single row of four, divided by vertical rules. */
.service-area-trust .service-area-stats {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
}

.service-area-trust .service-area-stats .stat-item {
  text-align: center;
  padding: 0 18px;
}

.service-area-trust .service-area-stats .stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.service-area-trust-image {
  grid-area: image;
  width: 100%;
  height: 100%;
  min-height: 360px;
  align-self: stretch;
  object-fit: cover;
  border-radius: 22px;
  display: block;
}


/* ============================================================================
 * 11. PROCESS & SCHEDULING (Homepage)
 * ============================================================================ */

.process-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  margin: 32px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.process-step {
  text-align: center;
  padding: 48px 24px;
}

.process-step-number {
  color: var(--accent--primary-1);
  font-size: 68px;
  font-weight: 900;
  line-height: 1.088em;
  margin-bottom: 16px;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: var(--neutral--600);
}

.scheduling > .container > h2 {
  text-align: center;
}

.scheduling-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.scheduling-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 24px;
}

.scheduling-step:nth-child(even) .scheduling-step-image {
  order: 2;
}

.scheduling-step-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.scheduling-step-content h3 {
  margin-bottom: 16px;
}

.scheduling-step-content p {
  color: var(--neutral--600);
  margin: 0;
}

.scheduling-step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.scheduling-step h3 {
  margin-bottom: 12px;
}

.scheduling-step p {
  color: var(--neutral--600);
}


/* ---------- Residential service page ---------- */

.benefit-intro.bg-neutral-800 {
  color: var(--neutral--400);
}

.benefit-intro.bg-neutral-800 h2 {
  color: var(--neutral--100);
}

.benefit-intro.bg-neutral-800 .benefit-intro-content p {
  color: var(--neutral--400);
}

.industry-benefits.bg-neutral-800 h2 {
  color: var(--neutral--100);
}

.industry-benefits.bg-neutral-800 .residential-benefits-header p {
  color: var(--neutral--400);
}

/* Industry intro on industries without a hero image renders as a dark
   city-services section; light the heading and intro copy so they aren't
   dark-on-dark (the eyebrow is already accent-colored). */
.city-services.bg-neutral-800 h2 {
  color: var(--neutral--100);
}

.city-services.bg-neutral-800 .section-intro {
  color: var(--neutral--400);
}

.benefit-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.benefit-intro-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.benefit-intro-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent--primary-1);
  margin-bottom: 16px;
}

.benefit-intro-content h2 {
  margin-bottom: 20px;
}

.benefit-intro-content p {
  color: var(--neutral--600);
  margin-bottom: 20px;
}

.benefit-intro-content .btn-primary {
  margin-top: 8px;
}

.residential-benefits-header,
.residential-use-cases-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.residential-benefits-header p,
.residential-use-cases-header p {
  color: var(--neutral--600);
  margin-top: 12px;
}

.residential-use-cases-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.residential-use-cases-list li {
  position: relative;
  padding-left: 32px;
  color: var(--neutral--600);
  line-height: 1.5;
}

.residential-use-cases-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent--primary-1);
  box-shadow: 0 0 0 4px rgba(56, 165, 244, 0.18);
}

.residential-use-cases-list li strong {
  color: var(--neutral--800);
}

.residential-use-cases-footer {
  text-align: center;
  margin: 40px auto 0;
  color: var(--neutral--600);
}

.residential-use-cases-footer a {
  font-weight: 600;
}

.pricing-pointer-card {
  background-color: var(--neutral--100);
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 2px 12px 0 var(--general--shadow-02);
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
}

.pricing-pointer-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent--primary-1);
  margin-bottom: 12px;
}

.pricing-pointer-content h3 {
  margin-bottom: 12px;
}

.pricing-pointer-content p {
  color: var(--neutral--600);
  margin: 0;
}

.pricing-pointer-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.pricing-pointer-actions .btn-primary,
.pricing-pointer-actions .btn-secondary {
  text-align: center;
}


/* ============================================================================
 * 12. CARDS
 * ============================================================================ */

.card {
  border: 0px solid var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 12px 0 var(--general--shadow-02);
  border-radius: 22px;
}

.card-highlight {
  border: 2px solid var(--accent--primary-1);
}

.category-comparison .card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 12px;
}

.card.content-center {
  text-align: center;
  padding: 48px 24px;
}

.values-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
}

.values-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.values-header p {
  color: var(--neutral--600);
  margin-top: 12px;
}

.card.content-left {
  padding: 48px 32px;
}

.card-image {
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  display: block;
}

.card-body {
  padding: 32px;
}

.card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.card.content-center .card-icon {
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================================
 * 13. PRICING
 * ============================================================================ */

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.pricing-overview .card {
  position: relative;
  border-top: 4px solid var(--accent--primary-1);
  box-shadow: 0 10px 30px 0 var(--general--shadow-04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-overview .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px 0 var(--general--shadow-05);
}

.pricing-overview .values-icon {
  width: 72px;
  height: 72px;
}

.pricing-card {
  background-color: var(--neutral--100);
  box-shadow: 0 10px 30px 0 var(--general--shadow-04);
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px 0 var(--general--shadow-05);
}

.pricing-card-icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  display: block;
  margin: -16px auto 4px;
}

.pricing-card-icon + h2 {
  margin-top: 0;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-name {
  margin-bottom: 8px;
}

.pricing-price-prefix {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral--600);
  letter-spacing: 0.02em;
}

.pricing-price {
  color: var(--accent--primary-1);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2em;
  margin-bottom: 8px;
}

.pricing-price-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral--600);
}

.pricing-description {
  color: var(--neutral--600);
  margin-bottom: 32px;
  font-size: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--neutral--600);
  font-size: 16px;
  border-bottom: 1px solid var(--neutral--300);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2338a5f4'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  margin-top: auto;
  width: 100%;
}

/* A la carte grid */
.alacarte-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.alacarte-category {
  flex: 0 0 calc((100% - 48px) / 3);
  background-color: var(--neutral--100);
  box-shadow: 0 10px 30px 0 var(--general--shadow-04);
  border-radius: 22px;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.alacarte-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px 0 var(--general--shadow-05);
}

.alacarte-category h3 {
  margin: 0 0 20px;
  text-align: center;
}

.alacarte-icon {
  width: 72px;
  height: 72px;
  padding: 12px;
  background-color: rgba(56, 165, 244, 0.12);
  border-radius: 16px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto 14px;
}

.alacarte-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.alacarte-table th {
  text-align: left;
  font-weight: 600;
  color: var(--neutral--800);
  padding: 12px 4px;
  border-bottom: 2px solid var(--neutral--300);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.alacarte-table td {
  padding: 12px 4px;
  border-bottom: 1px solid var(--neutral--300);
  color: var(--neutral--600);
  font-size: 16px;
}

.alacarte-table tr:last-child td {
  border-bottom: none;
}

.alacarte-table td:last-child,
.alacarte-table th:last-child {
  text-align: right;
}

.alacarte-table td:last-child {
  color: var(--accent--primary-1);
  font-weight: 700;
}


/* ============================================================================
 * 14. FAQ ACCORDION
 * ============================================================================ */

.faqs {
  text-align: center;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--neutral--100);
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 var(--general--shadow-02);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 28px 0 var(--general--shadow-04);
}

.faq-item.open {
  box-shadow: 0 14px 36px 0 var(--general--shadow-04);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  font-family: inherit;
  border-radius: 18px;
}

.faq-question h3 {
  font-weight: 600;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-item.open .faq-question h3 {
  color: var(--accent--primary-1);
}

.faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(56, 165, 244, 0.12);
  position: relative;
  transition: background-color 0.3s, transform 0.3s ease;
}

.faq-icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--accent--primary-1);
  border-bottom: 2.5px solid var(--accent--primary-1);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  background-color: var(--accent--primary-1);
}

.faq-item.open .faq-icon::before {
  border-right-color: var(--neutral--100);
  border-bottom-color: var(--neutral--100);
  transform: translate(-50%, -30%) rotate(-135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  text-align: left;
  padding: 0 26px;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding-bottom: 26px;
}

.faq-answer p {
  color: var(--neutral--600);
  margin-bottom: 12px;
  max-width: none;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}


/* ============================================================================
 * 15. FORMS
 * ============================================================================ */

.input {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 12px 0 var(--general--shadow-02);
  color: var(--neutral--800);
  border-radius: 100px;
  min-height: 72px;
  padding: 16px 24px;
  font-size: 18px;
  font-family: inherit;
  line-height: 1.111em;
  width: 100%;
  transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.input:hover {
  border-color: var(--neutral--600);
  box-shadow: 0 2px 12px 0 var(--general--shadow-03);
}

.input:focus {
  outline: none;
  border-color: var(--accent--primary-1);
  color: var(--neutral--800);
}

.input::placeholder {
  color: var(--neutral--600);
}

.textarea {
  border: 1px solid var(--neutral--300);
  background-color: var(--neutral--100);
  box-shadow: 0 2px 12px 0 var(--general--shadow-02);
  color: var(--neutral--800);
  border-radius: 22px;
  min-height: 150px;
  padding: 20px 24px;
  font-size: 18px;
  font-family: inherit;
  line-height: 1.556em;
  width: 100%;
  resize: vertical;
  transition: box-shadow 0.3s, color 0.3s, border-color 0.3s;
}

.textarea:hover {
  border-color: var(--neutral--600);
  box-shadow: 0 2px 12px 0 var(--general--shadow-03);
}

.textarea:focus {
  outline: none;
  border-color: var(--accent--primary-1);
  color: var(--neutral--800);
}

.textarea::placeholder {
  color: var(--neutral--600);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--neutral--800);
  font-size: 16px;
}

.form-success {
  background-color: var(--system--green-100);
  color: var(--system--green-500);
  text-align: center;
  padding: 24px;
  border-radius: 22px;
  font-weight: 600;
  margin-top: 20px;
}

/* Keep the success heading on-color instead of the global dark-neutral h3. */
.form-success h3 {
  color: inherit;
}

.form-error {
  background-color: var(--system--red-100);
  color: var(--system--red-500);
  text-align: center;
  padding: 24px;
  border-radius: 22px;
  font-weight: 600;
  margin-top: 20px;
}

.field-error {
  display: block;
  margin-top: 6px;
  color: var(--system--red-400);
  font-size: 13px;
  font-weight: 500;
}

.field-error:empty {
  display: none;
}

.newsletter-form-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.newsletter-form-row .input {
  flex: 1;
}

.newsletter-form-row .btn-primary {
  flex-shrink: 0;
  white-space: nowrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper {
  background-color: var(--neutral--100);
  border-radius: 22px;
  box-shadow: 0 10px 30px 0 var(--general--shadow-04);
  padding: 40px;
}

.contact-sidebar {
  padding: 8px 0 0;
}

.contact-sidebar > h2:first-child,
.contact-sidebar > *:first-child {
  margin-top: 0;
}

.contact-channels {
  list-style: none;
  padding: 0;
  margin: 28px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background-color: var(--neutral--100);
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 var(--general--shadow-02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-channel:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px 0 var(--general--shadow-04);
}

.contact-channel-badge {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: rgba(56, 165, 244, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-channel-badge img {
  width: 26px;
  height: 26px;
  display: block;
}

.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-channel-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral--600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-channel-value {
  color: var(--neutral--800);
  font-size: 17px;
  font-weight: 600;
  word-break: break-word;
}

.contact-channel-value:hover {
  color: var(--accent--primary-1);
}

.contact-response-promise {
  font-size: 14px;
  color: var(--neutral--600);
  font-style: italic;
  margin: 0;
}

.contact-info-item {
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.contact-social a {
  color: var(--accent--primary-1);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-social a:hover {
  color: var(--secondary--color-1);
}

.contact-info {
  margin-top: 24px;
}

.contact-info-label {
  display: block;
  font-weight: 600;
  color: var(--neutral--800);
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item label,
.contact-info-item .contact-info-label {
  display: block;
  font-weight: 600;
  color: var(--neutral--800);
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item span,
.contact-info-item a {
  color: var(--neutral--600);
  font-size: 18px;
}

.contact-info-item a:hover {
  color: var(--accent--primary-1);
}


/* ============================================================================
 * 15b. CONTACT PAGE SECTIONS
 * ============================================================================ */

.contact-hero {
  text-align: center;
}

.contact-hero p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================================
 * 16. LOCATION CARD
 * ============================================================================ */

.location.bg-neutral-800 {
  color: var(--neutral--400);
}

.location.bg-neutral-800 h2 {
  color: var(--neutral--100);
}

.location.bg-neutral-800 > .container > p {
  color: var(--neutral--400);
}

.location.bg-neutral-800 > .container > p a {
  color: var(--accent--primary-1);
}

.location-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.location-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px;
}

.location-list::-webkit-scrollbar {
  display: none;
}

.location-carousel .location-card {
  flex: 0 0 80%;
  scroll-snap-align: center;
}

.location-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.location-carousel-arrow:hover {
  background-color: var(--secondary--color-1);
}

.location-carousel-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .location-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .location-carousel-arrow {
    display: none;
  }

  .location-carousel .location-card {
    flex: 0 0 88%;
  }
}

.location-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 0% 0%, #ffffff 0%, transparent 60%),
    linear-gradient(135deg, #eaf5ff 0%, #d8eeff 100%);
  box-shadow: 0 18px 40px -22px rgba(19, 38, 61, 0.55);
  border-radius: 22px;
  padding: 40px 36px 36px;
  color: var(--neutral--800);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--accent--primary-1), var(--secondary--color-1));
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -20px rgba(19, 38, 61, 0.65);
}

.location-card-eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary--color-1);
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(56, 165, 244, 0.14);
}

.location-card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--neutral--800);
}

.location-card-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--neutral--700);
}

.location-card-meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.location-card-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--accent--primary-1);
}

.location-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  align-self: flex-start;
  padding: 10px 18px;
  background-color: var(--neutral--800);
  color: var(--neutral--100);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.location-card-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.location-card-cta:hover {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
}

.location-card-cta:hover svg {
  transform: translateX(3px);
}

.location-card .location-hours-list li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.location-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.location-address {
  color: var(--neutral--600);
}

.location-address h4 {
  margin-bottom: 12px;
}

.location-hours h4 {
  margin-bottom: 12px;
}

.location-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--neutral--300);
  color: var(--neutral--600);
  font-size: 16px;
}

.location-hours-list li:last-child {
  border-bottom: none;
}


/* ============================================================================
 * 17. VALUES SECTION
 *     Uses .grid-3-columns with .card.content-center
 * ============================================================================ */

.values-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}


/* ============================================================================
 * 18. STATS SECTION
 * ============================================================================ */

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--neutral--800);
  font-size: 54px;
  font-weight: 900;
  line-height: 1.222em;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  color: var(--neutral--600);
  font-size: 16px;
  line-height: 1.5em;
}


/* ============================================================================
 * 19. FOOTER
 * ============================================================================ */

.footer {
  background-color: var(--neutral--200);
  padding-top: 100px;
  padding-bottom: 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent--primary-1) 30%, var(--accent--primary-1) 70%, transparent);
  opacity: 0.6;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 32px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  max-width: 170px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--neutral--600);
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 12px;
}

.footer-service-area {
  color: var(--neutral--600);
  font-size: 14px;
  line-height: 1.6em;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--neutral--300);
  color: var(--neutral--800);
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: var(--accent--primary-1);
  color: var(--neutral--100);
}

.footer-col h4 {
  color: var(--neutral--800);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  color: var(--neutral--600);
  padding: 6px 0;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent--primary-1);
}

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

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: rgba(56, 165, 244, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease;
}

.footer-contact-badge img {
  width: 22px;
  height: 22px;
  display: block;
}

.footer-contact:hover .footer-contact-badge {
  background-color: rgba(56, 165, 244, 0.22);
}

.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.footer-contact-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--neutral--600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact-body a {
  display: inline-block;
  padding: 0;
  color: var(--neutral--800);
  font-size: 16px;
  font-weight: 600;
  word-break: break-word;
}

.footer-contact-body a:hover {
  color: var(--accent--primary-1);
}

.footer-bottom {
  border-top: 1px solid var(--neutral--300);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--neutral--600);
}

.footer-bottom a {
  color: var(--neutral--600);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--accent--primary-1);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}


/* ============================================================================
 * 19b. MAILING LIST SECTION
 * ============================================================================ */

/* ---------- Pricing Teaser ---------- */

.pricing-teaser {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(56, 165, 244, 0.18), transparent 60%),
    radial-gradient(900px 320px at 110% 110%, rgba(56, 165, 244, 0.12), transparent 60%),
    linear-gradient(180deg, #f1f8ff 0%, #e8f2fb 100%);
}

.pricing-teaser-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.pricing-teaser-header p {
  color: var(--neutral--600);
  margin-top: 12px;
}

.pricing-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-teaser-card {
  background-color: var(--neutral--100);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 2px 12px 0 var(--general--shadow-02);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(19, 38, 61, 0.18);
}

.pricing-teaser-card.is-featured {
  background: linear-gradient(160deg, var(--neutral--800) 0%, #1c3858 100%);
  color: var(--neutral--100);
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -20px rgba(19, 38, 61, 0.45);
}

.pricing-teaser-card.is-featured:hover {
  transform: translateY(-12px);
}

.pricing-teaser-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent--primary-1);
  margin-bottom: 16px;
}

.pricing-teaser-card.is-featured .pricing-teaser-label {
  color: var(--neutral--100);
  opacity: 0.85;
}

.pricing-teaser-price {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--neutral--800);
}

.pricing-teaser-card.is-featured .pricing-teaser-price {
  color: var(--neutral--100);
}

.pricing-teaser-unit {
  font-size: 18px;
  font-weight: 500;
  color: var(--neutral--600);
  margin-left: 4px;
}

.pricing-teaser-card.is-featured .pricing-teaser-unit {
  color: var(--neutral--400);
}

.pricing-teaser-desc {
  color: var(--neutral--600);
  margin: 0;
}

.pricing-teaser-card.is-featured .pricing-teaser-desc {
  color: var(--neutral--400);
}

.pricing-teaser-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
  color: var(--neutral--100);
}

.final-cta-card {
  background-color: var(--neutral--800);
  background-image: linear-gradient(rgba(10, 20, 35, 0.72), rgba(10, 20, 35, 0.72)), url("/assets/images/man-with-cap-paying-laundry-services.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 80px 48px 56px;
  overflow: hidden;
}

.final-cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent--primary-1);
  margin-bottom: 16px;
}

.final-cta h2 {
  color: var(--neutral--100);
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--neutral--400);
  max-width: 600px;
  margin: 0 auto 32px;
}

.final-cta .btn-primary {
  margin-bottom: 8px;
}

.final-cta-newsletter {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-newsletter-label {
  color: var(--neutral--400) !important;
  font-size: 15px;
  margin: 0 auto 16px !important;
}

.final-cta-newsletter .newsletter-form {
  max-width: 520px;
  margin: 0 auto;
}


/* ============================================================================
 * 20. CTA SECTION
 * ============================================================================ */

.cta-section {
  text-align: center;
}

.cta-content {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}


/* ============================================================================
 * 21. SECTION GRADIENT VARIANTS
 * ============================================================================ */

.section.cta-home-pages {
  background-image: linear-gradient(to bottom, var(--neutral--200) 28%, white 28%);
}

.section.template-pages-hero {
  background-color: var(--neutral--800);
  padding-top: 140px;
  padding-bottom: 140px;
}

.section.template-pages-hero h1,
.section.template-pages-hero h2,
.section.template-pages-hero h3,
.section.template-pages-hero p {
  color: var(--neutral--100);
}


/* ============================================================================
 * 22. UTILITY CLASSES
 * ============================================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.color-accent {
  color: var(--accent--primary-1);
}


/* ============================================================================
 * 23. RESPONSIVE — TABLET (max-width: 991px)
 * ============================================================================ */

@media screen and (max-width: 991px) {
  /* A la carte */
  .alacarte-category {
    flex-basis: calc((100% - 24px) / 2);
  }

  /* Pricing teaser */
  .pricing-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-teaser-card.is-featured {
    grid-column: span 2;
    transform: none;
  }

  /* Typography */
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  .display-1 {
    font-size: 60px;
  }

  .display-2 {
    font-size: 48px;
  }

  .display-3 {
    font-size: 32px;
  }

  .display-4 {
    font-size: 26px;
  }

  /* Section */
  .section {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  /* Header */
  .header-container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hamburger-menu {
    display: flex;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral--100);
    flex-direction: column;
    padding: 24px;
    border-top: 1px solid var(--neutral--300);
    box-shadow: 0 6px 20px 0 var(--general--shadow-03);
    gap: 0;
    /* Panel hangs from the sticky header (~95px tall); scroll inside the
       panel instead of clipping at the viewport edge in short windows */
    max-height: calc(100vh - 110px);
    max-height: calc(100dvh - 110px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav .nav-link {
    padding: 16px 0;
    border-bottom: 1px solid var(--neutral--300);
    width: 100%;
    display: block;
  }

  .nav-dropdown .nav-link {
    border-bottom: none;
  }

  .header-nav .nav-link:last-child {
    border-bottom: none;
  }

  .header-nav .btn-primary {
    margin-top: 16px;
    width: 100%;
  }

  .header.bg-neutral-800 .header-nav {
    background-color: var(--neutral--800);
    border-top-color: var(--neutral--700);
  }

  /* Hide Schedule Pickup button in header on mobile */
  .header-container > .btn-primary.small {
    display: none;
  }

  /* Nav dropdown mobile */
  .nav-dropdown {
    width: 100%;
    border-bottom: 1px solid var(--neutral--300);
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 16px 0;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 8px 16px;
    margin-top: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    /* Inside the scrolling panel: no inner scrollbar of its own */
    max-height: none;
    overflow-y: visible;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  /* Grids */
  .grid-3-columns {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4-columns {
    grid-template-columns: 1fr 1fr;
  }

  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr 1fr;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Process / Scheduling */
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Promo bar */
  .promo-bar {
    padding-left: 56px;
    padding-right: 56px;
  }

  .promo-bar-flex {
    flex-direction: column;
  }

  .promo-bar-message {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .promo-bar-close {
    right: 21px;
  }

  /* Stat number */
  .stat-number {
    font-size: 48px;
  }

  /* Pricing price */
  .pricing-price {
    font-size: 48px;
  }
}


/* ============================================================================
 * 24. RESPONSIVE — MOBILE LANDSCAPE (max-width: 767px)
 * ============================================================================ */

@media screen and (max-width: 767px) {
  /* Residential page */
  .benefit-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .residential-use-cases-list {
    grid-template-columns: 1fr;
  }

  .pricing-pointer-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  /* Pricing teaser */
  .pricing-teaser-grid {
    grid-template-columns: 1fr;
  }

  .pricing-teaser-card.is-featured {
    transform: none;
  }

  .pricing-teaser-card.is-featured:hover {
    transform: translateY(-4px);
  }

  .final-cta-card {
    padding: 56px 24px 40px;
  }

  /* Typography */
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  .display-1 {
    font-size: 48px;
  }

  .display-2 {
    font-size: 38px;
  }

  .display-3 {
    font-size: 30px;
  }

  .display-4 {
    font-size: 22px;
  }

  /* Section */
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* Header */
  .header-logo-link {
    max-width: 152px;
  }

  .header-container {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  /* Grids */
  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-3-columns {
    grid-template-columns: 1fr;
  }

  .grid-4-columns {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  /* A la carte */
  .alacarte-category {
    flex-basis: 100%;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Process / Scheduling */
  .process-steps {
    grid-template-columns: 1fr;
  }

  .scheduling-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .scheduling-step:nth-child(even) .scheduling-step-image {
    order: 0;
  }

  /* Service area */
  .service-area-content {
    grid-template-columns: 1fr;
  }

  .service-area-trust {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "stats"
      "image";
    padding: 28px;
    gap: 24px;
  }

  .service-area-trust-image {
    height: auto;
    min-height: 0;
  }

  /* Stat band → 2 columns, gap-separated (no vertical rules). */
  .service-area-trust .service-area-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 24px;
  }

  .service-area-trust .service-area-stats .stat-item {
    padding: 0;
  }

  .service-area-trust .service-area-stats .stat-item + .stat-item {
    border-left: 0;
  }

  /* Location */
  .location-details {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-col--contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

  /* Buttons */
  .btn-primary {
    padding: 20px 30px;
    font-size: 16px;
  }

  .btn-secondary {
    padding: 20px 30px;
    font-size: 16px;
  }

  /* Stat number */
  .stat-number {
    font-size: 38px;
  }

  /* Pricing price */
  .pricing-price {
    font-size: 38px;
  }

  /* Hero */
  .hero-card-bg {
    padding: 110px 32px;
    border-radius: 18px;
  }

  .hero-description.paragraph-large {
    font-size: 20px;
  }

  /* Promo bar */
  .promo-bar {
    padding-left: 36px;
    padding-right: 36px;
    font-size: 16px;
  }

  .promo-bar-message {
    margin-right: 0;
  }

  .promo-bar-close {
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
    font-size: 14px;
    right: 8px;
  }

  /* Section gradient adjustments */
  .section.template-pages-hero {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


/* ============================================================================
 * 25. RESPONSIVE — MOBILE SMALL (max-width: 479px)
 * ============================================================================ */

@media screen and (max-width: 479px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  .display-1 {
    font-size: 40px;
  }

  .display-2 {
    font-size: 34px;
  }

  .display-3 {
    font-size: 28px;
  }

  .display-4 {
    font-size: 20px;
  }

  /* Section */
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  /* Container */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Header */
  .header-logo-link {
    max-width: 138px;
  }

  .header-container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Hero card */
  .hero-card-bg {
    border-radius: 16px;
    padding: 92px 24px;
  }

  /* Buttons — full width */
  .btn-primary {
    width: 100%;
    padding: 18px 20px;
  }

  .btn-secondary {
    width: 100%;
    padding: 18px 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form-row {
    flex-direction: column;
  }

  .newsletter-form-row .btn-primary {
    width: 100%;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Trust-card stat band → single column. */
  .service-area-trust .service-area-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Pricing */
  .pricing-price {
    font-size: 32px;
  }

  /* Service area cities */
  .service-area-cities {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    padding-top: 60px;
  }

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

  /* Promo bar */
  .promo-bar {
    padding-left: 19px;
    padding-right: 19px;
  }

  /* Section gradient adjustments */
  .section.template-pages-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* FAQ */
  .faq-question {
    padding: 18px 20px;
    gap: 14px;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.open .faq-answer {
    padding-bottom: 20px;
  }

  /* Card padding */
  .card.content-center {
    padding: 32px 20px;
  }

  .card.content-left {
    padding: 32px 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .location-card {
    padding: 32px 24px;
  }

  .contact-sidebar {
    padding: 0;
  }

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .contact-channel {
    padding: 14px 16px;
  }

  .alacarte-category {
    padding: 24px;
  }
}

/* ============================================================================
 * 24. CITY LANDING PAGES
 * ============================================================================ */

.city-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent--primary-1);
  margin-bottom: 12px;
}

.city-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.city-services .card .btn-secondary,
.city-process .card .btn-secondary {
  margin-top: 16px;
}

/* "Industries we serve in {category}" cards. A centered flex row (instead of
   the shared 3-col grid) keeps a partial final row centered rather than
   leaving an odd card stranded against the left edge. Basis values mirror the
   .grid-3-columns breakpoints: 3-up, then 2-up <=991px, then 1-up <=767px. */
.industries-served-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.industries-served-grid > .card {
  flex: 0 1 calc(33.333% - 20px);
}

@media screen and (max-width: 991px) {
  .industries-served-grid > .card {
    flex-basis: calc(50% - 16px);
  }
}

@media screen and (max-width: 767px) {
  .industries-served-grid > .card {
    flex-basis: 100%;
  }
}

.city-neighbors-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.city-neighbors-list li {
  padding: 0;
}

.city-neighbors-list a {
  display: block;
  padding: 14px 18px;
  background-color: var(--neutral--100);
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 var(--general--shadow-02);
  color: var(--neutral--800);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.city-neighbors-list a:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px 0 var(--general--shadow-04);
  color: var(--accent--primary-1);
}

/* Industries hub: business-type links get an explicit clickable affordance */
.industry-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--neutral--300);
}

.industry-links a::after {
  content: "\2192";
  color: var(--accent--primary-1);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.industry-links a:hover {
  border-color: var(--accent--primary-1);
}

.industry-links a:hover::after {
  transform: translateX(4px);
}

.city-neighbors-all {
  margin-top: 12px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .city-neighbors-list {
    grid-template-columns: 1fr;
  }
}

/* City "Why [City]" section */
.city-segments-heading {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--accent--primary-1);
}

.city-segments-list {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  padding-left: 1.25rem;
  line-height: 1.6;
}

.city-segments-list li {
  margin-bottom: 0.5rem;
}

.city-inclusive-close {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--neutral--600);
}


/* ============================================================================
 * HOSPITALITY COST CALCULATOR
 * Embeddable section, fully scoped under .cln-calc. Markup lives in
 * _includes/cost-calculator.njk; behaviour in assets/js/cost-calculator.js.
 * Ported from the Claude Design handoff; palette + fonts adapted to the CLN
 * design tokens (CTA mirrors .btn-primary, emphasis mirrors .text-accent).
 * ============================================================================ */
.cln-calc {
  /* ---- Brand tokens, scoped + mapped to the CLN palette ---- */
  --surf-blue:var(--accent--primary-1); --surf-blue-dark:var(--secondary--color-1); --surf-blue-deep:var(--neutral--800);
  --sun-sand:var(--accent--primary-1); --sun-sand-deep:var(--secondary--color-1);
  --deep-navy:var(--neutral--800); --navy-800:var(--neutral--800); --navy-700:var(--neutral--700);
  --foam-white:var(--neutral--200); --surface:var(--neutral--100); --soft-sky:var(--system--blue-100); --sky-tint:var(--neutral--200);
  --gray-100:var(--neutral--200); --gray-200:var(--neutral--300); --gray-300:var(--neutral--400);
  --gray-400:var(--neutral--500); --gray-500:var(--neutral--600); --gray-600:var(--neutral--700);
  --fg-1:var(--neutral--800); --fg-2:var(--neutral--700); --fg-3:var(--neutral--600);
  --border-subtle:var(--neutral--300); --border-strong:var(--neutral--400);
  --radius-sm:6px; --radius-md:12px; --radius-lg:20px; --radius-xl:28px; --radius-pill:999px;
  --shadow-sm:0 1px 2px rgba(19,38,61,.06),0 1px 1px rgba(19,38,61,.04);
  --shadow-md:0 6px 18px rgba(19,38,61,.08),0 2px 4px rgba(19,38,61,.04);
  --shadow-lg:0 18px 40px rgba(19,38,61,.12),0 6px 12px rgba(19,38,61,.06);
  --shadow-focus:0 0 0 4px rgba(56,165,244,.25);
  --ease-out:cubic-bezier(.2,.8,.2,1);
  --font-display:'Thicccboi',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-body:'Thicccboi',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;

  /* segment colors for the breakdown bar (tuned for the dark navy surface) */
  --seg-labor:var(--accent--primary-1);   /* brightest — dominant chunk */
  --seg-util:var(--accent--primary-2);     /* indigo */
  --seg-equip:var(--secondary--color-2);   /* pale sky */

  box-sizing:border-box;
  font-family:var(--font-body);
  color:var(--fg-1);
  background:var(--foam-white);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  padding:clamp(40px,7vw,96px) var(--g, 24px);
}
.cln-calc *,.cln-calc *::before,.cln-calc *::after{box-sizing:border-box;}
@media (min-width:900px){ .cln-calc{ --g:48px; } }

.cln-shell{ max-width:1120px; margin:0 auto; }

/* ---------- Section head ---------- */
.cln-head{ max-width:680px; margin:0 0 clamp(28px,4vw,48px); }
.cln-eyebrow{
  font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--surf-blue); margin:0 0 14px;
}
.cln-head h2{
  font-family:var(--font-display); font-weight:600;
  font-size:clamp(30px,4vw,46px); line-height:1.08; letter-spacing:-.025em;
  color:var(--deep-navy); margin:0 0 16px; text-wrap:balance;
}
.cln-head h2 em{ font-style:normal; color:var(--surf-blue); font-weight:700; }
.cln-head p{
  font-size:clamp(16px,2vw,19px); line-height:1.55; color:var(--fg-2);
  margin:0; max-width:540px; text-wrap:pretty;
}

/* ---------- Two-column layout ---------- */
.cln-grid{
  display:grid; grid-template-columns:1fr; gap:24px; align-items:stretch;
}
@media (min-width:940px){
  .cln-grid{ grid-template-columns:minmax(0,1fr) minmax(0,1.02fr); gap:32px; }
}

/* ---------- Inputs panel ---------- */
.cln-inputs{
  background:var(--surface); border:1px solid var(--border-subtle);
  border-radius:var(--radius-xl); box-shadow:var(--shadow-md);
  padding:clamp(22px,3vw,32px);
  display:flex; flex-direction:column; gap:26px;
}
.cln-field{ display:flex; flex-direction:column; gap:11px; }
.cln-label{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.cln-label .lab{
  font-size:12px; font-weight:600; letter-spacing:.07em; text-transform:uppercase;
  color:var(--fg-1);
}

/* Help icon + tooltip */
.cln-labwrap{ position:relative; display:inline-flex; align-items:center; gap:7px; }
.cln-help{
  flex:0 0 auto; width:18px; height:18px; padding:0; border-radius:50%;
  border:1px solid var(--border-strong); background:var(--surface);
  color:var(--fg-3); font-family:var(--font-body); font-size:11px; font-weight:700;
  line-height:1; cursor:pointer; display:grid; place-items:center;
  transition:all 150ms var(--ease-out);
}
.cln-help:hover{ border-color:var(--surf-blue); color:var(--surf-blue); background:var(--soft-sky); }
.cln-help:focus-visible{ outline:none; box-shadow:var(--shadow-focus); border-color:var(--surf-blue); color:var(--surf-blue); }
.cln-help[aria-expanded="true"]{ border-color:var(--surf-blue); color:var(--surf-blue); background:var(--soft-sky); }
.cln-tip{
  position:absolute; top:calc(100% + 9px); left:-4px; z-index:20;
  width:max-content; max-width:248px;
  background:var(--deep-navy); color:#fff;
  font-size:12.5px; font-weight:400; line-height:1.45; letter-spacing:0;
  text-transform:none; text-align:left;
  padding:10px 13px; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  opacity:0; visibility:hidden; transform:translateY(-4px);
  transition:opacity 150ms var(--ease-out), transform 150ms var(--ease-out), visibility 150ms;
  pointer-events:none;
}
.cln-tip::before{
  content:""; position:absolute; bottom:100%; left:11px;
  border:6px solid transparent; border-bottom-color:var(--deep-navy);
}
.cln-labwrap:hover .cln-tip,
.cln-help:focus-visible + .cln-tip,
.cln-help[aria-expanded="true"] + .cln-tip{
  opacity:1; visibility:visible; transform:translateY(0);
}
@media (min-width:540px){ .cln-tip{ max-width:280px; } }
.cln-label .val{
  font-family:var(--font-body); font-size:14px; font-weight:600; color:var(--surf-blue);
  font-variant-numeric:tabular-nums;
}

/* Segmented control */
.cln-seg{
  display:grid; grid-template-columns:1fr 1fr; gap:8px;
}
.cln-seg button{
  font-family:var(--font-body); font-size:14px; font-weight:600;
  color:var(--fg-2); background:var(--foam-white);
  border:1px solid var(--border-subtle); border-radius:var(--radius-md);
  padding:13px 12px; cursor:pointer; text-align:center; line-height:1.2;
  transition:all 150ms var(--ease-out);
}
.cln-seg button:hover{ border-color:var(--border-strong); color:var(--fg-1); }
.cln-seg button[aria-pressed="true"]{
  background:var(--surf-blue); border-color:var(--surf-blue); color:#fff;
  box-shadow:var(--shadow-sm);
}
.cln-seg button:focus-visible{ outline:none; box-shadow:var(--shadow-focus); }

/* Stepper */
.cln-step{
  display:inline-flex; align-items:stretch; width:100%;
  border:1px solid var(--border-strong); border-radius:var(--radius-md);
  overflow:hidden; background:var(--foam-white);
  transition:border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.cln-step:focus-within{ border-color:var(--surf-blue); box-shadow:var(--shadow-focus); }
.cln-step button{
  flex:0 0 52px; border:none; background:transparent; cursor:pointer;
  font-size:22px; font-weight:500; color:var(--surf-blue); line-height:1;
  display:grid; place-items:center; transition:background 150ms var(--ease-out);
}
.cln-step button:hover{ background:var(--soft-sky); }
.cln-step button:active{ background:#d3e8fb; }
.cln-step button:focus-visible{ outline:none; box-shadow:inset var(--shadow-focus); }
.cln-step input{
  flex:1 1 auto; min-width:0; border:none; background:transparent; text-align:center;
  font-family:var(--font-body); font-size:20px; font-weight:600; color:var(--fg-1);
  font-variant-numeric:tabular-nums; padding:13px 4px;
  -moz-appearance:textfield;
}
.cln-step input::-webkit-outer-spin-button,
.cln-step input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.cln-step input:focus{ outline:none; }

/* Range slider */
.cln-range{
  -webkit-appearance:none; appearance:none; width:100%; height:6px;
  border-radius:var(--radius-pill); background:var(--gray-200);
  outline:none; margin:6px 0 0; cursor:pointer;
}
.cln-range::-webkit-slider-runnable-track{ height:6px; border-radius:var(--radius-pill); }
.cln-range::-moz-range-track{ height:6px; border-radius:var(--radius-pill); background:var(--gray-200); }
.cln-range::-moz-range-progress{ height:6px; border-radius:var(--radius-pill); background:var(--surf-blue); }
.cln-range::-webkit-slider-thumb{
  -webkit-appearance:none; appearance:none; width:24px; height:24px; margin-top:-9px;
  border-radius:50%; background:#fff; border:5px solid var(--surf-blue);
  box-shadow:var(--shadow-sm); cursor:pointer; transition:transform 120ms var(--ease-out);
}
.cln-range::-moz-range-thumb{
  width:24px; height:24px; border-radius:50%; background:#fff;
  border:5px solid var(--surf-blue); box-shadow:var(--shadow-sm); cursor:pointer;
}
.cln-range:active::-webkit-slider-thumb{ transform:scale(1.08); }
.cln-range:focus-visible{ box-shadow:var(--shadow-focus); }
.cln-scale{
  display:flex; justify-content:space-between; margin-top:8px;
  font-size:12px; color:var(--fg-3); font-variant-numeric:tabular-nums;
}

/* Wage input */
.cln-money{
  display:flex; align-items:center; width:100%;
  border:1px solid var(--border-strong); border-radius:var(--radius-md);
  background:var(--foam-white); overflow:hidden;
  transition:border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}
.cln-money:focus-within{ border-color:var(--surf-blue); box-shadow:var(--shadow-focus); }
.cln-money .pre{
  padding:0 4px 0 16px; font-size:20px; font-weight:600; color:var(--fg-3);
}
.cln-money input{
  flex:1 1 auto; min-width:0; border:none; background:transparent;
  font-family:var(--font-body); font-size:20px; font-weight:600; color:var(--fg-1);
  font-variant-numeric:tabular-nums; padding:13px 14px 13px 2px;
  -moz-appearance:textfield;
}
.cln-money input::-webkit-outer-spin-button,
.cln-money input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
.cln-money input:focus{ outline:none; }
.cln-money .suf{ padding:0 16px 0 4px; font-size:14px; color:var(--fg-3); white-space:nowrap; }

.cln-hint{ font-size:13px; color:var(--fg-3); line-height:1.5; margin:0; }

/* ---------- Results card (the hero) ---------- */
.cln-result{
  background:var(--deep-navy); color:#fff;
  border-radius:var(--radius-xl); box-shadow:var(--shadow-lg);
  padding:clamp(24px,3.4vw,38px);
  display:flex; flex-direction:column;
  position:relative; overflow:hidden;
}
.cln-result::after{ /* subtle top sheen, kept very faint */
  content:""; position:absolute; inset:0 0 auto 0; height:1px;
  background:rgba(255,255,255,.08);
}
.cln-rk{
  font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase;
  color:var(--sun-sand); margin:0 0 18px;
}
.cln-figwrap{ display:flex; align-items:baseline; gap:4px; flex-wrap:wrap; }
.cln-roughly{
  font-size:14px; font-weight:600; color:rgba(255,255,255,.55);
  letter-spacing:.02em; align-self:center;
}
.cln-fig{
  font-family:var(--font-display); font-weight:600; letter-spacing:-.03em;
  font-size:clamp(56px,9.5vw,104px); line-height:.96; color:#fff;
  font-variant-numeric:tabular-nums;
}
.cln-per{
  font-family:var(--font-display); font-weight:500;
  font-size:clamp(22px,3vw,30px); color:rgba(255,255,255,.6); letter-spacing:-.01em;
}
.cln-sub{
  font-size:clamp(15px,1.7vw,17px); line-height:1.5; color:rgba(255,255,255,.82);
  margin:18px 0 0; max-width:46ch; text-wrap:pretty;
}
.cln-sub strong{ color:var(--sun-sand); font-weight:600; }

/* Stacked breakdown bar */
.cln-bar{
  display:flex; width:100%; height:18px; border-radius:var(--radius-pill);
  overflow:hidden; margin:26px 0 0; background:rgba(255,255,255,.08);
}
.cln-bar span{
  display:block; height:100%;
  transition:width 420ms var(--ease-out);
}
.cln-seg-labor{ background:var(--seg-labor); }
.cln-seg-util{ background:var(--seg-util); }
.cln-seg-equip{ background:var(--seg-equip); }

.cln-legend{
  display:grid; grid-template-columns:1fr; gap:10px; margin:18px 0 0;
  list-style:none; padding:0;
}
@media (min-width:520px){ .cln-legend{ grid-template-columns:1fr 1fr 1fr; gap:14px; } }
.cln-legend li{ display:flex; flex-direction:column; gap:5px; }
.cln-legend .lg-top{ display:flex; align-items:center; gap:8px; }
.cln-legend .dot{ width:11px; height:11px; border-radius:3px; flex:0 0 auto; }
.cln-legend .nm{ font-size:12.5px; font-weight:500; color:rgba(255,255,255,.72); line-height:1.25; }
.cln-legend .amt{
  font-size:18px; font-weight:600; color:#fff; font-variant-numeric:tabular-nums;
  padding-left:19px;
}

/* Rotating context line */
.cln-context{
  margin:24px 0 0; padding:16px 18px;
  background:rgba(255,255,255,.06); border-left:3px solid var(--sun-sand);
  border-radius:0 var(--radius-md) var(--radius-md) 0;
  min-height:64px; display:flex; align-items:center;
}
.cln-context p{
  margin:0; font-size:15px; line-height:1.5; color:rgba(255,255,255,.88);
  transition:opacity 320ms var(--ease-out);
}

/* CTA */
.cln-cta{ margin-top:auto; padding-top:28px; }
.cln-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  width:100%; font-family:var(--font-body); font-weight:600; font-size:16px;
  padding:17px 28px; border-radius:var(--radius-pill); border:1px solid transparent;
  background:var(--accent--primary-1); color:var(--neutral--100); cursor:pointer;
  text-decoration:none; line-height:1; box-shadow:var(--shadow-sm);
  transition:all 150ms var(--ease-out);
}
.cln-btn:hover{ background:var(--secondary--color-1); color:var(--neutral--100); box-shadow:var(--shadow-md); transform:translateY(-1px); text-decoration:none; }
.cln-btn:active{ transform:scale(.985); box-shadow:var(--shadow-sm); }
.cln-btn:focus-visible{ outline:none; box-shadow:var(--shadow-focus); }
.cln-btn svg{ width:18px; height:18px; }
.cln-call{
  text-align:center; margin:14px 0 0; font-size:14px; color:rgba(255,255,255,.62);
}
.cln-call a{ color:#fff; font-weight:600; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.3); padding-bottom:1px; }
.cln-call a:hover{ border-color:#fff; }

/* ---------- How we estimate this ---------- */
.cln-foot{ max-width:760px; margin:24px 0 0; }
.cln-details{
  border:1px solid var(--border-subtle); border-radius:var(--radius-lg);
  background:var(--surface); overflow:hidden;
}
.cln-details summary{
  list-style:none; cursor:pointer; padding:16px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-size:14px; font-weight:600; color:var(--fg-1);
}
.cln-details summary::-webkit-details-marker{ display:none; }
.cln-details summary:hover{ color:var(--surf-blue); }
.cln-details summary:focus-visible{ outline:none; box-shadow:var(--shadow-focus); border-radius:var(--radius-lg); }
.cln-chev{ width:18px; height:18px; color:var(--fg-3); transition:transform 240ms var(--ease-out); flex:0 0 auto; }
.cln-details[open] .cln-chev{ transform:rotate(180deg); }
.cln-details .body{ padding:4px 20px 20px; }
.cln-details ul{ margin:0 0 14px; padding-left:20px; display:grid; gap:8px; }
.cln-details li{ font-size:14px; line-height:1.55; color:var(--fg-2); }
.cln-details li b{ color:var(--fg-1); font-weight:600; }
.cln-disc{
  font-size:13.5px; line-height:1.55; color:var(--fg-3); margin:0;
  padding-top:14px; border-top:1px solid var(--border-subtle);
}

.cln-sr{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

@media (prefers-reduced-motion:reduce){
  .cln-calc *{ transition:none !important; }
}
