:root {
  --color-bg: #F7FBFA;
  --color-surface: #FFFFFF;
  --color-surface-muted: #EAF5F3;
  --color-text: #102A2A;
  --color-muted: #5E7472;
  --color-primary: #0F766E;
  --color-primary-dark: #064E4A;
  --color-accent: #5EEAD4;
  --color-warm: #F4EFE7;
  --color-border: #D7E7E4;
  --color-danger: #B42318;
  --color-success: #087443;
  --shadow-soft: 0 18px 45px rgba(16, 42, 42, 0.08);
  --shadow-card: 0 12px 30px rgba(16, 42, 42, 0.06);
  --shadow-button: 0 10px 24px rgba(15, 118, 110, 0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1180px;
  --section-y: clamp(56px, 8vw, 108px);
  --sticky-cta-space: calc(118px + env(safe-area-inset-bottom));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: var(--sticky-cta-space);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(94,234,212,.18), transparent 34rem),
    linear-gradient(180deg, #fff 0%, var(--color-bg) 34rem);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.narrow { max-width: 860px; }
.section { padding: var(--section-y) 0; }
.muted-section { background: linear-gradient(180deg, var(--color-surface-muted), rgba(234,245,243,.55)); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  left: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform .18s ease;
}
.skip-link:focus-visible { transform: translateY(0); }
#main-content { scroll-margin-top: 104px; }
#calculator { scroll-margin-top: 112px; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(215,231,228,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(16,42,42,.04);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 850; font-size: 24px; color: var(--color-text); white-space: nowrap; }
.brand-mark {
  width: 64px; height: 44px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}
.brand-mark img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 4px rgba(16,42,42,.08));
}
.brand-name { line-height: 1; letter-spacing: -.02em; }
.menu-toggle {
  width: 46px; height: 46px; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: rgba(255,255,255,.9); display: grid; place-content: center; gap: 5px; color: var(--color-text);
}
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; border-radius: 99px; background: currentColor; }
.site-nav {
  position: fixed; inset: 72px 12px auto 12px;
  display: none; grid-template-columns: 1fr; gap: 4px;
  padding: 12px; background: rgba(255,255,255,.98); border: 1px solid var(--color-border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-soft);
  z-index: 40;
  max-height: calc(100dvh - 104px);
  overflow-y: auto;
}
.site-nav.is-open { display: grid; }
.site-nav > a,
.nav-services__toggle,
.nav-services__menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  text-decoration: none;
  font: inherit;
  font-weight: 750;
  font-size: 14px;
  line-height: 1.25;
}
.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-services__toggle:hover,
.nav-services__toggle[aria-current="page"],
.nav-services__menu a:hover,
.nav-services__menu a[aria-current="page"] {
  background: var(--color-surface-muted);
  color: var(--color-primary-dark);
}
.site-nav [aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.nav-services { position: relative; min-width: 0; }
.nav-services__toggle {
  width: 100%;
  justify-content: space-between;
  gap: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
.nav-services__chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--motion-base) var(--motion-ease);
}
.nav-services__toggle[aria-expanded="true"] .nav-services__chevron {
  transform: translateY(2px) rotate(225deg);
}
.nav-services__menu[hidden] { display: none; }
.nav-services__menu {
  display: grid;
  gap: 3px;
  margin: 2px 0 4px 12px;
  padding: 3px 0 3px 10px;
  border-left: 2px solid rgba(15,118,110,.18);
}
.nav-services__menu a { font-size: 13px; }
.site-nav > .nav-calculator {
  justify-content: center;
  gap: 9px;
  margin-top: 8px;
  border: 1px solid rgba(6,78,74,.22);
  background: linear-gradient(135deg, var(--color-primary), #08786f);
  color: #fff;
  box-shadow: 0 9px 22px rgba(15,118,110,.18);
  white-space: nowrap;
}
.nav-calculator__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-accent);
  background: currentColor;
  -webkit-mask: url("/assets/icons/calculator.svg") center / contain no-repeat;
  mask: url("/assets/icons/calculator.svg") center / contain no-repeat;
}
.site-nav > .nav-calculator:hover,
.site-nav > .nav-calculator[aria-current="page"] {
  border-color: rgba(94,234,212,.58);
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  box-shadow: 0 11px 26px rgba(6,78,74,.24);
}
.site-nav > .nav-calculator:hover .nav-calculator__icon,
.site-nav > .nav-calculator:focus-visible .nav-calculator__icon {
  color: #99f6e4;
}
.breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 22px; color: var(--color-muted); font-size: 14px; }
.breadcrumbs a { color: var(--color-primary-dark); text-decoration: none; font-weight: 750; }
.hero { position: relative; overflow: hidden; padding: clamp(52px, 8vw, 96px) 0 clamp(42px, 7vw, 80px); }
.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero h1 { max-width: 850px; margin: 0 0 18px; font-size: clamp(36px, 8vw, 72px); line-height: .98; letter-spacing: 0; font-weight: 880; }
.hero p { max-width: 760px; margin: 0 0 26px; color: var(--color-muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.7; }
.price-badge, .note-pill {
  display: inline-flex; align-items: center; width: fit-content; margin-bottom: 14px; padding: 8px 13px;
  border-radius: 999px; background: var(--color-surface-muted); color: var(--color-primary-dark);
  border: 1px solid rgba(15,118,110,.12); font-weight: 850; font-size: 14px;
}
.btn {
  min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px; border: 1px solid var(--color-border);
  background: var(--color-surface); color: var(--color-text); text-decoration: none; font-weight: 820; font-size: 15px;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--color-primary); border-color: var(--color-primary); color: #fff; box-shadow: var(--shadow-button); }
.btn.primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.btn.secondary { background: var(--color-warm); border-color: #e8ddd0; color: var(--color-text); }
.btn.secondary:hover, .btn.ghost:hover { background: var(--color-surface-muted); border-color: var(--color-primary); }
.btn.ghost { background: rgba(255,255,255,.72); }
.btn.text { min-height: auto; border: 0; background: transparent; color: var(--color-primary-dark); box-shadow: none; }
.hero-actions, .inline-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.section-head { margin-bottom: 30px; }
.section-head h2, .local-block h2, .cta-box h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.08; letter-spacing: 0; }
.section-head p, .local-block p, .cta-box p { margin: 0; color: var(--color-muted); max-width: 780px; }
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: 1fr; }
.card, .surface-panel, .calc-box {
  background: rgba(255,255,255,.92); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-card);
}
.card { position: relative; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card::before { content: ""; display: block; width: 34px; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); margin-bottom: 18px; }
.card:hover { transform: translateY(-3px); border-color: rgba(15,118,110,.35); box-shadow: var(--shadow-soft); }
.card h3, .surface-panel h3 { margin: 0 0 9px; font-size: 21px; line-height: 1.25; }
.card p { margin: 0 0 16px; color: var(--color-muted); }
.card a { color: var(--color-primary-dark); font-weight: 850; text-decoration: none; }
.card a::after { content: " →"; }
.two-col { display: grid; gap: 24px; }
.check-list, .plain-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.check-list li, .plain-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .48em; width: 16px; height: 16px; border-radius: 50%; background: var(--color-primary); box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px var(--color-primary); }
.plain-list li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 9px; height: 9px; border-radius: 50%; background: var(--color-accent); }
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; overflow: hidden; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.price-table th, .price-table td { padding: 15px 16px; border-bottom: 1px solid var(--color-border); text-align: left; vertical-align: top; }
.price-table th { background: var(--color-primary-dark); color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:nth-child(2), .price-table td:nth-child(3) { font-weight: 780; color: var(--color-primary-dark); }
.before-after-grid { display: grid; gap: 18px; }
.before-after-card { margin: 0; overflow: hidden; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.before-after-card img { width: 100%; background: var(--color-surface-muted); }
.before-after-card figcaption { padding: 13px 16px; color: var(--color-muted); font-size: 14px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: rgba(255,255,255,.94); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 0 18px; box-shadow: 0 8px 22px rgba(16,42,42,.04); }
.faq-item summary { position: relative; cursor: pointer; padding: 18px 28px 18px 0; font-weight: 850; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--color-primary); font-size: 22px; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0 0 18px; color: var(--color-muted); }
.cta-section { padding-top: 24px; }
.cta-box {
  display: grid; gap: 22px; padding: clamp(28px, 5vw, 46px); border-radius: var(--radius-xl);
  color: #fff; background: radial-gradient(circle at 86% 20%, rgba(94,234,212,.28), transparent 18rem), linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  box-shadow: var(--shadow-soft);
}
.cta-box p { color: rgba(255,255,255,.82); }
.cta-box .btn.ghost { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.local-block { background: linear-gradient(135deg, var(--color-surface-muted), var(--color-warm)); }
.local-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.local-chips span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid var(--color-border); color: var(--color-primary-dark); font-weight: 760; font-size: 14px; }
.contact-list { display: grid; gap: 12px; }
.contact-list a, .contact-list span { display: block; padding: 15px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); color: var(--color-text); text-decoration: none; box-shadow: 0 8px 18px rgba(16,42,42,.04); }
.calc-box input, .calc-box textarea { width: 100%; min-height: 46px; margin: 7px 0 13px; padding: 11px 13px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; font: inherit; }
.calc-box textarea { min-height: 98px; }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.step::before { content: counter(step); width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark)); color: #fff; font-weight: 850; box-shadow: 0 10px 20px rgba(15,118,110,.18); }
.step h3 { margin: 0 0 4px; }
.step p { margin: 0; color: var(--color-muted); }
.service-links { display: flex; flex-wrap: wrap; gap: 10px; }
.service-links a { padding: 10px 14px; border-radius: 999px; background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-primary-dark); text-decoration: none; font-weight: 780; }
.service-links a:hover { background: var(--color-surface-muted); border-color: var(--color-primary); }
.site-footer { background: #0b2f2d; color: #d7ebe8; padding: 58px 0 96px; }
.footer-grid { display: grid; gap: 30px; }
.site-footer h2 { margin: 0 0 13px; color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; }
.site-footer a { display: block; margin: 8px 0; color: #d7ebe8; text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer p { margin: 10px 0; color: #a8c6c2; }
.footer-brand { color: #fff; }
.sticky-cta { position: fixed; z-index: 30; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 8px; background: rgba(255,255,255,.95); border: 1px solid var(--color-border); border-radius: 22px; box-shadow: 0 18px 44px rgba(16,42,42,.18); backdrop-filter: blur(12px); }
.sticky-cta a { min-height: 44px; display: grid; place-items: center; border-radius: 16px; background: var(--color-primary); color: #fff; text-align: center; text-decoration: none; font-weight: 850; font-size: 14px; }
.sticky-cta a:nth-child(2), .sticky-cta a:nth-child(3) { background: var(--color-surface-muted); color: var(--color-primary-dark); }
.install-hint { position: static; width: min(560px, calc(100% - 32px)); margin: 24px auto; padding: 16px; display: grid; gap: 10px; background: rgba(255,255,255,.92); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.install-hint[hidden] { display: none; }
.install-hint p { margin: 0; color: var(--color-muted); }
button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(94,234,212,.58); outline-offset: 3px; }
@media (min-width: 760px) {
  body { padding-bottom: 0; }
  .hero-grid { grid-template-columns: minmax(0,1.2fr) minmax(310px,.8fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .before-after-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1.2fr; }
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 58px; }
}
@media (min-width: 1040px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cta-box { grid-template-columns: 1fr auto; align-items: center; }
}
@media (min-width: 1180px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 2px;
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }
  .site-nav > a,
  .nav-services__toggle { padding: 9px 8px; font-size: 13px; }
  .nav-services { display: flex; align-items: center; }
  .nav-services__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 60;
    width: 286px;
    max-width: calc(100vw - 32px);
    gap: 3px;
    margin: 0;
    padding: 10px;
    border: 1px solid rgba(15,118,110,.18);
    border-radius: 18px;
    background: rgba(252,255,254,.99);
    box-shadow: 0 22px 54px rgba(5,62,58,.16);
  }
  .nav-services__menu a { min-height: 42px; padding: 10px 12px; font-size: 14px; }
  .site-nav > .nav-calculator { min-height: 44px; margin: 0 0 0 4px; padding: 9px 13px; }
}
@media (max-width: 620px) {
  .hero-actions .btn { width: 100%; }
  .price-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table th, .price-table td { min-width: 150px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
@media print { .site-header, .sticky-cta, .install-hint, .btn { display: none !important; } body { background: #fff; color: #000; padding: 0; } .section { padding: 24px 0; } .card, .surface-panel, .cta-box { box-shadow: none; } }
/* Design kit alignment v1.4: mobile-first polish, safe-area, pricing readability */
:root {
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --motion-fast: 160ms;
  --motion-base: 240ms;
  --motion-slow: 420ms;
  --motion-ease: cubic-bezier(.2, .8, .2, 1);
  --motion-ease-soft: cubic-bezier(.16, 1, .3, 1);
}
.sticky-cta {
  bottom: calc(10px + env(safe-area-inset-bottom));
  padding-bottom: calc(8px + env(safe-area-inset-bottom));
}
.card,
.surface-panel,
.faq-item,
.price-table,
.before-after-card,
.calc-box {
  will-change: transform;
}
.card p, .hero p, .section-head p, .local-block p, .cta-box p {
  text-wrap: pretty;
}
.price-table td:last-child {
  white-space: nowrap;
}
@media (max-width: 620px) {
  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .hero {
    padding: 34px 0 36px;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.72;
  }
  .section-head h2, .local-block h2, .cta-box h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
  .card, .surface-panel, .calc-box {
    padding: 20px;
    border-radius: 22px;
  }
  .price-table,
  .price-table thead,
  .price-table tbody,
  .price-table tr,
  .price-table td {
    display: block;
    width: 100%;
  }
  .price-table {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }
  .price-table tr {
    margin-bottom: 12px;
    padding: 14px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
  }
  .price-table td {
    min-width: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(215,231,228,.7);
    white-space: normal;
  }
  .price-table td:last-child {
    border-bottom: 0;
    color: var(--color-primary-dark);
    font-weight: 880;
  }
  .price-table td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .price-table td:nth-child(1)::before { content: "Категория"; }
  .price-table td:nth-child(2)::before { content: "Услуга"; }
  .price-table td:nth-child(3)::before { content: "Цена"; }
  .sticky-cta a {
    min-width: 0;
    padding-inline: 6px;
    font-size: 13px;
  }
}
@media (hover: none) {
  .card:hover, .btn:hover {
    transform: none;
  }
}
/* Visual polish v1.5: lighter hero and calmer service surfaces */
.hero {
  padding: clamp(38px, 6vw, 74px) 0 clamp(34px, 5vw, 62px);
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
  font-weight: 820;
}
.hero p {
  max-width: 720px;
  line-height: 1.62;
}
.card, .surface-panel, .calc-box {
  border-color: rgba(215,231,228,.92);
}
.before-after-card figcaption {
  min-height: 48px;
}
.site-footer .note-pill {
  background: rgba(255,255,255,.06);
  color: #cfe5e2;
  border-color: rgba(215,231,228,.18);
}
@media (max-width: 620px) {
  .hero {
    padding: 30px 0 34px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .hero p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.62;
  }
  .sticky-cta {
    left: 8px;
    right: 8px;
    bottom: calc(6px + env(safe-area-inset-bottom));
    padding: 6px;
    border-radius: 20px;
  }

  .sticky-cta a {
    min-height: 44px;
    font-size: 13px;
  }
}

/* Motion & premium UI v1.6: restrained depth, reveal, contact/pricing polish */
body {
  animation: page-fade var(--motion-slow) var(--motion-ease-soft) both;
}

@keyframes page-fade {
  from { opacity: .985; }
  to { opacity: 1; }
}

.site-header {
  transition:
    background-color var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease),
    backdrop-filter var(--motion-base) var(--motion-ease);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.9);
  border-color: rgba(15,118,110,.18);
  box-shadow: 0 14px 36px rgba(16,42,42,.08);
}

.menu-toggle {
  transition: transform var(--motion-base) var(--motion-ease), border-color var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease);
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(15,118,110,.28);
  background: var(--color-surface-muted);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle span:not(.sr-only) { transition: transform var(--motion-base) var(--motion-ease), opacity var(--motion-fast) var(--motion-ease); }

@media (max-width: 1179px) {
  .site-nav {
    display: grid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.985);
    transition: opacity var(--motion-base) var(--motion-ease), transform var(--motion-base) var(--motion-ease), visibility var(--motion-base) var(--motion-ease);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: max(20px, calc((100vw - var(--container)) / 2));
  top: 20px;
  width: clamp(160px, 22vw, 320px);
  height: clamp(160px, 22vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,234,212,.26), rgba(94,234,212,0) 68%);
  filter: blur(8px);
  animation: hero-breathe 8s var(--motion-ease-soft) infinite alternate;
}

@keyframes hero-breathe {
  from { opacity: .52; transform: translate3d(0,0,0) scale(.98); }
  to { opacity: .86; transform: translate3d(-8px,8px,0) scale(1.04); }
}

@media (hover: hover) and (pointer: fine) {
}

.price-badge,
.note-pill {
  animation: soft-pop var(--motion-slow) var(--motion-ease-soft) both;
}

@keyframes soft-pop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.btn {
  position: relative;
  overflow: hidden;
  transition:
    transform var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease),
    background-color var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease);
}

.btn:active {
  transform: scale(.98);
}

.btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.22) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform var(--motion-slow) var(--motion-ease-soft);
}

