/* ========================================================================== 
   Euromaster service landing CSS
   Current: v7-form-select-control

   Purpose:
   - one shared CSS layer for Euromaster repair landing pages;
   - reusable header, footer, hero, price table, problem cards, feature cards,
     gallery, FAQ, bottom sheet, lightbox, final CTA and mobile sticky actions;
   - page-specific meaning stays in MODX chunks, TV fields, images and text.

   Migration note:
   - based on the stable boiler-repair.css v30 visual system;
   - this file intentionally removes boiler-only assumptions from comments and
     adds generic service components for washing machines and future landings;
   - the current boiler page can stay on boiler-repair.css until this shared
     layer is tested on the new Pinsk washing-machine page;
   - v2 adds polished universal sections for .em-feature-card,
     .em-service-banner and .em-info-grid used by the Pinsk page;
   - v3 adds a desktop-only washer hero title tuning so the H1 keeps
     “стиральных машин” on one line without affecting mobile layout;
   - v4 aligns the washer mobile Hero with the stable boiler Hero rhythm:
     centered full-width CTA buttons and three-line mobile H1;
   - v5 fixes the mobile problem-card carousel offset: the first card now
     starts from the normal page gutter while the carousel can still breathe
     to the right and keeps end padding after the last card;
   - v6 adds a compact .em-brands strip for washer brand coverage without
     duplicating the larger .em-service-banner visual pattern;
   - v7 adds a complete shared select control for FetchIt/FormIt forms,
     including focus, invalid and disabled states.

   Rule for future edits:
   - do not append random patches at the end of the file;
   - update the relevant section and bump this header version.
   ========================================================================== */

/* 01. Variables / base
   ========================================================================== */
:root {
  --em-text: #20242c;
  --em-muted: #66707e;
  --em-soft: #f6f7f8;
  --em-line: rgba(32, 36, 44, .11);
  --em-dark: #121a26;
  --em-accent: #ff8a00;
  --em-accent-2: #ffc23d;
  --em-radius: 26px;
  --em-shadow: 0 24px 70px rgba(28, 33, 42, .10);
  --em-shadow-soft: 0 14px 38px rgba(28, 33, 42, .07);
  --em-container: 1260px;
  --em-header-height: 82px;
}

* { box-sizing: border-box; }

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--em-text);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.45;
}

body.is-locked { overflow: hidden; }

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea { font: inherit; }

button { cursor: pointer; }

::placeholder {
  color: rgba(76, 85, 98, .38);
  opacity: 1;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--em-shadow-soft);
}

.skip-link:focus { transform: translateY(0); }

.em-page {
  max-width: 100%;
  overflow-x: clip;
}

.em-container {
  width: min(var(--em-container), calc(100% - 40px));
  margin-inline: auto;
}

/* 02. Header / navigation
   ========================================================================== */
.em-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(32, 36, 44, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.em-header__inner {
  min-height: var(--em-header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
}

.em-brand {
  min-width: 0;
}

.em-brand img {
  width: 220px;
  height: auto;
}

.em-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 26px);
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.em-nav a { white-space: nowrap; }

.em-nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.em-nav__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 400;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.em-nav__link--parent::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: .52;
  transform: rotate(45deg);
  transition: transform .16s ease, opacity .16s ease;
}

.em-nav__item:hover .em-nav__link--parent::after,
.em-nav__item:focus-within .em-nav__link--parent::after {
  opacity: .86;
  transform: rotate(45deg) translate(2px, 2px);
}

.em-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  z-index: 120;
  min-width: 282px;
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(32, 36, 44, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 52px rgba(28, 33, 42, .14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.em-nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.em-nav__item:hover .em-nav__dropdown,
.em-nav__item:focus-within .em-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.em-nav__dropdown a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 13px;
  color: #2a303a;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .14s ease, color .14s ease;
}

.em-nav__dropdown a:hover,
.em-nav__dropdown a:focus-visible {
  background: #f5f6f8;
  color: #111722;
  outline: none;
}

.em-header__actions {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.em-phone {
  color: #171d27;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: .02em;
  white-space: nowrap;
}

.em-messenger {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.em-messenger img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.em-messenger svg { display: none; }

.em-burger {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: 1px solid rgba(20, 25, 34, .08);
  border-radius: 15px;
  background: #f4f5f6;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.em-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #171d27;
  pointer-events: none;
  transform-origin: 50% 50%;
  transition: transform .2s ease, opacity .16s ease;
}

.em-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.em-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.45);
}

.em-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.em-mobile-menu {
  position: fixed;
  inset: var(--em-header-height) 0 auto;
  z-index: 99;
  padding: 12px 20px 20px;
}

.em-mobile-menu[hidden] { display: none; }

.em-mobile-menu__panel {
  display: grid;
  gap: 4px;
  max-width: 460px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid var(--em-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--em-shadow);
}

.em-mobile-menu__panel a {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 750;
}

.em-mobile-menu__panel a:hover { background: #f6f7f8; }

.em-mobile-menu__group {
  margin: 0;
  border: 0;
}

.em-mobile-menu__group summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--em-text);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.em-mobile-menu__group summary::-webkit-details-marker { display: none; }

.em-mobile-menu__group summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: .48;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .16s ease, opacity .16s ease;
}

