/* HVAC All Seasons — production styles
   Industry palette: Navy + Orange — matches Carrier, Trane, Lennox brand language.
   Navy = professional trust; Orange = heat, urgency, energy. */

:root {
  --bg: #F3F6FB;
  --surface: #FFFFFF;
  --surface-soft: #EEF3FB;
  --surface-warm: #FFF6EF;
  --ink: #0A1628;
  --ink-2: #1C2E4A;
  --muted: #5B6B7E;
  --line: #E2E8F3;
  --line-strong: #CDD6E8;

  /* Navy + Orange — HVAC industry standard */
  --brand: #1A3C6E;
  --brand-deep: #0F2447;
  --brand-tint: #E8EFFA;
  --accent: #F06A00;
  --accent-deep: #C25200;
  --accent-tint: #FFF0E4;

  --success: #15A34A;
  --rating: #F4B400;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 27, 43, 0.06), 0 1px 0 rgba(11, 27, 43, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(11, 27, 43, 0.18), 0 2px 6px rgba(11, 27, 43, 0.06);
  --shadow-lg: 0 28px 60px -22px rgba(11, 27, 43, 0.28), 0 8px 18px -8px rgba(11, 27, 43, 0.12);

  --container: 1240px;
  --container-tight: 1080px;
  --gap: 24px;

  --font-display: "Barlow", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-num: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ───────── Layout helpers ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container-tight { max-width: var(--container-tight); }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-tint);
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 20%, transparent);
  animation: pulseDot 2.2s ease-in-out infinite;
  will-change: box-shadow;
}
.eyebrow.warm { color: var(--accent-deep); background: var(--accent-tint); border-color: color-mix(in srgb, var(--accent) 22%, transparent); }
.eyebrow.warm .dot { background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 20%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--brand) 0%, transparent); }
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--ink); margin: 0; line-height: 1.05; }
h1 { font-size: clamp(40px, 5.6vw, 72px); }
h2 { font-size: clamp(32px, 3.8vw, 48px); line-height: 1.08; }
h3 { font-size: 22px; line-height: 1.25; letter-spacing: -0.005em; }
h4 { font-size: 17px; line-height: 1.3; letter-spacing: -0.01em; }
p { margin: 0; }

.lede { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 620px; }
.muted { color: var(--muted); }
.tabular { font-variant-numeric: tabular-nums; }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--accent) 60%, transparent);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 14px 32px -10px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-secondary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--brand) 60%, transparent);
}
.btn-secondary:hover { background: var(--brand-deep); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-link {
  background: transparent;
  color: var(--brand-deep);
  height: auto;
  padding: 0;
  border-radius: 0;
}
.btn-link:hover { color: var(--accent-deep); }
.btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 60px; padding: 0 30px; font-size: 16px; }
.btn .arrow { transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ───────── Cards ───────── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.card-pad { padding: 28px; }

/* ───────── Form fields ───────── */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.input, .select, .textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 18%, transparent);
}
.textarea { height: auto; padding: 12px 14px; min-height: 96px; resize: vertical; line-height: 1.5; }
.input.error, .select.error { border-color: #DC2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12); }
.field-hint { font-size: 12px; color: var(--muted); }
.field-error { font-size: 12px; color: #DC2626; }

/* ───────── Header ───────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
}
/* ── Trust bar (second row inside sticky header) ── */
.trust-bar {
  background: var(--brand-tint);
  border-top: 1px solid var(--line);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 36px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  white-space: nowrap;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 13px; color: var(--accent); }

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.site-logo .mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.site-logo .mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35) 0%, transparent 55%);
}
.site-logo .mark svg,
.site-logo .mark img { position: relative; z-index: 1; }
.site-logo small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.04em; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 120ms ease;
}
.site-nav a:hover { color: var(--brand); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 8px;
  background: var(--surface-warm);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: var(--radius-pill);
  transition: transform 150ms ease, box-shadow 200ms ease;
}
.header-phone:hover { transform: translateY(-1px); box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--accent) 38%, transparent); }
.header-phone .phone-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #fff;
  animation: phoneRing 3s ease-in-out infinite;
  will-change: transform;
}
@keyframes phoneRing {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-10deg); }
  94% { transform: rotate(8deg); }
  96% { transform: rotate(-6deg); }
  98% { transform: rotate(4deg); }
}
.header-phone .phone-meta { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone .phone-meta small { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep); }
.header-phone .phone-meta b { font-family: var(--font-display); font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  padding: 56px 0 88px;
  overflow: hidden;
  /* Фон прямо на элементе — работает на всех брейкпоинтах без z-index трюков */
  background:
    radial-gradient(60% 70% at 80% 0%, color-mix(in srgb, var(--brand) 18%, transparent) 0%, transparent 60%),
    radial-gradient(40% 50% at 0% 100%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 65%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
/* Лёгкий декоративный grid — без mask-image и z-index трюков */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,27,43,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,27,43,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  pointer-events: none;
  opacity: 0.5;
}
/* ::after удалён — mask-image нагружал GPU */

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 48px 0 64px; }
  .hero-sub { max-width: 100%; font-size: 18px; }
}