.btn.primary:hover::before {
  transform: translateX(120%);
}

.btn.primary > *,
.btn.primary {
  isolation: isolate;
}

.card,
.surface-panel,
.calc-box,
.faq-item,
.contact-panel,
.contact-quick,
.price-focus-card,
.before-after-card {
  transition:
    transform var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease),
    border-color var(--motion-base) var(--motion-ease),
    background-color var(--motion-base) var(--motion-ease);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover,
  .surface-panel:hover,
  .contact-panel:hover,
  .price-focus-card:hover,
  .before-after-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15,118,110,.32);
    box-shadow: 0 20px 48px rgba(16,42,42,.09);
  }
  .card a {
    display: inline-block;
    transition: transform var(--motion-base) var(--motion-ease), color var(--motion-base) var(--motion-ease);
  }
  .card:hover a {
    transform: translateX(3px);
    color: var(--color-primary);
  }
}

.sticky-cta {
  animation: sticky-rise var(--motion-slow) var(--motion-ease-soft) both;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(16,42,42,.2);
}

@keyframes sticky-rise {
  from { opacity: .96; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sticky-cta a {
  transition: transform var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease), box-shadow var(--motion-base) var(--motion-ease);
}

.sticky-cta a:active {
  transform: scale(.97);
}

.contacts-layout {
  display: grid;
  gap: 18px;
}

.contact-quick {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(15,118,110,.14);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 16%, rgba(94,234,212,.28), transparent 14rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(234,245,243,.84));
  box-shadow: var(--shadow-soft);
}

.contact-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-quick h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05;
}

.contact-quick p {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--color-muted);
}

.contact-phone {
  display: inline-block;
  margin: 2px 0 18px;
  color: var(--color-primary-dark);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 880;
  line-height: 1.05;
  text-decoration: none;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-groups {
  display: grid;
  gap: 14px;
}

.contact-panel {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-card);
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
}

.contact-panel.legal {
  color: var(--color-muted);
  font-size: 14px;
}

.contact-panel.legal p {
  margin: 0;
}

.contact-list.compact {
  gap: 8px;
}

.contact-list.compact a,
.contact-list.compact span {
  padding: 12px 13px;
  box-shadow: none;
}

.contact-calc {
  align-self: start;
}

.price-mini-nav {
  position: sticky;
  top: 82px;
  z-index: 10;
  display: flex;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid rgba(215,231,228,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 26px rgba(16,42,42,.06);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.price-mini-nav::-webkit-scrollbar {
  display: none;
}

.price-mini-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: 820;
  font-size: 14px;
  transition: background-color var(--motion-base) var(--motion-ease), transform var(--motion-base) var(--motion-ease);
}

.price-mini-nav a:hover {
  background: var(--color-surface-muted);
}

.price-focus-grid {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
}

.price-focus-card {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(247,251,250,.9));
  box-shadow: var(--shadow-card);
}

.price-focus-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 820;
}

.price-focus-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary-dark);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.price-focus-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-table-shell {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,118,110,.08);
  background: rgba(255,255,255,.7);
}

.price-table td:nth-child(3) {
  font-size: 17px;
  font-weight: 880;
  white-space: nowrap;
}

.faq-item {
  overflow: clip;
}

.faq-item summary::after {
  transition: transform var(--motion-base) var(--motion-ease), color var(--motion-base) var(--motion-ease);
}

.faq-item[open] {
  border-color: rgba(15,118,110,.24);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--color-primary-dark);
}

@supports selector(::details-content) {
  .faq-item::details-content {
    block-size: 0;
    opacity: 0;
    overflow: hidden;
    transition: block-size var(--motion-base) var(--motion-ease), opacity var(--motion-base) var(--motion-ease);
  }
  .faq-item[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

.before-after-card {
  position: relative;
}

.before-after-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.28) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity var(--motion-slow) var(--motion-ease-soft), transform var(--motion-slow) var(--motion-ease-soft);
}

.before-after-card:hover::after {
  opacity: 1;
  transform: translateX(24%);
}

.local-chips span {
  transition: transform var(--motion-base) var(--motion-ease), border-color var(--motion-base) var(--motion-ease), background-color var(--motion-base) var(--motion-ease);
}

.local-chips span:hover {
  transform: translateY(-2px);
  border-color: rgba(15,118,110,.28);
  background: #fff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-ready .section.reveal:not(.is-visible),
.reveal-ready .hero.reveal:not(.is-visible),
.reveal-ready .price-mini-nav.reveal:not(.is-visible),
.reveal-ready .price-focus-grid.reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  transition: opacity 560ms var(--motion-ease-soft), transform 560ms var(--motion-ease-soft), box-shadow var(--motion-base) var(--motion-ease), border-color var(--motion-base) var(--motion-ease);
}

@media (min-width: 760px) {
  .contacts-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    align-items: start;
  }
  .contact-quick {
    grid-column: 1 / -1;
  }
  .price-focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .contacts-layout {
    grid-template-columns: minmax(0, .95fr) minmax(340px, .8fr) minmax(300px, .75fr);
  }
  .contact-quick {
    grid-column: auto;
    min-height: 100%;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(32px, 8.6vw, 42px);
    font-weight: 800;
  }
  .hero::after {
    opacity: .6;
    width: 180px;
    height: 180px;
    right: -34px;
    top: 52px;
  }
  .contact-actions .btn,
  .contact-calc .btn {
    width: 100%;
  }
  .contact-phone {
    font-size: clamp(25px, 8vw, 32px);
  }
  .price-mini-nav {
    top: 78px;
    margin-inline: -2px;
    border-radius: 22px;
  }
  .price-focus-card {
    padding: 16px;
  }
  .price-focus-card strong {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal-ready .reveal:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-copy {
  display: grid;
  align-content: center;
}

.hero-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 22px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(215,231,228,.92);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--color-primary-dark);
  font-size: 14px;
  font-weight: 780;
  box-shadow: 0 8px 18px rgba(16,42,42,.04);
}

.mini-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(215,231,228,.82);
  border-radius: var(--radius-md);
  background: rgba(234,245,243,.62);
  color: var(--color-text);
  font-weight: 760;
}

.mini-steps span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 880;
}

.service-cards {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  flex: 1;
}

.service-price {
  display: inline-flex;
  width: fit-content;
  margin: -2px 0 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--color-warm);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 880;
}

.trust-card {
  padding-top: 22px;
}

.trust-card::before {
  display: none;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(15,118,110,.18);
}

.order-timeline {
  gap: 12px;
}

.order-timeline .step {
  padding: 16px;
  border: 1px solid rgba(215,231,228,.9);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 20px rgba(16,42,42,.035);
}

.photo-section .before-after-card {
  background: linear-gradient(180deg, #fff, rgba(247,251,250,.94));
}

.photo-section .before-after-card figcaption {
  font-weight: 700;
}

/* Production beauty pass v1.8 */
.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(16,42,42,.08);
}

.hero {
  isolation: isolate;
}

.hero .container:not(.hero-grid) {
  max-width: 980px;
}

.hero .container > h1 {
  max-width: 860px;
}

.hero .container > p {
  max-width: 760px;
}

.service-snapshot {
  padding-top: clamp(22px, 4vw, 42px);
}

.service-snapshot-grid {
  grid-template-columns: 1fr;
}

.service-snapshot-card {
  min-height: 100%;
  background:
    radial-gradient(circle at 100% 0%, rgba(94,234,212,.12), transparent 12rem),
    rgba(255,255,255,.94);
}

.service-snapshot-card h2 {
  margin: 0 0 10px;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.12;
}

.faq-page {
  padding-top: clamp(28px, 5vw, 64px);
}

.faq-group {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(215,231,228,.9);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.7);
  box-shadow: 0 8px 22px rgba(16,42,42,.035);
}

.faq-group h2 {
  margin: 0 0 12px;
  color: var(--color-primary-dark);
  font-size: clamp(20px, 3vw, 26px);
}

.faq-group .faq-list {
  gap: 0;
}

.faq-group .faq-item {
  box-shadow: none;
}

.footer-city,
.footer-legal {
  color: #b8d5d0;
}

.site-footer .note-pill {
  display: none;
}

.site-footer .brand {
  margin-bottom: 14px;
  gap: 10px;
}

.site-footer .brand-mark {
  box-shadow: none;
  background: transparent;
  border-color: transparent;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer a {
  width: fit-content;
}

.contact-panel {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-card);
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.contact-groups {
  display: grid;
  gap: 14px;
}

.contact-quick,
.contact-calc {
  border-color: rgba(15,118,110,.16);
}

.contact-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(15,118,110,.16);
  border-radius: 999px;
  background: var(--color-surface-muted);
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 860;
}

