/* CleanWhale.pl — «Верните квартиру. Не кауцию.»
   Канон: design/DESIGN.md (futura-pt, плоский #2457c6, ореолы, радиусы clamp/6/999). */

:root {
  --cw99-blue: #2457c6;
  --cw99-blue-hover: #1c47a6;
  --cw99-yellow: #ffc73b;
  --cw99-green: #59b78b;
  --cw99-green-dark: #1f7a57;
  --cw99-card: #fafafa;
  --cw99-line: #e9e9e9;
  --cw99-dark: #242424;
  --cw99-muted: #5b6472;
  --chip-bg: #eef2fc;
  --r: clamp(10px, 1.05vw, 16px);
  --r-lg: clamp(14px, 1.5vw, 20px);
  --gutter: 3.6vw;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: futura-pt, "Futura", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  background: #fff;
}

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

.kc-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.kc-i { width: 20px; height: 20px; display: block; flex-shrink: 0; }

.kc-visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

:focus-visible { outline: 2px solid var(--cw99-blue); outline-offset: 2px; }

/* ---------- Хедер — настоящий cleanwhale.pl ---------- */

.kc-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cw99-blue);
}

.kc-header__bar {
  display: flex; align-items: center; gap: 1.3vw;
  padding: 10px var(--gutter);
}

.kc-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.kc-logo img { height: 48px; }

/* Дропдауны на details */
.kc-dd { position: relative; }
.kc-dd summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; font-size: 15px; font-weight: 500; white-space: nowrap;
}
.kc-dd summary::-webkit-details-marker { display: none; }
.kc-dd summary img { width: 20px; height: 20px; }
.kc-dd summary .kc-i { width: 14px; height: 14px; color: #fff; opacity: 0.8; transition: transform 0.15s ease; }
.kc-dd[open] > summary .kc-i { transform: rotate(180deg); }

.kc-dd__panel {
  position: absolute; top: calc(100% + 12px); left: 0; z-index: 60;
  background: #fff; border-radius: var(--r);
  box-shadow: 0 0 max(14px, 1.2vw) rgba(0, 0, 0, 0.18);
  padding: 12px;
}
.kc-dd__panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 6px;
  color: #000; font-size: 14.5px; font-weight: 500; white-space: nowrap;
}
.kc-dd__panel a:hover { background: var(--chip-bg); color: var(--cw99-blue); }
.kc-dd__panel a img { width: 20px; height: 20px; }

.kc-dd__panel--cities { columns: 2; column-gap: 8px; min-width: 300px; }
.kc-dd__panel--cities a { break-inside: avoid; display: block; }

.kc-dd__panel--more { min-width: 300px; }
.kc-dd__all { color: var(--cw99-blue) !important; font-weight: 700 !important; margin-top: 4px; }
.kc-dd__all .kc-i { width: 16px; height: 16px; }

/* Мессенджеры */
.kc-header__msgrs { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.kc-header__msgrs img { width: 20px; height: 20px; }
.kc-header__msgrs a { opacity: 0.9; }
.kc-header__msgrs a:hover { opacity: 1; }

/* Сервисные табы */
.kc-tabs { display: flex; align-items: center; gap: 5px; margin: 0 auto; }
.kc-tab {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: #000;
  padding: 10px 13px; border-radius: 6px;
  font-size: 14.5px; font-weight: 500; white-space: nowrap;
  cursor: pointer;
}
.kc-tab:hover { color: var(--cw99-blue); }
.kc-tab img { width: 21px; height: 21px; }
.kc-dd--more summary.kc-tab { color: #000; }
.kc-dd--more summary.kc-tab:hover { color: var(--cw99-blue); }
.kc-dd--more summary.kc-tab .kc-i { color: #000; opacity: 0.6; }

/* Подарок с жёлтым тултипом */
.kc-gift { position: relative; flex-shrink: 0; display: inline-flex; }
.kc-gift > img { width: 30px; height: 30px; }
.kc-gift__tip {
  position: absolute; top: calc(100% + 12px); right: -12px;
  background: var(--cw99-yellow); color: #000;
  font-size: 12.5px; font-weight: 500; white-space: nowrap;
  padding: 6px 10px; border-radius: 6px;
}

/* Konto osobiste */
.kc-account {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, 0.18);
  padding: 10px 16px; border-radius: 6px;
  color: #fff; font-size: 15px; font-weight: 500; white-space: nowrap;
  flex-shrink: 0;
}
.kc-account:hover { background: rgba(255, 255, 255, 0.28); }
.kc-account img { width: 19px; height: 19px; }

/* ---------- Hero ---------- */

.kc-hero {
  display: grid;
  grid-template-columns: 43fr 52fr;
  column-gap: 3.4vw;
  align-items: start;
  padding: 2.4vw var(--gutter) 2.6vw;
}

.kc-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--chip-bg); color: var(--cw99-blue);
  font-size: 14.5px; font-weight: 500;
}
.kc-badge .kc-i { width: 17px; height: 17px; }