.em-mobile-menu__group[open] summary { background: #f6f7f8; }

.em-mobile-menu__group[open] summary::after {
  opacity: .74;
  transform: rotate(-135deg) translate(-2px, -1px);
}

.em-mobile-menu__submenu {
  display: grid;
  gap: 2px;
  padding: 2px 0 8px 12px;
}

.em-mobile-menu__submenu a {
  min-height: 42px;
  padding: 11px 14px;
  color: #4f5968;
  font-size: 14px;
  font-weight: 750;
}

/* 03. Common UI
   ========================================================================== */
.em-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 850;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.em-btn:hover { transform: translateY(-1px); }

.em-btn--primary {
  background: linear-gradient(135deg, var(--em-accent-2), var(--em-accent));
  color: #1c1b18;
  box-shadow: 0 16px 34px rgba(255, 138, 0, .24);
}

.em-btn--light {
  border-color: var(--em-line);
  background: #fff;
  color: var(--em-text);
}

.em-btn--large {
  min-height: 58px;
  padding-inline: 32px;
}

.em-btn--block { width: 100%; }

.em-link-btn,
.em-problem-card button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #c56d00;
  font-weight: 900;
}

.em-link-btn::after,
.em-problem-card button::after { content: " →"; }

.em-kicker {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255, 138, 0, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: #c56d00;
  box-shadow: 0 10px 28px rgba(28, 33, 42, .07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 850;
}

.em-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--em-accent-2), var(--em-accent));
  box-shadow: 0 0 0 4px rgba(255, 138, 0, .12);
}

.em-section {
  padding: 78px 0;
}

.em-section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.em-section-head--left {
  margin-left: 0;
  text-align: left;
}

.em-section-head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.em-section-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.em-section-head p {
  margin: 0;
  color: var(--em-muted);
  font-size: 19px;
}

.em-note {
  margin: 16px 0 14px;
  color: var(--em-muted);
}

/* 04. Hero
   ========================================================================== */
.em-hero {
  background: #fff;
}

.em-hero__stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #f8f5ef;
}

.em-hero__stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.em-hero__media {
  position: absolute;
  inset: 0;
}

.em-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .95) 28%, rgba(255, 255, 255, .62) 50%, rgba(255, 255, 255, .10) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, .96) 100%);
}

.em-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--em-hero-object-position, 70% 50%);
}

.em-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 590px) minmax(340px, 1fr);
  gap: 48px;
  align-items: center;
}

.em-hero__content h1 {
  margin: 28px 0 22px;
  font-size: clamp(54px, 5.6vw, 86px);
  line-height: .98;
  letter-spacing: -.055em;
}

.em-hero-title span { display: block; }
.em-hero-title span:last-child { white-space: nowrap; }

@media (min-width: 1101px) {
  .em-hero--washer .em-hero__inner {
    grid-template-columns: minmax(0, clamp(620px, 54vw, 690px)) minmax(320px, 1fr);
  }

  .em-hero--washer .em-hero__content h1 {
    font-size: clamp(54px, 5.15vw, 82px);
  }

  .em-hero--washer .em-hero-title span:nth-child(2) {
    white-space: nowrap;
  }
}

.em-hero__content p {
  max-width: 560px;
  margin: 0;
  color: #424b58;
  font-size: 23px;
  line-height: 1.55;
}

.em-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.em-hero__phone-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: currentColor;
}

.em-master-card {
  align-self: end;
  justify-self: end;
  width: min(520px, 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  padding: 18px 22px;
  border: 1px solid rgba(32, 36, 44, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--em-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.em-master-card__avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--em-accent-2), var(--em-accent));
  color: #1f232b;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.em-master-card__avatar--photo {
  overflow: hidden;
  padding: 0;
  background: #f4f5f7;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, .06);
}

.em-master-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 42%;
}

.em-master-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
}

.em-master-card span {
  color: var(--em-muted);
}

/* 05. Hero facts
   ========================================================================== */
.em-hero-facts {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 850px;
  margin: -26px auto 0;
}

