/* =========================================================
   Bright & Tidy Home Cleaning — styles.css
   Palette drawn from the logo:
   blue #185FA5 · sparkle #378ADD · ink #1F2421
   Warm cream base inspired by reference design 1,
   blue trust accents from design 2, dark section from design 3.
   ========================================================= */

:root {
  --blue: #185fa5;
  --blue-dark: #124a83;
  --sky: #378add;
  --sky-soft: #e3eefa;
  --ink: #1f2421;
  --navy: #142a40;
  --navy-2: #1b3a57;
  --cream: #faf6ef;
  --cream-2: #f3ecdf;
  --white: #ffffff;
  --muted: #5c6660;
  --line: #e7e0d2;
  --shadow: 0 10px 30px rgba(31, 36, 33, 0.08);
  --shadow-lg: 0 18px 50px rgba(18, 74, 131, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 92px; }

/* Elements hidden via the `hidden` attribute must stay hidden even when a
   class gives them a display value (grid, flex, inline-flex, …). */
[hidden] { display: none !important; }

[hidden] { display: none !important; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 800;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.12rem; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.section { padding: 84px 0; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__sub { color: var(--muted); max-width: 560px; margin-top: 10px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--blue);
  margin-bottom: 12px;
}

.eyebrow--light { color: #9cc4ec; }

.accent { color: var(--blue); }

/* ---------- icons ---------- */
.ico {
  width: 1.05em;
  height: 1.05em;
  fill: currentColor;
  flex: none;
}
.ico--blue { fill: var(--blue); }
.ico[viewBox] path[fill="none"] { stroke: currentColor; stroke-width: 2; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(24, 95, 165, 0.3);
}
.btn--primary:hover { background: var(--blue-dark); box-shadow: 0 12px 26px rgba(24, 95, 165, 0.38); }

.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #000; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); }

.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0f2;
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__contact { display: flex; gap: 22px; flex-wrap: wrap; }

.topbar__link {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
}
.topbar__link:hover { color: var(--sky); }
.topbar__link .ico { fill: var(--sky); }

.topbar__areas { color: #9cb8d6; }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}

.header__brand { flex: none; }
.header__logo { height: 52px; width: auto; }

.nav { display: flex; gap: 26px; margin-left: auto; }

.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2.5px;
  background: var(--sky);
  border-radius: 2px;
  transition: right 0.2s ease;
}
.nav__link:hover::after { right: 0; }

.header__cta { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, var(--sky-soft) 0%, transparent 60%),
    radial-gradient(700px 420px at -10% 110%, #f0e6d4 0%, transparent 55%),
    var(--cream);
  padding: 84px 0 96px;
}

.hero__sparkle {
  position: absolute;
  color: var(--sky);
  opacity: 0.5;
  font-size: 28px;
  animation: twinkle 3.2s ease-in-out infinite;
  pointer-events: none;
}
.hero__sparkle--1 { top: 12%; left: 6%; }
.hero__sparkle--2 { top: 24%; right: 42%; font-size: 18px; animation-delay: 1.1s; }
.hero__sparkle--3 { bottom: 14%; left: 40%; font-size: 22px; animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.9) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.15) rotate(18deg); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero__sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 540px;
  margin-top: 18px;
}

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 3px 10px rgba(31, 36, 33, 0.05);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* estimate widget */
.estimator {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 34px 30px 30px;
  border: 1px solid #eef2f7;
}

.estimator__badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--sky);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(55, 138, 221, 0.4);
}

.estimator__title { font-size: 1.3rem; margin-bottom: 20px; }

.estimator__form { display: grid; gap: 16px; }

.estimator__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field { display: grid; gap: 6px; }

.field__label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}
.field__label em { color: var(--muted); font-weight: 400; }

.field__input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field__input:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.18);
  background: var(--white);
}

textarea.field__input { resize: vertical; }

.estimator__addons {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.estimator__addons summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 14px;
  position: relative;
}
.estimator__addons summary::-webkit-details-marker { display: none; }
.estimator__addons summary em { color: var(--muted); font-weight: 400; }
.estimator__addons summary::after {
  content: "▾";
  position: absolute;
  right: 14px;
  color: var(--blue);
  transition: transform 0.2s ease;
}
.estimator__addons[open] summary::after { transform: rotate(180deg); }

