/* ──────────────────────────────────────────────
   Clean Clean v2.1 — Compact Sales Landing
   Mobile-first (360–430px), light theme with green
   ────────────────────────────────────────────── */

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F5FAF6;
  --bg-tint:      #ECF5EE;
  --bg-glass:     rgba(255,255,255,0.88);

  --ink:          #0B1410;
  --ink-soft:     #5A6B5E;
  --ink-faint:    #8DA295;

  --brand:        #16A34A;
  --brand-deep:   #15803D;
  --brand-dark:   #14532D;
  --brand-bright: #22C55E;
  --brand-light:  #86EFAC;
  --brand-glass:  rgba(22,163,74,0.08);
  --brand-line:   rgba(22,163,74,0.22);

  --border:       rgba(11,20,16,0.08);
  --border-strong:rgba(11,20,16,0.14);

  --shadow-xs:    0 1px 2px rgba(11,20,16,0.04);
  --shadow-sm:    0 2px 8px -2px rgba(11,20,16,0.06);
  --shadow-md:    0 6px 16px -6px rgba(22,163,74,0.18), 0 2px 6px -2px rgba(11,20,16,0.05);
  --shadow-lg:    0 16px 40px -16px rgba(11,20,16,0.18), 0 6px 16px -6px rgba(22,163,74,0.12);
  --shadow-cta:   0 4px 0 #052e16, 0 10px 20px -6px rgba(20,83,45,0.45), inset 0 1px 0 rgba(255,255,255,0.18);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  overflow-x: hidden;
  touch-action: pan-y;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select, button { font-family: inherit; }
::selection { background: var(--brand-light); color: var(--brand-dark); }

.tabular { font-variant-numeric: tabular-nums; }