.em-fact {
  padding: 22px 24px;
  border: 1px solid var(--em-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--em-shadow-soft);
}

.em-fact svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  fill: var(--em-accent);
}

.em-fact strong {
  display: block;
  font-size: 17px;
}

.em-fact span { color: var(--em-muted); }

/* 06. Problem cards
   ========================================================================== */
.em-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
}

.em-problem-card {
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--em-shadow-soft);
}

.em-problem-card__media {
  height: 182px;
  overflow: hidden;
}

.em-problem-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.em-problem-card__body {
  padding: 20px;
}

.em-problem-card h3 {
  margin: 0 0 9px;
  font-size: 25px;
  line-height: 1.08;
}

.em-problem-card p {
  margin: 0 0 16px;
  color: var(--em-muted);
}

/* 07. Prices
   ========================================================================== */
.em-prices__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 40px;
  align-items: start;
}

.em-price-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: 24px;
  background: #fff;
}

.em-price-table div {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid rgba(32, 36, 44, .07);
  border-bottom: 1px solid rgba(32, 36, 44, .07);
}

.em-price-table div:nth-child(2n) { border-right: 0; }
.em-price-table span { color: #303744; }

.em-price-table strong {
  font-size: 19px;
  white-space: nowrap;
}

.em-side-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(255, 138, 0, .18);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff7e8, #fff);
  box-shadow: var(--em-shadow-soft);
}

.em-side-card__mark {
  grid-column: 1;
  grid-row: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 138, 0, .13);
  color: #c56d00;
  font-weight: 950;
}

.em-side-card h3 {
  grid-column: 2;
  margin: 8px 0 2px;
  font-size: 26px;
}

.em-side-card ul {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 10px;
  padding: 2px 0 0;
  margin: 0;
  list-style: none;
}

.em-side-card li {
  position: relative;
  padding-left: 22px;
  color: #404956;
  font-size: 17px;
  line-height: 1.48;
}

.em-side-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .08em;
  color: var(--em-accent);
  font-weight: 900;
}

.em-side-card .em-btn,
.em-side-card__phone {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 8px;
  white-space: nowrap;
}

.em-price-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.em-price-groups section {
  overflow: hidden;
  align-self: start;
  border: 1px solid var(--em-line);
  border-radius: 20px;
  background: #fff;
}

.em-price-groups h3 {
  margin: 0;
  padding: 16px 18px;
  background: #f7f8f9;
}

.em-price-groups div {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-top: 1px solid rgba(32, 36, 44, .07);
}

.em-price-groups strong { white-space: nowrap; }
.em-price-groups p { margin: 0; color: var(--em-muted); }

/* 08. Generic service feature / trust sections
   ========================================================================== */

/* Shared section spacing for service-specific blocks */
.em-feature,
.em-home-repair,
.em-error-code,
.em-hard-access {
  padding-top: clamp(42px, 5vw, 78px);
  padding-bottom: clamp(42px, 5vw, 78px);
}

/* Universal two-column feature card.
   Used for:
   - washer: repair at home / no workshop transport;
   - boiler: difficult access / niche installations;
   - future landing pages with image + explanatory content.
*/
.em-feature-card,
.em-hard-access__card {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(32, 36, 44, .10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 194, 61, .16), transparent 34%),
    linear-gradient(180deg, #fff, #fbfcfd);
  box-shadow: 0 26px 72px rgba(28, 33, 42, .075);
}

.em-feature-card--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.em-feature-card--reverse .em-feature-card__media { order: 2; }

.em-feature-card__media,
.em-hard-access__media {
  overflow: hidden;
  min-height: 320px;
  border-radius: 26px;
  background: #f2f3f5;
}

.em-feature-card__media img,
.em-hard-access__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.em-feature-card__content,
.em-hard-access__content {
  min-width: 0;
  max-width: 640px;
}

.em-feature-card__content h2,
.em-hard-access__content h2 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.em-feature-card__content p,
.em-hard-access__content p {
  margin: 0 0 16px;
  color: #4f5968;
  font-size: 18px;
  line-height: 1.62;
}

.em-feature-card__content .em-link-btn,
.em-hard-access__content .em-link-btn {
  margin-top: 8px;
}

.em-feature-card__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.em-feature-card__list li {
  position: relative;
  padding-left: 25px;
  color: #404956;
}

.em-feature-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--em-accent);
  font-weight: 950;
}

/* Universal service banner.
   Used for:
   - washer: error code block;
   - boiler: seasonal note, if needed;
   - future pages with CTA + compact checklist/note.
*/
.em-service-banner,
.em-season-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 194, 61, .22), transparent 34%),
    linear-gradient(135deg, #fff8ea 0%, #fff 48%, #f6f8fb 100%);
  box-shadow: 0 26px 72px rgba(28, 33, 42, .075);
}