.contact-phone {
  display: inline-flex;
  margin: 10px 0 18px;
  color: var(--color-primary-dark);
  text-decoration: none;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1;
  font-weight: 880;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-table-shell {
  overflow: hidden;
  border: 1px solid rgba(215,231,228,.9);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.price-table-shell .price-table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.photo-section .section-head,
.faq-page + .cta-section {
  position: relative;
}

.before-after-card img {
  min-height: 220px;
  object-fit: cover;
}

.apartment-hero,
.general-cleaning-hero,
.window-washing-hero,
.upholstery-cleaning-hero,
.office-cleaning-hero,
.house-cleaning-hero,
.after-renovation-hero,
.before-after-hero,
.prices-hero,
.reviews-hero {
  min-height: clamp(640px, 70vh, 820px);
}

.apartment-hero .hero-grid,
.general-cleaning-hero .hero-grid,
.window-washing-hero .hero-grid,
.upholstery-cleaning-hero .hero-grid,
.office-cleaning-hero .hero-grid,
.house-cleaning-hero .hero-grid,
.after-renovation-hero .hero-grid,
.before-after-hero .hero-grid,
.reviews-hero .hero-grid {
  padding-inline: clamp(10px, 1.4vw, 18px);
}

.service-hero-media {
  position: absolute;
  z-index: -2;
  inset: 18px max(16px, calc((100vw - var(--container)) / 2)) 28px;
  overflow: hidden;
  border: 1px solid rgba(215,231,228,.72);
  border-radius: var(--radius-xl);
  background: var(--color-surface-muted);
  box-shadow: 0 20px 60px rgba(16,42,42,.08);
}

.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.upholstery-cleaning-hero .service-hero-media img {
  object-position: 68% center;
}

.office-cleaning-hero .service-hero-media img {
  object-position: center center;
}

.house-cleaning-hero .service-hero-media img {
  object-position: 64% center;
}

.after-renovation-hero .service-hero-media img {
  object-position: center center;
}

.before-after-hero .service-hero-media {
  z-index: -1;
}

.before-after-hero .service-hero-media img {
  object-position: center center;
}

.before-after-hero .hero-grid {
  position: relative;
  z-index: 1;
}

.prices-hero .service-hero-media {
  z-index: -1;
}

.prices-hero .service-hero-media img {
  object-position: center center;
}

.prices-hero .container {
  position: relative;
  z-index: 1;
}

.reviews-hero .service-hero-media {
  z-index: -1;
}

.reviews-hero .service-hero-media img {
  object-position: 68% center;
}

@media (min-width: 760px) {
  .service-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-group {
    padding: 22px;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: var(--sticky-cta-space);
  }

  main {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .hero + .section {
    padding-top: clamp(104px, 28vw, 138px);
  }

  .site-footer {
    padding-bottom: calc(128px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 24px;
  }

  .service-snapshot {
    padding-top: 16px;
  }

  .service-snapshot-card h2 {
    font-size: 22px;
  }

  .faq-group {
    margin-inline: -2px;
    padding: 14px;
    border-radius: 20px;
  }

  .contact-panel {
    padding: 16px;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .apartment-hero,
  .general-cleaning-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero,
  .after-renovation-hero,
  .before-after-hero,
  .prices-hero,
  .reviews-hero {
    min-height: auto;
  }

  .service-hero-media {
    inset: 10px 14px 14px;
    border-radius: 28px;
  }

  .service-hero-media img {
    object-position: center 44%;
  }

  .general-cleaning-hero .service-hero-media img {
    object-position: center 46%;
  }

  .window-washing-hero .service-hero-media img {
    object-position: center 45%;
  }

  .upholstery-cleaning-hero .service-hero-media img {
    object-position: center 48%;
  }

  .office-cleaning-hero .service-hero-media img {
    object-position: center 48%;
  }

  .house-cleaning-hero .service-hero-media img {
    object-position: center 48%;
  }

  .after-renovation-hero .service-hero-media img {
    object-position: center 47%;
  }

  .before-after-hero .service-hero-media img {
    object-position: center 46%;
  }

  .prices-hero .service-hero-media img {
    object-position: center 50%;
  }

  .reviews-hero .service-hero-media img {
    object-position: center 46%;
  }

}

@media (min-width: 620px) {
  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {

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

@media (min-width: 1040px) {

  .trust-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .order-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {

  .hero-trust {
    margin-top: 18px;
  }

  .hero-trust span {
    min-height: 36px;
    font-size: 13px;
  }

  .mini-steps li {
    min-height: 40px;
    font-size: 14px;
  }

  .order-timeline .step {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .order-timeline .step::before {
    width: 40px;
    height: 40px;
  }
}

/* Price calculator v1.22 */
.calculator-section {
  padding-top: clamp(28px, 5vw, 58px);
}

/* Mobile layout hotfix v1.23 */
.contacts-page,
.site-footer,
.contact-panel,
.surface-panel,
.card {
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .prices-hero .container {
    width: min(var(--container), calc(100% - 56px));
    max-width: none;
    margin-inline: auto;
    padding: 18px;
    box-sizing: border-box;
    border-radius: 22px;
  }

  .prices-hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.2vw, 38px);
    line-height: 1.07;
    overflow-wrap: normal;
  }

  .prices-hero p {
    max-width: 100%;
  }

}
.service-hero-media img {
  filter: saturate(1.04) contrast(1.03);
}
.apartment-hero .hero-grid > div:first-child,
.general-cleaning-hero .hero-grid > div:first-child,
.window-washing-hero .hero-grid > div:first-child,
.upholstery-cleaning-hero .hero-grid > div:first-child,
.office-cleaning-hero .hero-grid > div:first-child,
.house-cleaning-hero .hero-grid > div:first-child,
.after-renovation-hero .hero-grid > div:first-child,
.before-after-hero .hero-grid > div:first-child,
.prices-hero .container,
.reviews-hero .hero-grid > div:first-child {
  padding: clamp(18px, 2.4vw, 28px);
  margin: calc(clamp(18px, 2.4vw, 28px) * -1);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(247,251,250,.66), rgba(247,251,250,.4) 64%, rgba(247,251,250,.08));
  backdrop-filter: blur(1px);
}

@media (max-width: 620px) {
  .hero-trust span {
    background: rgba(255,255,255,.5);
    border-color: rgba(215,231,228,.68);
    backdrop-filter: blur(1px);
  }
  .apartment-hero .hero-grid > div:first-child,
  .general-cleaning-hero .hero-grid > div:first-child,
  .window-washing-hero .hero-grid > div:first-child,
  .upholstery-cleaning-hero .hero-grid > div:first-child,
  .office-cleaning-hero .hero-grid > div:first-child,
  .house-cleaning-hero .hero-grid > div:first-child,
  .after-renovation-hero .hero-grid > div:first-child,
  .before-after-hero .hero-grid > div:first-child,
  .prices-hero .container,
  .reviews-hero .hero-grid > div:first-child {
    padding: 14px;
    margin: -14px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(247,251,250,.58), rgba(247,251,250,.3) 72%, rgba(247,251,250,.06));
    backdrop-filter: blur(.5px);
  }

  .prices-hero .container {
    width: calc(100% - 72px);
    max-width: 360px;
    padding: 18px 16px;
    margin: 0 auto;
    box-sizing: border-box;
    transform: none;
  }

  .prices-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.2vw, 34px);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .prices-hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.6;
    overflow-wrap: break-word;
  }

  .prices-hero .hero-actions,
  .prices-hero .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* Final visual cleanup v1.28: prices hero, mobile spacing, static CTA cleanup */
.prices-hero .container {
  width: min(980px, calc(100% - 64px));
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 30px;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(247,251,250,.78), rgba(247,251,250,.52) 68%, rgba(247,251,250,.14));
  backdrop-filter: blur(1px);
}

.prices-hero + .calculator-section {
  padding-top: clamp(36px, 5vw, 64px);
}

@media (max-width: 620px) {
  main {
    padding-bottom: calc(var(--sticky-cta-space) + 28px);
  }

  .prices-hero {
    padding-bottom: 34px;
  }

  .prices-hero .container {
    width: calc(100% - 44px);
    max-width: 390px;
    margin: 0 auto;
    padding: 20px 18px;
    text-align: center;
    border-radius: 24px;
    transform: none;
  }

  .prices-hero h1 {
    margin-inline: auto;
    font-size: clamp(29px, 7.6vw, 35px);
    line-height: 1.08;
  }

  .prices-hero p {
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.58;
  }

  .prices-hero .hero-actions {
    justify-content: center;
  }

  .prices-hero .hero-actions .btn {
    width: 100%;
  }

  .prices-hero + .calculator-section,
  .hero + .calculator-section {
    padding-top: 34px;
  }

  .before-after-hero .hero-grid {
    gap: 16px;
  }
}

/* Final visual cleanup v1.28.1: stable in-page anchor and review mobile first fold */
.calculator-section {
  scroll-margin-top: 96px;
}

@media (max-width: 620px) {
  .calculator-section {
    scroll-margin-top: 92px;
  }

  .reviews-hero {
    min-height: min(690px, calc(100vh - 40px));
  }
}

/* BClean v1.30 logo fix: transparent header mark, no black chip on light UI */
@media (max-width: 620px) {
  .brand { gap: 8px; font-size: 21px; }
  .brand-mark { width: 54px; height: 38px; border-radius: 12px; padding: 5px; }
}

/* BClean visual lift v1.31: stronger product palette, sharper surfaces, richer depth */
:root {
  --color-bg: #F1FAF7;
  --color-surface: #FFFFFF;
  --color-surface-muted: #DFF5EF;
  --color-text: #092E2C;
  --color-muted: #476966;
  --color-primary: #08786F;
  --color-primary-dark: #053E3A;
  --color-accent: #19C6B5;
  --color-warm: #FFF2DF;
  --color-border: #BFDCD6;
  --shadow-soft: 0 24px 70px rgba(5, 62, 58, 0.14);
  --shadow-card: 0 14px 36px rgba(5, 62, 58, 0.095);
  --shadow-button: 0 15px 34px rgba(8, 120, 111, 0.30);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(25,198,181,.28), transparent 30rem),
    radial-gradient(circle at 92% 16%, rgba(255,242,223,.58), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #F1FAF7 36rem, #EEF8F5 100%);
  color: var(--color-text);
}

.site-header {
  background: rgba(252,255,254,.9);
  border-bottom-color: rgba(8,120,111,.14);
  box-shadow: 0 12px 34px rgba(5,62,58,.055);
}

.site-header.is-scrolled {
  background: rgba(252,255,254,.94);
  border-color: rgba(8,120,111,.22);
  box-shadow: 0 18px 46px rgba(5,62,58,.10);
}

.brand {
  color: #082D2B;
}

.brand-mark img {
  filter: drop-shadow(0 3px 6px rgba(5,62,58,.15)) saturate(1.28) contrast(1.14);
}

.site-nav > a,
.nav-services__toggle,
.nav-services__menu a {
  color: #496663;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-services__toggle:hover,
.nav-services__toggle[aria-current="page"],
.nav-services__menu a:hover,
.nav-services__menu a[aria-current="page"] {
  background: linear-gradient(180deg, #E6F7F2, #D9F1EB);
  color: var(--color-primary-dark);
  box-shadow: inset 0 0 0 1px rgba(8,120,111,.10);
}

.service-hero-media {
  border-color: rgba(8,120,111,.20);
  box-shadow: 0 28px 90px rgba(5,62,58,.15);
}
.service-hero-media img {
  filter: saturate(1.18) contrast(1.09) brightness(.98);
}
.apartment-hero .hero-grid > div:first-child,
.general-cleaning-hero .hero-grid > div:first-child,
.window-washing-hero .hero-grid > div:first-child,
.upholstery-cleaning-hero .hero-grid > div:first-child,
.office-cleaning-hero .hero-grid > div:first-child,
.house-cleaning-hero .hero-grid > div:first-child,
.after-renovation-hero .hero-grid > div:first-child,
.before-after-hero .hero-grid > div:first-child,
.prices-hero .container,
.reviews-hero .hero-grid > div:first-child {
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(241,250,247,.72) 64%, rgba(241,250,247,.22));
  box-shadow: 0 18px 54px rgba(5,62,58,.08);
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(7px);
}

.hero h1,
.section-head h2,
.local-block h2,
.cta-box h2 {
  color: #082D2B;
  letter-spacing: -.035em;
}

.hero h1 {
  font-weight: 880;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}

.hero p,
.section-head p,
.local-block p,
.cta-box p,
.card p {
  color: var(--color-muted);
}

.card,
.surface-panel,
.calc-box,
.faq-item,
.contact-panel,
.price-focus-card,
.before-after-card {
  background: rgba(255,255,255,.88);
  border-color: rgba(191,220,214,.88);
  box-shadow: var(--shadow-card);
}

.contact-quick,
.cta-box {
  background:
    radial-gradient(circle at 92% 12%, rgba(25,198,181,.18), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(232,248,243,.82));
  border-color: rgba(8,120,111,.18);
  box-shadow: var(--shadow-soft);
}

.price-badge,
.contact-kicker {
  background: linear-gradient(180deg, #E2F8F3, #D2F1EA);
  color: #064A45;
  border-color: rgba(8,120,111,.18);
  box-shadow: 0 8px 18px rgba(8,120,111,.06);
}

.btn {
  border-color: rgba(191,220,214,.96);
  box-shadow: 0 8px 18px rgba(5,62,58,.04);
}

.btn.primary,
.sticky-cta a:first-child {
  background: linear-gradient(135deg, #08786F, #055A54 62%, #043D39);
  border-color: #08786F;
  color: #fff;
  box-shadow: var(--shadow-button);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #099285, #066B63 62%, #044E49);
  border-color: #099285;
}

.btn.secondary {
  background: linear-gradient(180deg, #FFF8EC, #F6EADB);
  border-color: #EEDCC4;
  color: #102A2A;
}

.btn.ghost,
.sticky-cta a:nth-child(2),
.sticky-cta a:nth-child(3) {
  background: rgba(255,255,255,.88);
  border-color: rgba(191,220,214,.96);
  color: #064A45;
}

.hero-trust span,
.mini-steps li,
.contact-list.compact a,
.contact-list.compact span,
.local-chips span,
.service-links a {
  background: rgba(255,255,255,.82);
  border-color: rgba(191,220,214,.92);
  color: #064A45;
  box-shadow: 0 8px 20px rgba(5,62,58,.055);
}

.mini-steps span,
.trust-icon,
.check-list li::before {
  background: linear-gradient(145deg, #08786F, #043E3A);
  box-shadow: 0 12px 24px rgba(8,120,111,.20);
}

.card::before {
  height: 5px;
  width: 44px;
  background: linear-gradient(90deg, #08786F, #19C6B5 68%, #FFF2DF);
}

.card:hover,
.surface-panel:hover,
.contact-panel:hover,
.price-focus-card:hover,
.before-after-card:hover {
  border-color: rgba(8,120,111,.34);
  box-shadow: 0 24px 62px rgba(5,62,58,.14);
}

.service-price {
  background: linear-gradient(180deg, #FFF8EC, #F8EBD9);
  color: #064A45;
  border: 1px solid #EEDCC4;
}

.muted-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(25,198,181,.16), transparent 26rem),
    linear-gradient(180deg, #E8F7F2, #F4FBF8);
}

.price-table th {
  background: linear-gradient(135deg, #053E3A, #08786F);
}

.price-table-shell {
  border-color: rgba(8,120,111,.14);
  box-shadow: var(--shadow-card);
}

.price-focus-card strong,
.price-table td:nth-child(2),
.price-table td:nth-child(3),
.contact-phone,
.card a,
.breadcrumbs a {
  color: #064A45;
}

.sticky-cta {
  background: rgba(252,255,254,.92);
  border-color: rgba(8,120,111,.18);
  box-shadow: 0 22px 58px rgba(5,62,58,.26);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(25,198,181,.16), transparent 26rem),
    linear-gradient(180deg, #062F2C, #031F1D);
  color: #DDF2EF;
}

.site-footer p {
  color: #B8D8D3;
}

.site-footer a {
  color: #DCF3EF;
}

.footer-city,
.footer-legal {
  color: #A9D1CA;
}

@media (max-width: 620px) {
  .brand-mark {
    width: 56px;
    height: 39px;
    padding: 3px;
  }
  .apartment-hero .hero-grid > div:first-child,
  .general-cleaning-hero .hero-grid > div:first-child,
  .window-washing-hero .hero-grid > div:first-child,
  .upholstery-cleaning-hero .hero-grid > div:first-child,
  .office-cleaning-hero .hero-grid > div:first-child,
  .house-cleaning-hero .hero-grid > div:first-child,
  .after-renovation-hero .hero-grid > div:first-child,
  .before-after-hero .hero-grid > div:first-child,
  .prices-hero .container,
  .reviews-hero .hero-grid > div:first-child {
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(241,250,247,.66) 78%, rgba(241,250,247,.22));
    box-shadow: 0 14px 36px rgba(5,62,58,.09);
    backdrop-filter: blur(6px);
  }

  .hero-trust span {
    background: rgba(255,255,255,.82);
    border-color: rgba(191,220,214,.88);
    backdrop-filter: blur(7px);
  }

  .site-nav {
    background: rgba(252,255,254,.98);
    border-color: rgba(8,120,111,.16);
    box-shadow: 0 24px 62px rgba(5,62,58,.16);
  }
}

/* BClean v1.31 mobile rhythm: remove the weak empty gap after hero blocks */
@media (max-width: 620px) {
  .hero + .section {
    padding-top: clamp(46px, 12vw, 66px);
  }

  .prices-hero + .calculator-section,
  .hero + .calculator-section {
    padding-top: 34px;
  }

  .contacts-page,
  .photo-section,
  .faq-page {
    padding-top: clamp(44px, 12vw, 64px);
  }
}

/* BClean v1.33 pages cleanup: unified inner pages, honest reviews/cases, mobile rhythm */
.page-card-grid { align-items: stretch; }
.page-card-grid .card { min-height: 100%; }
.faq-group .faq-list { display: grid; gap: 10px; }
.contact-panel.legal strong { color: var(--color-primary-dark); }
.contact-panel.legal p + p { margin-top: 12px; }
@media (min-width: 1040px) { .page-card-grid.cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } .photo-section .page-card-grid.cards, .contacts-page .page-card-grid.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .page-card-grid.cards { grid-template-columns: 1fr; } }
@media (min-width: 761px) { .install-hint { display: none !important; } }

/* BClean v1.33.1 mobile overflow guard */
html, body { overflow-x: clip; }
@media (max-width: 760px) {
  .sticky-cta {
    left: 8px;
    right: auto;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }
}

/* BClean v1.34 inner pages visual cleanup: photo-first mobile, unified cards */
main .hero:not(.home-hero) {
  isolation: isolate;
}

main .hero:not(.home-hero) .service-hero-media {
  box-shadow: 0 28px 74px rgba(5, 62, 58, .14);
}


main .hero:not(.home-hero) .hero-grid > div:first-child,
.prices-hero > .container {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(215,231,228,.78);
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 48px rgba(5,62,58,.08);
  backdrop-filter: blur(4px);
}

main .hero:not(.home-hero) h1 {
  max-width: 740px;
}

.service-hero-media,
.before-after-card,
.media-card,
.image-card,
.case-card {
  overflow: hidden;
}

.service-hero-media img,
.before-after-card img,
.media-card img,
.image-card img,
.case-card img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.before-after-card img,
.media-card img,
.image-card img,
.case-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.photo-section .page-card-grid .card,
.reviews-page .page-card-grid .card,
.faq-page .faq-group,
.contact-panel,
.price-focus-card {
  border-color: rgba(191,220,214,.86);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 44px rgba(5,62,58,.07);
}

.page-card-grid .card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-card-grid .card p {
  margin-bottom: 0;
}

.service-price {
  align-self: flex-start;
}

.faq-page {
  padding-top: clamp(48px, 6vw, 82px);
}

.faq-group {
  border: 1px solid rgba(191,220,214,.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 0%, rgba(94,234,212,.12), transparent 13rem),
    rgba(255,255,255,.68);
}

.faq-group h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.price-mini-nav {
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.price-mini-nav a {
  scroll-snap-align: start;
  white-space: nowrap;
}

.contacts-layout {
  align-items: start;
}

.contact-panel.legal p {
  overflow-wrap: anywhere;
}

@media (min-width: 761px) {
  main .hero:not(.home-hero) {
    min-height: clamp(560px, 62vh, 760px);
  }

  main .hero:not(.home-hero) .hero-grid {
    gap: clamp(22px, 4vw, 48px);
  }

  main .hero:not(.home-hero) .service-hero-media {
    inset: 18px max(16px, calc((100vw - var(--container)) / 2)) 26px;
  }

  .before-after-card img,
  .media-card img,
  .image-card img,
  .case-card img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  main .hero:not(.home-hero) {
    padding: 20px 0 34px;
    min-height: auto;
  }

  main .hero:not(.home-hero) .service-hero-media {
    position: absolute;
    z-index: 0;
    inset: 10px 14px 14px;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 28px;
    box-shadow: 0 20px 46px rgba(5,62,58,.12);
  }

  main .hero:not(.home-hero) .service-hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.04) saturate(1.04) brightness(1.02);
  }

  main .hero:not(.home-hero) .hero-grid {
    gap: 16px;
  }

  main .hero:not(.home-hero) .hero-grid > div:first-child,
  main .hero.prices-hero > .container:not(.hero-grid) {
    width: 100%;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.74);
    backdrop-filter: blur(2px);
  }

  main .hero:not(.home-hero) h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  main .hero:not(.home-hero) p {
    font-size: 1rem;
  }

  .before-after-card img,
  .media-card img,
  .image-card img,
  .case-card img {
    aspect-ratio: 4 / 3;
  }

  .hero + .section {
    padding-top: clamp(46px, 10vw, 68px);
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2,
  .local-block h2,
  .cta-box h2 {
    font-size: clamp(27px, 7.5vw, 36px);
  }

  .card,
  .surface-panel,
  .contact-panel,
  .contact-quick,
  .contact-calc,
  .faq-group,
  .price-focus-card {
    border-radius: 24px;
  }

  .price-mini-nav {
    margin-inline: 0;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(191,220,214,.72);
  }

  .price-mini-nav a {
    min-height: 40px;
    padding-inline: 13px;
  }

  .contact-panel.legal p {
    font-size: .95rem;
  }
}

/* BClean v1.35 photo system: orientation-correct media and visible inner-page photography */
@media (min-width: 761px) {
  main .hero:not(.home-hero) {
    min-height: 650px;
    padding: 44px 0;
  }

  main .hero:not(.home-hero) .service-hero-media {
    z-index: 0;
    top: 32px;
    right: max(16px, calc((100vw - var(--container)) / 2));
    bottom: 32px;
    left: calc(50% + 18px);
    border-radius: 32px;
    background: var(--color-surface-muted);
    box-shadow: 0 28px 74px rgba(5,62,58,.16);
  }

  main .hero:not(.home-hero) .service-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.05) brightness(1.01);
  }

  main .hero:not(.home-hero) .hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    min-height: 562px;
    gap: clamp(34px, 4vw, 58px);
    align-items: center;
  }

  main .hero:not(.home-hero) .hero-grid > div:first-child {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  main .hero.prices-hero > .container:not(.hero-grid) {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(calc(100% - 32px), var(--container));
    max-width: var(--container);
    min-height: 562px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-inline: auto;
    padding: 0 clamp(380px, 43vw, 620px) 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  main .hero.apartment-hero .service-hero-media img { object-position: 68% center; }
  main .hero.general-cleaning-hero .service-hero-media img { object-position: 58% center; }
  main .hero.window-washing-hero .service-hero-media img { object-position: 58% center; }
  main .hero.upholstery-cleaning-hero .service-hero-media img { object-position: 70% center; }
  main .hero.office-cleaning-hero .service-hero-media img { object-position: 72% center; }
  main .hero.house-cleaning-hero .service-hero-media img { object-position: 72% center; }
  main .hero.after-renovation-hero .service-hero-media img { object-position: 70% center; }
  main .hero.before-after-hero .service-hero-media img { object-position: center; }
  main .hero.prices-hero .service-hero-media img { object-position: 72% center; }
  main .hero.reviews-hero .service-hero-media img { object-position: 70% center; }
}

@media (max-width: 760px) {
  .sticky-cta {
    animation: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition:
      opacity 180ms ease,
      transform 220ms ease;
  }

  .sticky-cta-visible .sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  main .hero:not(.home-hero) {
    display: block;
    padding: 16px 0 34px;
    min-height: auto;
    overflow: visible;
  }

  main .hero:not(.home-hero) .service-hero-media {
    position: relative;
    z-index: 0;
    inset: auto;
    display: block;
    width: calc(100% - 28px);
    height: auto;
    aspect-ratio: 4 / 4.25;
    margin: 0 auto 22px;
    border-radius: 26px;
    background: var(--color-surface-muted);
    box-shadow: 0 20px 48px rgba(5,62,58,.14);
  }

  main .hero:not(.home-hero) .service-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    filter: saturate(1.07) contrast(1.04) brightness(1.02);
  }

  main .hero:not(.home-hero) .hero-grid,
  .prices-hero > .container {
    position: relative;
    z-index: 1;
    display: grid;
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    min-height: 0;
    gap: 16px;
    margin-inline: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  main .hero:not(.home-hero) .hero-grid > div:first-child,
  .prices-hero > .container {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  main .hero:not(.home-hero) h1 {
    max-width: 100%;
    margin-top: 2px;
  }

  main .hero.apartment-hero .service-hero-media img { object-position: center 60%; }
  main .hero.general-cleaning-hero .service-hero-media img { object-position: center 58%; }
  main .hero.window-washing-hero .service-hero-media img { object-position: center 55%; }
  main .hero.upholstery-cleaning-hero .service-hero-media img { object-position: center 66%; }
  main .hero.office-cleaning-hero .service-hero-media img { object-position: center 62%; }
  main .hero.house-cleaning-hero .service-hero-media img { object-position: center 62%; }
  main .hero.after-renovation-hero .service-hero-media img { object-position: center 62%; }
  main .hero.before-after-hero .service-hero-media img { object-position: center 54%; }
  main .hero.prices-hero .service-hero-media img { object-position: center 68%; }
  main .hero.reviews-hero .service-hero-media img { object-position: center 60%; }
}

/* BClean v1.36 mobile visual QA fix: safer hero text, tighter photo-first rhythm, cleaner nav readability */
@media (max-width: 760px) {
  .card > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .site-footer a:not(.brand) {
    display: flex;
    min-height: 44px;
    align-items: center;
    margin-block: 0;
  }

  .site-nav {
    background: #fcfffe;
    border-color: rgba(8,120,111,.2);
    box-shadow: 0 24px 62px rgba(5,62,58,.2);
    backdrop-filter: none;
  }

  .breadcrumbs {
    padding-top: 14px;
    color: #496562;
    font-size: 13px;
    line-height: 1.45;
  }

  .breadcrumbs a {
    color: #075f59;
  }

  main .hero:not(.home-hero) {
    padding-top: 12px;
    padding-bottom: 24px;
  }

  main .hero:not(.home-hero) .service-hero-media {
    width: calc(100% - 28px);
    aspect-ratio: 4 / 3.25;
    margin-bottom: 14px;
    border-radius: 24px;
  }

  main .hero:not(.home-hero) .hero-grid,
  main .hero.prices-hero > .container:not(.hero-grid) {
    width: calc(100% - 28px);
    max-width: 430px;
    gap: 12px;
  }

  main .hero:not(.home-hero) h1 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(28px, 7.4vw, 36px);
    line-height: 1.08;
    letter-spacing: -.01em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: manual;
  }

  main .hero:not(.home-hero) p {
    margin-bottom: 14px;
    line-height: 1.52;
  }

  main .hero:not(.home-hero) .hero-actions,
  main .hero:not(.home-hero) .inline-actions {
    gap: 8px;
  }

  main .hero:not(.home-hero) .hero-actions .btn,
  main .hero:not(.home-hero) .inline-actions .btn {
    min-height: 48px;
  }
}

@media (min-width: 761px) {
  .breadcrumbs {
    color: #506a67;
  }
}

@media (min-width: 1180px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav > a,
  .nav-services__toggle {
    padding: 9px 11px;
    font-size: 14px;
    font-weight: 800;
  }
}

/* BClean v1.36.1 contacts mobile guard: body class must not create fake top spacing */
@media (max-width: 760px) {
  body.contacts-page {
    padding-top: 0;
  }
}

/* BClean v1.37 SVG logo integration: full vector brand mark + BCLEAN wordmark */
.brand--svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  line-height: 0;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo--header {
  width: 104px;
  max-width: 30vw;
  filter: drop-shadow(0 4px 9px rgba(5,62,58,.14));
}

.header-inner {
  min-height: 92px;
}

@media (max-width: 1179px) {
  .site-nav {
    inset: 92px 12px auto 12px;
  }
}

@media (max-width: 620px) {
  .header-inner {
    min-height: 84px;
  }

  .brand--svg {
    max-width: 118px;
  }

  .brand-logo--header {
    width: 88px;
    max-width: 28vw;
  }

  .site-nav {
    inset: 84px 12px auto 12px;
  }
}

.site-footer .brand--svg {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  line-height: 0;
}

.brand-logo--footer {
  width: 148px;
  max-width: 100%;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.18));
}

@media (max-width: 620px) {
  .brand-logo--footer {
    width: 136px;
  }
}

/* BClean V1.41 — Home page system */
body.home-page {
  background:
    radial-gradient(circle at 86% 4%, rgba(94, 234, 212, .12), transparent 24rem),
    linear-gradient(180deg, #f8fcfb 0%, #fff 34%, #f8fcfb 100%);
}

body.home-page .home-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.home-page main {
  overflow: clip;
}

body.home-page .section {
  padding-block: clamp(56px, 7vw, 96px);
}

body.home-page .home-v140-section-head {
  max-width: 760px;
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

body.home-page .home-v140-section-head h2,
body.home-page .home-v140-price-panel h2,
body.home-page .home-v140-local-box h2,
body.home-page .home-v140-cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}

body.home-page .home-v140-section-head p,
body.home-page .home-v140-price-panel p,
body.home-page .home-v140-local-box p,
body.home-page .home-v140-cta-box p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.68;
}

body.home-page .home-v140-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: .92rem;
  font-weight: 880;
}

body.home-page .home-v140-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.home-page .home-v140-actions .btn {
  min-height: 52px;
}

body.home-page .home-v140-hero {
  padding: clamp(34px, 5vw, 70px) 0 clamp(54px, 6vw, 82px);
}

body.home-page .home-v140-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  align-items: center;
}

body.home-page .home-v140-hero-copy {
  grid-column: 1 / span 6;
  min-width: 0;
}

body.home-page .home-v140-hero h1 {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(2.9rem, 5.25vw, 4.8rem);
  font-weight: 850;
  line-height: .98;
  letter-spacing: 0;
}

body.home-page .home-v140-hero-copy > p:not(.home-v140-meta) {
  max-width: 600px;
  margin: 0;
  color: var(--color-muted);
  font-size: clamp(1.07rem, 1.5vw, 1.22rem);
  line-height: 1.68;
}

body.home-page .home-v140-hero .home-v140-actions {
  margin-top: clamp(22px, 3vw, 30px);
}

body.home-page .home-v140-meta {
  margin: 18px 0 0;
  color: var(--color-primary-dark);
  font-size: .98rem;
  font-weight: 760;
}

body.home-page .home-v140-hero-photo {
  grid-column: 7 / span 6;
  position: relative;
  align-self: center;
  height: clamp(500px, 42vw, 620px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 220, 214, .86);
  border-radius: clamp(26px, 3vw, 38px);
  background: #eef7f5;
  box-shadow: 0 28px 76px rgba(5, 62, 58, .15);
}

body.home-page .home-v140-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: contrast(1.04) saturate(1.04);
}

body.home-page .home-v140-service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

body.home-page .home-v140-service-card {
  grid-column: span 3;
  min-width: 0;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(191, 220, 214, .76);
  border-radius: 26px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
  transition: transform 220ms var(--motion-ease), border-color 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease);
}