/* ── HEADER ─────────────────────────────────── */
.hdr {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-glass);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  height: 56px;
}
.hdr__logo { display: inline-flex; align-items: center; gap: 8px; }
.hdr__logo-mark { flex: 0 0 32px; width: 32px; height: 32px; }
.hdr__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hdr__logo-dot { color: var(--brand); padding: 0 1px; }
.hdr__actions { display: flex; align-items: center; gap: 8px; }
.hdr__phone {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--brand-deep);
  background: var(--brand-glass);
  transition: background 0.2s var(--ease-out), transform 0.15s var(--ease-spring);
}
.hdr__phone:active { transform: scale(0.92); background: var(--brand-line); }
.hdr__burger {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  border-radius: 50%;
}
.hdr__burger:active { background: var(--brand-glass); }
.hdr__burger span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s;
}
.hdr__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── DRAWER ─────────────────────────────────── */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(11,20,16,0.45);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; z-index: 61;
  width: min(82vw, 320px); height: 100dvh;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 16px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.drawer__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; color: var(--brand-deep);
  letter-spacing: -0.025em;
}
.drawer__close {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
}
.drawer__close:active { background: var(--brand-glass); }
.drawer__nav { display: flex; flex-direction: column; padding: 8px 0; }
.drawer__link {
  display: block; padding: 12px 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, padding 0.2s;
}
.drawer__link:active { color: var(--brand); padding-left: 12px; }
.drawer__link--cta {
  margin-top: 10px; padding: 14px;
  background: var(--brand-deep); color: white;
  border-radius: var(--r-md);
  border: none; text-align: center;
  font-family: var(--font-display); font-weight: 700;
  box-shadow: var(--shadow-md);
}
.drawer__link--cta:active { color: white; padding-left: 14px; transform: scale(0.98); }
.drawer__contact { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.drawer__phone { font-weight: 700; font-size: 17px; color: var(--ink); padding: 6px 0; min-height: 44px; display: inline-flex; align-items: center; }
.drawer__tg { color: var(--brand-deep); font-size: 13px; font-weight: 500; padding: 6px 0; min-height: 44px; display: inline-flex; align-items: center; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.btn--primary {
  background: var(--brand-deep);
  color: white;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover { background: var(--brand); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 1px 0 #052e16, 0 3px 6px rgba(0,0,0,0.2); }
.btn--ghost {
  background: white;
  color: var(--brand-deep);
  border: 1.5px solid var(--brand-line);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:active { background: var(--brand-glass); transform: scale(0.98); }
.btn--full { width: 100%; }
.btn--lg { padding: 16px 26px; font-size: 16px; }
.btn__spinner {
  display: none;
  animation: spin 0.9s linear infinite;
}
.btn.is-loading .btn__label { opacity: 0; }
.btn.is-loading .btn__spinner { display: inline-block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  padding: 24px 20px 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #E8F7EC 0%, #F5FAF6 70%, var(--bg) 100%);
  isolation: isolate;
}
/* Слой 1 — gradient mesh (мягкий зеленый) */
.hero__mesh {
  position: absolute; inset: -10% -5% auto -5%;
  height: 95%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 85% 10%, rgba(134,239,172,0.75), transparent 65%),
    radial-gradient(ellipse 50% 40% at 12% 60%, rgba(187,247,208,0.6), transparent 65%),
    radial-gradient(ellipse 45% 38% at 60% 92%, rgba(34,197,94,0.28), transparent 65%);
  filter: blur(35px);
  will-change: transform, opacity;
  animation: meshDrift 18s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.85; }
  50%      { transform: scale(1.06) translate(-4%, 2%); opacity: 1; }
}

/* Слой 2 — sparkles (мерцающие искры) */
.hero__sparkles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.hero__sparkle {
  position: absolute;
  width: 4px; height: 4px;
  background: radial-gradient(circle, white 0%, var(--brand-light) 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.3px) drop-shadow(0 0 6px rgba(134,239,172,0.8));
  animation: sparkleTwinkle 4s ease-in-out infinite;
}
.hero__sparkle--star {
  width: 12px; height: 12px;
  background: none;
  filter: drop-shadow(0 0 4px rgba(34,197,94,0.6));
}
.hero__sparkle--star::before,
.hero__sparkle--star::after {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, transparent, white, transparent);
  border-radius: 2px;
}
.hero__sparkle--star::before { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.hero__sparkle--star::after  { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  40%      { opacity: 0.9; transform: scale(1) rotate(45deg); }
  60%      { opacity: 0.9; transform: scale(1.1) rotate(90deg); }
  80%      { opacity: 0; transform: scale(0.6) rotate(135deg); }
}

/* Слой 3 — wipe streak (имитация протирания) */
.hero__streak {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  overflow: hidden;
  border-radius: inherit;
}
.hero__streak::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 60%; height: 200%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.05) 35%,
    rgba(255,255,255,0.35) 48%,
    rgba(134,239,172,0.25) 52%,
    rgba(255,255,255,0.05) 65%,
    transparent 100%
  );
  filter: blur(2px);
  transform: rotate(8deg);
  animation: wipeAcross 7s ease-in-out infinite;
}
@keyframes wipeAcross {
  0%   { transform: translateX(0) rotate(8deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(280%) rotate(8deg); opacity: 0; }
}

/* Слой 4 — поднимающиеся пузыри */
.hero__bubbles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.95), rgba(187,247,208,0.4) 50%, transparent 75%);
  box-shadow: inset -2px -2px 4px rgba(22,163,74,0.15);
  bottom: -40px;
  opacity: 0;
  animation: bubbleRise 9s ease-in infinite;
}
@keyframes bubbleRise {
  0%   { transform: translateY(0) translateX(0) scale(0.6); opacity: 0; }
  15%  { opacity: 0.7; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-120vh) translateX(20px) scale(1.1); opacity: 0; }
}