.hero-headline {
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.015em;
}
.hero-headline--long {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800;
}
.hero-headline .accent {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  white-space: nowrap;
}
.hero-headline .accent::after {
  display: none;
}

.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 560px;
}

.hero-bullets {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 24px;
  justify-content: start;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-2);
}
.hero-bullets li .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--success) 18%, transparent);
  color: var(--success);
  display: grid;
  place-items: center;
  flex: none;
}

.hero-cta-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-2);
}
.trust-item b { font-family: var(--font-display); font-size: 22px; color: var(--ink); letter-spacing: -0.02em; display: block; line-height: 1; }
.trust-item small { display: block; font-size: 12px; color: var(--muted); line-height: 1.3; }
.trust-item .stars { display: flex; gap: 1px; color: var(--rating); }
.trust-mobile-only { display: none; }

/* County badges — geo-trust row */
.hero-counties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.county-badge {
  background: var(--brand-tint);
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Hero lead card (right side) */
.lead-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  /* Цветное гало через box-shadow — без filter:blur (экономим GPU) */
  box-shadow: var(--shadow-lg),
    0 0 0 6px color-mix(in srgb, var(--brand) 6%, transparent),
    0 12px 40px -12px color-mix(in srgb, var(--brand) 18%, transparent);
}
.lead-card .urgency {
  position: absolute;
  top: -14px; left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 18px -8px color-mix(in srgb, var(--accent) 60%, transparent);
  white-space: nowrap;
}
.lead-card h3 { font-size: 24px; }
.lead-card .lead-sub { margin-top: 6px; color: var(--muted); font-size: 14px; }
.lead-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lead-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form .btn-primary { height: 56px; font-size: 16px; }
.lead-card .lead-foot {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

/* ── Dark Navy Hero variant ── */
.hero--dark {
  background: var(--brand-deep);
}
.hero--dark::before {
  background:
    radial-gradient(55% 65% at 80% -5%,  color-mix(in srgb, var(--accent) 28%, transparent) 0%, transparent 58%),
    radial-gradient(50% 60% at 10% 110%, color-mix(in srgb, var(--brand) 55%, transparent) 0%, transparent 65%),
    linear-gradient(160deg, #0F2447 0%, #071630 100%);
}
.hero--dark::after {
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  opacity: 0.35;
}
.hero--dark .eyebrow {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  border-color: rgba(255,255,255,0.18);
}
.hero--dark .eyebrow .dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 28%, transparent);
}
.hero--dark .hero-headline { color: #fff; }
.hero--dark .hero-headline .accent::after {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
}
.hero--dark .hero-sub { color: rgba(255,255,255,0.68); }
.hero--dark .hero-bullets li { color: rgba(255,255,255,0.82); }
.hero--dark .hero-bullets li .check {
  background: rgba(255,255,255,0.12);
  color: #6ee7a0;
}
.hero--dark .trust-item { color: rgba(255,255,255,0.58); }
.hero--dark .trust-item b { color: #fff; }
.hero--dark .trust-item small { color: rgba(255,255,255,0.50); }
.hero--dark .trust-item .stars { color: var(--rating); }
.hero--dark .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.hero--dark .btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.50);
}
.hero--dark .lead-card::before {
  background: linear-gradient(160deg,
    color-mix(in srgb, var(--accent) 30%, transparent),
    color-mix(in srgb, var(--brand) 40%, transparent));
  opacity: 0.9;
}