.kc-h1 {
  margin: 1.2vw 0 1.3vw;
  font-family: Montserrat, futura-pt, sans-serif;
  font-size: clamp(30px, 3.7vw, 58px);
  font-weight: 900;
  line-height: 1.08;
}

.kc-h1__accent { position: relative; display: inline-block; }
.kc-h1__swoosh {
  position: absolute; left: 0; right: 0; bottom: -0.16em;
  width: 100%; height: 0.2em;
  color: var(--cw99-blue);
}

.kc-lead {
  font-size: clamp(15px, 1.17vw, 18px);
  line-height: 1.5;
  opacity: 0.75;
}

/* Карточка-основа */
.kc-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: 0 0 max(12px, 1.1vw) rgba(0, 0, 0, 0.1);
}

/* Форма-чат */
.kc-form { margin-top: 1.7vw; padding: clamp(16px, 1.6vw, 26px); }

.kc-form__head { display: flex; align-items: center; gap: 13px; }
.kc-form__bubble { color: var(--cw99-blue); }
.kc-form__bubble .kc-i { width: 40px; height: 40px; }
.kc-form__title { font-size: 18px; font-weight: 700; }
.kc-form__sub { font-size: 14.5px; opacity: 0.6; }

.kc-form__text {
  width: 100%; margin-top: 15px;
  min-height: 96px; resize: none;
  padding: 14px 16px;
  background: var(--cw99-card);
  border: 1px solid var(--cw99-line);
  border-radius: 6px;
  font-size: 15.5px; line-height: 1.45;
}
.kc-form__text::placeholder { color: rgba(0, 0, 0, 0.45); }
.kc-form__text:focus { outline: none; border-color: var(--cw99-blue); }

.kc-form__chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.kc-form__chips li {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--chip-bg); color: var(--cw99-blue);
  font-size: 13.5px; font-weight: 500;
  max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

.kc-form__phonerow { margin-top: 14px; }
.kc-form__phonerow label { display: block; font-size: 14.5px; font-weight: 500; margin-bottom: 7px; }
.kc-form__phonerow input {
  width: 100%; padding: 13px 16px;
  background: #fff; border: 1px solid var(--cw99-line); border-radius: 6px;
  font-size: 15.5px;
}
.kc-form__phonerow input:focus { outline: none; border-color: var(--cw99-blue); }

.kc-form__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-top: 17px;
}

.kc-attach {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 15.5px; font-weight: 500; cursor: pointer;
}
.kc-attach__circle {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px var(--cw99-line);
}
.kc-attach__circle .kc-i { width: 17px; height: 17px; }
.kc-attach:hover .kc-attach__circle { box-shadow: inset 0 0 0 1px var(--cw99-blue); color: var(--cw99-blue); }

.kc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  background: var(--cw99-blue); color: #fff;
  border: 0; border-radius: 6px;
  font-size: 16px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
}
.kc-btn:hover { background: var(--cw99-blue-hover); }
.kc-btn .kc-i { width: 18px; height: 18px; }
.kc-btn[disabled] { opacity: 0.6; cursor: default; }

.kc-okmark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cw99-green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kc-okmark .kc-i { width: 13px; height: 13px; }