.estimator__addon-list {
  display: grid;
  gap: 8px;
  padding: 2px 14px 14px;
}

.estimator__addon-list label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  cursor: pointer;
}
.estimator__addon-list label em { color: var(--muted); font-size: 0.8rem; }
.estimator__addon-list label span {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--blue);
}
.estimator__addon-list input { accent-color: var(--blue); width: 16px; height: 16px; }

/* Shown when a service bundles extras the booking widget doesn't sell on top. */
.estimator__addon-note {
  margin-top: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
  font-style: italic;
}

.estimator__summary { font-size: 0.88rem; font-weight: 600; color: var(--ink); }

.estimator__result {
  border-top: 1.5px dashed var(--line);
  padding-top: 18px;
  text-align: center;
  display: grid;
  gap: 10px;
}

.estimator__result[hidden] { display: none; }

.estimator__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--blue);
}

.estimator__note { font-size: 0.85rem; color: var(--muted); }

/* ---------- trust strip ---------- */
.trust {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.trust__item h3 { margin: 14px 0 8px; }
.trust__item p { color: var(--muted); font-size: 0.92rem; }

.trust__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(24, 95, 165, 0.28);
}

.trust__icon svg { width: 26px; height: 26px; fill: var(--white); }

/* ---------- services ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #f0ebe0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.service__art {
  height: 110px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}
.service__art svg { width: 44px; height: 44px; fill: var(--white); opacity: 0.95; }
.service__art--1 { background: linear-gradient(135deg, #185fa5, #378add); }
.service__art--2 { background: linear-gradient(135deg, #2e77c0, #57a2e8); }
.service__art--3 { background: linear-gradient(135deg, #124a83, #2e77c0); }
.service__art--4 { background: linear-gradient(135deg, #378add, #7db9ef); }

.service p { color: var(--muted); font-size: 0.92rem; flex: 1; }

.service__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
}
.service__link:hover { text-decoration: underline; }

/* ---------- why us (dark) ---------- */
.why {
  background:
    radial-gradient(800px 400px at 110% 10%, rgba(55, 138, 221, 0.18) 0%, transparent 55%),
    var(--navy);
  color: #dbe7f3;
}

.why h2 { color: var(--white); }

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.why__copy p { color: #a9bfd6; margin-top: 16px; }

.why__stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  width: fit-content;
}

.why__number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3rem;
  color: var(--sky);
  line-height: 1;
}

.why__label { font-size: 0.92rem; color: #c4d6e8; }

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

.value {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.value:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }

.value h3 { color: var(--white); margin: 12px 0 6px; font-size: 1.02rem; }
.value p { font-size: 0.88rem; color: #a9bfd6; }

.value__icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(55, 138, 221, 0.22);
  display: grid;
  place-items: center;
}
.value__icon svg { width: 22px; height: 22px; fill: var(--sky); }
.value__icon svg [fill="none"] { stroke: var(--sky); fill: none; }

/* ---------- pricing ---------- */
.pricing { background: var(--cream); }

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

.plan {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan--featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.plan__flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__tag { color: var(--muted); font-size: 0.88rem; margin-top: 2px; }

.plan__price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--ink);
  margin: 14px 0 6px;
}

.plan__price span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan__list {
  list-style: none;
  margin: 12px 0 24px;
  display: grid;
  gap: 9px;
  flex: 1;
}

.plan__list li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 26px;
  position: relative;
}

.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky);
  font-weight: 700;
}

.addons { margin-top: 48px; }

.addons__title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.addon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.addon:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.addon em { color: var(--muted); font-weight: 400; font-size: 0.8rem; }
.addon strong {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

.addons__note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 640px;
  margin: 16px auto 0;
}

.pricing__foot {
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 34px;
}

/* ---------- memberships ---------- */
.memberships { background: var(--sky-soft); }

.memberships__picker {
  max-width: 320px;
  margin: 0 auto 40px;
}

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

.plan__pervisit {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
  margin-top: -2px;
}