/* ───────── Section header ───────── */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.section-head .lede { text-align: center; }
.section-head.left { align-items: flex-start; text-align: left; }
.section-head.left .lede { text-align: left; }

/* ───────── Services ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms ease, box-shadow 250ms ease, border-color 200ms ease;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 25%, var(--line)); }


.service-card .ico-block {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.service-card.warm .ico-block { background: var(--accent-tint); color: var(--accent-deep); }
.service-card .price-badge {
  position: absolute;
  top: 22px; right: 22px;
  padding: 4px 10px;
  background: var(--surface-warm);
  color: var(--accent-deep);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.service-card ul li { display: flex; align-items: center; gap: 8px; }
.service-card ul li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex: none;
}
.service-card .more {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  margin-top: auto;
  padding: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-deep);
  font-family: inherit;
}
.service-card .more:hover { color: var(--accent-deep); }

/* ───────── Why us ───────── */
.why-section { background: var(--surface); }
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.6fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .why-grid { grid-template-columns: 1fr; } }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-card {
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}
.stat-card.warm { background: var(--surface-warm); }
.stat-card b { display: block; font-family: var(--font-display); font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.stat-card .stat-label { margin-top: 8px; font-size: 13px; color: var(--muted); line-height: 1.4; }
.stat-card .stat-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-2); display: flex; align-items: center; gap: 6px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.trust-badge .seal {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand);
  display: grid; place-items: center;
}
.trust-badge.warm .seal { background: var(--accent-tint); color: var(--accent-deep); }

/* ───────── Service area ───────── */
.area-section { background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) { .area-grid { grid-template-columns: 1fr; } }

.area-map {
  position: relative;
  aspect-ratio: 1194 / 1276;
  background: linear-gradient(160deg, var(--brand-tint), #fff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.area-map .map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-map .map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.area-map .attribution-mask {
  position: absolute;
  bottom: 0; right: 0;
  width: 36%; height: 36px;
  background: linear-gradient(to top, rgba(255,255,255,0.85), transparent);
  pointer-events: none;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  margin-top: 22px;
}
@media (max-width: 540px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }
.city-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease;
}
.city-chip:hover { border-color: var(--brand); color: var(--brand-deep); }
.city-chip .pin { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: none; }
.zip-checker {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  max-width: 380px;
  margin-top: 22px;
}
.zip-checker .input {
  border: 0;
  height: 44px;
  padding: 0 18px;
}
.zip-checker .input:focus { box-shadow: none; }
.zip-result {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 18px;
}
.zip-result.ok { color: var(--success); font-weight: 600; }
.zip-result.warn { color: var(--accent-deep); font-weight: 600; }