.hero__inner { position: relative; z-index: 5; display: flex; flex-direction: column; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 6px 12px 6px 10px;
  background: white;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-deep);
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-xs);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--brand-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.18); transform: scale(1); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0.05); transform: scale(1.1); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 9.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 14px 0 0;
  color: var(--ink);
  /* читаемость поверх motion-фона */
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.hero__title-accent {
  color: var(--brand-deep);
  background-image: linear-gradient(180deg, transparent 62%, rgba(134,239,172,0.7) 62%, rgba(134,239,172,0.7) 92%, transparent 92%);
  background-repeat: no-repeat;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 4px;
  margin: 0 -4px;
}
.hero__sub {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 30ch;
}
.hero__cta {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.hero__cta .btn--ghost { padding: 13px 16px; }

.hero__trust {
  margin-top: 20px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hero__trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  position: relative;
}
.hero__trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.hero__trust-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero__trust-cap { font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ── SECTION ─────────────────────────────────── */
.section { padding: 40px 0; }
.section--tint { background: var(--bg-soft); }
.section--order { background: var(--bg-tint); padding-bottom: 48px; }
.section__head {
  padding: 0 20px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.section__kicker {
  display: inline-block; align-self: flex-start;
  padding: 4px 10px;
  background: var(--brand-glass);
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  color: var(--brand-deep);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 7.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 4px 0 0;
  color: var(--ink);
}
.section__title-accent {
  color: var(--brand);
}
.section__sub { margin: 2px 0 0; color: var(--ink-soft); font-size: 13px; }

/* ── SERVICES (compact swipe) ───────────────── */
.services {
  display: flex; gap: 12px;
  padding: 4px 20px 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.services::-webkit-scrollbar { display: none; }
.service-card {
  flex: 0 0 70%;
  scroll-snap-align: center;
  padding: 16px 16px 14px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card:active { transform: scale(0.98); }
.service-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-soft), var(--shadow-deep);
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 90px; height: 90px;
  background: radial-gradient(circle at top right, var(--brand-glass), transparent 70%);
  pointer-events: none;
}
.service-card[data-color="leaf"] .service-card__icon { background: linear-gradient(135deg, #dcfce7, #86efac); color: var(--brand-deep); }
.service-card[data-color="moss"] .service-card__icon { background: linear-gradient(135deg, #bbf7d0, #4ade80); color: var(--brand-deep); }
.service-card[data-color="fern"] .service-card__icon { background: linear-gradient(135deg, #d1fae5, #6ee7b7); color: var(--brand-deep); }
.service-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px -4px rgba(22,163,74,0.4);
}
.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.service-card__desc {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.service-card__price {
  font-size: 12px;
  color: var(--ink-soft);
  padding-top: 10px;
  border-top: 1px dashed var(--border-strong);
  font-weight: 500;
}
.service-card__price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-deep);
  letter-spacing: -0.02em;
}

.services__dots {
  display: flex; justify-content: center; gap: 5px;
  margin-top: 4px;
}
.services__dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--border-strong);
  transition: width 0.3s var(--ease-spring), background 0.2s;
}
.services__dots span.is-active { width: 20px; background: var(--brand); border-radius: 3px; }

/* ── CALCULATOR ─────────────────────────────── */
.calc {
  margin: 0 20px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.calc__row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.calc__label { color: var(--ink-soft); font-size: 13px; font-weight: 500; }
.calc__value {
  display: inline-flex; align-items: baseline; gap: 4px;
}
.calc__value strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.calc__value span { color: var(--ink-soft); font-size: 14px; font-weight: 500; }

.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--brand) var(--p, 18%), var(--bg-tint) var(--p, 18%));
  margin: 16px 0 8px;
  outline: none;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  box-shadow: 0 3px 10px rgba(22,163,74,0.4);
  cursor: pointer;
  transition: transform 0.2s var(--ease-spring);
}
.calc__slider::-webkit-slider-thumb:active { transform: scale(1.2); }
.calc__slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--brand);
  box-shadow: 0 3px 10px rgba(22,163,74,0.4);
  cursor: pointer;
}
.calc__hints {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}

.calc__quick {
  margin-top: 14px;
  display: flex; gap: 6px;
}
.calc__chip {
  flex: 1;
  min-height: 44px;
  padding: 10px 6px;
  background: var(--bg-tint);
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.2s var(--ease-out);
  font-variant-numeric: tabular-nums;
}
.calc__chip--active {
  background: var(--brand-glass);
  border-color: var(--brand);
  color: var(--brand-deep);
}
.calc__chip:active { transform: scale(0.96); }

.calc__extras {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.calc__extras-title {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 10px;
}
.calc__extra {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
  background: var(--bg-tint);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.calc__extra:has(input:checked) {
  background: var(--brand-glass);
  border-color: var(--brand);
}
.calc__extra input {
  width: 18px; height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}
.calc__extra span {
  font-size: 13px; font-weight: 500;
  color: var(--ink);
}
.calc__extra em {
  font-style: normal;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 11px;
  margin-left: 4px;
}

.calc__total {
  margin-top: 18px;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--bg-soft), white);
  border: 1px solid var(--brand-line);
  border-radius: var(--r-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc__total::before {
  content: ''; position: absolute; top: -40%; right: -25%;
  width: 160px; height: 160px;
  background: radial-gradient(circle, var(--brand-glass), transparent 60%);
  pointer-events: none;
}
.calc__total-label {
  position: relative;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 4px;
}
.calc__total-price {
  position: relative;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
  margin-bottom: 14px;
}
.calc__total-price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.045em;
}
.calc__total-price span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand);
}
.calc__total-note { position: relative; margin: 8px 0 0; font-size: 11px; color: var(--ink-soft); }

