/* Стиль по doskatv.co.il: шрифты Golos Text / системный mono, зелёный #228765, скругления 12px, светлые фоны */
:root {
  --font-sans: "Golos Text", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --green: #228765;        /* кнопки сайта */
  --green-hover: #1C7254;
  --green-bright: #15B76B; /* промо-баннеры сайта */
  --mint: #CDFAEB;         /* мятный фон сайта */
  --mint-soft: #EAFBF4;
  --bg: #F5F6FA;           /* поле поиска / фон блоков */
  --chip: #F2F2F2;         /* плашки категорий */
  --ink: #1D1F1E;
  --text2: #4A4D52;
  --muted: #6E7177;
  --line: #E4E6EC;
  --line-strong: #CBCED7;
  --r: 12px;
  --r-lg: 24px;
  --shadow: 0 1px 3px rgba(0,0,0,.3);
  --shadow-soft: 0 8px 28px -12px rgba(29,31,30,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 76px; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; }
h1, h2 { font-weight: 600; text-wrap: pretty; }
h2 { font-size: clamp(26px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 18px; }
strong { font-weight: 600; }
.g { color: var(--green); }
.muted { font-size: 14px; color: var(--muted); }
.strong { font-weight: 600; color: var(--ink); }
.strong-w { font-weight: 700; color: #fff; }
.ic { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
:focus-visible { outline: 3px solid rgba(34,135,101,.45); outline-offset: 2px; border-radius: 6px; }

@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(34,135,101,.35); } 70% { box-shadow: 0 0 0 14px rgba(34,135,101,0); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* Появление при скролле (только если JS работает) */
.js-on .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-on .reveal--slow { transition-duration: .75s; }
.js-on .reveal.is-in { opacity: 1; transform: none; }

/* Layout */
.wrap { max-width: 1160px; margin: 0 auto; }
.wrap--narrow { max-width: 820px; }
.sec { padding: clamp(44px,6vw,80px) 16px; }
.sec--top0 { padding-top: clamp(8px,2vw,24px); }
.sec--white { background: var(--bg); }
.grid { display: grid; gap: 14px; }
.grid--220 { grid-template-columns: repeat(auto-fit, minmax(min(100%,220px), 1fr)); }
.grid--230 { grid-template-columns: repeat(auto-fit, minmax(min(100%,230px), 1fr)); gap: 16px; }
.grid--240 { grid-template-columns: repeat(auto-fit, minmax(min(100%,240px), 1fr)); }
.grid--260 { grid-template-columns: repeat(auto-fit, minmax(min(100%,260px), 1fr)); gap: 16px; }
.grid--270 { grid-template-columns: repeat(auto-fit, minmax(min(100%,270px), 1fr)); gap: 16px; }
.text { font-size: clamp(16px,1.8vw,18px); line-height: 1.6; color: var(--text2); margin: 0 0 22px; text-wrap: pretty; }
.sub { font-size: 17px; color: var(--muted); margin: 0 0 26px; }

/* Buttons — как на сайте: зелёные, 12px */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 500; font-size: 16px;
  color: #fff; background: var(--green);
  border: 1px solid transparent; border-radius: var(--r);
  min-height: 44px; padding: 10px 18px; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { background: var(--green-hover); color: #fff; }
.btn--sm { font-size: 14px; min-height: 40px; padding: 8px 14px; white-space: nowrap; }
.btn--lg { font-size: 17px; font-weight: 600; min-height: 56px; padding: 14px 30px; }
.btn--pulse { animation: pulse 2.8s infinite; }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--green); min-height: 56px; padding: 14px 24px; }
.btn--outline:hover { background: var(--mint-soft); color: var(--green); }
.btn--soft { background: var(--chip); color: var(--ink); font-weight: 600; }
.btn--soft:hover { background: var(--mint); color: var(--green-hover); }
.btn--block { display: flex; width: 100%; min-height: 50px; margin-top: auto; }
.btn--white { background: #fff; color: var(--green); font-weight: 600; }
.btn--white:hover { background: var(--mint); color: var(--green-hover); }
.btn--xl { font-size: clamp(17px,2vw,19px); min-height: 60px; padding: 16px 34px; }

/* Header */
.topbar { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.topbar__in { max-width: 1160px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand img { width: 40px; height: 40px; border-radius: 10px; display: block; }
.brand__name { font-weight: 600; font-size: 26px; letter-spacing: -.02em; }
.brand--sm img { width: 28px; height: 28px; border-radius: 7px; }
.brand--sm .brand__name { font-size: 19px; }
.brand:hover { color: var(--ink); }

/* Hero — мятный баннер с линиями, как промо-баннеры сайта */
.hero { padding: 16px 16px 0; }
.hero__banner { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(135deg, #DDFBEF 0%, var(--mint) 55%, #B8F3DB 100%); padding: clamp(28px,5vw,64px) clamp(18px,4vw,56px); }
.hero__curves, .promo__curves { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__curves path { fill: none; stroke: #fff; stroke-width: 3; opacity: .9; }
.hero__grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,320px), 1fr)); gap: clamp(28px,4vw,56px); align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border-radius: 100px; padding: 7px 14px; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 18px; box-shadow: var(--shadow); }
.chip .ic { color: var(--green); width: 16px; height: 16px; }
h1 { font-size: clamp(32px,5vw,54px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 18px; }
.lead { font-size: clamp(16px,2vw,19px); line-height: 1.55; color: var(--text2); margin: 0 0 26px; max-width: 520px; text-wrap: pretty; }
.lead strong { color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.note { margin-top: 16px; font-size: 14px; color: var(--text2); display: flex; align-items: center; gap: 6px; }
.note .ic { color: var(--green); width: 16px; height: 16px; }

/* Карточка объявления — как на сайте */
.adcard { background: #fff; border-radius: 20px; padding: 12px; box-shadow: var(--shadow-soft); max-width: 380px; margin: 0 auto; }
.shot { position: relative; aspect-ratio: 1/1; border-radius: var(--r); overflow: hidden; background: repeating-linear-gradient(135deg,#EEF0F4,#EEF0F4 12px,#E6E9EF 12px,#E6E9EF 24px); display: flex; align-items: center; justify-content: center; }
.adcard .shot { aspect-ratio: 4/3; }
.shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shot__ph { font-family: var(--font-mono); font-size: 11.5px; color: #8B8F97; text-align: center; padding: 0 16px; }
.badge { position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 5px; background: #fff; color: var(--ink); border-radius: 100px; padding: 4px 10px; font-size: 13px; font-weight: 500; box-shadow: var(--shadow); }
.ic--bolt { width: 14px; height: 14px; fill: #F6B81A; stroke: #F6B81A; }
.adcard__body { padding: 14px 4px 4px; }
.adcard__title { font-size: 17px; margin-bottom: 6px; }
.adcard__price { font-weight: 700; font-size: 22px; margin-bottom: 4px; }
.adcard__price span { color: var(--muted); font-size: 15px; font-weight: 400; }
.adcard__city { display: flex; align-items: center; gap: 4px; color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.adcard__city .ic { width: 15px; height: 15px; }
.adcard__leads { display: flex; align-items: center; justify-content: space-between; background: var(--mint); border-radius: var(--r); padding: 12px 14px; animation: float 5s ease-in-out infinite; }
.adcard__leads span { font-size: 14px; color: var(--ink); }
.adcard__leads b { font-weight: 700; font-size: 24px; color: var(--green); }

/* v2: слайдшоу-портфолио сданных квартир (первый экран) */
.hero__side { min-width: 0; }
.rented { background: #fff; border-radius: 20px; padding: 14px; box-shadow: var(--shadow-soft); max-width: 440px; width: 100%; margin: 0 auto; }
.rented__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 2px 4px 12px; }
.rented__kicker, .rented__count { margin: 0; font-size: 13px; }
.rented__kicker { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); }
.rented__kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); }
.rented__count { font-weight: 500; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.rented__stage { display: grid; touch-action: pan-y; user-select: none; -webkit-user-select: none; }
.slide { grid-area: 1 / 1; margin: 0; min-width: 0; opacity: 0; visibility: hidden; transform: translateX(14px); transition: opacity .45s ease, transform .45s ease, visibility 0s linear .45s; }
.slide.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .45s ease, transform .45s ease, visibility 0s; }
.slide__shot { position: relative; aspect-ratio: 655 / 760; border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.slide__shot img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: top center; -webkit-user-drag: none; }
.stamp { position: absolute; top: 26%; right: 12px; display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px 0 10px; border-radius: 100px; background: var(--green-hover); color: #fff; font-size: 14px; font-weight: 600; box-shadow: 0 6px 16px -6px rgba(29,31,30,.45); }
.stamp .ic { width: 16px; height: 16px; stroke-width: 2.5; }
.slide__cap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px 16px; align-items: end; padding: 12px 4px 0; }
.slide__city, .slide__label { margin: 0; }
.slide__city { font-size: 13px; font-weight: 500; color: var(--muted); }
.slide__label { font-size: 16px; font-weight: 600; line-height: 1.3; margin-top: 2px; }
.slide__stats { display: flex; gap: 18px; margin: 0; }
.slide__stats div { display: flex; flex-direction: column; align-items: flex-end; }
.slide__stats dt { font-size: 12px; color: var(--muted); white-space: nowrap; }
.slide__stats dd { margin: 0; font-weight: 700; font-size: 24px; line-height: 1.15; white-space: nowrap; font-variant-numeric: tabular-nums; }
.slide__stats .slide__leads { color: var(--green); }
.rented__nav { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.rbtn { flex: none; width: 44px; height: 44px; border-radius: var(--r); border: 0; background: var(--chip); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s; }
.rbtn:hover { background: var(--mint); color: var(--green-hover); }
.rbtn .ic { width: 20px; height: 20px; }
.rbtn .i-pl { display: none; fill: currentColor; }
.rented.is-paused .rbtn .i-pa { display: none; }
.rented.is-paused .rbtn .i-pl { display: block; }
.rented__bar { flex: 1; height: 4px; border-radius: 100px; background: var(--bg); overflow: hidden; margin: 0 6px; }
.rented__bar span { display: block; height: 100%; width: 100%; background: var(--green); transform-origin: left; transform: scaleX(0); }
.rented__note { margin: 12px 0 0; padding: 0 4px; font-size: 12.5px; line-height: 1.45; color: var(--muted); }
@media (max-width: 420px) {
  .rented { padding: 12px 10px; margin: 0 -10px; width: calc(100% + 20px); max-width: none; }
  .rented__head { padding: 2px 2px 10px; }
  .rented__kicker { font-size: 12px; letter-spacing: .02em; gap: 6px; }
  .slide__stats dd { font-size: 22px; }
  .slide__cap { grid-template-columns: 1fr; }
  .slide__stats { justify-content: space-between; }
  .slide__stats div { align-items: flex-start; }
}

/* Promo — яркий зелёный баннер сайта */
.promo, .final { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(125deg, var(--green-bright) 0%, #179F63 45%, var(--green) 100%); color: #fff; }
.promo__curves path { fill: none; stroke: #fff; stroke-width: 2.5; opacity: .45; }
.promo__in { position: relative; padding: clamp(28px,5vw,60px) clamp(18px,4vw,56px); }
.promo h2 { max-width: 760px; margin-bottom: 16px; }
.promo__lead { font-size: clamp(16px,2vw,19px); line-height: 1.6; font-weight: 500; margin: 0 0 30px; max-width: 760px; text-wrap: pretty; }
.step { background: #fff; color: var(--ink); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); }
.step__ic { width: 44px; height: 44px; border-radius: var(--r); background: var(--mint); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step__ic .ic { width: 22px; height: 22px; }
.step__t { font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.step__d { font-size: 15px; color: var(--muted); line-height: 1.5; }

/* Trust / video */
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%,340px), 1fr)); gap: clamp(28px,4vw,56px); align-items: center; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pills span { display: inline-flex; align-items: center; gap: 8px; background: var(--chip); border-radius: var(--r); padding: 11px 14px; font-size: 15px; font-weight: 600; }
.pills .ic { color: var(--green); }
.videocard { max-width: 380px; width: 100%; justify-self: center; }
.video { position: relative; border-radius: 20px; overflow: hidden; background: #E9ECEF; aspect-ratio: 9/16; box-shadow: var(--shadow-soft); }
.video video { display: block; width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.video__sound { position: absolute; bottom: 8px; right: 8px; border: 0; background: #fff; color: var(--ink); border-radius: 100px; min-height: 44px; padding: 10px 18px; font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow); white-space: nowrap; transition: background .2s, color .2s; }
.video__sound:hover { background: var(--mint); }
.video__sound .ic { color: var(--green); }
.video__sound .wave { display: none; }
.video__sound[aria-pressed="true"] { background: var(--green); color: #fff; }
.video__sound[aria-pressed="true"] .ic { color: #fff; }
.video__sound[aria-pressed="true"] .wave { display: inline; }
.video__sound[aria-pressed="true"] .mute { display: none; }
.video__tag { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--ink); border-radius: 100px; padding: 5px 12px; font-size: 13px; font-weight: 500; box-shadow: var(--shadow); }

/* Stats */
.stat { background: #fff; border-radius: 20px; padding: 24px; }
.stat--mint { background: var(--mint); }
.stat__num { font-weight: 700; font-size: clamp(36px,5vw,50px); letter-spacing: -.03em; line-height: 1; }
.stat__t { font-weight: 600; font-size: 16px; margin: 12px 0 4px; }
.stat__d { font-size: 15px; color: var(--text2); line-height: 1.5; }

.table { background: #fff; border-radius: 20px; overflow: hidden; }
.table__head { display: flex; justify-content: space-between; padding: 14px 20px; font-weight: 500; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--line); }
.row { padding: 14px 20px; display: flex; align-items: center; gap: 14px; }
.row + .row { border-top: 1px solid #F0F1F5; }
.row__name { display: flex; align-items: center; gap: 6px; font-weight: 500; font-size: 16px; min-width: 128px; }
.row__name .ic { width: 16px; height: 16px; color: var(--muted); }
.row__track { flex: 1; height: 10px; background: var(--bg); border-radius: 100px; overflow: hidden; display: block; }
.row__bar { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--green), var(--green-bright)); transition: width 1.1s cubic-bezier(.22,.9,.24,1); }
.js-on .row__bar { width: 0; }
.row__num { font-weight: 700; font-size: 17px; min-width: 44px; text-align: right; }

/* v3: блок данных за 90 дней (GEO, уровень А) */
.data h2 { max-width: 880px; }
.data__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--green-hover); }
.data__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); }
.data__answer { font-size: clamp(16px,1.9vw,19px); line-height: 1.6; color: var(--text2); max-width: 880px; margin: 0 0 28px; text-wrap: pretty; }
.data__answer strong { color: var(--ink); }
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 14px; margin: 0 0 24px; }
.kpi { background: var(--bg); border-radius: 20px; padding: 20px 22px; display: flex; flex-direction: column; }
.kpi:first-child { background: var(--mint); }
.kpi dt { order: 2; font-weight: 600; font-size: 16px; margin-top: 8px; }
.kpi dd { order: 1; margin: 0; font-weight: 700; font-size: clamp(30px,4vw,40px); letter-spacing: -.03em; line-height: 1.05; color: var(--green); white-space: nowrap; }
.kpi span { order: 3; font-size: 14px; color: var(--text2); margin-top: 2px; }
.data__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 16px; align-items: start; }
.chart { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px 16px 14px; }
.chart svg { display: block; width: 100%; height: auto; font-family: inherit; }
.chart__axis { stroke: var(--line-strong); }
.chart__grid { stroke: var(--line); stroke-dasharray: 4 4; }
.chart__tick { font-size: 12px; fill: var(--muted); }
.chart__bar { fill: #9FDFC3; }
.chart__bar--hi { fill: var(--green); }
.chart__val { font-size: 20px; font-weight: 700; fill: var(--ink); }
.chart__lbl { font-size: 14px; font-weight: 600; fill: var(--ink); }
.chart__sub { font-size: 12px; fill: var(--muted); }
.chart figcaption, .dtable caption { font-size: 13px; line-height: 1.45; color: var(--muted); text-align: left; }
.chart figcaption { margin-top: 10px; }
.dtable-wrap { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 6px 4px 4px; overflow-x: auto; }
.dtable { width: 100%; border-collapse: collapse; font-size: 15px; font-variant-numeric: tabular-nums; }
.dtable caption { caption-side: top; padding: 10px 14px 8px; }
.dtable th, .dtable td { padding: 10px 12px; text-align: right; border-top: 1px solid #F0F1F5; white-space: nowrap; }
.dtable thead th { border-top: 0; font-size: 12px; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.dtable th:first-child { text-align: left; font-weight: 500; }
.dtable thead th:first-child { font-weight: 500; }
.dtable tfoot th, .dtable tfoot td { font-weight: 700; border-top: 1px solid var(--line-strong); }
.dtable strong { color: var(--green); }
.data__qa { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 16px; margin-top: 16px; }
.data__qa > div { background: var(--bg); border-radius: 20px; padding: 22px 24px; }
.data__qa h3 { margin: 0 0 8px; font-size: 19px; font-weight: 600; line-height: 1.3; }
.data__qa p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--text2); }
.data__qa strong { color: var(--ink); }
.data__method { margin: 18px 0 0; font-size: 14px; line-height: 1.6; color: var(--text2); max-width: 880px; }
.data__updated { display: inline-block; font-weight: 600; color: var(--ink); }
.data__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.data__actions .btn--outline .ic { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .data__actions .btn { flex: 1 1 100%; }
  .dtable { font-size: 13.5px; }
  .dtable th, .dtable td { padding: 9px 6px; }
  .dtable th:first-child { white-space: normal; padding-left: 10px; }
  .dtable thead th { font-size: 11px; letter-spacing: 0; }
  .chart__lbl { font-size: 15px; }
}

/* Features */
.feat { background: var(--bg); border-radius: 20px; padding: 26px; transition: background .2s; }
.feat:hover { background: var(--mint-soft); }
.feat__ic { width: 48px; height: 48px; border-radius: var(--r); background: #fff; color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: var(--shadow); }
.feat__ic .ic { width: 24px; height: 24px; }
.feat__t { font-weight: 600; font-size: 20px; margin-bottom: 8px; }
.feat__d { font-size: 16px; color: var(--text2); line-height: 1.55; }

/* Samples — сетка карточек как «Интересное рядом» */
.sample { display: block; color: inherit; cursor: pointer; }
.sample:hover { color: inherit; }
.sample:hover .shot { box-shadow: 0 0 0 2px var(--green); }
.sample .shot { transition: box-shadow .2s; }
.sample .shot__ph { font-size: 11px; padding: 0 12px; }
.sample__leads { position: absolute; bottom: 10px; left: 10px; background: #fff; border: 1px dashed var(--line-strong); color: var(--muted); border-radius: 100px; padding: 4px 10px; font-family: var(--font-mono); font-size: 10.5px; }
.sample__leads--real { display: inline-flex; align-items: baseline; gap: 5px; border: 0; background: var(--green); color: #fff; box-shadow: var(--shadow); font-family: inherit; font-weight: 500; font-size: 13px; padding: 5px 12px; }
.sample__leads--real b { font-size: 17px; font-weight: 700; }
.sample__price { font-weight: 700; font-size: 20px; margin-bottom: 2px; }
.sample__body { padding: 12px 2px 0; }
.sample__t { font-size: 17px; line-height: 1.35; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sample__slug { display: flex; align-items: center; gap: 4px; font-size: 14px; color: var(--muted); }
.sample__slug .ic { width: 14px; height: 14px; }

/* Pricing */
.plans { align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; position: relative; }
.plan__name { font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.plan__price { font-weight: 700; font-size: 40px; letter-spacing: -.03em; margin-bottom: 20px; }
.plan__price span { font-size: 17px; color: var(--muted); font-weight: 500; }
.plan__rows { list-style: none; padding: 16px 0 0; margin: 0 0 24px; border-top: 1px solid var(--line); display: grid; gap: 12px; font-size: 16px; color: var(--text2); }
.plan__rows li { display: flex; justify-content: space-between; }
.plan__rows strong { color: var(--ink); }
.plan__rows .off { color: #A3A6AD; }
.plan--pro { border: 2px solid var(--green); background: linear-gradient(180deg, var(--mint-soft), #fff 45%); box-shadow: var(--shadow-soft); }
.plan__badge { position: absolute; top: -13px; left: 24px; display: inline-flex; align-items: center; background: var(--green-bright); color: #fff; border-radius: 100px; padding: 5px 12px; font-weight: 600; font-size: 13px; }
.payback { margin-top: 18px; background: var(--mint); border-radius: 16px; padding: 20px 22px; font-size: clamp(16px,2vw,18px); line-height: 1.5; text-wrap: pretty; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq__item { background: #fff; border-radius: 16px; overflow: hidden; }
.faq__q { margin: 0; font-size: inherit; }
.faq__more { margin: 18px 0 0; font-size: 15px; color: var(--text2); }
.faq__more a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.footer__links a { color: var(--text2); text-decoration: underline; text-underline-offset: 3px; }
.faq__item button { width: 100%; text-align: left; background: transparent; border: 0; padding: 20px 22px; font-family: inherit; font-weight: 600; font-size: clamp(16px,2vw,18px); color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq__item i { flex: none; width: 32px; height: 32px; border-radius: 100px; background: var(--mint); position: relative; transition: background .2s; }
.faq__item i::before, .faq__item i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--green); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .2s; }
.faq__item i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.open i { background: var(--green); }
.faq__item.open i::before, .faq__item.open i::after { background: #fff; }
.faq__item.open i::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { display: none; padding: 0 22px 22px; font-size: 16px; line-height: 1.6; color: var(--text2); text-wrap: pretty; }
.faq__item.open .faq__a { display: block; }

/* Final */
.final__in { position: relative; max-width: 780px; margin: 0 auto; text-align: center; padding: clamp(40px,6vw,80px) 18px; }
.final h2 { font-size: clamp(30px,5vw,50px); line-height: 1.08; letter-spacing: -.025em; }
.final p { font-size: clamp(16px,2vw,19px); line-height: 1.6; font-weight: 500; margin: 0 0 28px; text-wrap: pretty; }
.final__note { margin-top: 14px; font-size: 14px; font-weight: 500; }

.footer { padding: 24px 16px 110px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.footer__in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }


.samples { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .samples { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 560px) {
  .samples .shot__ph { font-size: 10px; }
  .sample__leads { font-size: 9.5px; left: 6px; bottom: 6px; padding: 3px 7px; }
  .sample__t { font-size: 15px; }
  .sample__slug { font-size: 12px; word-break: break-all; }
  .btn--xl { font-size: 16px; padding: 14px 18px; }
  .brand__name { font-size: 22px; }
  .brand img { width: 34px; height: 34px; }
  .btn--sm .ic { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .row__name { min-width: 104px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js-on .reveal { opacity: 1; transform: none; }
}
.data__method a { text-decoration: underline; text-underline-offset: 3px; }

/* ===== v4: правки по ТЗ ===== */
/* 1. Продающий заголовок слайдера */
.rented__head { align-items: flex-start; }
.rented__titles { min-width: 0; }
.rented__title { margin: 6px 0 0; font-size: 18px; line-height: 1.3; font-weight: 700; letter-spacing: -.01em; color: var(--ink); text-wrap: pretty; }
.rented__count { padding-top: 1px; }

/* 2 + 4. Ключевая ценность и математика одной сделки */
.value { padding: clamp(24px,4vw,40px) 16px 0; }
.value__card { background: #fff; border: 2px solid var(--mint); border-radius: var(--r-lg); padding: clamp(24px,4vw,44px); text-align: center; box-shadow: var(--shadow-soft); }
.value__quote { margin: 0 auto 26px; max-width: 900px; font-size: clamp(22px,3.2vw,34px); line-height: 1.25; font-weight: 600; letter-spacing: -.02em; text-wrap: balance; }
.deal { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin: 0 0 16px; }
.deal__item { display: flex; flex-direction: column; align-items: center; min-width: 120px; background: var(--mint); border-radius: 20px; padding: 14px 22px; }
.deal__num { font-weight: 700; font-size: clamp(34px,5vw,48px); line-height: 1; color: var(--green); letter-spacing: -.03em; white-space: nowrap; }
.deal__txt { margin-top: 6px; font-size: 15px; font-weight: 500; color: var(--ink); }
.deal__eq { font-size: 32px; font-weight: 600; color: var(--muted); }
.deal__line { margin: 0 auto; max-width: 720px; font-size: 16px; line-height: 1.55; color: var(--text2); }
.deal__line strong { color: var(--ink); }

/* 3. Города прямо под «болью» */
.pain-cities { margin-top: 16px; background: #fff; color: var(--ink); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); }
.pain-cities__t { margin: 0 0 12px; font-weight: 600; font-size: 17px; }
.pain-cities__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.pain-cities__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; background: var(--bg); border-radius: var(--r); padding: 10px 12px; font-size: 15px; }
.pain-cities__list li:first-child, .pain-cities__list li:nth-child(2) { background: var(--mint); }
.pain-cities__list b { font-size: 20px; font-weight: 700; color: var(--green); font-variant-numeric: tabular-nums; }
.pain-cities__note { margin: 10px 0 0; font-size: 13px; color: var(--muted); }
.pain-cities__note a { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 560px) {
  .rented__title { font-size: 16px; }
  .deal { gap: 8px; }
  .deal__item { min-width: 0; flex: 1 1 28%; padding: 12px 8px; }
  .deal__eq { display: none; }
  .deal__txt { font-size: 13px; text-align: center; }
  .pain-cities { padding: 16px 14px; }
  .pain-cities__list { grid-template-columns: 1fr 1fr; }
}

/* ===== v4.1: правки ===== */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.samples__typical { margin: 18px 0 0; font-size: 16px; color: var(--ink); }
.samples__typical strong { color: var(--green); }
.rented__title { margin-top: 0; }

/* Сворачиваемый отчёт «Смотреть полный отчёт» — на всех экранах, только при работающем JS */
.data__toggle { display: none; }
.js-on .data__toggle { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; margin: 4px 0 0; padding: 12px 24px; border: 1px solid var(--green); border-radius: var(--r); background: #fff; color: var(--ink); font: inherit; font-weight: 600; font-size: 16px; cursor: pointer; transition: background .2s, color .2s; }
.js-on .data__toggle:hover { background: var(--mint-soft); color: var(--green-hover); }
.js-on .data__toggle .ic { transform: rotate(90deg); transition: transform .2s; color: var(--green); }
.js-on .data__toggle[aria-expanded="true"] .ic { transform: rotate(-90deg); }
.data__toggle-close { display: none; }
.data__toggle[aria-expanded="true"] .data__toggle-open { display: none; }
.data__toggle[aria-expanded="true"] .data__toggle-close { display: inline; }
.js-on .data__more:not(.is-open) { display: none; }
.js-on .data__more { margin-top: 18px; }
@media (max-width: 760px) {
  .js-on .data__toggle { display: flex; width: 100%; }
}

@media (max-width: 560px) {
  .kpis { grid-template-columns: 1fr 1fr; gap: 10px; }
  .kpi { padding: 14px 14px; border-radius: 16px; }
  .kpi dd { font-size: 26px; }
  .kpi dt { font-size: 14px; margin-top: 6px; line-height: 1.3; }
  .kpi span { font-size: 12.5px; line-height: 1.35; }
}

/* ===== v5.1: юридический подвал и уведомление о cookie ===== */
.footer { padding: 36px 16px 40px; background: var(--bg); color: var(--text2); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer__about p { margin: 12px 0 8px; line-height: 1.5; }
.footer__company { font-style: normal; font-size: 13px; color: var(--muted); }
.footer__h { margin: 0 0 10px; font-weight: 600; font-size: 15px; color: var(--ink); }
.footer__contacts, .footer__links-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__contacts a, .footer__links-list a { color: var(--text2); text-decoration: none; }
.footer__contacts a { display: inline-flex; align-items: center; gap: 8px; min-height: 28px; }
.footer__contacts .ic { width: 16px; height: 16px; color: var(--green); }
.footer__contacts a:hover, .footer__links-list a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.footer__copy { margin: 24px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } .footer__about { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; gap: 22px; } }

.cookie { position: fixed; left: 12px; bottom: 12px; z-index: 60; display: inline-flex; align-items: center; gap: 10px; max-width: calc(100% - 24px); background: rgba(255,255,255,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: var(--muted); border: 1px solid var(--line); border-radius: 100px; padding: 6px 6px 6px 14px; box-shadow: 0 4px 14px -8px rgba(29,31,30,.25); font-size: 12.5px; line-height: 1.3; }
.cookie[hidden] { display: none; }
.cookie p { margin: 0; }
.cookie a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.cookie a:hover { color: var(--green); }
.cookie__ok { flex: none; border: 0; border-radius: 100px; background: var(--chip); color: var(--ink); font: inherit; font-size: 12.5px; font-weight: 600; padding: 6px 12px; min-height: 30px; cursor: pointer; transition: background .2s, color .2s; }
.cookie__ok:hover { background: var(--mint); color: var(--green-hover); }
@media (max-width: 480px) { .cookie { left: 8px; bottom: 8px; } }

/* v5.6: ссылки в тексте баннера */
.promo__lead a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.promo__lead a:hover { color: var(--mint); }