.memberships__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 36px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.memberships__fine {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: 640px;
  margin: 16px auto 0;
}

/* ---------- reviews ---------- */
.reviews { background: var(--white); }

.reviews__stars { color: #f6b73c; font-size: 1.5rem; letter-spacing: 3px; }

.reviews__cta {
  max-width: 580px;
  margin-inline: auto;
  padding: 42px 36px 34px;
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  background: var(--cream);
  box-shadow: none;
}

.reviews__cta h3 { font-size: 1.35rem; max-width: 26ch; }
.reviews__cta > p { color: var(--muted); font-size: 0.95rem; }

.reviews__cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.reviews__cta-fine { font-size: 0.8rem; color: #b0a893; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review { padding: 28px 26px; background: var(--cream); box-shadow: none; }

.review__stars { color: #f6b73c; letter-spacing: 2px; margin-bottom: 12px; }

.review blockquote {
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.65;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.review figcaption em {
  font-family: var(--font-body);
  font-weight: 400;
  color: #b0a893;
  font-size: 0.75rem;
}

.review__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}

/* ---------- areas ---------- */
.areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.area {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.area:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }

.area h3 { font-size: 1rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.area p { color: var(--muted); font-size: 0.85rem; margin-top: 8px; }

.area--hq { border: 2px solid var(--blue); background: var(--sky-soft); }

.area__badge {
  background: var(--blue);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
}

/* ---------- offer / contact ---------- */
.offer {
  background:
    radial-gradient(700px 400px at -5% 0%, rgba(55, 138, 221, 0.25) 0%, transparent 55%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #e8f1fa;
}

.offer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.offer__copy h2 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.7rem); }

.offer__pop {
  color: #ffd166;
  text-decoration: underline wavy rgba(255, 209, 102, 0.5) 3px;
  text-underline-offset: 6px;
}

.offer__copy > p { margin-top: 16px; color: #c9dcef; }

.offer__points {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 10px;
  font-weight: 600;
}

.offer__returning {
  margin-top: 22px;
  font-size: 0.9rem;
  color: #c9dcef;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 16px;
  max-width: 460px;
}

.offer__returning a {
  color: #ffd166;
  font-weight: 700;
}

.offer__form {
  padding: 32px 30px;
  display: grid;
  gap: 16px;
  border: 0;
}

.offer__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offer__fine {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.offer__fine.is-success { color: #1e7e34; font-weight: 600; }
.offer__fine.is-error { color: #b02a37; font-weight: 600; }

/* ---------- faq ---------- */
.faq__inner { max-width: 760px; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 22px;
  position: relative;
  padding-right: 52px;
  transition: color 0.15s ease;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sky-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq__item[open] summary { color: var(--blue); }
.faq__item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }

.faq__item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- book online (HouseCall Pro widget) ---------- */
.booking { background: var(--white); }

.booking__card {
  max-width: 560px;
  margin-inline: auto;
  padding: 34px 30px;
  text-align: center;
}

.booking__steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}

.booking__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.booking__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--sky-soft);
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}

.booking__note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking__note a { color: var(--blue); font-weight: 600; }

/* ---------- refund & cancellation policy ---------- */
.policy { padding-top: 0; }

.policy__inner { max-width: 760px; }

.policy__card {
  padding: 36px 34px;
  display: grid;
  gap: 8px;
}

.policy__card h3 {
  color: var(--blue);
  font-size: 1.02rem;
  margin-top: 14px;
}
.policy__card h3:first-child { margin-top: 0; }

.policy__card p { color: var(--muted); font-size: 0.95rem; }

.faq__item p a { color: var(--blue); font-weight: 600; }

/* ---------- call-back modal ---------- */
.callback {
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  margin: auto;
  max-width: 400px;
  width: calc(100% - 40px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.callback::backdrop {
  background: rgba(20, 42, 64, 0.55);
}

.callback__form {
  padding: 32px 28px 26px;
  display: grid;
  gap: 15px;
  position: relative;
  font-family: var(--font-body);
}

.callback__form h3 { font-size: 1.3rem; padding-right: 30px; }

.callback__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}
.callback__close:hover { color: var(--ink); }

.callback__sub { font-size: 0.92rem; color: var(--muted); }

.callback__status { font-size: 0.85rem; text-align: center; display: none; }
.callback__status.is-success { display: block; color: #1e7e34; font-weight: 600; }
.callback__status.is-error { display: block; color: #b02a37; font-weight: 600; }

.callback__direct {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  border-top: 1.5px dashed var(--line);
  padding-top: 15px;
}
.callback__direct a { color: var(--blue); font-weight: 700; text-decoration: none; }
.callback__direct a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: #a9bfd6;
  padding: 64px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo-tile {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px;
  width: 168px;
  margin-bottom: 16px;
}

.footer__brand p { font-size: 0.92rem; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  color: #a9bfd6;
  text-decoration: none;
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.15s ease;
}

.footer__col a:hover { color: var(--sky); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 0.82rem;
  color: #7e97b1;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1090px) {
  .header__cta { display: none; }
  .nav { gap: 18px; }
  .nav__link { font-size: 0.88rem; white-space: nowrap; }
}

@media (max-width: 1020px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 64px 0 76px; }
  .estimator { max-width: 560px; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 44px; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .memberships__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .reviews__grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .offer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 10px 4%;
    display: none;
    box-shadow: var(--shadow);
  }

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

  .nav__link { padding: 13px 4px; border-bottom: 1px solid var(--cream-2); font-size: 0.94rem; }
  .nav__link:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
  .topbar__inner { justify-content: center; }
  .topbar__areas { display: none; }
  .topbar__link--email { display: none; }

  .section { padding: 60px 0; }
  .section__head { flex-direction: column; align-items: flex-start; }
  .section__head--center { align-items: center; }

  .trust__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .why__values { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .offer__row { grid-template-columns: 1fr; }
  .estimator__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__actions .btn { width: 100%; }
}

/* ==========================================================================
   LANDING PAGES (service + city)
   Sub-pages under /services/ and /house-cleaning/ reuse the shared vocabulary
   above; everything below is only what those pages add on top.
   ========================================================================== */

.h1-sub {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

/* Service-area cards on the homepage now link through to city pages */
.area h3 a { color: inherit; text-decoration: none; }
.area h3 a:hover { color: var(--blue); text-decoration: underline; }

.crumbs {
  padding: 18px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.crumbs li::after { content: "›"; margin-left: 6px; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--blue); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* Page hero — lighter than the homepage hero, single column */
.phero { background: linear-gradient(180deg, var(--sky-soft) 0%, var(--cream) 100%); padding: 34px 0 64px; }
.phero__inner { max-width: 780px; }
.phero h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.12; margin: 10px 0 0; }
.phero__sub { margin: 18px 0 0; font-size: 1.06rem; line-height: 1.6; color: var(--muted); }
.phero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Long-form editorial content */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.16rem; margin: 30px 0 10px; }
.prose p { margin: 0 0 16px; line-height: 1.72; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; line-height: 1.72; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--blue); }

/* Checklist grid — "what's included" blocks */
.checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; margin: 0 0 22px; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 26px; line-height: 1.55; margin-bottom: 4px; }
.checklist li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--sky-soft);
  box-shadow: inset 0 0 0 2px var(--blue);
}

/* Neighborhood chips on city pages */
.hoods { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.hoods li {
  padding: 7px 14px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink);
}

/* Cross-links between landing pages */
.related { background: var(--cream-2); }
.related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.related__card {
  display: block; padding: 22px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease;
}
.related__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related__card strong { display: block; font-family: var(--font-head); font-size: 1.04rem; margin-bottom: 6px; }
.related__card span { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* Closing call to action */
.endcta { background: var(--navy); color: var(--white); text-align: center; }
.endcta h2 { color: var(--white); }
.endcta p { max-width: 560px; margin: 14px auto 26px; color: rgba(255,255,255,.82); line-height: 1.65; }
.endcta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

@media (max-width: 720px) {
  .checklist { grid-template-columns: 1fr; }
  .phero { padding: 22px 0 48px; }
  .phero__actions .btn { width: 100%; }
  .endcta__actions .btn { width: 100%; }
}