body.home-page .home-v140-service-card:nth-child(-n+3) {
  grid-column: span 4;
}

body.home-page .home-v140-service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, .26);
  box-shadow: 0 20px 52px rgba(5, 62, 58, .1);
}

body.home-page .home-v140-service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 1.9vw, 1.5rem);
  line-height: 1.18;
}

body.home-page .home-v140-service-card p {
  flex: 1;
  margin: 0 0 20px;
  color: var(--color-muted);
  line-height: 1.58;
}

body.home-page .home-v140-service-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--color-primary-dark);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.1;
}

body.home-page .home-v140-service-card a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 850;
  text-decoration: none;
}

body.home-page .home-v140-service-card a:hover {
  color: var(--color-primary-dark);
}

body.home-page .home-v140-trust {
  background: linear-gradient(180deg, rgba(234, 245, 243, .52), rgba(255,255,255,.88));
}

body.home-page .home-v140-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

body.home-page .home-v140-trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(218px, 1fr);
  gap: 18px;
}

body.home-page .home-v140-trust-card {
  min-width: 0;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 38px rgba(5, 62, 58, .07);
}

body.home-page .home-v140-trust-card svg {
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 18px;
  color: var(--color-primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.home-page .home-v140-trust-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.2;
}

body.home-page .home-v140-trust-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.58;
}

body.home-page .home-v140-trust-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(191, 220, 214, .86);
  border-radius: 30px;
  background: #eef7f5;
  box-shadow: 0 22px 62px rgba(5, 62, 58, .12);
}

body.home-page .home-v140-trust-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

body.home-page .home-v140-price-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(191, 220, 214, .78);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 10%, rgba(94, 234, 212, .16), transparent 18rem),
    rgba(255,255,255,.9);
  box-shadow: 0 20px 58px rgba(5, 62, 58, .08);
}

body.home-page .home-v140-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.home-page .home-v140-price-list article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(191, 220, 214, .72);
  border-radius: 22px;
  background: rgba(247,251,250,.8);
}

body.home-page .home-v140-price-list span {
  color: var(--color-muted);
  font-size: .96rem;
}

body.home-page .home-v140-price-list strong {
  color: var(--color-primary-dark);
  font-size: clamp(1.25rem, 2.4vw, 1.62rem);
  line-height: 1.08;
}

body.home-page .home-v140-price-panel > .btn {
  grid-column: 1 / -1;
  width: fit-content;
}

body.home-page .home-v140-steps {
  counter-reset: order-step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home-page .home-v140-steps li {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(191, 220, 214, .76);
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 36px rgba(5, 62, 58, .06);
}

body.home-page .home-v140-steps span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
}

body.home-page .home-v140-steps h3 {
  margin: 0 0 10px;
  font-size: 1.13rem;
  line-height: 1.2;
}

body.home-page .home-v140-steps p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.58;
}

body.home-page .home-v140-local {
  background: linear-gradient(180deg, #fff, rgba(234,245,243,.48));
}

body.home-page .home-v140-local-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .8fr) auto;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(191, 220, 214, .76);
  border-radius: 32px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 58px rgba(5, 62, 58, .08);
}

body.home-page .home-v140-local-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-primary-dark);
  font-weight: 760;
}

body.home-page .home-v140-local-box li {
  min-height: 28px;
  display: flex;
  align-items: center;
}

body.home-page .home-v140-faq .faq-list {
  max-width: 820px;
  margin-inline: auto;
}

body.home-page .home-v140-faq .faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
}

body.home-page .home-v140-faq .faq-item summary:focus-visible {
  outline: 3px solid rgba(15, 118, 110, .22);
  outline-offset: 4px;
  border-radius: 14px;
}

body.home-page .home-v140-final-cta {
  padding-top: 24px;
}

body.home-page .home-v140-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary-dark), #0f766e);
  box-shadow: 0 26px 70px rgba(5, 62, 58, .18);
}

body.home-page .home-v140-cta-box p {
  color: rgba(255,255,255,.82);
}

body.home-page .home-v140-cta-box .btn.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}

body.home-page .home-v140-text-link {
  grid-column: 1 / -1;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.86);
  font-weight: 820;
  text-decoration: none;
}

body.home-page .home-v140-text-link:hover {
  color: #fff;
}

.reveal-ready body.home-page .section.reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-ready body.home-page .reveal {
  transition: opacity 360ms var(--motion-ease-soft), transform 360ms var(--motion-ease-soft), box-shadow 220ms var(--motion-ease), border-color 220ms var(--motion-ease);
}

@media (min-width: 761px) {
  body.home-page .sticky-cta {
    display: none;
  }
}

@media (max-width: 1039px) {
  body.home-page .home-v140-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
    gap: clamp(20px, 2.8vw, 28px);
  }

  body.home-page .home-v140-hero-copy {
    grid-column: 1;
    max-width: none;
  }

  body.home-page .home-v140-hero-photo {
    grid-column: 2;
    min-height: 0;
    height: clamp(500px, 54vw, 620px);
    aspect-ratio: auto;
  }

  body.home-page .home-v140-hero h1 {
    font-size: clamp(2.2rem, 4.3vw, 3.2rem);
    line-height: 1.02;
  }

  body.home-page .home-v140-trust-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 38%);
  }

  body.home-page .home-v140-price-panel,
  body.home-page .home-v140-local-box,
  body.home-page .home-v140-cta-box {
    grid-template-columns: 1fr;
  }

  body.home-page .home-v140-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-v140-service-card,
  body.home-page .home-v140-service-card:nth-child(-n+3) {
    grid-column: auto;
  }

  body.home-page .home-v140-trust-photo {
    min-height: 100%;
  }

  body.home-page .home-v140-trust-photo img {
    height: 100%;
    object-fit: cover;
  }

  body.home-page .home-v140-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-v140-price-panel > .btn {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  body.home-page .home-v140-hero-grid,
  body.home-page .home-v140-trust-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .home-v140-hero-copy,
  body.home-page .home-v140-hero-photo {
    grid-column: auto;
  }

  body.home-page .home-v140-hero-copy {
    max-width: 720px;
  }

  body.home-page .home-v140-hero-photo {
    height: auto;
    aspect-ratio: 9 / 13.2;
  }

  body.home-page .home-v140-trust-photo {
    min-height: auto;
  }

  body.home-page .home-v140-trust-photo img {
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 760px) {
  body.home-page .section {
    padding-block: clamp(44px, 12vw, 68px);
  }

  body.home-page .home-v140-hero {
    padding: 28px 0 48px;
  }

  body.home-page .home-v140-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  body.home-page .home-v140-hero-copy {
    order: 1;
    width: 100%;
  }

  body.home-page .home-v140-hero-photo {
    order: 2;
    width: 100%;
    aspect-ratio: auto;
    border-radius: 28px;
  }

  body.home-page .home-v140-hero-photo img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  body.home-page .home-v140-hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.6vw, 2.42rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  body.home-page .home-v140-hero-copy > p:not(.home-v140-meta) {
    font-size: 1rem;
    line-height: 1.62;
  }

  body.home-page .home-v140-actions {
    flex-direction: column;
  }

  body.home-page .home-v140-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  body.home-page .home-v140-meta {
    font-size: .92rem;
    line-height: 1.55;
  }

  body.home-page .home-v140-service-grid,
  body.home-page .home-v140-trust-cards,
  body.home-page .home-v140-price-list,
  body.home-page .home-v140-steps {
    grid-template-columns: 1fr;
  }

  body.home-page .home-v140-service-card {
    min-height: 0;
  }

  body.home-page .home-v140-trust-cards {
    grid-auto-rows: auto;
  }

  body.home-page .home-v140-trust-photo {
    order: -1;
    border-radius: 26px;
  }

  body.home-page .home-v140-price-panel,
  body.home-page .home-v140-local-box,
  body.home-page .home-v140-cta-box {
    padding: 22px;
    border-radius: 26px;
  }

  body.home-page .home-v140-price-list article {
    min-height: 96px;
  }

  body.home-page .home-v140-local-box {
    align-items: stretch;
  }

  body.home-page .home-v140-local-box .btn {
    width: 100%;
  }

  body.home-page .home-v140-cta-box {
    display: grid;
  }
}

@media (max-width: 360px) {
  body.home-page .container {
    width: min(var(--container), calc(100% - 24px));
  }

  body.home-page .home-v140-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.3rem);
  }

  body.home-page .home-v140-service-card,
  body.home-page .home-v140-trust-card,
  body.home-page .home-v140-price-panel,
  body.home-page .home-v140-local-box,
  body.home-page .home-v140-cta-box {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready body.home-page .section.reveal:not(.is-visible) {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Home reviews: isolated carousel added after the local service area. */
.home-reviews {
  --home-reviews-card-gap: 18px;
  --home-reviews-group-gap: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(234, 245, 243, 0.42), rgba(247, 251, 250, 0));
}

.home-reviews__header {
  margin-bottom: 30px;
  text-align: center;
}

.home-reviews__header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.home-reviews__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
  padding: 10px 0 24px;
  outline: none;
}

.home-reviews__viewport::-webkit-scrollbar {
  display: none;
}

.home-reviews__viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.home-reviews__viewport.is-dragging,
.home-reviews__viewport.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
}