.kc-form__done { display: flex; align-items: center; gap: 10px; margin-top: 15px; font-size: 15px; font-weight: 500; }
.kc-form__error { color: #e4410d; font-size: 14px; margin-top: 10px; }

/* hidden обязан побеждать display:flex у контейнеров формы */
[hidden] { display: none !important; }

/* Результат мгновенного расчёта */
.kc-form__result { margin-top: 16px; }
.kc-est div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 10px 0;
}
.kc-est div + div { border-top: 1px solid var(--cw99-line); }
.kc-est dt { font-size: 14.5px; opacity: 0.7; }
.kc-est dd { font-size: 15px; font-weight: 700; text-align: right; white-space: nowrap; }
.kc-est__total dt { font-size: 15.5px; opacity: 1; font-weight: 700; }
.kc-est__total dd { font-size: 21px; color: var(--cw99-blue); }
.kc-est__note { margin-top: 6px; font-size: 13px; line-height: 1.45; opacity: 0.6; }
.kc-est__book { margin-top: 14px; }
.kc-est__booktitle { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.kc-est__book input, .kc-est__book select {
  width: 100%; min-width: 0; padding: 12px 14px;
  background: #fff; border: 1px solid var(--cw99-line); border-radius: 6px;
  font-size: 15px; color: #000;
}
.kc-est__book select { appearance: none; -webkit-appearance: none; background-image: none; }
.kc-est__book input:focus, .kc-est__book select:focus { outline: none; border-color: var(--cw99-blue); }
.kc-est__book input.is-bad, .kc-est__book select.is-bad { border-color: #e4410d; }
.kc-est__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.kc-est__cbrow { display: flex; gap: 10px; }
.kc-est__cbrow input { flex: 1; }
.kc-est__cbrow .kc-btn { flex-shrink: 0; }

/* Способы оплаты — те же чипы, что чипы формы */
.kc-est__pay { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.kc-est__pay label { position: relative; }
.kc-est__pay input { position: absolute; opacity: 0; pointer-events: none; }
.kc-est__pay span {
  display: inline-block; padding: 9px 15px; border-radius: 999px;
  font-size: 14.5px; cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--cw99-line);
}
.kc-est__pay input:checked + span { background: var(--chip-bg); color: var(--cw99-blue); box-shadow: none; }
.kc-est__pay input:focus-visible + span { outline: 2px solid var(--cw99-blue); outline-offset: 2px; }

.kc-est__consent { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; line-height: 1.4; margin-bottom: 12px; color: var(--cw99-muted); }
.kc-est__consent input { width: 17px; height: 17px; margin-top: 1px; flex-shrink: 0; padding: 0; }
.kc-est__consent a { color: var(--cw99-blue); font-weight: 500; }

.kc-est__challenge { margin: 12px 0; min-height: 66px; }
.kc-est__code { margin-top: 14px; }
.kc-est__code input { letter-spacing: normal; font-size: 18px; font-weight: 700; }

.kc-featlist {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 1.2vw 2vw;
  margin-top: 1.5vw;
}
.kc-featlist li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; opacity: 0.62; }
.kc-featlist .kc-i { width: 18px; height: 18px; }

/* На 1026–1440 три чипа обязаны стоять одной строкой */
@media (min-width: 1026px) and (max-width: 1440px) {
  .kc-featlist { gap: 1vw 1.3vw; }
  .kc-featlist li { font-size: 13.5px; }
}

.kc-featlist--stack { flex-direction: column; gap: 12px; margin: 1.4vw 0 1.8vw; }
.kc-featlist--stack li { font-size: 15.5px; opacity: 0.75; }

/* ---------- Ролики реальных работ ---------- */

.kc-reels__label {
  display: inline-block;
  padding: 7px 14px; border-radius: 999px;
  background: var(--chip-bg); color: var(--cw99-blue);
  font-size: 13.5px; font-weight: 500;
  margin-bottom: 14px;
}

.kc-reels__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.1vw;
}

.kc-reel { min-width: 0; margin: 0; }