.em-service-banner__content,
.em-season-card__content {
  align-self: center;
  max-width: 720px;
  padding: 0;
}

.em-service-banner__content h2,
.em-service-banner h2,
.em-season-card h2 {
  margin: 18px 0 18px;
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.em-service-banner__content p,
.em-service-banner p,
.em-season-card p {
  max-width: 680px;
  margin: 0;
  color: #4f5968;
  font-size: 18px;
  line-height: 1.62;
}

.em-service-banner__actions,
.em-season-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.em-service-banner__note,
.em-season-card__note {
  align-self: center;
  max-width: none;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(32, 36, 44, .09);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(28, 33, 42, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 16px;
}

.em-service-banner__note strong,
.em-season-card__note strong {
  display: block;
  margin-bottom: 14px;
  color: var(--em-text);
  font-size: 20px;
  line-height: 1.25;
}

.em-service-banner__note ul,
.em-season-card__note ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-service-banner__note li,
.em-season-card__note li {
  position: relative;
  padding-left: 24px;
  color: #465160;
  line-height: 1.5;
}

.em-service-banner__note li::before,
.em-season-card__note li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .02em;
  color: var(--em-accent);
  font-weight: 950;
}

.em-service-banner__media,
.em-season-card__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 26px;
  background: #f2f3f5;
}

.em-service-banner__media img,
.em-season-card__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
}

.em-service-banner__media span,
.em-season-card__media span {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--em-shadow-soft);
  font-weight: 900;
}

/* Compact washer brands strip.
   Used to surface visible brand SEO/trust signals without repeating the
   larger service-banner layout directly before another banner block.
*/
.em-brands {
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(28px, 4vw, 52px);
}

.em-brands__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .62fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(32, 36, 44, .09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 194, 61, .13), transparent 34%),
    linear-gradient(180deg, #fff, #fbfcfd);
  box-shadow: 0 18px 52px rgba(28, 33, 42, .06);
}

.em-brands__content {
  min-width: 0;
  max-width: 760px;
}

.em-brands__content h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.em-brands__content p {
  max-width: 760px;
  margin: 0;
  color: #4f5968;
  font-size: 18px;
  line-height: 1.62;
}

.em-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-brand-list li {
  padding: 10px 14px;
  border: 1px solid rgba(32, 36, 44, .09);
  border-radius: 999px;
  background: #fff;
  color: #303744;
  box-shadow: 0 10px 24px rgba(28, 33, 42, .045);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

/* Honest-diagnostics / informational cards */
.em-repair-sense {
  background: #f7f8fa;
}

.em-info-grid,
.em-repair-sense__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.em-info-grid article,
.em-info-card,
.em-repair-sense__card {
  padding: 24px;
  border: 1px solid rgba(32, 36, 44, .09);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(28, 33, 42, .045);
}

.em-info-grid h3,
.em-info-card h3,
.em-repair-sense__card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.em-info-grid p,
.em-info-card p,
.em-repair-sense__card p {
  margin: 0;
  color: var(--em-muted);
  line-height: 1.55;
}

/* 09. Steps
   ========================================================================== */
.em-steps {
  padding-top: clamp(64px, 7vw, 108px);
  padding-bottom: clamp(64px, 7vw, 108px);
}

.em-steps .em-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.em-steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.em-steps-grid::before {
  content: "";
  position: absolute;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  top: 25px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 138, 0, .16), rgba(255, 138, 0, .55), rgba(255, 138, 0, .16));
}

.em-steps-grid article {
  position: relative;
  z-index: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  text-align: center;
}

.em-steps-grid article > span {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  margin: 0 0 22px;
  border: 2px solid rgba(255, 138, 0, .42);
  border-radius: 50%;
  background: #fff;
  color: #dc7900;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 0 0 8px #fff;
}

.em-steps-grid article > h3 {
  width: 100%;
  margin: 0;
  padding: 28px 22px 0;
  border: 1px solid var(--em-line);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: #fff;
  box-shadow: 0 18px 42px rgba(28, 33, 42, .045);
  font-size: 18px;
  line-height: 1.2;
}

.em-steps-grid article > p {
  width: 100%;
  flex: 1 1 auto;
  margin: 0;
  padding: 10px 22px 28px;
  border: 1px solid var(--em-line);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(28, 33, 42, .045);
  color: var(--em-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* 10. Gallery
   ========================================================================== */
.em-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.em-gallery figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 22px;
  background: #f1f2f3;
  box-shadow: var(--em-shadow-soft);
  cursor: zoom-in;
  transform: translateZ(0);
}

.em-gallery__button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: zoom-in;
}