/* ── HOW IT WORKS (compact) ──────────────────── */
.how {
  list-style: none;
  margin: 0; padding: 0 20px;
  position: relative;
}
.how__step {
  position: relative;
  padding: 0 0 22px 50px;
}
.how__step:last-of-type { padding-bottom: 0; }
.how__num {
  position: absolute; left: 0; top: 0;
  width: 36px; height: 36px;
  background: white;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--brand);
  z-index: 2;
}
.how__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.025em;
  margin: 6px 0 4px;
}
.how__desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}
.how__line {
  position: absolute; left: 17px; top: 18px;
  width: 2px;
  height: calc(100% - 36px);
  background: var(--border-strong);
  z-index: 1;
}
.how__line-fill {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%;
  background: linear-gradient(to bottom, var(--brand-bright), var(--brand-deep));
  transition: height 0.5s var(--ease-out);
  border-radius: 2px;
}

/* ── REVIEWS ────────────────────────────────── */
.reviews__google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #374151;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s;
}
.reviews__google-badge:hover {
  border-color: #22c55e;
  box-shadow: 0 2px 10px rgba(34,197,94,.18);
}
.reviews__google-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.reviews__google-score { font-weight: 700; color: #111827; }
.reviews__google-label { color: #6b7280; font-weight: 400; }

.reviews {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}
.reviews__track {
  display: flex; gap: 12px;
  padding: 4px 20px;
  width: max-content;
  animation: scrollReviews 55s linear infinite;
}
.reviews__track:hover { animation-play-state: paused; }
@keyframes scrollReviews {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review {
  flex: 0 0 260px;
  padding: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.review__stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; }
.review__text {
  margin: 8px 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}
.review__author { display: flex; align-items: center; gap: 10px; }
.review__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  color: white;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review__author strong { display: block; font-size: 13px; font-weight: 700; line-height: 1.2; }
.review__author span { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 2px; }

/* ── CITIES (compact 2-col grid) ────────────── */
.cities {
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.cities .city:first-child {
  grid-column: 1 / -1;
}
.city {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-spring);
}
.cities .city:first-child { aspect-ratio: 16 / 9; }
.city:active { transform: scale(0.97); }
.city img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.city:active img { transform: scale(1.05); }
.city__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,20,16,0.85) 100%);
}
.city__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 12px;
  color: white;
}
.cities .city:first-child .city__body { padding: 16px; }
.city__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 3px;
}
.cities .city:first-child .city__name { font-size: 28px; }
.city__cap { margin: 0; font-size: 11px; opacity: 0.85; font-weight: 500; line-height: 1.3; }
.cities .city:first-child .city__cap { font-size: 12px; }