.kc-reel__play {
  position: relative; display: block; width: 100%;
  aspect-ratio: 9 / 16;
  padding: 0; border: 0; cursor: pointer;
  border-radius: var(--r); overflow: hidden;
  background: var(--cw99-card);
  box-shadow: 0 0 max(9px, 1vw) rgba(0, 0, 0, 0.12);
}
.kc-reel__play img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kc-reel__btn {
  position: absolute; inset: 0; margin: auto;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; color: var(--cw99-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
}
.kc-reel__btn .kc-i { width: 20px; height: 20px; margin-left: 3px; }
.kc-reel__play:hover .kc-reel__btn { color: var(--cw99-blue); }

.kc-reel__video {
  width: 100%; aspect-ratio: 9 / 16; display: block;
  border-radius: var(--r); background: #000;
  box-shadow: 0 0 max(9px, 1vw) rgba(0, 0, 0, 0.12);
}

.kc-reel figcaption { margin-top: 10px; }
.kc-reel figcaption b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.25; }
.kc-reel figcaption span { display: block; margin-top: 3px; font-size: 13px; line-height: 1.3; opacity: 0.6; }

/* kc-case__ok и kc-okmark живут в форме и карточке цен */
.kc-case__ok {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500;
}

/* ---------- Типографика секций ---------- */

.kc-h2 { font-size: clamp(22px, 1.95vw, 36px); font-weight: 700; }
.kc-h2--center {
  text-align: center;
  font-family: Montserrat, futura-pt, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.4vw, 42px);
}
.kc-sub { margin-top: 0.7vw; font-size: clamp(15px, 1.1vw, 17px); opacity: 0.7; line-height: 1.5; }
.kc-sub--center { text-align: center; }
.kc-icon { width: 76px; height: 76px; object-fit: contain; }

/* ---------- Шаги ---------- */

.kc-steps { padding: 3.4vw var(--gutter) 1.4vw; }

.kc-steps__row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5vw;
  margin-top: 2.2vw;
}

.kc-step { text-align: center; }
.kc-step .kc-icon { margin: 0 auto 16px; }
.kc-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 7px; }
.kc-step p { font-size: 15px; line-height: 1.45; opacity: 0.6; }

/* ---------- Полоса цифр ---------- */

.kc-stats { padding: 2.2vw var(--gutter) 3vw; }

.kc-stats__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
  text-align: center;
}

.kc-stats__pre { font-size: 14px; opacity: 0.6; }
.kc-stats__num {
  font-family: Montserrat, futura-pt, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 2.5vw, 42px);
  line-height: 1.15;
  margin: 2px 0 6px;
}
.kc-stats__label { font-size: 14px; line-height: 1.4; opacity: 0.6; }

/* ---------- Услуги ---------- */

.kc-services { padding: 3vw var(--gutter) 3.4vw; }

.kc-services__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5vw; margin-top: 2.4vw;
}

.kc-service { text-align: center; }
.kc-service .kc-icon { margin: 0 auto 16px; }
.kc-service h3 { font-size: 17px; font-weight: 700; margin-bottom: 7px; }
.kc-service p { font-size: 14.5px; line-height: 1.45; opacity: 0.6; }

/* ---------- Цены ---------- */

.kc-pricing {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3vw; align-items: start;
  padding: 3.2vw var(--gutter);
}

.kc-pricing__example { padding: clamp(18px, 1.8vw, 28px); }

.kc-pricing__label {
  display: inline-block;
  padding: 7px 14px; border-radius: 999px;
  background: var(--chip-bg); color: var(--cw99-blue);
  font-size: 13.5px; font-weight: 500;
  margin-bottom: 12px;
}

.kc-pricing__rows div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 11px 0;
}
.kc-pricing__rows div + div { border-top: 1px solid var(--cw99-line); }
.kc-pricing__rows dt { font-size: 15px; opacity: 0.6; }
.kc-pricing__rows dd {
  font-size: 15px; font-weight: 700; white-space: nowrap;
  background: var(--cw99-yellow); color: #000;
  padding: 4px 12px; border-radius: 6px;
}

.kc-pricing__factors { list-style: none; }
.kc-pricing__factors li {
  display: flex; align-items: center; gap: 13px;
  padding: 12px 0;
  font-size: 15.5px; font-weight: 500;
}
.kc-pricing__factors li + li { border-top: 1px solid var(--cw99-line); }
.kc-pricing__factors li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cw99-blue); flex-shrink: 0;
}