.em-gallery img,
.em-gallery__button img {
  width: 100%;
  height: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.em-gallery figcaption { display: none; }

/* 11. FAQ
   ========================================================================== */
.em-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.em-faq-grid details { display: none; }

.em-faq-item {
  overflow: hidden;
  contain: layout paint;
  border: 1px solid var(--em-line);
  border-radius: 20px;
  background: #fff;
  transform: translateZ(0);
}

.em-faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--em-text);
  text-align: left;
  font-weight: 850;
  -webkit-tap-highlight-color: transparent;
}

.em-faq-sign {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.em-faq-sign::before,
.em-faq-sign::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #d87900;
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.em-faq-sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.em-faq-item.is-open .em-faq-sign::after { transform: translate(-50%, -50%) rotate(0deg); }

.em-faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: height .26s ease, opacity .18s ease;
  will-change: height;
}

.em-faq-item.is-open .em-faq-answer { opacity: 1; }

.em-faq-answer p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--em-muted);
}

/* 12. Final CTA / forms
   ========================================================================== */
.em-final {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 104px);
  background: #f6f8fb;
}

.em-final__inner {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(38px, 5vw, 64px);
  border: 1px solid rgba(32, 36, 44, .10);
  border-radius: 36px;
  background:
    linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)),
    var(--em-final-bg, none),
    #fff;
  background-position: center, right center, center;
  background-size: auto, auto 105%, auto;
  background-repeat: no-repeat;
  box-shadow: 0 28px 76px rgba(28, 33, 42, .10);
}

.em-final__inner::before {
  content: "";
  position: absolute;
  inset: 24px auto 24px 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--em-accent-2), var(--em-accent));
}

.em-final__inner > div,
.em-final .em-form {
  position: relative;
  z-index: 1;
}

.em-final h2 {
  max-width: 520px;
  margin: 20px 0 18px;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.em-final p {
  max-width: 530px;
  margin: 0 0 24px;
  color: #5f6977;
  font-size: 18px;
  line-height: 1.58;
}

.em-final__inner > div > a {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px 13px 14px;
  border: 1px solid rgba(32, 36, 44, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  color: #18202c;
  box-shadow: 0 14px 34px rgba(28, 33, 42, .07);
  font-size: 20px;
  font-weight: 900;
}

.em-final__inner > div > a::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--em-accent-2), var(--em-accent));
  box-shadow: 0 0 0 5px rgba(255, 138, 0, .12);
}

.em-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(32, 36, 44, .10);
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 22px 54px rgba(28, 33, 42, .08);
}

.em-form label {
  display: grid;
  gap: 7px;
  color: #556071;
  font-size: 14px;
  font-weight: 800;
}

.em-form input,
.em-form select,
.em-form textarea {
  width: 100%;
  border: 1px solid rgba(32, 36, 44, .12);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, .98);
  color: var(--em-text);
  outline: none;
  font-weight: 600;
}

.em-form input,
.em-form select {
  height: 54px;
  padding: 0 16px;
}

.em-form select {
  padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 6 8 10.5 12.5 6' fill='none' stroke='%2366707e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.em-form select:disabled {
  background-color: #f1f3f5;
  color: rgba(32, 36, 44, .52);
  cursor: not-allowed;
}

.em-form textarea {
  min-height: 105px;
  padding: 16px;
  resize: vertical;
}

.em-form input:focus,
.em-form select:focus,
.em-form textarea:focus {
  border-color: rgba(255, 138, 0, .65);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, .10);
}

.em-form input.is-invalid,
.em-form select.is-invalid,
.em-form textarea.is-invalid {
  border-color: rgba(210, 54, 54, .68);
  box-shadow: 0 0 0 4px rgba(210, 54, 54, .08);
}

.em-form__error {
  color: #d33636;
  font-size: 12px;
  font-weight: 700;
}

.em-consent {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px !important;
  align-items: start;
  color: #596474 !important;
  font-size: 13px !important;
  line-height: 1.45;
  font-weight: 600 !important;
  text-align: left;
}

.em-consent input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  accent-color: var(--em-accent);
}

.em-consent a,
.em-form .em-consent a {
  color: #1267c4 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: 800 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 13. Footer
   ========================================================================== */
.em-footer {
  padding: 48px 0 calc(48px + env(safe-area-inset-bottom));
  background: #151d2b;
  color: #fff;
}

.em-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(420px, 1.2fr);
  gap: 40px;
}

.em-footer img {
  width: 190px;
  height: auto;
}

.em-footer p { color: rgba(255, 255, 255, .78); }

.em-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
}