.home-reviews__viewport:focus-visible {
  outline: 3px solid rgba(94, 234, 212, 0.58);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.home-reviews__track {
  display: flex;
  width: max-content;
  gap: var(--home-reviews-group-gap);
}

.home-reviews__group {
  display: flex;
  flex: none;
  gap: var(--home-reviews-card-gap);
}

.home-review-card {
  flex: 0 0 clamp(29rem, 40vw, 32.5rem);
  width: clamp(29rem, 40vw, 32.5rem);
  height: 20.25rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  padding: 28px 30px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(244, 252, 250, 0.94) 100%
  );
  box-shadow:
    0 16px 40px rgba(16, 42, 42, 0.09),
    0 2px 8px rgba(15, 118, 110, 0.04),
    inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.home-review-card__rating {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 5px;
}

.home-review-card__text {
  min-width: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.48;
  font-weight: 620;
  text-align: center;
  overflow-wrap: break-word;
}

.home-reviews__action {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.home-reviews__action .btn {
  min-width: min(240px, 100%);
}

@media (max-width: 620px) {
  .home-reviews__header {
    margin-bottom: 22px;
  }

  .home-review-card {
    flex-basis: calc(100vw - 56px);
    width: calc(100vw - 56px);
    height: 28.625rem;
    padding: 22px 20px;
    gap: 14px;
  }

  .home-review-card__text {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-reviews__action .btn {
    width: 100%;
  }
}

@media (min-width: 621px) and (max-width: 1100px) {
  .home-review-card {
    flex-basis: clamp(27.5rem, 58vw, 30rem);
    width: clamp(27.5rem, 58vw, 30rem);
    height: 23rem;
  }
}

@media (max-width: 360px) {
  .home-review-card {
    flex-basis: calc(100vw - 40px);
    width: calc(100vw - 40px);
    height: 29rem;
    padding: 20px 18px;
  }

  .home-review-card__text {
    font-size: 14px;
    line-height: 1.43;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-reviews__viewport {
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
    cursor: auto;
  }

  .home-reviews__track {
    gap: 0;
  }

  .home-reviews__group[aria-hidden="true"] {
    display: none;
  }

  .home-review-card {
    scroll-snap-align: center;
  }
}

/* Contacts: align the existing page with the approved Home visual system. */
body.contacts-page main {
  overflow: clip;
}

body.contacts-page .section {
  padding-block: clamp(56px, 7vw, 88px);
}

body.contacts-page .contacts-section {
  padding-top: clamp(64px, 8vw, 96px);
}

body.contacts-page .contacts-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

body.contacts-page .contact-quick {
  grid-column: span 5;
  min-width: 0;
  padding: clamp(28px, 3.5vw, 40px);
  border-color: rgba(191, 220, 214, .78);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(94, 234, 212, .16), transparent 17rem),
    rgba(255, 255, 255, .9);
  box-shadow: 0 20px 58px rgba(5, 62, 58, .08);
}

body.contacts-page .contact-quick h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
}

body.contacts-page .contact-quick p {
  max-width: 560px;
  line-height: 1.68;
}

body.contacts-page .contact-phone {
  min-height: 48px;
  align-items: center;
  overflow-wrap: anywhere;
}

body.contacts-page .contact-actions .btn {
  min-height: 48px;
}

body.contacts-page .contact-groups {
  grid-column: span 7;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.contacts-page .contact-panel {
  min-width: 0;
  padding: clamp(24px, 2.6vw, 30px);
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}

body.contacts-page .contact-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  line-height: 1.18;
}

body.contacts-page .contact-list.compact {
  gap: 10px;
}

body.contacts-page .contact-list.compact a,
body.contacts-page .contact-list.compact span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border-color: rgba(191, 220, 214, .72);
  border-radius: 18px;
  background: rgba(247, 251, 250, .82);
  box-shadow: none;
  line-height: 1.45;
}

body.contacts-page .contact-list.compact a:hover {
  border-color: rgba(15, 118, 110, .28);
  background: var(--color-surface-muted);
}

body.contacts-page .contact-panel.legal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  color: var(--color-text);
}

body.contacts-page .contact-panel.legal h2 {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

body.contacts-page .contact-panel.legal p,
body.contacts-page .contact-panel.legal p + p {
  min-width: 0;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(191, 220, 214, .7);
  border-radius: 18px;
  background: rgba(247, 251, 250, .76);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

body.contacts-page .contacts-section + .section .container.narrow {
  max-width: 820px;
}

body.contacts-page .section-head {
  margin-bottom: clamp(24px, 3vw, 36px);
}

body.contacts-page .section-head h2,
body.contacts-page .cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
}

body.contacts-page .cta-box {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
}

@media (hover: hover) and (pointer: fine) {
  body.contacts-page .contact-panel:hover {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, .26);
    box-shadow: 0 20px 52px rgba(5, 62, 58, .1);
  }
}

@media (max-width: 900px) {
  body.contacts-page .contacts-layout {
    grid-template-columns: 1fr;
  }

  body.contacts-page .contact-quick,
  body.contacts-page .contact-groups,
  body.contacts-page .contact-panel.legal {
    grid-column: auto;
  }

  body.contacts-page .contact-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  body.contacts-page .contact-panel.legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  body.contacts-page .section {
    padding-block: clamp(44px, 12vw, 64px);
  }

  body.contacts-page .contacts-section {
    padding-top: 52px;
  }

  body.contacts-page main .hero:not(.home-hero) {
    min-height: auto;
    padding: 18px 0 32px;
  }

  body.contacts-page main .hero:not(.home-hero) .hero-grid {
    gap: 12px;
  }

  body.contacts-page main .hero:not(.home-hero) .service-hero-media {
    aspect-ratio: 16 / 7;
  }

  body.contacts-page main .hero:not(.home-hero) .hero-grid > div:first-child {
    padding: 18px;
    border-radius: 22px;
  }

  body.contacts-page main .hero:not(.home-hero) h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
  }

  body.contacts-page main .hero:not(.home-hero) p {
    margin-bottom: 16px;
    line-height: 1.58;
  }

  body.contacts-page .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.contacts-page .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body.contacts-page .hero-actions .btn:last-child {
    grid-column: 1 / -1;
  }

  body.contacts-page .contact-quick,
  body.contacts-page .contact-panel {
    padding: 22px;
    border-radius: 24px;
  }

  body.contacts-page .contact-quick h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  body.contacts-page .contact-phone {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  body.contacts-page .contact-actions,
  body.contacts-page .contact-groups,
  body.contacts-page .contact-panel.legal {
    grid-template-columns: 1fr;
  }

  body.contacts-page .contact-groups {
    grid-template-rows: auto;
  }

  body.contacts-page .contact-actions {
    display: grid;
  }

  body.contacts-page .contact-actions .btn {
    width: 100%;
  }

  body.contacts-page .contact-panel.legal h2 {
    grid-column: auto;
  }

  body.contacts-page .contact-panel.legal p,
  body.contacts-page .contact-panel.legal p + p {
    padding: 15px 16px;
  }

  body.contacts-page .cta-box {
    padding: 24px 22px;
    border-radius: 26px;
  }
}

@media (max-width: 360px) {
  body.contacts-page .container {
    width: min(var(--container), calc(100% - 24px));
  }

  body.contacts-page .contact-quick,
  body.contacts-page .contact-panel,
  body.contacts-page .cta-box {
    border-radius: 22px;
  }
}

/* FAQ: align the existing page with the approved Home visual system. */
body:has(.faq-page) main {
  overflow: clip;
}

body:has(.faq-page) .section {
  padding-block: clamp(56px, 7vw, 88px);
}

body:has(.faq-page) .faq-page {
  padding-top: clamp(64px, 8vw, 96px);
}

body:has(.faq-page) .faq-page > .container.narrow {
  max-width: 820px;
}

body:has(.faq-page) .faq-group {
  margin: 0 0 22px;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(191, 220, 214, .78);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 0%, rgba(94, 234, 212, .11), transparent 15rem),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}

body:has(.faq-page) .faq-group:last-child {
  margin-bottom: 0;
}

body:has(.faq-page) .faq-group h2 {
  margin: 0 0 18px;
  color: var(--color-text);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.12;
}

body:has(.faq-page) .faq-group .faq-list {
  gap: 10px;
}

body:has(.faq-page) .faq-group .faq-item {
  padding: 0;
  border: 1px solid rgba(191, 220, 214, .72);
  border-radius: 18px;
  background: rgba(247, 251, 250, .82);
  box-shadow: none;
  transition:
    border-color var(--motion-base) var(--motion-ease),
    background-color var(--motion-base) var(--motion-ease),
    box-shadow var(--motion-base) var(--motion-ease);
}

body:has(.faq-page) .faq-group .faq-item:hover {
  border-color: rgba(15, 118, 110, .26);
  background: rgba(255, 255, 255, .94);
}

body:has(.faq-page) .faq-group .faq-item[open] {
  border-color: rgba(15, 118, 110, .28);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(5, 62, 58, .07);
}

body:has(.faq-page) .faq-group .faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 17px 52px 17px 18px;
  font-size: 1rem;
  line-height: 1.42;
}

body:has(.faq-page) .faq-group .faq-item summary::after {
  right: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 118, 110, .16);
  border-radius: 999px;
  background: var(--color-surface-muted);
  font-size: 20px;
}

body:has(.faq-page) .faq-group .faq-item[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

body:has(.faq-page) .faq-group .faq-item summary:focus-visible {
  outline: 3px solid rgba(15, 118, 110, .22);
  outline-offset: 3px;
  border-radius: 16px;
}

body:has(.faq-page) .faq-group .faq-item p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--color-muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body:has(.faq-page) .cta-box {
  padding: clamp(28px, 5vw, 48px);
  border-radius: 34px;
}

body:has(.faq-page) .cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
}

@media (max-width: 620px) {
  body:has(.faq-page) .section {
    padding-block: clamp(44px, 12vw, 64px);
  }

  body:has(.faq-page) .faq-page {
    padding-top: 52px;
  }

  body:has(.faq-page) main .hero:not(.home-hero) {
    min-height: auto;
    padding: 18px 0 32px;
  }

  body:has(.faq-page) main .hero:not(.home-hero) .service-hero-media {
    aspect-ratio: 16 / 7;
  }

  body:has(.faq-page) main .hero:not(.home-hero) .hero-grid {
    gap: 12px;
  }

  body:has(.faq-page) main .hero:not(.home-hero) .hero-grid > div:first-child {
    padding: 18px;
    border-radius: 22px;
  }

  body:has(.faq-page) main .hero:not(.home-hero) h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 9.5vw, 2.45rem);
  }

  body:has(.faq-page) main .hero:not(.home-hero) p {
    margin-bottom: 16px;
    line-height: 1.58;
  }

  body:has(.faq-page) .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body:has(.faq-page) .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }

  body:has(.faq-page) .hero-actions .btn:last-child {
    grid-column: 1 / -1;
  }

  body:has(.faq-page) .faq-group {
    margin-inline: 0;
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 24px;
  }

  body:has(.faq-page) .faq-group h2 {
    margin-bottom: 14px;
    font-size: clamp(1.4rem, 7vw, 1.75rem);
  }

  body:has(.faq-page) .faq-group .faq-list {
    gap: 8px;
  }

  body:has(.faq-page) .faq-group .faq-item {
    border-radius: 16px;
  }

  body:has(.faq-page) .faq-group .faq-item summary {
    min-height: 58px;
    padding: 15px 48px 15px 16px;
  }

  body:has(.faq-page) .faq-group .faq-item summary::after {
    right: 14px;
  }

  body:has(.faq-page) .faq-group .faq-item p {
    padding: 0 16px 18px;
  }

  body:has(.faq-page) .cta-box {
    padding: 24px 22px;
    border-radius: 26px;
  }
}

@media (max-width: 360px) {
  body:has(.faq-page) .container {
    width: min(var(--container), calc(100% - 24px));
  }

  body:has(.faq-page) .faq-group,
  body:has(.faq-page) .cta-box {
    border-radius: 22px;
  }
}

/* Prices: align the existing page with the approved Home visual system. */
body:has(.prices-hero) main { overflow: clip; }
body:has(.prices-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.prices-hero) .calculator-section { padding-top: clamp(64px, 8vw, 96px); }
body:has(.prices-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.prices-hero) .section-head h2,
body:has(.prices-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.prices-hero) .section-head p { line-height: 1.68; }

body:has(.prices-hero) .price-mini-nav {
  margin-bottom: 24px;
  border-color: rgba(191,220,214,.76);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(5,62,58,.06);
}
body:has(.prices-hero) .price-mini-nav a { min-height: 44px; display: inline-flex; align-items: center; }
body:has(.prices-hero) .price-focus-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
body:has(.prices-hero) .price-focus-card {
  min-width: 0;
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(191,220,214,.76);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(5,62,58,.07);
}
body:has(.prices-hero) .price-focus-card strong { overflow-wrap: anywhere; }

body:has(.prices-hero) .price-table-shell {
  border-color: rgba(191,220,214,.78);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 48px rgba(5,62,58,.07);
}
body:has(.prices-hero) .price-table th { padding-block: 17px; }
body:has(.prices-hero) .price-table td { padding: 16px 18px; line-height: 1.45; }
body:has(.prices-hero) .price-table td:nth-child(3) { white-space: nowrap; }
body:has(.prices-hero) .price-table-shell + .cards { margin-top: 24px; }
body:has(.prices-hero) .section .cards { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; align-items: stretch; }
body:has(.prices-hero) .section .cards .card {
  min-width: 0;
  min-height: 100%;
  padding: 24px;
  border-color: rgba(191,220,214,.76);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 38px rgba(5,62,58,.07);
}
body:has(.prices-hero) .section .cards .card p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.prices-hero) .cta-box { padding: clamp(28px,5vw,48px); border-radius: 34px; }

@media (max-width: 900px) {
  body:has(.prices-hero) .price-focus-grid,
  body:has(.prices-hero) .section .cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 620px) {
  body:has(.prices-hero) .section { padding-block: clamp(44px,12vw,64px); }
  body:has(.prices-hero) .calculator-section { padding-top: 52px; }
  body:has(.prices-hero) main .prices-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.prices-hero) main .prices-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.prices-hero) main .prices-hero > .container { padding: 18px; border-radius: 22px; }
  body:has(.prices-hero) main .prices-hero h1 { font-size: clamp(2rem,9.5vw,2.45rem); line-height: 1.06; }
  body:has(.prices-hero) main .prices-hero p { line-height: 1.58; }
  body:has(.prices-hero) .prices-hero .hero-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  body:has(.prices-hero) .prices-hero .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.prices-hero) .price-focus-grid,
  body:has(.prices-hero) .section .cards { grid-template-columns: 1fr; }
  body:has(.prices-hero) .price-focus-card { min-height: 0; padding: 22px; border-radius: 24px; }
  body:has(.prices-hero) .price-table-shell { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  body:has(.prices-hero) .price-table tr { border-color: rgba(191,220,214,.76); border-radius: 20px; box-shadow: 0 12px 30px rgba(5,62,58,.06); }
  body:has(.prices-hero) .price-table td { padding: 9px 0; }
  body:has(.prices-hero) .section .cards .card { padding: 22px; border-radius: 24px; }
  body:has(.prices-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.prices-hero) .container { width: min(var(--container),calc(100% - 24px)); }
  body:has(.prices-hero) .price-focus-card,
  body:has(.prices-hero) .section .cards .card,
  body:has(.prices-hero) .cta-box { border-radius: 22px; }
}

/* Reviews page: align the static page with the approved Home visual system. */
body:has(.reviews-hero) main { overflow: clip; }
body:has(.reviews-hero) .section { padding-block: clamp(56px,7vw,88px); }
body:has(.reviews-hero) .section-head { max-width: 760px; margin-bottom: clamp(26px,3.4vw,42px); }
body:has(.reviews-hero) .section-head h2,
body:has(.reviews-hero) .cta-box h2 { font-size: clamp(2rem,4vw,3.15rem); line-height: 1.04; }
body:has(.reviews-hero) .section-head p { line-height: 1.68; }

body:has(.reviews-hero) .reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  align-items: start;
}
body:has(.reviews-hero) .review-page-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: clamp(24px,2.8vw,30px);
  border: 1px solid rgba(15,118,110,.28);
  border-radius: 26px;
  background: linear-gradient(145deg,rgba(255,255,255,1),rgba(244,252,250,.94));
  box-shadow: 0 16px 40px rgba(16,42,42,.09),0 2px 8px rgba(15,118,110,.04),inset 0 0 0 1px rgba(255,255,255,.68);
}
body:has(.reviews-hero) .review-page-card--featured {
  grid-column: span 2;
  border-color: rgba(15,118,110,.38);
  background: linear-gradient(145deg,rgba(255,255,255,1),rgba(239,250,247,.98));
}
body:has(.reviews-hero) .review-page-card__rating {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 5px;
}
body:has(.reviews-hero) .review-page-card p {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 620;
  text-align: center;
  overflow-wrap: anywhere;
}

body:has(.reviews-hero) .section .container.narrow { max-width: 820px; }
body:has(.reviews-hero) .faq-list { gap: 10px; }
body:has(.reviews-hero) .faq-item {
  padding: 0;
  border-color: rgba(191,220,214,.74);
  border-radius: 18px;
  background: rgba(247,251,250,.84);
  box-shadow: none;
}
body:has(.reviews-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.reviews-hero) .faq-item summary::after { right: 18px; }
body:has(.reviews-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.reviews-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.reviews-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.reviews-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.reviews-hero) .cta-box { padding: clamp(28px,5vw,48px); border-radius: 34px; }
body:has(.reviews-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 900px) {
  body:has(.reviews-hero) .reviews-page-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  body:has(.reviews-hero) .review-page-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body:has(.reviews-hero) .section { padding-block: clamp(44px,12vw,64px); }
  body:has(.reviews-hero) main .reviews-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.reviews-hero) main .reviews-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.reviews-hero) main .reviews-hero .hero-grid { gap: 12px; }
  body:has(.reviews-hero) main .reviews-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.reviews-hero) main .reviews-hero h1 { margin-bottom: 12px; font-size: clamp(2rem,9.5vw,2.45rem); }
  body:has(.reviews-hero) main .reviews-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.reviews-hero) .hero-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  body:has(.reviews-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.reviews-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.reviews-hero) .reviews-page-grid { grid-template-columns: 1fr; }
  body:has(.reviews-hero) .review-page-card--featured { grid-column: auto; }
  body:has(.reviews-hero) .review-page-card { padding: 22px; border-radius: 24px; }
  body:has(.reviews-hero) .faq-item { border-radius: 16px; }
  body:has(.reviews-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.reviews-hero) .faq-item summary::after { right: 14px; }
  body:has(.reviews-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.reviews-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
  body:has(.reviews-hero) .cta-actions .btn { width: 100%; }
}

