/* Cost Guide Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Space+Mono:wght@400;700&display=swap');

.cost-guide {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #777;
  --border: #e8e6e3;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;

  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.cost-guide h1,
.cost-guide h2,
.cost-guide h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.cost-guide h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.cost-guide h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.cost-guide h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0 0 0.5rem;
}

.cost-guide p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.cost-guide__hero {
  background: var(--bg-section);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.cost-guide__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
}

.cost-guide__summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-main);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.cost-guide__price {
  font-family: 'Space Mono', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.cost-guide__note {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Calculator */
.cost-guide__calculator {
  max-width: 720px;
  margin: 1.5rem auto 0;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.cost-guide__calculator-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.cost-guide__calculator-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cost-guide__calculator-select {
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  padding: 0.6rem 0.75rem;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.cost-guide__calculator-result {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: var(--bg-main);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  min-width: 160px;
}

.cost-guide__calculator-price {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.cost-guide__calculator-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* Included Section */
.cost-guide__included {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.cost-guide__checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.cost-guide__checklist li {
  background: var(--bg-main);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.9375rem;
}

.cost-guide__checklist li strong {
  color: var(--text-primary);
}

.cost-guide__note--small {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* Cities Section */
.cost-guide__cities {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
}

.cost-guide__table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cost-guide__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-section);
  min-width: 400px;
}

.cost-guide__table th,
.cost-guide__table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.cost-guide__table th {
  background: var(--bg-main);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.cost-guide__table tbody tr {
  transition: background 0.15s ease;
}

.cost-guide__table tbody tr:hover {
  background: var(--bg-main);
}

.cost-guide__table tbody tr:last-child td {
  border-bottom: none;
}

.cost-guide__range {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--accent);
}

.cost-guide__link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
}

.cost-guide__link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* FAQ Section */
.cost-guide__faq {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.cost-guide__faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.cost-guide__faq-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cost-guide__faq-item p {
  margin: 0;
  line-height: 1.7;
}

.cost-guide__faq-item strong {
  color: var(--accent);
}

/* CTA Section */
.site-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e8e6e3;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.site-header__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.site-header__brand {
  color: #1a1a1a;
  font-family: 'Syne', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem 0.5rem;
}

.site-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 0.9rem;
  text-decoration: none;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  background: #faf9f7;
  color: #a84a08;
}

.site-header__nav .site-header__cleaner-cta {
  background: #c95d0e;
  color: #fff;
  font-weight: 600;
}

.site-header__nav .site-header__cleaner-cta:hover,
.site-header__nav .site-header__cleaner-cta:focus-visible {
  background: #a84a08;
  color: #fff;
}

.site-header__nav a:focus-visible,
.site-header__brand:focus-visible {
  outline: 2px solid #c95d0e;
  outline-offset: 2px;
}

.cost-guide__cta {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  text-align: center;
  border-top: 1px solid var(--border);
}

.cost-guide__cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cost-guide__city-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.cost-guide__city-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.cost-guide__city-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.cost-guide__city-price {
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 700;
}

/* Cleaner Directory: per-city trust badges (counts derived live from cleaners-data.js) */
.cleaner-matching-form {
  max-width: 960px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--bg-section, #fff);
  border: 1px solid var(--border, #e8e6e3);
  border-top: 4px solid var(--accent, #c95d0e);
  border-radius: var(--radius, 8px);
  box-shadow: var(--shadow, 0 2px 8px rgba(0,0,0,0.06));
  color: var(--text-primary, #1a1a1a);
}

.cleaner-matching-form__intro {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.cleaner-matching-form__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent, #c95d0e);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cleaner-matching-form h2 {
  margin: 0 0 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.2;
}

.cleaner-matching-form__intro p:last-child {
  margin: 0;
  color: var(--text-secondary, #555);
}

.cleaner-matching-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cleaner-matching-form__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.cleaner-matching-form__field label {
  color: var(--text-primary, #1a1a1a);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cleaner-matching-form__field label span {
  color: var(--text-muted, #777);
  font-weight: 400;
  text-transform: none;
}

.cleaner-matching-form__field input,
.cleaner-matching-form__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--border, #e8e6e3);
  border-radius: var(--radius, 8px);
  background: var(--bg-main, #faf9f7);
  color: var(--text-primary, #1a1a1a);
  font: inherit;
  line-height: 1.45;
  resize: vertical;
}

.cleaner-matching-form__field input:focus,
.cleaner-matching-form__field textarea:focus {
  outline: 2px solid var(--accent, #c95d0e);
  outline-offset: 1px;
  border-color: var(--accent, #c95d0e);
}

.cleaner-matching-form__field input[aria-invalid="true"],
.cleaner-matching-form__field textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: #fff5f3;
}

.cleaner-matching-form__error {
  min-height: 1.1em;
  color: #c0392b;
  font-size: 0.8rem;
}

.cleaner-matching-form__field:not([data-invalid="true"]) .cleaner-matching-form__error {
  visibility: hidden;
}

.cleaner-matching-form__submit-row {
  margin-top: 0.25rem;
}

.cleaner-matching-form__submit {
  display: inline-block;
  padding: 0.75rem 1.3rem;
  border: 0;
  border-radius: var(--radius, 8px);
  background: var(--accent, #c95d0e);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cleaner-matching-form__submit:hover {
  background: var(--accent-hover, #a84a08);
  transform: translateY(-1px);
}

.cleaner-matching-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cleaner-matching-form__success,
.cleaner-matching-form__server-error {
  display: none;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius, 8px);
}

.cleaner-matching-form__success {
  border: 1px solid #d8e3d4;
  background: #f5f5f5;
  color: var(--text-primary, #1a1a1a);
}

.cleaner-matching-form__server-error {
  border: 1px solid #c0392b;
  background: #fff5f3;
  color: #c0392b;
}

.cleaner-matching-form[data-state="success"] .cleaner-matching-form__success {
  display: block;
}

.cleaner-matching-form[data-state="success"] .cleaner-matching-form__fields,
.cleaner-matching-form[data-state="success"] .cleaner-matching-form__submit-row,
.cleaner-matching-form[data-state="success"] .cleaner-matching-form__privacy-note {
  display: none;
}

.cleaner-matching-form__privacy-note {
  margin: 1rem 0 0;
  color: var(--text-muted, #777);
  font-size: 0.8rem;
}

.cleaners__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
}

.cleaners__badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-section);
  color: var(--text-primary);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: all 0.15s ease;
}

.cleaners__badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.cleaner-card__onboarded-badge,
.cleaner-profile__onboarded-badge {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg-page, #fff);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cleaners__row-rating {
  display: block;
  margin: 0.25rem 0 0.5rem;
  font-size: 0.85rem;
  color: #b8860b;
  letter-spacing: 0.02em;
}

.cleaners__row-rating-count {
  color: #666;
  margin-left: 0.4em;
}

.cleaners__rating-half {
  display: inline-block;
  position: relative;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  vertical-align: baseline;
}

.cleaners__rating-half-base,
.cleaners__rating-half-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
}

.cleaners__rating-half-base {
  color: #e0e0e0;
}

.cleaners__rating-half-fill {
  color: #b8860b;
  width: 50%;
  overflow: hidden;
}

.cleaners__rating-empty {
  color: #e0e0e0;
}

.cleaner-profile__rating {
  display: block;
  margin: 0.5rem 0;
  font-size: 1rem;
  color: #b8860b;
  letter-spacing: 0.02em;
}

.cleaner-profile__rating-count {
  color: #666;
  margin-left: 0.4em;
}

@media (max-width: 640px) {
  .cleaner-matching-form {
    margin: 1.5rem 1rem;
    padding: 1.25rem;
  }

  .cleaner-matching-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cleaner-matching-form__submit {
    width: 100%;
  }
}

/* Cleaner Booking Request */
.booking-request {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #777;
  --border: #e8e6e3;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.booking-request h1,
.booking-request h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.booking-request__hero {
  text-align: left;
}

.booking-request__hero .checklist__intro {
  max-width: 720px;
}

.booking-request__body {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.booking-request__profile,
.booking-request__payment-summary,
.booking-request__form {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-request__profile,
.booking-request__payment-summary {
  padding: 1.5rem;
}

.booking-request__profile h2,
.booking-request__payment-summary h2,
.booking-request__form h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.booking-request__profile p,
.booking-request__payment-summary p {
  color: var(--text-secondary);
}

.booking-request__eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-request__services {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.booking-request__services li {
  padding: 0.7rem 0.85rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-main);
}

.booking-request__profile-link {
  color: var(--accent-hover);
  font-weight: 700;
}

.booking-request__payment-summary {
  border-top: 4px solid var(--accent);
}

.booking-request__payment-summary dl {
  margin: 1.25rem 0;
}

.booking-request__payment-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.booking-request__payment-summary dt {
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.booking-request__payment-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}

.booking-request__form {
  grid-column: 1 / -1;
  padding: 2rem;
  border-top: 4px solid var(--accent);
}

.booking-request__intro {
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.booking-request__intro p:last-child {
  margin: 0;
  color: var(--text-secondary);
}

.booking-request__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-request__field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.booking-request__field label {
  color: var(--text-primary);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-request__field label span {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
}

.booking-request__field input,
.booking-request__field select,
.booking-request__field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-main);
  color: var(--text-primary);
  font: inherit;
  line-height: 1.45;
}

.booking-request__field textarea {
  resize: vertical;
}

.booking-request__field input:focus,
.booking-request__field select:focus,
.booking-request__field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.booking-request__field input[aria-invalid="true"],
.booking-request__field select[aria-invalid="true"],
.booking-request__field textarea[aria-invalid="true"] {
  border-color: #c0392b;
  background: #fff5f3;
}

.booking-request__error {
  min-height: 1.1em;
  color: #c0392b;
  font-size: 0.8rem;
}

.booking-request__field:not([data-invalid="true"]) .booking-request__error {
  visibility: hidden;
}

.booking-request__submit-row {
  margin-top: 0.25rem;
}

.booking-request__submit {
  display: inline-block;
  padding: 0.75rem 1.3rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.booking-request__submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.booking-request__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.booking-request__success,
.booking-request__server-error {
  display: none;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
}

.booking-request__success {
  border: 1px solid #d8e3d4;
  background: #f5f5f5;
}

.booking-request__server-error {
  border: 1px solid #c0392b;
  background: #fff5f3;
  color: #c0392b;
}

.booking-request[data-state="success"] .booking-request__success,
.booking-request__form[data-state="success"] .booking-request__success {
  display: block;
}

.booking-request__form[data-state="success"] .booking-request__fields,
.booking-request__form[data-state="success"] .booking-request__submit-row,
.booking-request__form[data-state="success"] .booking-request__privacy-note {
  display: none;
}

.booking-request__privacy-note {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .booking-request__body {
    display: block;
    padding: 1.5rem 1rem 2rem;
  }

  .booking-request__profile,
  .booking-request__payment-summary,
  .booking-request__form {
    margin-bottom: 1.25rem;
  }

  .booking-request__form {
    padding: 1.25rem;
  }

  .booking-request__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-request__submit {
    width: 100%;
  }
}

.cleaner-profile__reviews {
  margin: 1.5rem 0;
}

.cleaner-profile__review-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0;
}

.cleaner-profile__review-list li {
  border-left: 3px solid #f0c674;
  padding: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.cleaner-profile__review-stars {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: #b8860b;
  font-size: 0.95rem;
}

.cleaner-profile__review-text {
  margin: 0.25rem 0;
  font-style: italic;
  color: #333;
}

.cleaner-profile__review-author {
  display: block;
  font-size: 0.85rem;
  color: #666;
  font-style: normal;
}

.cleaner-profile__review-pending-badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.55rem;
  background: #f1eee7;
  border: 1px dashed #c8b88a;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7a6a3a;
}

.cleaner-profile__reviews--pending {
  border-left: 2px dashed #c8b88a;
  padding-left: 1rem;
}

.cleaner-profile__reviews--pending .cleaner-profile__review-author {
  color: #8a8a8a;
  opacity: 0.85;
}

/* Review moderation */
.admin-reviews {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --border: #e8e6e3;
  max-width: 960px;
  min-height: calc(100vh - 8rem);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.admin-reviews__hero {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--border);
}

.admin-reviews__hero h1 {
  margin: 0 0 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.admin-reviews__hero p {
  color: var(--text-secondary);
}

.admin-reviews__hero .cost-guide__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-reviews__list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.admin-reviews__item,
.admin-reviews__empty {
  padding: 1.25rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-reviews__item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-reviews__cleaner {
  margin: 0 0 0.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.admin-reviews__cleaner a {
  color: var(--accent);
  font-weight: 700;
}

.admin-reviews__item h2,
.admin-reviews__empty h2 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
}

.admin-reviews__rating {
  flex: 0 0 auto;
  color: #b8860b;
  font-size: 0.9rem;
  white-space: nowrap;
}

.admin-reviews__body {
  margin: 1rem 0 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid #f0c674;
  color: #333;
}

.admin-reviews__meta {
  margin: 0;
  color: #777;
  font-size: 0.8125rem;
  overflow-wrap: anywhere;
}

.admin-reviews__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1rem;
}

.admin-reviews__actions form {
  margin: 0;
}

.admin-reviews__button {
  min-width: 6.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.admin-reviews__button--approve {
  background: var(--accent);
  color: var(--bg-section);
}

.admin-reviews__button--approve:hover {
  background: var(--accent-hover);
}

.admin-reviews__button--reject {
  background: transparent;
  border-color: #c8b88a;
  color: #7a6a3a;
}

.admin-reviews__button--reject:hover {
  border-color: #9d8750;
  background: #f1eee7;
}

.admin-reviews__empty {
  margin-top: 2rem;
}

.admin-reviews__empty p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Guarantee claim resolution */
.admin-claims {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --border: #e8e6e3;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;
  max-width: 960px;
  min-height: calc(100vh - 8rem);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}

.admin-claims__hero {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--border);
}

.admin-claims__hero h1 {
  margin: 0 0 0.5rem;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.admin-claims__hero p {
  color: var(--text-secondary);
}

.admin-claims__hero .cost-guide__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-claims__list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.admin-claims__item,
.admin-claims__empty {
  padding: 1.25rem;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-claims__item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-claims__reference {
  margin: 0 0 0.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.admin-claims__item h2,
.admin-claims__empty h2 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
}

.admin-claims__saved {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid #b9d8b0;
  border-radius: var(--radius);
  background: #eef7eb;
  color: #35652d;
  font-size: 0.8125rem;
  font-weight: 700;
}

.admin-claims__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 1rem 0 0;
}

.admin-claims__details div {
  min-width: 0;
}

.admin-claims__details dt {
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-claims__details dd {
  margin: 0.15rem 0 0;
  overflow-wrap: anywhere;
}

.admin-claims__issue {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid #f0c674;
}

.admin-claims__issue h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9rem;
}

.admin-claims__issue p {
  margin: 0;
  color: #333;
  white-space: pre-wrap;
}

.admin-claims__form {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.admin-claims__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-claims__fields label {
  display: grid;
  gap: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 700;
}

.admin-claims__fields select {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #cfcac2;
  border-radius: var(--radius);
  background: var(--bg-section);
  color: var(--text-primary);
  font: inherit;
}

.admin-claims__button {
  min-width: 8.5rem;
  margin-top: 1rem;
  padding: 0.625rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--bg-section);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.admin-claims__button:hover {
  background: var(--accent-hover);
}

.admin-claims__empty {
  margin-top: 2rem;
}

.admin-claims__empty p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .site-header__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .site-header__nav {
    justify-content: flex-start;
  }

  .site-header__nav a {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 7rem;
  }

  .cleaner-cta-group {
    align-items: stretch;
    flex-direction: column;
  }

  .cleaner-cta-group a {
    box-sizing: border-box;
    text-align: center;
    width: 100%;
  }

  .cost-guide__hero,
  .cost-guide__included,
  .cost-guide__cities,
  .cost-guide__faq,
  .cost-guide__cta {
    padding: 2rem 1rem;
  }

  .cost-guide__summary {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .cost-guide__price {
    font-size: 1.5rem;
  }

  .cost-guide__table th,
  .cost-guide__table td {
    padding: 0.75rem 1rem;
  }

  .cost-guide__checklist li {
    padding: 0.875rem 1rem;
  }

  .cost-guide__cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cost-guide__calculator-form {
    grid-template-columns: 1fr;
  }

  .cost-guide__calculator-result {
    min-width: 0;
  }

  .admin-reviews {
    padding: 2rem 1rem;
  }

  .admin-claims {
    padding: 2rem 1rem;
  }

  .admin-reviews__item-heading {
    flex-direction: column;
    gap: 0.5rem;
  }

  .admin-reviews__button {
    flex: 1 1 8rem;
  }

  .admin-claims__item-heading {
    flex-direction: column;
    gap: 0.5rem;
  }

  .admin-claims__details,
  .admin-claims__fields {
    grid-template-columns: 1fr;
  }

  .admin-claims__button {
    width: 100%;
  }
}

@media (max-width: 375px) {
  .cost-guide__cities-grid {
    grid-template-columns: 1fr;
  }

  .cost-guide__table {
    font-size: 0.875rem;
  }
}

/* Process Guide Page Styles */
.process-guide {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #777;
  --border: #e8e6e3;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;

  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.process-guide h1,
.process-guide h2,
.process-guide h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.process-guide h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.process-guide h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.process-guide h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0 0 0.5rem;
}

.process-guide p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.process-guide__hero {
  background: var(--bg-section);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.process-guide__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.process-guide__intro {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.process-guide__cta-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s ease;
}

.process-guide__cta-link:hover {
  background: var(--accent-hover);
}

/* Steps Section */
.process-guide__steps {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.process-guide__step {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.process-guide__step:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.process-guide__step p {
  margin: 0;
  line-height: 1.7;
}

/* Stages Checklist */
.process-guide__stages {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
}

.process-guide__checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.process-guide__checklist li {
  background: var(--bg-section);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.9375rem;
}

.process-guide__checklist li strong {
  color: var(--text-primary);
}

/* Tips Section */
.process-guide__tips {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.process-guide__tips-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.process-guide__tips-list li {
  background: var(--bg-main);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.process-guide__tips-list li strong {
  color: var(--text-primary);
}

/* FAQ Section */
.process-guide__faq {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.process-guide__faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.process-guide__faq-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.process-guide__faq-item p {
  margin: 0;
  line-height: 1.7;
}

/* CTA Section */
.process-guide__cta {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  text-align: center;
  border-top: 1px solid var(--border);
}

.process-guide__cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-guide__city-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.process-guide__city-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.process-guide__city-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.process-guide__city-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .process-guide__hero,
  .process-guide__steps,
  .process-guide__stages,
  .process-guide__tips,
  .process-guide__faq,
  .process-guide__cta {
    padding: 2rem 1rem;
  }

  .process-guide__step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

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

@media (max-width: 375px) {
  .process-guide__cities-grid {
    grid-template-columns: 1fr;
  }

  .process-guide__step {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Checklist Page Styles */
.checklist {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #777;
  --border: #e8e6e3;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;
  --risk: #b91c1c;
  --risk-bg: #fef2f2;

  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.checklist h1,
.checklist h2,
.checklist h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.checklist h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.checklist h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
}

.checklist h3 {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin: 0 0 0.5rem;
}

.checklist p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}

/* Hero Section */
.checklist__hero {
  background: var(--bg-section);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.checklist__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.checklist__intro {
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.checklist__hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.checklist__print-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.checklist__print-btn:hover {
  background: var(--accent-hover);
}

.checklist__cta-link {
  display: inline-block;
  color: var(--accent);
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.checklist__cta-link:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Rooms Section */
.checklist__rooms {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
}

.checklist__rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.checklist__room {
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.checklist__room:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.checklist__room-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.checklist__room-icon {
  font-size: 1.25rem;
}

.checklist__tasks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.checklist__task {
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

.checklist__task label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.checklist__task label:hover {
  background: var(--bg-section);
  border-color: var(--border);
}

.checklist__task input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.checklist__task-label {
  flex: 1;
}

.checklist__task--risk {
  background: var(--risk-bg);
  border-left: 3px solid var(--risk);
}

.checklist__risk-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.15rem 0.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--risk);
  background: #fff;
  border: 1px solid var(--risk);
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Triggers Section */
.checklist__triggers {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
}

.checklist__checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.checklist__checklist li {
  background: var(--bg-section);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--risk);
  font-size: 0.9375rem;
}

.checklist__checklist li strong {
  color: var(--text-primary);
}

/* FAQ Section */
.checklist__faq {
  padding: 3rem 1.5rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}

.checklist__faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.checklist__faq-item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.checklist__faq-item p {
  margin: 0;
  line-height: 1.7;
}

.checklist__faq-item strong {
  color: var(--accent);
}

/* CTA Section */
.checklist__cta {
  padding: 3rem 1.5rem;
  background: var(--bg-main);
  text-align: center;
  border-top: 1px solid var(--border);
}

.checklist__cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.checklist__city-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
}

.checklist__city-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.checklist__city-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.checklist__city-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 640px) {
  .checklist__hero,
  .checklist__rooms,
  .checklist__triggers,
  .checklist__faq,
  .checklist__cta {
    padding: 2rem 1rem;
  }

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

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

  .checklist__hero-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

  .checklist__room {
    padding: 1rem;
  }
}

/* Print: hide chrome, keep only the checklist */
@media print {
  .checklist__print-btn,
  .checklist__cta,
  .checklist__hero a {
    display: none !important;
  }

  .checklist__hero {
    text-align: left;
    padding: 0 0 1rem;
    border-bottom: 1px solid #000;
  }

  .checklist__room {
    break-inside: avoid;
    box-shadow: none;
    transform: none;
    border: 1px solid #999;
  }

  .checklist__task {
    break-inside: avoid;
  }

  .checklist__task label {
    cursor: default;
  }

  .checklist__cta-link {
    color: #000;
    text-decoration: none;
  }

  body {
    background: #fff;
  }
}

/* End of Lease Hub Page Styles */
.end-of-lease {
  --bg-main: #faf9f7;
  --bg-section: #fff;
  --accent: #c95d0e;
  --accent-hover: #a84a08;
  --text-primary: #1a1a1a;
  --text-secondary: #555;
  --text-muted: #777;
  --border: #e8e6e3;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --radius: 8px;

  background: var(--bg-main);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.end-of-lease h1,
.end-of-lease h2,
.end-of-lease h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.end-of-lease__hero-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.end-of-lease__primary-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease;
}

.end-of-lease__primary-cta:hover {
  background: var(--accent-hover);
}

.cleaner-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.cleaner-cta-group__link {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border: 1px solid #c95d0e;
  border-radius: 8px;
  background: #fff;
  color: #c95d0e;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.cleaner-cta-group__link:hover,
.cleaner-cta-group__link:focus-visible {
  background: #c95d0e;
  color: #fff;
}

.end-of-lease__comparison {
  min-width: 720px;
}

.end-of-lease__cluster-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 960px;
}

.end-of-lease__cluster-card {
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
}

.end-of-lease__cluster-blurb {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.how-it-works {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.how-it-works__heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.how-it-works__intro {
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.how-it-works__step {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  text-align: center;
}

.how-it-works__step-icon {
  display: block;
  margin: 0 auto 0.75rem;
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.how-it-works__step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.how-it-works__step p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 720px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}