.em-footer nav a { color: rgba(255, 255, 255, .82); }
.em-footer nav a:hover { color: #fff; }

/* 14. Mobile sticky actions
   ========================================================================== */
.em-mobile-actions {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 90;
  display: none;
  overflow: hidden;
  border-radius: 20px;
  background: #111925;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.em-mobile-actions a,
.em-mobile-actions button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 58px;
  display: grid;
  grid-template-rows: 24px auto;
  align-content: center;
  justify-items: center;
  gap: 4px;
  padding: 8px 6px 7px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.em-mobile-actions button {
  background: linear-gradient(135deg, var(--em-accent-2), var(--em-accent));
  color: #1c1b18;
}

.em-mobile-actions__icon,
.em-mobile-actions img {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  display: block;
  object-fit: contain;
}

.em-mobile-actions span {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

/* 15. Sheet / problem sheet / lightbox
   ========================================================================== */
.em-sheet[hidden],
.em-lightbox[hidden] { display: none; }

.em-sheet {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: end center;
}

.em-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.em-sheet__panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 28px));
  max-height: min(88svh, 720px);
  margin-bottom: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 18px 34px 34px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
}

.em-sheet__handle {
  width: 56px;
  height: 5px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(32, 36, 44, .18);
}

.em-sheet__close {
  position: sticky;
  top: 0;
  z-index: 5;
  float: right;
  width: 44px;
  height: 44px;
  margin: 0 -8px 0 10px;
  border: 0;
  border-radius: 50%;
  background: #f2f3f4;
  color: #20242c;
  font-size: 28px;
  line-height: 1;
}

.em-sheet-block { min-width: 0; }

.em-sheet-block > h2,
.em-problem-sheet h2 {
  margin: 18px 0 10px;
  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.em-sheet-block > p {
  margin: 0 0 20px;
  color: var(--em-muted);
  font-size: 17px;
}

.em-sheet__actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.em-problem-sheet {
  display: grid;
  gap: 16px;
}

.em-problem-sheet__media {
  overflow: hidden;
  border-radius: 20px;
  background: #f4f5f6;
}

.em-problem-sheet img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 20px;
}

.em-problem-sheet > p {
  margin: 0;
  color: #303744;
  font-size: 18px;
  line-height: 1.55;
}

.em-problem-sheet__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: 0;
  color: #303744;
  font-size: 17px;
  line-height: 1.35;
}

.em-problem-sheet__price strong {
  color: var(--em-text);
  font-size: 18px;
  font-weight: 950;
}

.em-problem-sheet h3 {
  margin: 6px 0 -2px;
  font-size: 21px;
  line-height: 1.2;
}

.em-problem-sheet ul {
  margin: 0;
  padding-left: 21px;
  color: var(--em-muted);
  line-height: 1.55;
}

.em-problem-sheet li + li { margin-top: 2px; }
.em-problem-sheet .em-btn { margin-top: 4px; }

.em-lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 58px 72px;
  background: rgba(8, 12, 18, .88);
}

.em-lightbox img {
  width: min(1040px, 100%);
  max-height: calc(100svh - 150px);
  object-fit: contain;
  border-radius: 18px;
}

.em-lightbox__caption {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  text-align: center;
  font-weight: 850;
}

.em-lightbox__close,
.em-lightbox__nav {
  position: fixed;
  border: 0;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.em-lightbox__close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
}

.em-lightbox__nav {
  top: 50%;
  width: 54px;
  height: 76px;
  transform: translateY(-50%);
  border-radius: 18px;
  font-size: 56px;
}

.em-lightbox__nav--prev { left: 18px; }
.em-lightbox__nav--next { right: 18px; }

/* 16. Responsive
   ========================================================================== */
@media (max-width: 1280px) and (min-width: 1101px) {
  .em-brand img { width: 190px; }
  .em-nav { gap: 18px; font-size: 14px; }
  .em-phone { font-size: 15px; }
}