/* ───────── Reviews ───────── */
.reviews-section { background: var(--surface); }
.reviews-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  background: var(--surface-warm);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: var(--radius-pill);
}
.reviews-summary .score { font-family: var(--font-display); font-size: 36px; line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.reviews-summary .meta { display: flex; flex-direction: column; gap: 2px; }
.reviews-summary .stars { color: var(--rating); display: flex; gap: 2px; }
.reviews-summary small { font-size: 12px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.review-card .quote-mark {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--brand-tint);
  line-height: 0.6;
}
.review-card .stars { color: var(--rating); display: flex; gap: 2px; }
.review-card .review-body { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }
.review-card .review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.review-card .review-author .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.review-card .review-author .meta b { display: block; font-size: 14px; color: var(--ink); }
.review-card .review-author .meta small { font-size: 12px; color: var(--muted); }
.review-card .verified { margin-left: auto; font-size: 11px; color: var(--success); display: flex; align-items: center; gap: 4px; font-weight: 600; }

/* ───────── Promo banner ───────── */
.promo-section { padding: 48px 0; }
.promo-banner {
  position: relative;
  background: linear-gradient(120deg, var(--brand-deep) 0%, var(--brand) 65%, color-mix(in srgb, var(--brand) 60%, var(--accent)) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo-banner::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 320px; height: 320px;
  background: var(--accent);
  border-radius: 50%;
  /* filter:blur убран — GPU drain; снижаем opacity для мягкости */
  opacity: 0.12;
}
.promo-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 30%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 30%, #000 100%);
}
.promo-banner > * { position: relative; }
.promo-banner h2 { color: #fff; }
.promo-banner h2 span { color: #FFD9BA; }
.promo-banner p { color: rgba(255,255,255,0.85); font-size: 16px; }
.promo-coupons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.coupon {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 16px 24px 16px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.coupon::before, .coupon::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  top: 50%;
  transform: translateY(-50%);
}
.coupon::before { left: -7px; }
.coupon::after { right: -7px; background: var(--brand); }
.coupon b { font-family: var(--font-display); font-size: 28px; letter-spacing: -0.025em; color: var(--accent-deep); line-height: 1; flex: none; }
.coupon-text small { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); display: block; }
.coupon-text span { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
@media (max-width: 760px) {
  .promo-banner { grid-template-columns: 1fr; padding: 32px; }
}

/* ───────── About / team ───────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-tint), var(--accent-tint));
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-strip {
  display: flex;
  gap: -8px;
  margin-top: 22px;
}
.team-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  margin-left: -10px;
  font-family: var(--font-display);
}
.team-avatar:first-child { margin-left: 0; }
.team-avatar.more { background: var(--surface-soft); color: var(--brand-deep); font-size: 12px; }

/* ───────── Final CTA ───────── */
.cta-section { padding: 88px 0 96px; background: var(--surface); }
.cta-card {
  position: relative;
  background: linear-gradient(160deg, var(--brand-deep), var(--brand));
  border-radius: var(--radius-lg);
  padding: 56px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 920px) { .cta-card { grid-template-columns: 1fr; padding: 40px; } }
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--accent) 30%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.cta-card > * { position: relative; }
.cta-card h2 { color: #fff; }
.cta-card .lede { color: rgba(255,255,255,0.88); max-width: 100%; }
.cta-form {
  /* backdrop-filter:blur убран — всегда нагружал GPU; заменяем полупрозрачным фоном */
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-form .input, .cta-form .select, .cta-form .textarea {
  background: rgba(255,255,255,0.95);
  border-color: transparent;
  color: var(--ink);
}
.cta-form .input::placeholder { color: var(--muted); }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form .btn-primary { height: 56px; }

.cta-side h3 { color: #fff; font-size: 22px; margin-bottom: 16px; }
.cta-side ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cta-side ul li { display: flex; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.92); align-items: flex-start; }
.cta-side ul li .ico {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.15); color: #fff;
  display: grid; place-items: center; flex: none;
}
.cta-side ul li b { display: block; color: #fff; font-weight: 700; }
.cta-side ul li small { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ───────── Footer ───────── */
.site-footer {
  background: #0B1B2B;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-grid h5 { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: #fff; letter-spacing: 0.08em; margin: 0 0 14px; text-transform: uppercase; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,0.7); }
.footer-grid a:hover { color: #fff; }
.footer-grid .site-logo { color: #fff; }
.footer-grid .site-logo small { color: rgba(255,255,255,0.6); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .license {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
}

/* ───────── Booking modal ───────── */
.modal-scrim {
  position: fixed;
  inset: 0;
  background: rgba(11, 27, 43, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadeIn 200ms ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  animation: pop 250ms cubic-bezier(0.34, 1.4, 0.64, 1);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
@keyframes pop {
  from { transform: scale(0.94) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.modal-head {
  padding: 22px 28px 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.modal-head h3 { font-size: 20px; }
.modal-head .modal-close {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0;
  background: var(--bg);
  color: var(--ink-2);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 150ms ease;
}
.modal-head .modal-close:hover { background: var(--line); }

.steps-rail { display: flex; gap: 6px; padding: 0 28px 16px; }
.steps-rail .step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  transition: background 200ms ease;
}
.steps-rail .step-dot.active { background: var(--brand); }
.steps-rail .step-dot.done { background: var(--success); }

.modal-body {
  padding: 24px 28px 8px;
  overflow-y: auto;
  flex: 1;
}
.modal-foot {
  padding: 18px 28px 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
}
.modal-foot .btn-link { font-size: 14px; }
.modal-foot .btn-primary { margin-left: auto; }
.modal-foot .step-count { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

/* Choice tile (booking) */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.choice-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 150ms ease, background 150ms ease, transform 100ms ease;
}
.choice-tile:hover { border-color: var(--brand); background: var(--brand-tint); }
.choice-tile.selected {
  border-color: var(--brand);
  background: var(--brand-tint);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}
.choice-tile .tile-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--brand-deep);
  display: grid; place-items: center;
}
.choice-tile.selected .tile-icon { background: var(--brand); color: #fff; }
.choice-tile b { font-size: 15px; font-weight: 600; color: var(--ink); }
.choice-tile small { font-size: 12px; color: var(--muted); }
.choice-tile.urgent { border-color: color-mix(in srgb, var(--accent) 35%, transparent); }
.choice-tile.urgent .tile-icon { background: var(--accent-tint); color: var(--accent-deep); }
.choice-tile.urgent.selected { background: var(--accent-tint); border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent); }
.choice-tile.urgent.selected .tile-icon { background: var(--accent); color: #fff; }

/* Time slot grid */
.date-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.date-tile {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: border-color 150ms ease, background 150ms ease;
}
.date-tile:hover { border-color: var(--brand); }
.date-tile.selected { background: var(--brand); border-color: var(--brand); color: #fff; }
.date-tile.selected small { color: rgba(255,255,255,0.8); }
.date-tile small { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.date-tile b { display: block; font-family: var(--font-display); font-size: 22px; line-height: 1.1; letter-spacing: -0.02em; margin: 4px 0 2px; }
.date-tile .dt-day { font-size: 11px; color: var(--muted); }
.date-tile.selected .dt-day { color: rgba(255,255,255,0.8); }
.date-tile.today { position: relative; }
.date-tile.today::after {
  content: "TODAY";
  position: absolute;
  top: -7px; right: -3px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.06em;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 150ms ease, background 150ms ease;
}
.slot small { font-size: 10px; color: var(--success); font-weight: 700; letter-spacing: 0.06em; }
.slot:hover { border-color: var(--brand); }
.slot.selected { background: var(--brand); border-color: var(--brand); color: #fff; }
.slot.selected small { color: rgba(255,255,255,0.85); }
.slot.unavailable { opacity: 0.4; cursor: not-allowed; }

/* Confirmation */
.confirmation {
  text-align: center;
  padding: 24px 4px 12px;
}
.confirmation .check-circle {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--success) 16%, transparent);
  color: var(--success);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  animation: confirmPop 500ms cubic-bezier(0.34, 1.6, 0.64, 1);
}
@keyframes confirmPop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.confirmation h3 { font-size: 26px; margin-bottom: 8px; }
.summary-card {
  margin-top: 20px;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.summary-row:last-child { border-bottom: 0; }
.summary-row span:first-child { color: var(--muted); }
.summary-row b { font-weight: 600; color: var(--ink); }

/* Mini calc */
.calc-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.calc-row label { width: 130px; font-size: 13px; color: var(--ink-2); font-weight: 500; }
.calc-row .range { flex: 1; }
.calc-row .val { font-family: var(--font-num); font-weight: 600; min-width: 70px; text-align: right; color: var(--ink); }
.calc-out {
  margin-top: 14px;
  padding: 14px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.calc-out small { font-size: 12px; color: var(--muted); }
.calc-out b { font-family: var(--font-display); font-size: 30px; letter-spacing: -0.025em; color: var(--accent-deep); }
input[type=range].range {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
}
input[type=range].range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}
input[type=range].range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

/* Mobile nav */
@media (max-width: 880px) {
  .site-nav { display: none; }
  .site-header-inner { gap: 0; justify-content: space-between; }
  .header-phone { padding: 10px 18px 10px 12px; background: var(--accent); border-color: transparent; box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--accent) 60%, transparent); }
  .header-phone .phone-icon { width: 28px; height: 28px; background: rgba(255,255,255,0.22); }
  .header-phone .phone-meta { display: flex; }
  .header-phone .phone-meta small { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0; text-transform: none; white-space: nowrap; }
  .header-phone .phone-meta b { display: none; }
  /* Logo: hide tagline, keep on one line */
  .site-logo { font-size: 16px; }
  .site-logo small { display: none; }
  .site-logo .mark { width: 34px; height: 34px; border-radius: 10px; }
}

/* ── Mobile layout fixes (≤ 480px) ── */
@media (max-width: 480px) {
  /* Trust bar — hide CSLB on tiny screens, use smaller font */
  .trust-bar-inner { height: 30px; }
  .trust-item { font-size: 11px; padding: 0 10px; gap: 4px; }
  .trust-item:nth-child(4) { display: none; } /* hide CSLB */

  /* Section spacing */
  .section { padding: 48px 0; }
  .section-tight { padding: 36px 0; }
  .cta-section { padding: 48px 0; }

  /* Hero padding */
  .hero { padding: 32px 0 48px; }

  /* Hero headline — allow wrap, reduce font on small screen */
  .hero-headline .accent { white-space: normal; }
  .hero-headline--long { font-size: 28px; }
  .hero-headline { font-size: 34px; }

  /* CTA buttons — full width */
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  /* Hero subheading */
  .hero-sub { font-size: 16px; }

  /* Form rows — single column */
  .lead-form-row,
  .cta-form-row { grid-template-columns: 1fr; }

  /* Container padding */
  .container { padding: 0 20px; }

  /* Trust strip — hidden on mobile (county badges replace it) */
  .hero-trust { display: none; }
  .trust-mobile-only { display: none; }
  .trust-item { gap: 8px; }
  .trust-item b { font-size: 20px; }

  /* Lead card padding */
  .lead-card { padding: 20px; }
  .lead-card .urgency { left: 16px; }

  /* Why Us — trust badges 2-col grid, buttons full width */
  .trust-badges { display: grid; grid-template-columns: 1fr 1fr; }
  .trust-badge:first-child { grid-column: 1 / -1; }
  .why-btns { flex-direction: column; align-items: stretch; }
  .why-btns .btn { width: 100%; justify-content: center; }

  /* Final CTA — reduce card padding, remove form background */
  .cta-card { padding: 28px 20px; }
  .cta-form { background: none; border: none; backdrop-filter: none; padding: 0; gap: 10px; }

  /* Promo — CTA buttons full width */
  .promo-banner .btn { width: 100%; justify-content: center; }

  /* Calculator card — remove aspect-ratio lock, reduce padding */
  .about-visual { aspect-ratio: auto; }
  .about-visual > div { position: relative !important; padding: 16px !important; }

  /* Calculator — label + value on top row, slider full width below */
  .calc-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 4px 8px;
    margin-bottom: 14px;
  }
  .calc-row label { width: auto; grid-column: 1; grid-row: 1; }
  .calc-row .val { grid-column: 2; grid-row: 1; min-width: auto; }
  .calc-row .range { grid-column: 1 / -1; grid-row: 2; width: 100%; }

}

/* ── Tablet layout — hero + page (≤768px) ── */
@media (max-width: 768px) {
  /* Hero */
  .hero { padding: 36px 0 48px; }
  .hero-headline--long { font-size: 34px; }
  .hero-headline        { font-size: 38px; }
  .hero-sub             { font-size: 17px; }
  .hero-cta-row         { flex-direction: column; gap: 10px; }
  .hero-cta-row .btn    { width: 100%; justify-content: center; }
  .hero-bullets         { display: none; }
  .hero-trust           { display: none; }

  /* Phone CTA — первая и оранжевая на mobile */
  .hero-cta-row .btn-ghost {
    order: -1;
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .hero-cta-row .btn-ghost:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
  }
  .lead-card            { max-width: 500px; margin: 0 auto; }
  .lead-form-row        { grid-template-columns: 1fr; }

  /* Sections: уменьшаем вертикальный padding */
  .section       { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}

/* Booking modal — compact on tablets & phones (≤768px) */
@media (max-width: 768px) {
  .modal-scrim { padding: 16px; }
  .modal-head { padding: 16px 20px 12px; }
  .modal-body { padding: 16px 20px; }
  .modal-foot { padding: 12px 20px 16px; }

  /* Choice grid — 1 column (was 2) */
  .choice-grid { grid-template-columns: 1fr; gap: 8px; }
  .choice-tile { padding: 12px 14px; flex-direction: row; align-items: center; gap: 12px; text-align: left; }
  .choice-tile .tile-icon { flex: none; }
}

/* Floating call button (mobile) */
.floating-call {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 40;
  display: none;
}
.floating-call .btn {
  height: 56px;
  border-radius: 999px;
  padding: 0 22px 0 18px;
  box-shadow: 0 18px 30px -10px color-mix(in srgb, var(--accent) 70%, transparent);
}
/* floating-call disabled — phone CTA moved to header */