@media (max-width: 360px) {
  body:has(.reviews-hero) .container { width: min(var(--container),calc(100% - 24px)); }
  body:has(.reviews-hero) .review-page-card,
  body:has(.reviews-hero) .cta-box { border-radius: 22px; }
}

/* Before/after page: real-case carousel aligned with the Home visual system. */
body:has(.before-after-hero) main { overflow: clip; }
body:has(.before-after-hero) .section { padding-block: clamp(56px,7vw,88px); }
body:has(.before-after-hero) .section-head { max-width: 760px; margin-bottom: clamp(26px,3.4vw,42px); }
body:has(.before-after-hero) .section-head h2,
body:has(.before-after-hero) .cta-box h2 { font-size: clamp(2rem,4vw,3.15rem); line-height: 1.04; }
body:has(.before-after-hero) .section-head p { line-height: 1.68; }
body:has(.before-after-hero) .before-after-showcase { overflow: hidden; }
body:has(.before-after-hero) .before-after-showcase__header { margin-bottom: clamp(24px, 3vw, 36px); }
body:has(.before-after-hero) .before-after-carousel__viewport {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
  padding: 10px 0 30px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
  outline: none;
}
body:has(.before-after-hero) .before-after-carousel__viewport::-webkit-scrollbar { display: none; }
body:has(.before-after-hero) .before-after-carousel__viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; }
body:has(.before-after-hero) .before-after-carousel__viewport.is-dragging,
body:has(.before-after-hero) .before-after-carousel__viewport.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
}
body:has(.before-after-hero) .before-after-carousel__viewport:focus-visible {
  outline: 3px solid rgba(94, 234, 212, .58);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}
body:has(.before-after-hero) .before-after-carousel__track {
  display: flex;
  width: max-content;
  gap: 20px;
}
body:has(.before-after-hero) .before-after-carousel__group {
  display: flex;
  flex: none;
  gap: 20px;
}
body:has(.before-after-hero) .before-after-carousel__card {
  flex: 0 0 clamp(42rem, 60vw, 53rem);
  width: clamp(42rem, 60vw, 53rem);
  margin: 0;
  padding: 12px 12px 0;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, .24);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(244, 252, 250, .94));
  box-shadow:
    0 20px 48px rgba(16, 42, 42, .10),
    0 2px 10px rgba(15, 118, 110, .05),
    inset 0 0 0 1px rgba(255, 255, 255, .7);
}
body:has(.before-after-hero) .before-after-carousel__card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 19px;
  background: var(--color-surface-muted);
  pointer-events: none;
}
body:has(.before-after-hero) .before-after-carousel__card figcaption {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 12px 16px 14px;
  color: var(--color-primary-dark);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}
body:has(.before-after-hero) .section .container.narrow { max-width: 820px; }
body:has(.before-after-hero) .faq-list { gap: 10px; }
body:has(.before-after-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.before-after-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.before-after-hero) .faq-item summary::after { right: 18px; }
body:has(.before-after-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.before-after-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.before-after-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.before-after-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.before-after-hero) .cta-box { padding: clamp(28px,5vw,48px); border-radius: 34px; }
body:has(.before-after-hero) .cta-actions .btn { min-height: 48px; }

@media (min-width: 621px) and (max-width: 900px) {
  body:has(.before-after-hero) .before-after-carousel__card {
    flex-basis: clamp(35rem, 78vw, 42rem);
    width: clamp(35rem, 78vw, 42rem);
  }
}

@media (max-width: 620px) {
  body:has(.before-after-hero) .section { padding-block: clamp(44px,12vw,64px); }
  body:has(.before-after-hero) main .before-after-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.before-after-hero) main .before-after-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.before-after-hero) main .before-after-hero .hero-grid { gap: 12px; }
  body:has(.before-after-hero) main .before-after-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.before-after-hero) main .before-after-hero h1 { margin-bottom: 12px; font-size: clamp(2rem,9.5vw,2.45rem); }
  body:has(.before-after-hero) main .before-after-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.before-after-hero) .hero-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
  body:has(.before-after-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.before-after-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.before-after-hero) .before-after-carousel__viewport {
    width: min(var(--container), calc(100% - 24px));
    padding: 8px 0 24px;
  }
  body:has(.before-after-hero) .before-after-carousel__track,
  body:has(.before-after-hero) .before-after-carousel__group { gap: 14px; }
  body:has(.before-after-hero) .before-after-carousel__card {
    flex-basis: calc(100vw - 48px);
    width: calc(100vw - 48px);
    padding: 8px 8px 0;
    border-radius: 22px;
  }
  body:has(.before-after-hero) .before-after-carousel__card img { border-radius: 15px; }
  body:has(.before-after-hero) .before-after-carousel__card figcaption {
    min-height: 52px;
    padding: 10px 12px 12px;
    font-size: 16px;
  }
  body:has(.before-after-hero) .faq-item { border-radius: 16px; }
  body:has(.before-after-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.before-after-hero) .faq-item summary::after { right: 14px; }
  body:has(.before-after-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.before-after-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
  body:has(.before-after-hero) .cta-actions .btn { width: 100%; }
}

@media (max-width: 360px) {
  body:has(.before-after-hero) .container { width: min(var(--container),calc(100% - 24px)); }
  body:has(.before-after-hero) .before-after-carousel__card {
    flex-basis: calc(100vw - 40px);
    width: calc(100vw - 40px);
  }
  body:has(.before-after-hero) .cta-box { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  body:has(.before-after-hero) .before-after-carousel__viewport {
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
    cursor: auto;
  }
  body:has(.before-after-hero) .before-after-carousel__track { gap: 0; }
  body:has(.before-after-hero) .before-after-carousel__group[aria-hidden="true"] { display: none; }
  body:has(.before-after-hero) .before-after-carousel__card { scroll-snap-align: center; }
}

/* Apartment cleaning: align the existing service page with the approved Home system. */
body:has(.apartment-hero) main { overflow: clip; }
body:has(.apartment-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.apartment-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.apartment-hero) .section-head h2,
body:has(.apartment-hero) .local-block h2,
body:has(.apartment-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.apartment-hero) .section-head p,
body:has(.apartment-hero) .local-block p,
body:has(.apartment-hero) .cta-box p { line-height: 1.68; }

body:has(.apartment-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.apartment-hero) .price-table th,
body:has(.apartment-hero) .price-table td { padding: 17px 20px; }

body:has(.apartment-hero) .page-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
body:has(.apartment-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.apartment-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.apartment-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }

body:has(.apartment-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.apartment-hero) .order-timeline { gap: 14px; }
body:has(.apartment-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.apartment-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }

body:has(.apartment-hero) .section .container.narrow { max-width: 820px; }
body:has(.apartment-hero) .faq-list { gap: 10px; }
body:has(.apartment-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.apartment-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.apartment-hero) .faq-item summary::after { right: 18px; }
body:has(.apartment-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.apartment-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.apartment-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.apartment-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }

body:has(.apartment-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.apartment-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.apartment-hero) .surface-panel p { line-height: 1.62; }
body:has(.apartment-hero) .local-chips { gap: 10px; }
body:has(.apartment-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.apartment-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.apartment-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.apartment-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.apartment-hero) main .apartment-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.apartment-hero) main .apartment-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.apartment-hero) main .apartment-hero .hero-grid { gap: 12px; }
  body:has(.apartment-hero) main .apartment-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.apartment-hero) main .apartment-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.apartment-hero) main .apartment-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.apartment-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.apartment-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.apartment-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.apartment-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.apartment-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.apartment-hero) .price-table-shell { border-radius: 22px; }
  body:has(.apartment-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.apartment-hero) .faq-item { border-radius: 16px; }
  body:has(.apartment-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.apartment-hero) .faq-item summary::after { right: 14px; }
  body:has(.apartment-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.apartment-hero) .local-block .two-col { gap: 18px; }
  body:has(.apartment-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.apartment-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.apartment-hero) .surface-panel .btn,
  body:has(.apartment-hero) .cta-actions .btn { width: 100%; }
  body:has(.apartment-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.apartment-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.apartment-hero) .page-card-grid .card,
  body:has(.apartment-hero) .price-table-shell,
  body:has(.apartment-hero) .surface-panel,
  body:has(.apartment-hero) .cta-box { border-radius: 22px; }
}

/* General cleaning: reuse the approved service-page system without global changes. */
body:has(.general-cleaning-hero) main { overflow: clip; }
body:has(.general-cleaning-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.general-cleaning-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.general-cleaning-hero) .section-head h2,
body:has(.general-cleaning-hero) .local-block h2,
body:has(.general-cleaning-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.general-cleaning-hero) .section-head p,
body:has(.general-cleaning-hero) .local-block p,
body:has(.general-cleaning-hero) .cta-box p { line-height: 1.68; }

body:has(.general-cleaning-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.general-cleaning-hero) .price-table th,
body:has(.general-cleaning-hero) .price-table td { padding: 17px 20px; }
body:has(.general-cleaning-hero) .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
body:has(.general-cleaning-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.general-cleaning-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.general-cleaning-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }
body:has(.general-cleaning-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.general-cleaning-hero) .order-timeline { gap: 14px; }
body:has(.general-cleaning-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.general-cleaning-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.general-cleaning-hero) .section .container.narrow { max-width: 820px; }
body:has(.general-cleaning-hero) .faq-list { gap: 10px; }
body:has(.general-cleaning-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.general-cleaning-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.general-cleaning-hero) .faq-item summary::after { right: 18px; }
body:has(.general-cleaning-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.general-cleaning-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.general-cleaning-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.general-cleaning-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.general-cleaning-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.general-cleaning-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.general-cleaning-hero) .surface-panel p { line-height: 1.62; }
body:has(.general-cleaning-hero) .local-chips { gap: 10px; }
body:has(.general-cleaning-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.general-cleaning-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.general-cleaning-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.general-cleaning-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.general-cleaning-hero) main .general-cleaning-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.general-cleaning-hero) main .general-cleaning-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.general-cleaning-hero) main .general-cleaning-hero .hero-grid { gap: 12px; }
  body:has(.general-cleaning-hero) main .general-cleaning-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.general-cleaning-hero) main .general-cleaning-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.general-cleaning-hero) main .general-cleaning-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.general-cleaning-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.general-cleaning-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.general-cleaning-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.general-cleaning-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.general-cleaning-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.general-cleaning-hero) .price-table-shell { border-radius: 22px; }
  body:has(.general-cleaning-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.general-cleaning-hero) .faq-item { border-radius: 16px; }
  body:has(.general-cleaning-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.general-cleaning-hero) .faq-item summary::after { right: 14px; }
  body:has(.general-cleaning-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.general-cleaning-hero) .local-block .two-col { gap: 18px; }
  body:has(.general-cleaning-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.general-cleaning-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.general-cleaning-hero) .surface-panel .btn,
  body:has(.general-cleaning-hero) .cta-actions .btn { width: 100%; }
  body:has(.general-cleaning-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.general-cleaning-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.general-cleaning-hero) .page-card-grid .card,
  body:has(.general-cleaning-hero) .price-table-shell,
  body:has(.general-cleaning-hero) .surface-panel,
  body:has(.general-cleaning-hero) .cta-box { border-radius: 22px; }
}

/* After-renovation cleaning: reuse the approved service-page system. */
body:has(.after-renovation-hero) main { overflow: clip; }
body:has(.after-renovation-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.after-renovation-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.after-renovation-hero) .section-head h2,
body:has(.after-renovation-hero) .local-block h2,
body:has(.after-renovation-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.after-renovation-hero) .section-head p,
body:has(.after-renovation-hero) .local-block p,
body:has(.after-renovation-hero) .cta-box p { line-height: 1.68; }
body:has(.after-renovation-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.after-renovation-hero) .price-table th,
body:has(.after-renovation-hero) .price-table td { padding: 17px 20px; overflow-wrap: anywhere; }
body:has(.after-renovation-hero) .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
body:has(.after-renovation-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.after-renovation-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.after-renovation-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }
body:has(.after-renovation-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.after-renovation-hero) .order-timeline { gap: 14px; }
body:has(.after-renovation-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.after-renovation-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.after-renovation-hero) .section .container.narrow { max-width: 820px; }
body:has(.after-renovation-hero) .faq-list { gap: 10px; }
body:has(.after-renovation-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.after-renovation-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.after-renovation-hero) .faq-item summary::after { right: 18px; }
body:has(.after-renovation-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.after-renovation-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.after-renovation-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.after-renovation-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.after-renovation-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.after-renovation-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.after-renovation-hero) .surface-panel p { line-height: 1.62; }
body:has(.after-renovation-hero) .local-chips { gap: 10px; }
body:has(.after-renovation-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.after-renovation-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.after-renovation-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.after-renovation-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.after-renovation-hero) main .after-renovation-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.after-renovation-hero) main .after-renovation-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.after-renovation-hero) main .after-renovation-hero .hero-grid { gap: 12px; }
  body:has(.after-renovation-hero) main .after-renovation-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.after-renovation-hero) main .after-renovation-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.after-renovation-hero) main .after-renovation-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.after-renovation-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.after-renovation-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.after-renovation-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.after-renovation-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.after-renovation-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.after-renovation-hero) .price-table-shell { border-radius: 22px; }
  body:has(.after-renovation-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.after-renovation-hero) .faq-item { border-radius: 16px; }
  body:has(.after-renovation-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.after-renovation-hero) .faq-item summary::after { right: 14px; }
  body:has(.after-renovation-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.after-renovation-hero) .local-block .two-col { gap: 18px; }
  body:has(.after-renovation-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.after-renovation-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.after-renovation-hero) .surface-panel .btn,
  body:has(.after-renovation-hero) .cta-actions .btn { width: 100%; }
  body:has(.after-renovation-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.after-renovation-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.after-renovation-hero) .page-card-grid .card,
  body:has(.after-renovation-hero) .price-table-shell,
  body:has(.after-renovation-hero) .surface-panel,
  body:has(.after-renovation-hero) .cta-box { border-radius: 22px; }
}

/* Window washing: reuse the approved service-page system. */
body:has(.window-washing-hero) main { overflow: clip; }
body:has(.window-washing-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.window-washing-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.window-washing-hero) .section-head h2,
body:has(.window-washing-hero) .local-block h2,
body:has(.window-washing-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.window-washing-hero) .section-head p,
body:has(.window-washing-hero) .local-block p,
body:has(.window-washing-hero) .cta-box p { line-height: 1.68; }
body:has(.window-washing-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.window-washing-hero) .price-table th,
body:has(.window-washing-hero) .price-table td { padding: 17px 20px; overflow-wrap: anywhere; }
body:has(.window-washing-hero) .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
body:has(.window-washing-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.window-washing-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.window-washing-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }
body:has(.window-washing-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.window-washing-hero) .order-timeline { gap: 14px; }
body:has(.window-washing-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.window-washing-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.window-washing-hero) .section .container.narrow { max-width: 820px; }
body:has(.window-washing-hero) .faq-list { gap: 10px; }
body:has(.window-washing-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.window-washing-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.window-washing-hero) .faq-item summary::after { right: 18px; }
body:has(.window-washing-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.window-washing-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.window-washing-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.window-washing-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.window-washing-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.window-washing-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.window-washing-hero) .surface-panel p { line-height: 1.62; }
body:has(.window-washing-hero) .local-chips { gap: 10px; }
body:has(.window-washing-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.window-washing-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.window-washing-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.window-washing-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.window-washing-hero) main .window-washing-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.window-washing-hero) main .window-washing-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.window-washing-hero) main .window-washing-hero .hero-grid { gap: 12px; }
  body:has(.window-washing-hero) main .window-washing-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.window-washing-hero) main .window-washing-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.window-washing-hero) main .window-washing-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.window-washing-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.window-washing-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.window-washing-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.window-washing-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.window-washing-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.window-washing-hero) .price-table-shell { border-radius: 22px; }
  body:has(.window-washing-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.window-washing-hero) .faq-item { border-radius: 16px; }
  body:has(.window-washing-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.window-washing-hero) .faq-item summary::after { right: 14px; }
  body:has(.window-washing-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.window-washing-hero) .local-block .two-col { gap: 18px; }
  body:has(.window-washing-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.window-washing-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.window-washing-hero) .surface-panel .btn,
  body:has(.window-washing-hero) .cta-actions .btn { width: 100%; }
  body:has(.window-washing-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.window-washing-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.window-washing-hero) .page-card-grid .card,
  body:has(.window-washing-hero) .price-table-shell,
  body:has(.window-washing-hero) .surface-panel,
  body:has(.window-washing-hero) .cta-box { border-radius: 22px; }
}