.kc-pricing__example .kc-case__ok { border-top: 1px solid var(--cw99-line); padding: 14px 0 0; margin-top: 4px; }

/* ---------- FAQ ---------- */

.kc-faq { padding: 0 var(--gutter) 3.2vw; }

.kc-faq__list { display: grid; gap: 12px; margin-top: 1.6vw; }

.kc-faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 17px 22px;
  font-size: 16.5px; font-weight: 700;
  cursor: pointer; list-style: none;
}
.kc-faq__item summary::-webkit-details-marker { display: none; }
.kc-faq__item summary .kc-i { width: 18px; height: 18px; opacity: 0.5; transition: transform 0.18s ease; }
.kc-faq__item[open] summary .kc-i { transform: rotate(180deg); }
.kc-faq__item p { padding: 0 22px 17px; font-size: 15px; line-height: 1.5; opacity: 0.7; }

/* ---------- Контакты ---------- */

.kc-contact { padding: 0 var(--gutter) 3.4vw; }

.kc-contact__card {
  display: flex; align-items: center; justify-content: space-between; gap: 2vw;
  padding: clamp(20px, 2.2vw, 36px);
}

.kc-contact__phone {
  display: inline-flex; align-items: center; gap: 13px;
  margin-top: 1.2vw;
  font-size: clamp(21px, 1.9vw, 28px); font-weight: 700;
}
.kc-contact__phone .kc-i { width: 24px; height: 24px; color: var(--cw99-blue); }
.kc-contact__phone:hover { color: var(--cw99-blue); }

.kc-contact__city { margin-top: 6px; font-size: 14.5px; opacity: 0.6; }

/* ---------- Футер (копия тёмного футера cleanwhale.pl) ---------- */

