/* ============================================================
   Спецуборка Сочи — уборка после смерти
   Стили: светлая тема, адаптив, компоненты
   ============================================================ */

:root {
  color-scheme: light;
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, sans-serif;

  /* Фирменная палитра — глубокий сине-зелёный + янтарный акцент */
  --brand: #114a97;
  --brand-2: #1a5fbf;
  --brand-ink: #0c336e;
  --accent: #0e8fb0;
  --accent-2: #12a6c9;

  /* Светлая тема */
  --bg: #eff4fb;
  --paper: #ffffff;
  --paper-2: #eaf2fb;
  --ink: #0e1c2e;
  --muted: #52637b;
  --line: #dbe7f4;
  --card: #ffffff;
  --card-line: #dbe7f4;
  --shadow: 0 12px 34px rgba(11, 42, 92, .10);
  --shadow-sm: 0 4px 14px rgba(11, 42, 92, .07);
  --amber-bg: #e7f5fa;
  --amber-line: #bfe3ec;

  --radius: 16px;
  --radius-sm: 11px;
  --container: 1200px;
}



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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  transition: background .3s, color .3s;
}

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

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

svg { width: 22px; height: 22px; flex-shrink: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--lg { padding: 15px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06222b; box-shadow: 0 8px 22px rgba(14, 143, 176, .35); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(14, 143, 176, .45); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { transform: translateY(-2px); background: var(--brand-2); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }/* ---------- Topbar ---------- */
.topbar {
  background: var(--brand-ink);
  color: #cfe0f4;
  font-size: .82rem;
}.topbar .container { display: flex; align-items: center; gap: 20px; min-height: 40px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; color: #cfe0f4; text-decoration: none; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent-2); }
.topbar__item:hover { color: #fff; }
.topbar__spacer { flex: 1; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .container { display: flex; align-items: center; gap: 18px; min-height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand__mark { width: 44px; height: 44px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; display: flex; flex-direction: column; line-height: 1.05; }
.brand__name span { color: var(--accent); }
.brand__sub { font-family: var(--font-body); font-weight: 500; font-size: .68rem; color: var(--muted); letter-spacing: .01em; margin-top: 2px; }

.nav { display: flex; gap: 6px; margin-left: 14px; }
.nav a { text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: .96rem; padding: 9px 13px; border-radius: 9px; transition: background .15s, color .15s; }
.nav a:hover { background: var(--paper-2); color: var(--brand); }
.nav a[aria-current="page"] { color: var(--brand); background: var(--paper-2); }

.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; white-space: nowrap; }
.header__phone svg { width: 19px; height: 19px; color: var(--accent); }
.header__phone:hover { color: var(--brand); }

.max-btn { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; padding: 7px 13px; border-radius: 11px; background: var(--paper-2); border: 1px solid var(--card-line); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .9rem; transition: transform .15s, box-shadow .15s; }
.max-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.max-btn__logo { width: 24px; height: 24px; border-radius: 6px; }

.burger { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--card-line); background: var(--paper-2); color: var(--ink); cursor: pointer; align-items: center; justify-content: center; }

/* ---------- Мобильное меню ---------- */
.mobile-nav { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.mobile-nav[data-open="true"] { visibility: visible; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(6, 20, 22, .5); opacity: 0; transition: opacity .25s; }
.mobile-nav[data-open="true"] .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84vw); background: var(--paper); box-shadow: -14px 0 40px rgba(0,0,0,.2); display: flex; flex-direction: column; gap: 6px; padding: 18px; transform: translateX(100%); transition: transform .28s; }
.mobile-nav[data-open="true"] .mobile-nav__panel { transform: none; }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.mobile-nav__close { background: var(--paper-2); border: none; width: 38px; height: 38px; border-radius: 10px; font-size: 1.1rem; cursor: pointer; color: var(--ink); }
.mobile-nav__panel > a { text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 600; padding: 13px 12px; border-radius: 10px; }
.mobile-nav__panel > a:hover { background: var(--paper-2); }

/* ---------- Секции ---------- */
.section { padding: 66px 0; }
.section--paper { background: var(--paper); }
.section--brand { background: linear-gradient(135deg, var(--brand-ink), var(--brand)); color: #eaf1fb; }
.section--brand .eyebrow { color: var(--accent-2); }
.section--brand h2 { color: #fff; }
.section--brand p { color: #cfe0f4; }

.sec-head { max-width: 780px; margin-bottom: 38px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, transparent); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.sec-head h2 { font-size: clamp(1.55rem, 3.4vw, 2.25rem); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: 54px 0 60px; background:
  radial-gradient(1200px 500px at 80% -10%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 60%),
  var(--bg); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, transparent); padding: 8px 15px; border-radius: 100px; margin-bottom: 20px; }
.hero__badge svg { width: 17px; height: 17px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.15rem); letter-spacing: -.01em; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero__lead { font-size: 1.12rem; color: var(--muted); max-width: 560px; margin-bottom: 26px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero__trust li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-family: var(--font-display); font-size: .98rem; }
.hero__trust svg { width: 20px; height: 20px; color: #26a269; background: color-mix(in srgb, #26a269 15%, transparent); border-radius: 50%; padding: 3px; }

.hero__panel { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px; }
.hero__panel h2 { font-size: 1.15rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.hero__panel h2 svg { width: 22px; height: 22px; color: var(--accent); }
.protocol { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.protocol li { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--line); }
.protocol li:last-child { border-bottom: none; }
.protocol__num { width: 27px; height: 27px; flex-shrink: 0; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }.protocol__k { flex: 1; font-size: .92rem; }
.protocol__v { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--accent); white-space: nowrap; }
.hero__license { display: flex; gap: 10px; margin-top: 18px; padding: 14px; background: var(--paper-2); border-radius: var(--radius-sm); font-size: .82rem; color: var(--muted); }
.hero__license svg { width: 20px; height: 20px; color: var(--brand); }

/* ---------- USP ---------- */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp__item { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); }
.usp__ico { width: 52px; height: 52px; border-radius: 14px; background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; }
.usp__ico svg { width: 26px; height: 26px; }
.usp__item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.usp__item p { color: var(--muted); font-size: .94rem; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .18s, box-shadow .18s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3 { font-size: 1.04rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .93rem; }
.card__ico { width: 46px; height: 46px; border-radius: 12px; background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); display: grid; place-items: center; margin-bottom: 14px; }
.card__ico svg { width: 24px; height: 24px; }
.card--amber { background: var(--amber-bg); border-color: var(--amber-line); }
.card--amber .card__ico { background: color-mix(in srgb, var(--accent) 18%, transparent); color: #0b6e88; }

.case-card { display: flex; gap: 16px; align-items: flex-start; }
.case-card .num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: color-mix(in srgb, var(--brand) 40%, transparent); line-height: 1; }

/* ---------- Feature (2 колонки) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.feature h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.feature ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature ul li, .checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; }
.feature ul li svg, .checklist li svg { width: 20px; height: 20px; color: #26a269; margin-top: 2px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature__media { background: linear-gradient(150deg, var(--brand-ink), var(--brand)); color: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.feature__seal { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--accent-2); background: rgba(255,255,255,.08); padding: 7px 14px; border-radius: 100px; margin-bottom: 18px; }
.feature__seal svg { width: 16px; height: 16px; }
.feature__big { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--accent-2); line-height: 1; margin-bottom: 12px; }
.feature__media p { color: #cfe0f4; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; position: relative; padding-left: 14px; }
.timeline li { position: relative; padding: 0 0 24px 34px; border-left: 2px solid var(--line); }
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline__dot { position: absolute; left: -16px; top: -2px; width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .85rem; display: grid; place-items: center; }.timeline h3 { font-size: 1.02rem; margin-bottom: 4px; }
.timeline p { color: var(--muted); font-size: .92rem; }

/* ---------- Price ---------- */
.pricebox { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.pricebox__head { display: flex; align-items: center; gap: 12px; padding: 18px 24px; background: linear-gradient(135deg, var(--brand-ink), var(--brand)); color: #fff; }
.pricebox__head svg { width: 22px; height: 22px; color: var(--accent-2); }
.pricebox__head h3 { font-size: 1.12rem; color: #fff; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { text-align: left; font-family: var(--font-display); font-size: .84rem; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); padding: 13px 24px; border-bottom: 2px solid var(--line); }
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td { padding: 13px 24px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--paper-2); }
.price-table td:last-child { font-family: var(--font-display); font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-table td.free { color: #26a269; }
.price-note { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; padding: 15px 18px; background: var(--paper-2); border-radius: var(--radius-sm); font-size: .9rem; color: var(--muted); }

/* ---------- Калькулятор ---------- */
.calc { display: grid; grid-template-columns: 1.4fr .9fr; gap: 26px; background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.calc__row { margin-bottom: 22px; }
.calc__row > label { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: 12px; font-size: .96rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; }
.chip span { display: inline-block; padding: 9px 15px; border: 1.5px solid var(--line); border-radius: 100px; font-size: .9rem; font-weight: 600; transition: all .15s; }
.chip input:checked + span { background: var(--brand); border-color: var(--brand); color: #fff; }.calc__range { width: 100%; accent-color: var(--brand); height: 6px; }
.calc__result { background: linear-gradient(150deg, var(--brand-ink), var(--brand)); color: #fff; border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 8px; justify-content: center; text-align: center; }
.calc__result-label { font-size: .88rem; color: #cfe0f4; }
.calc__result-sum { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--accent-2); }
.calc__result small { color: #bcd0ee; font-size: .8rem; }
.calc__result .btn { margin-top: 8px; }
.calc__hint { font-size: .74rem; color: #a9c0e0; }

/* ---------- Reviews ---------- */
.review { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review__stars { color: #12a6c9; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__ava { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.review__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.review__meta { color: var(--muted); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.faq__q svg { width: 20px; height: 20px; color: var(--accent); transition: transform .25s; }
.faq__item[data-open="true"] .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 22px 20px; color: var(--muted); font-size: .96rem; }

/* ---------- Cities ---------- */
.cities { display: flex; flex-wrap: wrap; gap: 10px; }
.cities a { text-decoration: none; padding: 9px 16px; border-radius: 100px; background: var(--card); border: 1px solid var(--card-line); color: var(--ink); font-size: .9rem; font-weight: 600; font-family: var(--font-display); transition: all .15s; }
.cities a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }/* ---------- Prose (SEO текст) ---------- */
.prose { max-width: 900px; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.prose h3 { font-size: 1.2rem; margin: 26px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 22px; color: var(--muted); }
.prose ul li { margin-bottom: 7px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(135deg, var(--brand-ink), var(--brand)); color: #fff; border-radius: var(--radius); padding: 34px 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-strip h2 { color: #fff; margin-bottom: 8px; }
.cta-strip p { color: #cfe0f4; max-width: 560px; }
.cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-card { display: flex; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--card-line); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: transform .15s; }
a.contact-card:hover { transform: translateY(-2px); }
.contact-card__ico { width: 52px; height: 52px; border-radius: 14px; background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.contact-card__ico svg { width: 26px; height: 26px; }
.contact-card h3 { font-size: 1rem; margin-bottom: 3px; }
.contact-card p { color: var(--muted); font-size: .88rem; }
.contact-card .big { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--brand); text-decoration: none; display: block; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px; align-items: start; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--card-line); }
.map-embed { position: relative; overflow: hidden; line-height: 0; }
.map-embed a { position: absolute; color: #eee; font-size: 12px; z-index: 1; }
.map-embed iframe { border: none; display: block; }

/* ---------- Pagehead ---------- */
.pagehead { padding: 40px 0; background:
  radial-gradient(900px 300px at 85% -20%, color-mix(in srgb, var(--brand) 14%, transparent), transparent 60%),
  var(--paper); border-bottom: 1px solid var(--line); }
.pagehead h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 12px; }
.pagehead p { color: var(--muted); max-width: 720px; font-size: 1.05rem; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--brand); text-decoration: none; }
.crumbs span { margin: 0 4px; }

/* ---------- Footer ---------- */
.footer { background: var(--brand-ink); color: #cfe0f4; padding: 54px 0 26px; }.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .brand__name span { color: var(--accent); }
.footer__desc { font-size: .9rem; margin-bottom: 18px; max-width: 320px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: #cfe0f4; text-decoration: none; font-size: .9rem; }
.footer ul a:hover { color: var(--accent-2); }
.footer__contact li { display: flex; align-items: center; gap: 9px; font-size: .88rem; }
.footer__contact svg { width: 16px; height: 16px; color: var(--accent-2); }
.footer__map { border-radius: 12px; overflow: hidden; }
.footer__bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8rem; color: #9fb2c9; }

/* ---------- FAB ---------- */
.fab { position: fixed; right: 20px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06222b; padding: 14px 20px; border-radius: 100px; text-decoration: none; font-family: var(--font-display); font-weight: 800; box-shadow: 0 10px 30px rgba(14,143,176,.5); animation: fabPulse 2.4s infinite; }
.fab svg { width: 24px; height: 24px; }
.fab__label { font-size: .95rem; }
@keyframes fabPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.hide-sm { }

/* ============================================================
   Адаптив
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .usp { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .header__phone .full { display: none; }
  .max-btn__txt { display: none; }
  .burger { display: inline-flex; }
  .hide-sm { display: none !important; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature__media { order: 2; }
  .calc { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .section { padding: 46px 0; }
  .hero { padding: 34px 0 44px; }
  .usp, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .container { padding: 0 16px; }
  .fab__label { display: none; }
  .fab { padding: 15px; }
  .price-table th, .price-table td { padding: 11px 14px; font-size: .88rem; }
  .cta-strip { padding: 26px 22px; }
  .feature__media, .hero__panel, .calc { padding: 22px; }
  .header__phone .full { display: none; }
}

/* Уточнения адаптивности без изменения исходной палитры и компонентов. */
.case-example { grid-template-columns: 1fr 1fr; }
.hero__intro, .hero__panel, .calc__form, .calc__result,
.contact-grid > *, .footer__grid > *, .contact-card > div { min-width: 0; }
.map-embed iframe, .footer__map iframe { width: 100%; max-width: 100%; }
.mobile-nav__panel { overflow-y: auto; overscroll-behavior: contain; }
.pricebox { overflow-x: auto; }
.chip input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
section[id] { scroll-margin-top: 90px; }
html:not(.js) .reveal { opacity: 1; transform: none; }
html:not(.js) .faq__a { max-height: none; }

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 860px) {
  .case-example { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .header .container { gap: 8px; }
  .header__actions { gap: 7px; }
  .brand { gap: 8px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.1rem; }
  .brand__sub { font-size: .65rem; }
  .header .max-btn { padding: 7px; }
  .case-example > div { padding: 24px !important; }
  .contact-card { padding: 16px; gap: 12px; }
  .contact-card__ico { width: 42px; height: 42px; }
  .contact-card .big { font-size: 1.08rem; }
  .calc__result { padding: 22px 16px; }
  .calc__result-sum { font-size: 1.8rem; }
  .protocol { font-size: .88rem; }
  .protocol li { gap: 7px; }
  .hero__cta .btn { padding-left: 16px; padding-right: 16px; }
  .price-table th, .price-table td { padding: 11px 9px; }
}
@media (max-width: 380px) {
  .header__phone { display: none; }
  .hero__badge { font-size: .8rem; }
  .cta-strip__actions .btn { padding-left: 16px; padding-right: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