/* Upholstery cleaning: reuse the approved service-page system. */
body:has(.upholstery-cleaning-hero) main { overflow: clip; }
body:has(.upholstery-cleaning-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.upholstery-cleaning-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.upholstery-cleaning-hero) .section-head h2,
body:has(.upholstery-cleaning-hero) .local-block h2,
body:has(.upholstery-cleaning-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.upholstery-cleaning-hero) .section-head p,
body:has(.upholstery-cleaning-hero) .local-block p,
body:has(.upholstery-cleaning-hero) .cta-box p { line-height: 1.68; }
body:has(.upholstery-cleaning-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.upholstery-cleaning-hero) .price-table th,
body:has(.upholstery-cleaning-hero) .price-table td { padding: 17px 20px; overflow-wrap: anywhere; }
body:has(.upholstery-cleaning-hero) .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
body:has(.upholstery-cleaning-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.upholstery-cleaning-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.upholstery-cleaning-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }
body:has(.upholstery-cleaning-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.upholstery-cleaning-hero) .order-timeline { gap: 14px; }
body:has(.upholstery-cleaning-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.upholstery-cleaning-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.upholstery-cleaning-hero) .section .container.narrow { max-width: 820px; }
body:has(.upholstery-cleaning-hero) .faq-list { gap: 10px; }
body:has(.upholstery-cleaning-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.upholstery-cleaning-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.upholstery-cleaning-hero) .faq-item summary::after { right: 18px; }
body:has(.upholstery-cleaning-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.upholstery-cleaning-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.upholstery-cleaning-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.upholstery-cleaning-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.upholstery-cleaning-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.upholstery-cleaning-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.upholstery-cleaning-hero) .surface-panel p { line-height: 1.62; }
body:has(.upholstery-cleaning-hero) .local-chips { gap: 10px; }
body:has(.upholstery-cleaning-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.upholstery-cleaning-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.upholstery-cleaning-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.upholstery-cleaning-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.upholstery-cleaning-hero) main .upholstery-cleaning-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.upholstery-cleaning-hero) main .upholstery-cleaning-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.upholstery-cleaning-hero) main .upholstery-cleaning-hero .hero-grid { gap: 12px; }
  body:has(.upholstery-cleaning-hero) main .upholstery-cleaning-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.upholstery-cleaning-hero) main .upholstery-cleaning-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.upholstery-cleaning-hero) main .upholstery-cleaning-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.upholstery-cleaning-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.upholstery-cleaning-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.upholstery-cleaning-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.upholstery-cleaning-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.upholstery-cleaning-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.upholstery-cleaning-hero) .price-table-shell { border-radius: 22px; }
  body:has(.upholstery-cleaning-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.upholstery-cleaning-hero) .faq-item { border-radius: 16px; }
  body:has(.upholstery-cleaning-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.upholstery-cleaning-hero) .faq-item summary::after { right: 14px; }
  body:has(.upholstery-cleaning-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.upholstery-cleaning-hero) .local-block .two-col { gap: 18px; }
  body:has(.upholstery-cleaning-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.upholstery-cleaning-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.upholstery-cleaning-hero) .surface-panel .btn,
  body:has(.upholstery-cleaning-hero) .cta-actions .btn { width: 100%; }
  body:has(.upholstery-cleaning-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.upholstery-cleaning-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.upholstery-cleaning-hero) .page-card-grid .card,
  body:has(.upholstery-cleaning-hero) .price-table-shell,
  body:has(.upholstery-cleaning-hero) .surface-panel,
  body:has(.upholstery-cleaning-hero) .cta-box { border-radius: 22px; }
}

/* Office cleaning: reuse the approved service-page system. */
body:has(.office-cleaning-hero) main { overflow: clip; }
body:has(.office-cleaning-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.office-cleaning-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.office-cleaning-hero) .section-head h2,
body:has(.office-cleaning-hero) .local-block h2,
body:has(.office-cleaning-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.office-cleaning-hero) .section-head p,
body:has(.office-cleaning-hero) .local-block p,
body:has(.office-cleaning-hero) .cta-box p { line-height: 1.68; }
body:has(.office-cleaning-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.office-cleaning-hero) .price-table th,
body:has(.office-cleaning-hero) .price-table td { padding: 17px 20px; overflow-wrap: anywhere; }
body:has(.office-cleaning-hero) .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
body:has(.office-cleaning-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.office-cleaning-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.office-cleaning-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }
body:has(.office-cleaning-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.office-cleaning-hero) .order-timeline { gap: 14px; }
body:has(.office-cleaning-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.office-cleaning-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.office-cleaning-hero) .section .container.narrow { max-width: 820px; }
body:has(.office-cleaning-hero) .faq-list { gap: 10px; }
body:has(.office-cleaning-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.office-cleaning-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.office-cleaning-hero) .faq-item summary::after { right: 18px; }
body:has(.office-cleaning-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.office-cleaning-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.office-cleaning-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.office-cleaning-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.office-cleaning-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.office-cleaning-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.office-cleaning-hero) .surface-panel p { line-height: 1.62; }
body:has(.office-cleaning-hero) .local-chips { gap: 10px; }
body:has(.office-cleaning-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.office-cleaning-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.office-cleaning-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.office-cleaning-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.office-cleaning-hero) main .office-cleaning-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.office-cleaning-hero) main .office-cleaning-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.office-cleaning-hero) main .office-cleaning-hero .hero-grid { gap: 12px; }
  body:has(.office-cleaning-hero) main .office-cleaning-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.office-cleaning-hero) main .office-cleaning-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.office-cleaning-hero) main .office-cleaning-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.office-cleaning-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.office-cleaning-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.office-cleaning-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.office-cleaning-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.office-cleaning-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.office-cleaning-hero) .price-table-shell { border-radius: 22px; }
  body:has(.office-cleaning-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.office-cleaning-hero) .faq-item { border-radius: 16px; }
  body:has(.office-cleaning-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.office-cleaning-hero) .faq-item summary::after { right: 14px; }
  body:has(.office-cleaning-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.office-cleaning-hero) .local-block .two-col { gap: 18px; }
  body:has(.office-cleaning-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.office-cleaning-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.office-cleaning-hero) .surface-panel .btn,
  body:has(.office-cleaning-hero) .cta-actions .btn { width: 100%; }
  body:has(.office-cleaning-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.office-cleaning-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.office-cleaning-hero) .page-card-grid .card,
  body:has(.office-cleaning-hero) .price-table-shell,
  body:has(.office-cleaning-hero) .surface-panel,
  body:has(.office-cleaning-hero) .cta-box { border-radius: 22px; }
}

/* House cleaning: reuse the approved service-page system. */
body:has(.house-cleaning-hero) main { overflow: clip; }
body:has(.house-cleaning-hero) .section { padding-block: clamp(56px, 7vw, 88px); }
body:has(.house-cleaning-hero) .section-head { max-width: 780px; margin-bottom: clamp(26px, 3.4vw, 42px); }
body:has(.house-cleaning-hero) .section-head h2,
body:has(.house-cleaning-hero) .local-block h2,
body:has(.house-cleaning-hero) .cta-box h2 { font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.04; }
body:has(.house-cleaning-hero) .section-head p,
body:has(.house-cleaning-hero) .local-block p,
body:has(.house-cleaning-hero) .cta-box p { line-height: 1.68; }
body:has(.house-cleaning-hero) .price-table-shell {
  border-color: rgba(191, 220, 214, .78);
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(5, 62, 58, .07);
}
body:has(.house-cleaning-hero) .price-table th,
body:has(.house-cleaning-hero) .price-table td { padding: 17px 20px; overflow-wrap: anywhere; }
body:has(.house-cleaning-hero) .page-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
body:has(.house-cleaning-hero) .page-card-grid .card {
  min-width: 0;
  min-height: 0;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(191, 220, 214, .82);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,252,250,.92));
  box-shadow: 0 16px 42px rgba(5, 62, 58, .07);
}
body:has(.house-cleaning-hero) .page-card-grid .card h3 { font-size: clamp(1.22rem, 2vw, 1.5rem); line-height: 1.18; }
body:has(.house-cleaning-hero) .page-card-grid .card p { margin: 0; line-height: 1.62; overflow-wrap: anywhere; }
body:has(.house-cleaning-hero) .muted-section { background: linear-gradient(180deg, rgba(241,250,247,.72), rgba(247,251,250,.92)); }
body:has(.house-cleaning-hero) .order-timeline { gap: 14px; }
body:has(.house-cleaning-hero) .order-timeline .step {
  min-width: 0;
  padding: 22px;
  border-color: rgba(191, 220, 214, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 34px rgba(5, 62, 58, .06);
}
body:has(.house-cleaning-hero) .order-timeline .step p { line-height: 1.58; overflow-wrap: anywhere; }
body:has(.house-cleaning-hero) .section .container.narrow { max-width: 820px; }
body:has(.house-cleaning-hero) .faq-list { gap: 10px; }
body:has(.house-cleaning-hero) .faq-item { padding: 0; border-color: rgba(191,220,214,.74); border-radius: 18px; background: rgba(247,251,250,.84); box-shadow: none; }
body:has(.house-cleaning-hero) .faq-item summary { min-height: 60px; display: flex; align-items: center; padding: 17px 52px 17px 18px; line-height: 1.42; }
body:has(.house-cleaning-hero) .faq-item summary::after { right: 18px; }
body:has(.house-cleaning-hero) .faq-item p { margin: 0; padding: 0 18px 20px; line-height: 1.65; }
body:has(.house-cleaning-hero) .faq-item[open] { background: rgba(255,255,255,.96); box-shadow: 0 12px 30px rgba(5,62,58,.07); }
body:has(.house-cleaning-hero) .faq-item[open] summary::after { transform: translateY(-50%) rotate(0); }
body:has(.house-cleaning-hero) .faq-item summary:focus-visible { outline: 3px solid rgba(15,118,110,.22); outline-offset: 3px; border-radius: 16px; }
body:has(.house-cleaning-hero) .local-block .two-col { gap: clamp(22px, 4vw, 42px); align-items: stretch; }
body:has(.house-cleaning-hero) .surface-panel {
  padding: clamp(24px, 3.2vw, 34px);
  border-color: rgba(191, 220, 214, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 46px rgba(5, 62, 58, .07);
}
body:has(.house-cleaning-hero) .surface-panel p { line-height: 1.62; }
body:has(.house-cleaning-hero) .local-chips { gap: 10px; }
body:has(.house-cleaning-hero) .local-chips span { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
body:has(.house-cleaning-hero) .cta-box { padding: clamp(28px, 5vw, 48px); border-radius: 34px; }
body:has(.house-cleaning-hero) .cta-actions .btn { min-height: 48px; }

@media (max-width: 760px) {
  body:has(.house-cleaning-hero) .section { padding-block: clamp(44px, 12vw, 64px); }
  body:has(.house-cleaning-hero) main .house-cleaning-hero { min-height: auto; padding: 18px 0 32px; }
  body:has(.house-cleaning-hero) main .house-cleaning-hero .service-hero-media { aspect-ratio: 16 / 7; }
  body:has(.house-cleaning-hero) main .house-cleaning-hero .hero-grid { gap: 12px; }
  body:has(.house-cleaning-hero) main .house-cleaning-hero .hero-grid > div:first-child { padding: 18px; border-radius: 22px; }
  body:has(.house-cleaning-hero) main .house-cleaning-hero h1 { margin-bottom: 12px; font-size: clamp(2rem, 9.5vw, 2.45rem); line-height: 1.06; }
  body:has(.house-cleaning-hero) main .house-cleaning-hero p { margin-bottom: 16px; line-height: 1.58; }
  body:has(.house-cleaning-hero) .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  body:has(.house-cleaning-hero) .hero-actions .btn { width: 100%; min-width: 0; }
  body:has(.house-cleaning-hero) .hero-actions .btn:last-child { grid-column: 1 / -1; }
  body:has(.house-cleaning-hero) .page-card-grid { grid-template-columns: 1fr; }
  body:has(.house-cleaning-hero) .page-card-grid .card { padding: 22px; border-radius: 24px; }
  body:has(.house-cleaning-hero) .price-table-shell { border-radius: 22px; }
  body:has(.house-cleaning-hero) .order-timeline .step { padding: 20px; border-radius: 20px; }
  body:has(.house-cleaning-hero) .faq-item { border-radius: 16px; }
  body:has(.house-cleaning-hero) .faq-item summary { min-height: 58px; padding: 15px 48px 15px 16px; }
  body:has(.house-cleaning-hero) .faq-item summary::after { right: 14px; }
  body:has(.house-cleaning-hero) .faq-item p { padding: 0 16px 18px; }
  body:has(.house-cleaning-hero) .local-block .two-col { gap: 18px; }
  body:has(.house-cleaning-hero) .surface-panel { padding: 22px; border-radius: 24px; }
  body:has(.house-cleaning-hero) .surface-panel .inline-actions { display: grid; grid-template-columns: 1fr; }
  body:has(.house-cleaning-hero) .surface-panel .btn,
  body:has(.house-cleaning-hero) .cta-actions .btn { width: 100%; }
  body:has(.house-cleaning-hero) .cta-box { padding: 24px 22px; border-radius: 26px; }
}

@media (max-width: 360px) {
  body:has(.house-cleaning-hero) .container { width: min(var(--container), calc(100% - 24px)); }
  body:has(.house-cleaning-hero) .page-card-grid .card,
  body:has(.house-cleaning-hero) .price-table-shell,
  body:has(.house-cleaning-hero) .surface-panel,
  body:has(.house-cleaning-hero) .cta-box { border-radius: 22px; }
}

/* Service pages: balance the calculation card and strengthen the local CTA ghost action. */
body:has(
  .apartment-hero,
  .general-cleaning-hero,
  .after-renovation-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero
) .local-block .surface-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

body:has(
  .apartment-hero,
  .general-cleaning-hero,
  .after-renovation-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero
) .local-block .surface-panel .inline-actions {
  width: 100%;
  margin-top: auto;
  padding-top: clamp(24px, 3vw, 36px);
}

body:has(
  .apartment-hero,
  .general-cleaning-hero,
  .after-renovation-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero
) .cta-section .cta-box .cta-actions .btn.ghost {
  border-color: rgba(6, 78, 74, .38);
  background: linear-gradient(180deg, #fffaf1, #f4e7d7);
  color: #064a45;
  box-shadow: 0 10px 24px rgba(5, 62, 58, .12);
}

body:has(
  .apartment-hero,
  .general-cleaning-hero,
  .after-renovation-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero
) .cta-section .cta-box .cta-actions .btn.ghost:hover {
  border-color: #08786f;
  background: #fffdf8;
  color: #043d39;
  box-shadow: 0 14px 30px rgba(5, 62, 58, .16);
}

body:has(
  .apartment-hero,
  .general-cleaning-hero,
  .after-renovation-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero
) .cta-section .cta-box .cta-actions .btn.ghost:active {
  border-color: #076a63;
  background: #f1e2d0;
  color: #043d39;
  box-shadow: 0 6px 16px rgba(5, 62, 58, .13);
}

body:has(
  .apartment-hero,
  .general-cleaning-hero,
  .after-renovation-hero,
  .window-washing-hero,
  .upholstery-cleaning-hero,
  .office-cleaning-hero,
  .house-cleaning-hero
) .cta-section .cta-box .cta-actions .btn.ghost:focus-visible {
  outline: 3px solid #064a45;
  outline-offset: 3px;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, .9),
    0 10px 24px rgba(5, 62, 58, .14);
}

@media (max-width: 760px) {
  body:has(
    .apartment-hero,
    .general-cleaning-hero,
    .after-renovation-hero,
    .window-washing-hero,
    .upholstery-cleaning-hero,
    .office-cleaning-hero,
    .house-cleaning-hero
  ) .local-block .surface-panel .inline-actions {
    margin-top: 0;
    padding-top: 20px;
  }
}

/* Internal hero vertical media: one 2:3 system across all non-Home pages. */
body main#main-content .hero:not(.home-hero) .service-hero-media {
  display: block;
  border: 0;
  outline: 1px solid rgba(215, 231, 228, .72);
  outline-offset: -1px;
}

@media (min-width: 1180px) {
  body main#main-content .hero:not(.home-hero) {
    min-height: 680px;
  }

  body main#main-content .hero:not(.home-hero) .service-hero-media {
    position: absolute;
    top: 50%;
    right: max(16px, calc((100vw - var(--container)) / 2));
    bottom: auto;
    left: auto;
    width: clamp(360px, 29vw, 420px);
    height: auto;
    aspect-ratio: 2 / 3;
    margin: 0;
    transform: translateY(-50%);
  }

  body main#main-content .hero:not(.home-hero) .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
    min-height: 630px;
    gap: clamp(38px, 4vw, 58px);
  }

  body main#main-content .hero.prices-hero > .container:not(.hero-grid) {
    min-height: 630px;
    padding-right: clamp(400px, 33vw, 460px);
  }
}

@media (max-width: 1179px) {
  body main#main-content .hero:not(.home-hero) {
    display: block;
    min-height: auto;
  }

  body main#main-content .hero:not(.home-hero) .service-hero-media {
    position: relative;
    inset: auto;
    width: min(calc(100% - 32px), 360px);
    height: auto;
    aspect-ratio: 2 / 3;
    margin: 0 auto 24px;
    transform: none;
  }

  body main#main-content .hero:not(.home-hero) .hero-grid,
  body main#main-content .hero.prices-hero > .container:not(.hero-grid) {
    grid-template-columns: minmax(0, 1fr);
    width: min(calc(100% - 32px), var(--container));
    max-width: var(--container);
    min-height: 0;
    margin-inline: auto;
  }

  body main#main-content .hero:not(.home-hero) .hero-grid {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  body main#main-content .hero:not(.home-hero) .service-hero-media {
    width: min(calc(100% - 28px), 340px);
    aspect-ratio: 2 / 3;
    margin-bottom: 18px;
  }

  body main#main-content .hero:not(.home-hero) .hero-grid,
  body main#main-content .hero.prices-hero > .container:not(.hero-grid) {
    width: calc(100% - 28px);
    max-width: 430px;
  }
}