.kc-footer { background: var(--cw99-dark); color: #fff; padding: 3.4vw var(--gutter) 2vw; }

.kc-footer__top {
  display: grid;
  grid-template-columns: 190px 1fr 1.9fr 0.8fr;
  gap: 3vw;
  align-items: start;
}

.kc-footer__whalemark { width: 94px; height: 40px; display: block; }

.kc-footer__title {
  font-size: 15px; font-weight: 700; color: #fff;
  padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.kc-footer__col a { display: block; color: #cfcfcf; font-size: 13.5px; margin-bottom: 12px; }
.kc-footer__col a:hover { color: #fff; }

.kc-footer__two { column-count: 2; column-gap: 2.4vw; }
.kc-footer__all { display: inline-block; margin-top: 6px; color: #fff !important; font-weight: 500; }

.kc-footer__cities { margin-top: 2.6vw; font-size: 13px; line-height: 1.7; color: #8d8d8d; }
.kc-footer__cities a { color: #8d8d8d; }
.kc-footer__cities a:hover { color: #fff; }

.kc-footer__addr {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2vw; flex-wrap: wrap;
  margin-top: 1.8vw;
}
.kc-footer__addr-left { display: flex; align-items: center; gap: 2.6vw; flex-wrap: wrap; }
.kc-footer__addr-left a { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; }
.kc-footer__addr-left img { width: 16px; height: 16px; }
.kc-footer__addr-left a:hover { color: #cfcfcf; }

.kc-footer__legal { display: flex; gap: 10px; flex-wrap: wrap; }
.kc-footer__legal a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 13px; color: #fff;
}
.kc-footer__legal a:hover { background: rgba(255, 255, 255, 0.08); }

.kc-footer__bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2vw; flex-wrap: wrap;
  margin-top: 2vw;
}
.kc-footer__bottom p { font-size: 12px; line-height: 1.6; color: #8d8d8d; }
.kc-footer__pay { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.kc-footer__pay img { height: 22px; width: auto; max-width: 100%; }

/* ---------- Планшет 761–1025 ---------- */

@media (max-width: 1280px) {
  .kc-tabs, .kc-gift { display: none; }
}

@media (max-width: 1025px) {
  .kc-header__bar { justify-content: space-between; }

  .kc-hero { grid-template-columns: 1fr; row-gap: 26px; }

  .kc-services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .kc-pricing { grid-template-columns: 1fr; gap: 24px; }

  .kc-stats__row { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }

  .kc-footer__top { grid-template-columns: 1fr 1fr; }
  .kc-footer__whale { grid-column: 1 / -1; }
}

/* ---------- Мобильный ≤760 ---------- */

@media (max-width: 760px) {
  :root { --gutter: 5vw; }

  html { scroll-padding-top: 80px; }

  .kc-header__bar { padding: 9px var(--gutter); gap: 12px; justify-content: space-between; }
  .kc-logo img { height: 38px; }
  .kc-account span { display: none; }
  .kc-account { padding: 10px 12px; }
  .kc-dd--city { display: none; }

  .kc-hero { padding-top: 22px; row-gap: 22px; }
  .kc-h1 { margin: 14px 0 12px; }
  .kc-lead br { display: none; }

  .kc-form { margin-top: 20px; }
  .kc-form__row { flex-direction: column; align-items: stretch; gap: 12px; }
  .kc-attach { justify-content: center; min-height: 44px; }
  .kc-btn { width: 100%; min-height: 48px; }

  .kc-featlist { gap: 10px 18px; margin-top: 16px; }

  .kc-reels__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .kc-reels__label { margin-bottom: 12px; }

  .kc-steps { padding: 34px var(--gutter) 8px; }
  .kc-steps__row { grid-template-columns: 1fr; gap: 26px; margin-top: 20px; }

  .kc-stats { padding: 22px var(--gutter) 34px; }
  .kc-stats__row { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }

  .kc-services { padding: 36px var(--gutter) 40px; }
  .kc-services__grid { grid-template-columns: 1fr; gap: 26px; margin-top: 20px; }

  .kc-pricing { padding: 36px var(--gutter); }
  .kc-featlist--stack { margin: 16px 0 20px; }
  .kc-pricing__copy .kc-btn { width: 100%; }

  .kc-faq { padding-bottom: 36px; }
  .kc-faq__list { margin-top: 16px; }
  .kc-faq__item summary { padding: 15px 16px; font-size: 15.5px; }
  .kc-faq__item p { padding: 0 16px 15px; }

  .kc-contact { padding-bottom: 40px; }
  .kc-contact__card { flex-direction: column; align-items: stretch; gap: 18px; }
  .kc-contact__phone { margin-top: 8px; padding: 8px 0; }
  .kc-contact .kc-btn { width: 100%; min-height: 48px; }

  .kc-footer__nav a { display: inline-block; padding: 12px 0; }

  .kc-footer { padding: 30px var(--gutter) 22px; }
  .kc-footer__top { grid-template-columns: 1fr; gap: 24px; }
  .kc-footer__two { column-count: 1; }
  .kc-footer__cities { margin-top: 24px; }
  .kc-footer__addr { flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 20px; }
  .kc-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 20px; }
}

/* ---------- SEO-текст ---------- */

.kc-seo { padding: 0 var(--gutter) 3.2vw; }
.kc-seo .kc-h2 { margin-bottom: 1.4vw; }
.kc-seo__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.6vw; }
.kc-seo h3 {
  font-size: clamp(16px, 1.25vw, 19px); font-weight: 700;
  margin: 1.4vw 0 0.6vw;
}
.kc-seo p { font-size: 15px; line-height: 1.6; opacity: 0.72; }
.kc-seo p + h3 { margin-top: 1.6vw; }

@media (max-width: 760px) {
  .kc-seo { padding-bottom: 34px; }
  .kc-seo__cols { grid-template-columns: 1fr; gap: 0; }
  .kc-seo h3 { margin: 20px 0 8px; }
  .kc-seo p { font-size: 15px; }
}

/* Заказ на мобильном: поля в столбик, кнопка на всю ширину */
@media (max-width: 760px) {
  .kc-est__grid { grid-template-columns: 1fr; gap: 10px; }
  .kc-est__cbrow { flex-direction: column; }
  .kc-est__cbrow .kc-btn { width: 100%; justify-content: center; }
}