@media (max-width: 1100px) {
  .em-nav,
  .em-phone,
  .em-header__cta { display: none; }

  .em-burger { display: flex; }
  .em-header__actions { margin-left: auto; }
  .em-problem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .em-prices__grid { grid-template-columns: 1fr; }
  .em-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .em-steps-grid::before { display: none; }
  .em-info-grid,
  .em-repair-sense__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --em-header-height: 64px; }

  body { padding-bottom: 78px; }

  .em-container { width: min(100% - 28px, var(--em-container)); }

  .em-header { background: rgba(255, 255, 255, .98); }

  .em-header__inner {
    min-height: var(--em-header-height);
    width: min(100% - 22px, var(--em-container));
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .em-brand { flex: 1 1 auto; }

  .em-brand img {
    width: clamp(150px, 43vw, 168px);
    height: auto;
  }

  .em-header__actions {
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
  }

  .em-header__actions .em-phone,
  .em-header__actions .em-header__cta,
  .em-header__actions .em-messenger--tg { display: none; }

  .em-header__actions .em-messenger--vb {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 0;
  }

  .em-header__actions .em-messenger--vb img {
    width: 44px;
    height: 44px;
  }

  .em-header__actions .em-burger {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 15px;
  }

  .em-mobile-menu { inset: var(--em-header-height) 0 auto; }

  .em-btn--large {
    min-height: 52px;
    padding-inline: 22px;
  }

  .em-hero__stage {
    min-height: 622px;
    border-radius: 0 0 30px 30px;
  }

  .em-hero__stage::after { height: 180px; }

  .em-hero__media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .86) 48%, rgba(255, 255, 255, .12) 86%),
      linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 255, 255, .26) 58%, #fff 100%);
  }

  .em-hero__media img { object-position: var(--em-hero-object-position-mobile, 60% 0); }

  .em-hero__inner {
    min-height: 622px;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 38px;
  }

  .em-hero__content {
    width: 100%;
    max-width: min(100%, 430px);
  }

  .em-hero__content h1 {
    margin: 16px 0 12px;
    font-size: clamp(40px, 12vw, 56px);
  }

  .em-hero--washer .em-hero__content h1 {
    font-size: clamp(32px, 9.9vw, 46px);
    line-height: 1.02;
    letter-spacing: -.065em;
  }

  .em-hero--washer .em-hero-title span:nth-child(2),
  .em-hero--washer .em-hero-title span:last-child {
    white-space: nowrap;
  }

  .em-hero__content p { font-size: 16px; }

  .em-hero__actions {
    width: 100%;
    max-width: 390px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .em-hero__actions .em-btn {
    width: 100%;
    min-height: 56px;
    justify-content: center;
    padding-inline: 22px;
    border-radius: 18px;
  }

  .em-hero__actions .em-btn--light {
    display: inline-flex;
    background: rgba(255, 255, 255, .92);
    color: #1d232c;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .em-master-card {
    align-self: end;
    justify-self: stretch;
    width: 100%;
    margin: 0 0 22px;
    padding: 14px 16px;
  }

  .em-master-card__avatar {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 15px;
    font-size: 23px;
  }

  .em-master-card strong { font-size: 15px; }
  .em-master-card span { font-size: 13px; }

  .em-hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: -8px;
  }

  .em-fact {
    min-height: 92px;
    padding: 12px 8px;
    text-align: center;
  }

  .em-fact svg {
    width: 24px;
    height: 24px;
    margin: 0 auto 8px;
  }

  .em-fact strong {
    font-size: 12px;
    line-height: 1.15;
  }

  .em-fact span { display: none; }

  .em-section { padding: 52px 0; }

  .em-section-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .em-section-head h2 { font-size: 36px; }
  .em-section-head p { font-size: 16px; }

  .em-problems { overflow: hidden; }

  .em-problem-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scroll-padding-right: 14px;
    -webkit-overflow-scrolling: touch;
    margin-left: 0;
    margin-right: -14px;
    padding: 2px 14px 20px 0;
    scrollbar-width: none;
  }

  .em-problem-grid::-webkit-scrollbar { display: none; }

  .em-problem-card {
    flex: 0 0 min(78vw, 316px);
    max-width: min(78vw, 316px);
    display: flex;
    flex-direction: column;
    min-height: 0;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .em-problem-card__media {
    height: 148px;
    flex: 0 0 148px;
  }

  .em-problem-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px;
  }

  .em-problem-card h3 {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.12;
  }

  .em-problem-card p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .em-problem-card button {
    align-self: flex-start;
    margin-top: auto;
  }

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

  .em-price-table div {
    min-height: 62px;
    padding: 14px 16px;
    border-right: 0;
  }

  .em-side-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 14px;
    padding: 22px;
    border-radius: 24px;
  }

  .em-side-card__mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .em-side-card li {
    font-size: 16px;
    line-height: 1.45;
  }

  .em-price-groups { grid-template-columns: 1fr; }

  .em-feature-card,
  .em-hard-access__card,
  .em-feature-card--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 28px;
  }

  .em-feature-card--reverse .em-feature-card__media { order: initial; }

  .em-feature-card__media,
  .em-hard-access__media {
    min-height: 210px;
    border-radius: 22px;
  }

  .em-feature-card__media img,
  .em-hard-access__media img {
    min-height: 210px;
  }

  .em-service-banner,
  .em-season-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .em-service-banner__content,
  .em-season-card__content { padding: 26px; }

  .em-service-banner h2,
  .em-season-card h2 { font-size: 34px; }

  .em-service-banner p,
  .em-season-card p { font-size: 16px; }

  .em-service-banner__actions,
  .em-season-card__actions { display: grid; }

  .em-service-banner__media,
  .em-season-card__media {
    min-height: 210px;
    max-height: 230px;
  }

  .em-brands {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .em-brands__card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 26px;
  }

  .em-brands__content h2 {
    font-size: 32px;
  }

  .em-brands__content p {
    font-size: 16px;
  }

  .em-brand-list {
    justify-content: flex-start;
    gap: 8px;
  }

  .em-brand-list li {
    padding: 9px 12px;
    font-size: 14px;
  }

  .em-steps {
    padding-top: 50px;
    padding-bottom: 54px;
  }

  .em-steps .em-section-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .em-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 18px;
  }

  .em-steps-grid::before {
    display: block;
    left: 14px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(255, 138, 0, .18), rgba(255, 138, 0, .56), rgba(255, 138, 0, .18));
  }

  .em-steps-grid article {
    display: block;
    min-height: 0;
    padding: 0 0 0 28px;
    text-align: left;
  }

  .em-steps-grid article > span {
    position: absolute;
    left: -18px;
    top: 18px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    margin: 0;
    font-size: 12px;
    box-shadow: 0 0 0 6px #fff;
  }

  .em-steps-grid article > h3 {
    width: auto;
    padding: 18px 18px 6px;
    border-radius: 20px 20px 0 0;
    font-size: 17px;
    text-align: left;
  }

  .em-steps-grid article > p {
    width: auto;
    padding: 4px 18px 18px;
    border-radius: 0 0 20px 20px;
    font-size: 14px;
    text-align: left;
  }

  .em-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .em-gallery figure { border-radius: 14px; }

  .em-faq-grid { grid-template-columns: 1fr; }

  .em-faq-question {
    min-height: 62px;
    padding: 17px 18px;
  }

  .em-faq-answer p { padding: 0 18px 18px; }

  .em-final {
    padding-block: 58px;
    background: #f6f8fb;
  }

  .em-final__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 28px;
    background: #fff;
  }

  .em-final__inner::before {
    inset: 0 20px auto;
    width: auto;
    height: 4px;
    border-radius: 0 0 999px 999px;
  }

  .em-final h2 {
    margin-top: 18px;
    font-size: 36px;
  }

  .em-final p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .em-final__inner > div > a {
    width: 100%;
    justify-content: center;
  }

  .em-form {
    padding: 18px;
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(28, 33, 42, .06);
  }

  .em-consent {
    grid-template-columns: 20px minmax(0, 1fr);
    font-size: 12px !important;
  }

  .em-mobile-actions { display: flex; }

  .em-sheet__panel {
    width: calc(100% - 16px);
    max-height: 88svh;
    margin-bottom: 8px;
    padding: 14px 20px calc(20px + env(safe-area-inset-bottom));
    border-radius: 28px 28px 20px 20px;
  }

  .em-sheet__handle { margin-bottom: 14px; }

  .em-sheet__close {
    position: absolute;
    top: 24px;
    right: 20px;
    float: none;
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .em-sheet-block > h2,
  .em-problem-sheet h2 {
    padding-right: 46px;
    font-size: 31px;
    line-height: 1.1;
  }

  .em-problem-sheet {
    gap: 12px;
    padding-inline: 0;
  }

  .em-problem-sheet__media { border-radius: 22px; }

  .em-problem-sheet__media img {
    height: min(32svh, 230px);
    max-height: none;
    border-radius: 22px;
    object-fit: cover;
  }

  .em-problem-sheet .em-kicker {
    max-width: calc(100% - 58px);
    padding: 8px 13px;
    font-size: 13px;
  }

  .em-problem-sheet > p {
    font-size: 17px;
    line-height: 1.48;
  }

  .em-problem-sheet__price {
    gap: 6px;
    font-size: 16px;
    line-height: 1.35;
  }

  .em-problem-sheet__price strong { font-size: 17px; }

  .em-problem-sheet h3 {
    margin: 10px 0 0;
    font-size: 20px;
  }

  .em-problem-sheet ul {
    padding-left: 20px;
    font-size: 16px;
    line-height: 1.45;
  }

  .em-problem-sheet .em-btn {
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
    border-radius: 16px;
  }

  .em-sheet__actions { display: grid; }

  .em-lightbox {
    padding: 44px 14px 34px;
  }

  .em-lightbox img { max-height: calc(100svh - 120px); }
  .em-lightbox__nav { display: none; }

  .em-footer__inner,
  .em-footer nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