body main#main-content .hero:not(.home-hero) .service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* BClean v1.41 interaction fixes */
@media (max-width: 1179px) {
  html.menu-open,
  body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
  }

  /* Keep the mobile header and navigation attached to the current viewport.
     Root overflow locking can otherwise break sticky positioning in mobile Safari. */
  html.menu-open .site-header {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    z-index: 80;
  }

  html.menu-open .site-nav {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  /* Do not let the bottom mobile CTA overlap the open navigation. */
  html.menu-open .sticky-cta {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(calc(100% + 24px)) !important;
  }
}


/* FAQ equipment feature */
.faq-equipment {
  display: grid;
  grid-template-columns: minmax(240px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(24px, 5vw, 54px);
  margin: clamp(34px, 6vw, 70px) 0;
  padding: clamp(16px, 2.8vw, 28px);
  border: 1px solid rgba(8, 120, 111, .14);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(238, 248, 246, .96), rgba(255, 255, 255, .98));
  box-shadow: 0 22px 58px rgba(7, 69, 64, .09);
}
.faq-equipment__media {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  background: #e7f1ef;
  box-shadow: 0 18px 42px rgba(7, 69, 64, .14);
}
.faq-equipment__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.faq-equipment__content {
  min-width: 0;
  padding: clamp(4px, 2vw, 16px) clamp(2px, 2vw, 12px);
}
.faq-equipment__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 120, 111, .10);
  color: #08786f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.faq-equipment h2 {
  margin: 0 0 14px;
  color: #123f3b;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
}
.faq-equipment p {
  margin: 0;
  color: #496662;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.72;
}
.faq-equipment ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.faq-equipment li {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  color: #264f4b;
  font-weight: 700;
  line-height: 1.5;
}
.faq-equipment li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #08786f;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
}
@media (max-width: 760px) {
  .faq-equipment {
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 22px;
  }
  .faq-equipment__media {
    width: min(100%, 420px);
    margin-inline: auto;
    border-radius: 18px;
  }
  .faq-equipment__content {
    padding: 0 4px 6px;
  }
}


/* BClean v1.41 real-team editorial photo blocks */
.content-photo-feature {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr);
  grid-template-areas: "media content";
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(8, 120, 111, .14);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(239, 249, 247, .96), rgba(255, 255, 255, .98));
  box-shadow: 0 22px 58px rgba(7, 69, 64, .09);
}
.content-photo-feature__media {
  grid-area: media;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  background: #e7f1ef;
  box-shadow: 0 18px 42px rgba(7, 69, 64, .14);
}
.content-photo-feature__media img,
.reviews-team-feature__media img,
.contacts-team-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-photo-feature__content {
  grid-area: content;
  min-width: 0;
  padding: clamp(4px, 2vw, 16px);
}
.content-photo-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(8, 120, 111, .10);
  color: #08786f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.content-photo-feature h2,
.reviews-team-feature h3,
.contacts-team-feature h2 {
  margin: 0 0 14px;
  color: #123f3b;
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  line-height: 1.1;
}
.content-photo-feature p,
.reviews-team-feature p,
.contacts-team-feature p {
  margin: 0;
  color: #496662;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.72;
}
body:has(.before-after-hero) .before-after-process {
  padding-bottom: clamp(22px, 4vw, 42px);
}
body:has(.before-after-hero) .before-after-showcase {
  padding-top: clamp(28px, 5vw, 54px);
}

body:has(.reviews-hero) .reviews-team-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
  grid-template-areas: "content media";
  align-items: center;
  gap: clamp(26px, 5vw, 56px);
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(8, 120, 111, .16);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(238, 248, 246, .96));
  box-shadow: 0 22px 58px rgba(7, 69, 64, .09);
}
body:has(.reviews-hero) .reviews-team-feature__content {
  grid-area: content;
  min-width: 0;
  padding: clamp(4px, 2vw, 16px);
}
body:has(.reviews-hero) .reviews-team-feature__media {
  grid-area: media;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  background: #e7f1ef;
  box-shadow: 0 18px 42px rgba(7, 69, 64, .14);
}

body.contacts-page .contacts-team-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .85fr);
  grid-template-areas: "content media";
  align-items: center;
  gap: clamp(26px, 5vw, 56px);
  min-width: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(8, 120, 111, .16);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(239, 249, 247, .96), rgba(255, 255, 255, .98));
  box-shadow: 0 22px 58px rgba(7, 69, 64, .09);
}
body.contacts-page .contacts-team-feature__media {
  grid-area: media;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 22px;
  background: #e7f1ef;
  box-shadow: 0 18px 42px rgba(7, 69, 64, .14);
}
body.contacts-page .contacts-team-feature__content {
  grid-area: content;
  min-width: 0;
  padding: clamp(4px, 2vw, 16px);
}
body.contacts-page .contacts-team-feature .btn {
  min-height: 48px;
  margin-top: 22px;
}

@media (max-width: 760px) {
  .content-photo-feature,
  body:has(.reviews-hero) .reviews-team-feature,
  body.contacts-page .contacts-team-feature {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "content";
    gap: 24px;
    border-radius: 22px;
  }
  .content-photo-feature__media,
  body:has(.reviews-hero) .reviews-team-feature__media,
  body.contacts-page .contacts-team-feature__media {
    width: min(100%, 420px);
    margin-inline: auto;
    border-radius: 18px;
  }
  .content-photo-feature__content,
  body:has(.reviews-hero) .reviews-team-feature__content,
  body.contacts-page .contacts-team-feature__content {
    padding: 0 4px 6px;
  }
  body.contacts-page .contacts-team-feature .btn {
    width: 100%;
  }
}

/* R7: clear visual hierarchy for the final action in bottom CTA blocks. */
.cta-box .cta-actions .btn:last-child {
  color: #064a45;
  border: 1px solid #73c5b5;
  background: linear-gradient(135deg, #dff7f1 0%, #bfe9df 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(8, 120, 111, 0.14);
}

.cta-box .cta-actions .btn:last-child:hover {
  color: #043d39;
  border-color: #3fa998;
  background: linear-gradient(135deg, #cef1e8 0%, #a9ded2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 14px 30px rgba(8, 120, 111, 0.2);
}

.cta-box .cta-actions .btn:last-child:focus-visible {
  outline: 3px solid rgba(8, 120, 111, 0.24);
  outline-offset: 3px;
}


/* BClean R8 — Clean Design Kit spacing and grid polish */
:root {
  --section-y: clamp(50px, 6vw, 80px);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(22px, 2.6vw, 30px);
}

.section-head h2,
.local-block h2,
.cta-box h2 {
  font-size: clamp(1.85rem, 3.35vw, 2.7rem);
  line-height: 1.08;
}

.card,
.surface-panel,
.calc-box {
  padding: clamp(20px, 2vw, 24px);
  border-radius: 22px;
}

.grid,
.cards,
.two-col {
  gap: clamp(16px, 2vw, 22px);
}

.cta-section {
  padding-top: 12px;
}

.cta-box {
  gap: 18px 24px;
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: 28px;
}

.faq-list {
  gap: 10px;
}

.faq-item summary {
  padding-block: 16px;
}

@media (min-width: 761px) {
  body.home-page .section {
    padding-block: clamp(52px, 5.5vw, 78px);
  }

  body.home-page .home-v140-section-head {
    margin-bottom: clamp(22px, 2.8vw, 32px);
  }

  body.home-page .home-v140-hero {
    padding: clamp(32px, 4vw, 54px) 0 clamp(46px, 5vw, 68px);
  }

  body.home-page .home-v140-hero h1 {
    font-size: clamp(2.8rem, 4.8vw, 4.35rem);
    line-height: 1;
  }

  body.home-page .home-v140-hero-photo {
    height: clamp(470px, 39vw, 570px);
    border-radius: clamp(24px, 2.5vw, 34px);
  }

  body.home-page .home-v140-service-card {
    min-height: 208px;
    padding: clamp(20px, 2vw, 24px);
    border-radius: 22px;
  }

  body.home-page .home-v140-service-card p {
    margin-bottom: 16px;
  }

  body.home-page .home-v140-service-card strong {
    margin-bottom: 12px;
  }

  body.home-page .home-v140-trust-cards {
    grid-auto-rows: minmax(190px, 1fr);
  }

  body.home-page .home-v140-trust-card {
    padding: clamp(20px, 2vw, 24px);
    border-radius: 22px;
  }

  body.home-page .home-v140-trust-card svg {
    margin-bottom: 14px;
  }

  body.home-page .home-v140-price-panel,
  body.home-page .home-v140-local-box {
    padding: clamp(26px, 3vw, 34px);
    border-radius: 28px;
  }

  body.home-page .home-v140-price-list article {
    min-height: 96px;
    padding: 16px;
    border-radius: 20px;
  }

  body.home-page .home-v140-steps li {
    padding: clamp(19px, 2vw, 23px);
    border-radius: 22px;
  }

  body.home-page .home-v140-steps span {
    margin-bottom: 14px;
  }

  body.home-page .home-v140-cta-box {
    padding: clamp(28px, 3.2vw, 38px);
    border-radius: 30px;
  }

  body main#main-content .hero:not(.home-hero) {
    min-height: 620px;
    padding-top: clamp(44px, 5vw, 66px);
    padding-bottom: clamp(38px, 4.5vw, 58px);
  }

  body main#main-content .hero:not(.home-hero) .hero-grid {
    min-height: 560px;
    gap: clamp(32px, 3.5vw, 48px);
  }

  body main#main-content .hero.prices-hero > .container:not(.hero-grid) {
    min-height: 560px;
  }

  body main#main-content .hero:not(.home-hero) h1 {
    font-size: clamp(2.55rem, 4.5vw, 4rem);
    line-height: 1.02;
  }

  .faq-equipment,
  .content-photo-feature,
  body:has(.reviews-hero) .reviews-team-feature,
  body.contacts-page .contacts-team-feature {
    gap: clamp(28px, 3.6vw, 44px);
    padding: clamp(20px, 2.4vw, 26px);
    border-radius: 26px;
  }

  .faq-equipment__content,
  .content-photo-feature__content,
  body:has(.reviews-hero) .reviews-team-feature__content,
  body.contacts-page .contacts-team-feature__content {
    padding: 6px 8px;
  }

  .faq-equipment__media,
  .content-photo-feature__media,
  body:has(.reviews-hero) .reviews-team-feature__media,
  body.contacts-page .contacts-team-feature__media {
    border-radius: 20px;
  }

  .order-timeline .step {
    padding: 18px 20px;
    border-radius: 20px;
  }

  .local-block .surface-panel {
    padding: 22px;
  }

  .price-table th,
  .price-table td {
    padding-block: 13px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-y: clamp(42px, 11vw, 58px);
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head h2,
  .local-block h2,
  .cta-box h2 {
    font-size: clamp(1.65rem, 7vw, 2.05rem);
  }

  .card,
  .surface-panel,
  .calc-box {
    padding: 18px;
    border-radius: 20px;
  }

  .cta-box {
    padding: 20px;
    border-radius: 22px;
  }

  .faq-item summary {
    padding-block: 15px;
  }

  .faq-equipment,
  .content-photo-feature,
  body:has(.reviews-hero) .reviews-team-feature,
  body.contacts-page .contacts-team-feature {
    gap: 20px;
    padding: 16px;
    border-radius: 20px;
  }

  .faq-equipment__content,
  .content-photo-feature__content,
  body:has(.reviews-hero) .reviews-team-feature__content,
  body.contacts-page .contacts-team-feature__content {
    padding: 0 2px 4px;
  }

  .site-footer {
    padding-top: 46px;
  }

  .footer-grid {
    gap: 24px;
  }
}

/* R8 tablet correction: keep internal hero media in natural document flow below 1180px. */
@media (min-width: 761px) and (max-width: 1179px) {
  body main#main-content .hero:not(.home-hero) {
    min-height: auto;
    padding-top: clamp(38px, 5vw, 54px);
    padding-bottom: clamp(34px, 4.5vw, 50px);
  }

  body main#main-content .hero:not(.home-hero) .hero-grid,
  body main#main-content .hero.prices-hero > .container:not(.hero-grid) {
    min-height: 0;
  }
}

/* R8 accessibility polish: preserve compact footer rhythm with full mobile tap areas. */
@media (max-width: 760px) {
  .site-footer h2 {
    margin-bottom: 6px;
  }

  .site-footer a {
    min-height: 44px;
    display: flex;
    align-items: center;
    margin: 0;
  }
}


/* BClean R11 — SEO, legal pages and accessibility polish */
.service-context h2 {
  margin: 0 0 14px;
}
.service-context p {
  max-width: 68ch;
}
.service-context .text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-primary-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-section {
  padding-top: clamp(42px, 7vw, 82px);
}
.legal-content {
  max-width: 860px;
}
.legal-content h1 {
  max-width: 16ch;
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.04;
}
.legal-content h2 {
  margin: 40px 0 12px;
  font-size: clamp(22px, 3vw, 30px);
}
.legal-content p {
  margin: 0 0 14px;
  line-height: 1.72;
}
.legal-lead {
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--color-muted);
}
.legal-note {
  margin: 24px 0 8px;
  padding: 14px 18px;
  border: 1px solid rgba(8, 120, 111, .18);
  border-radius: 16px;
  background: rgba(8, 120, 111, .06);
  font-weight: 750;
}
.legal-actions, .error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.error-section {
  min-height: 65vh;
  display: grid;
  place-items: center;
}
.error-card {
  text-align: center;
  padding-block: clamp(58px, 10vw, 110px);
}
.error-code {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: clamp(68px, 16vw, 148px);
  font-weight: 900;
  line-height: .85;
  letter-spacing: -.06em;
}
.error-card h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 6vw, 58px);
}
.error-card p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 18px;
}
.error-actions {
  justify-content: center;
}

@media (max-width: 760px) {
  .breadcrumbs > a,
  .breadcrumbs > span {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }
  .legal-actions .btn,
  .error-actions .btn {
    width: 100%;
  }
}


/* R13 — stable mobile docks for Safari dynamic browser chrome */
body.calculator-v5-page > .sticky-cta {
  display: none !important;
}

@media (max-width: 760px) {
  .mobile-docks-ready .sticky-cta {
    --mobile-dock-gap: 6;
    top: var(--mobile-dock-top, auto);
    bottom: auto !important;
  }
}

/* BClean R15 — tablet/mobile touch target correction confirmed by viewport QA. */
@media (max-width: 900px) {
  .site-nav > a,
  .site-nav > .nav-services > .nav-services__toggle {
    min-height: 45px;
  }

  .site-footer a:not(.brand) {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* BClean R16 — dynamic calculation-card preview and mobile save flow. */
body.card-preview-open {
  overflow: hidden;
}

.card-preview {
  --calc-brand-dark: #0b5e58;
  --calc-line: #c9e1dc;
  --calc-muted: #5d706d;
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  background: rgba(8, 34, 32, 0.72);
  backdrop-filter: blur(10px);
}

.card-preview__panel {
  width: min(760px, 100%);
  max-height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(191, 220, 214, 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(4, 31, 29, 0.3);
}

.card-preview__header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.card-preview__header > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.card-preview__header strong {
  color: var(--calc-brand-dark);
  font-size: 1.2rem;
}

.card-preview__header span,
.card-preview__note {
  color: var(--calc-muted);
  line-height: 1.45;
}

.card-preview__close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--calc-line);
  border-radius: 50%;
  background: #f5faf8;
  color: var(--calc-brand-dark);
  font-size: 1.7rem;
  line-height: 1;
}

.card-preview__image-wrap {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--calc-line);
  border-radius: 16px;
  background: #e8f2ef;
  -webkit-overflow-scrolling: touch;
}

.card-preview__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: default;
}

.card-preview__note {
  margin: 0;
  font-size: 0.86rem;
}

.card-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-preview__actions button {
  min-height: 48px;
  flex: 1 1 180px;
}

@media (max-width: 680px) {
  .card-preview {
    place-items: stretch;
    padding: 0;
    background: #fff;
  }

  .card-preview__panel {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: max(14px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(14px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .card-preview__header span {
    font-size: 0.85rem;
  }

  .card-preview__image-wrap {
    border-radius: 14px;
  }

  .card-preview__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .card-preview__actions button {
    width: 100%;
    min-width: 0;
  }
}

/* BClean R20 — Safari-safe compact navigation.
   The compact nav is positioned from the header instead of using a fixed
   descendant under a backdrop-filtered sticky header, which is more stable
   in WebKit/Safari at tablet and narrow desktop widths. */
@media (max-width: 1179px) {
  .site-header {
    overflow: visible;
  }

  .menu-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .site-nav,
  html.menu-open .site-nav {
    position: absolute;
    inset: 100% 12px auto 12px;
    max-height: calc(100dvh - 116px);
  }
}

@media (max-width: 620px) {
  .site-nav,
  html.menu-open .site-nav {
    max-height: calc(100dvh - 108px);
  }
}