/* ── FAQ ────────────────────────────────────── */
.faq { padding: 0 20px; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--brand-line); }
.faq__q {
  list-style: none;
  padding: 14px 48px 14px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  position: relative;
  line-height: 1.35;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  transition: transform 0.3s var(--ease-spring);
}
.faq__item[open] .faq__icon { transform: translateY(-50%) rotate(180deg); }
.faq__a {
  padding: 0 16px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  animation: faqOpen 0.3s var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FORM ───────────────────────────────────── */
.form { padding: 0 20px; display: flex; flex-direction: column; gap: 10px; }
.form__honeypot {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; opacity: 0;
}
.form__field { position: relative; }
.form__input {
  width: 100%;
  padding: 18px 14px 8px;
  font-size: 15px;
  background: white;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--ink);
  -webkit-appearance: none;
}
.form__input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-glass);
}
.form__textarea { padding: 18px 14px 12px; resize: vertical; min-height: 80px; }
.form__select { padding: 16px 36px 10px 14px; background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235B6B5F' stroke-width='2.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form__label {
  position: absolute;
  left: 14px; top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  pointer-events: none;
  transition: transform 0.2s var(--ease-out), color 0.2s, font-size 0.2s;
}
.form__input:focus + .form__label,
.form__input:not(:placeholder-shown) + .form__label {
  transform: translateY(-9px);
  font-size: 10px;
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form__label--static {
  top: 6px;
  font-size: 10px;
  color: var(--brand-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form__error {
  display: none;
  margin-top: 4px; padding-left: 14px;
  font-size: 11px;
  color: #dc2626;
  font-weight: 500;
}
.form__field.has-error .form__error { display: block; }
.form__field.has-error .form__input { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }
.form__legal {
  font-size: 11px;
  color: var(--ink-faint);
  text-align: center;
  margin: 4px 0 0;
}

.form-success {
  margin: 4px 20px;
  padding: 28px 20px;
  text-align: center;
  background: white;
  border: 2px solid var(--brand);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.form-success__check {
  width: 60px; height: 60px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
}
.form-success__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--brand-deep);
  letter-spacing: -0.025em;
}
.form-success__text { margin: 0; color: var(--ink-soft); font-size: 13px; }

/* ── FOOTER ─────────────────────────────────── */
.ftr {
  padding: 28px 20px 20px;
  background: var(--ink);
  color: white;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center;
  text-align: center;
}
.ftr__logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  color: white;
  letter-spacing: -0.025em;
}
.ftr__contacts { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.ftr__contacts a { color: white; opacity: 0.85; transition: opacity 0.2s; }
.ftr__contacts a:active { opacity: 1; color: var(--brand-light); }
.ftr__copy { margin: 0; font-size: 10px; opacity: 0.45; line-height: 1.5; }

/* ── FLOAT CTA ──────────────────────────────── */
.floats {
  position: fixed; right: 14px; bottom: 14px; z-index: 40;
}
.float {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px -4px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform 0.2s var(--ease-spring);
}
.float:active { transform: scale(0.9); }
.float--tg { background: #2AABEE; }

/* ── REVEAL ANIMATION ───────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__badge-dot { animation: none; }
  .reviews__track { animation: none; }
}

/* ── DESKTOP FRAME (минимум) ────────────────── */
@media (min-width: 640px) {
  body { background: var(--bg-soft); }
  .hdr, .hero, .section, .ftr {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .hdr { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
}

/* ── SERVICE CARD CTA ───────────────────────── */
.service-card__cta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.service-card:hover { border-color: var(--brand-soft); box-shadow: var(--shadow-deep); }

/* ── SERVICE MODAL ──────────────────────────── */
.svc-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.svc-modal.is-open { opacity: 1; pointer-events: auto; }
.svc-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11,20,16,0.5);
  backdrop-filter: blur(4px);
}
.svc-modal__sheet {
  position: relative; z-index: 1;
  width: 100%; background: white;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 40px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.svc-modal.is-open .svc-modal__sheet { transform: translateY(0); }
.svc-modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.svc-modal__title { font-size: 20px; font-weight: 800; margin: 0 0 4px; }
.svc-modal__sub { font-size: 13px; color: var(--ink-soft); margin: 0 0 20px; }
.svc-modal__options { display: flex; flex-direction: column; gap: 10px; }
.svc-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-weight: 600;
}
.svc-opt:active { background: var(--brand-glass); border-color: var(--brand); }
.svc-opt__price { color: var(--brand); font-weight: 700; }

.drawer__divider { height: 1px; background: var(--border); margin: 8px 0; }
