/* ============================================================
   MONS — выкрасы бесплатно. Landing styles.
   Visual system derived 1:1 from the СТУДИЯ-А1 reference:
   teal + coral + charcoal, Montserrat, pill CTAs, dark icon-cards.
   ============================================================ */

:root {
  /* Brand palette (sampled from reference) */
  --teal:        #3E938B;
  --teal-deep:   #327A73;
  --teal-soft:   #E7F0EE;
  --coral:       #F26A5A;
  --coral-deep:  #E0513F;
  --ink:         #242424;
  --ink-soft:    #2E2E2E;

  /* Neutrals — warm, Farrow&Ball-ish */
  --bg:          #FBF9F5;
  --bg-card:     #FFFFFF;
  --line:        #ECE7DE;
  --text:        #232220;
  --text-2:      #5C5953;
  --text-3:      #8A867E;
  --white:       #FFFFFF;

  --star:        #F2B441;

  /* Type */
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Geometry */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow: 0 18px 50px -22px rgba(40, 60, 58, .35);
  --shadow-soft: 0 10px 34px -20px rgba(40, 60, 58, .28);

  --maxw: 1240px;
  --pad: 40px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }

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

section { position: relative; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--coral);
  display: inline-block;
}
.eyebrow.on-dark { color: #BFE0DB; }
.eyebrow.on-dark::before { background: var(--coral); }

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -.015em; line-height: 1.08; }

.h-section {
  font-size: clamp(30px, 4.3vw, 50px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.lead {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-2);
  line-height: 1.62;
  max-width: 64ch;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  border-radius: var(--r-pill);
  padding: 18px 34px;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(242, 106, 90, .8);
}
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(242, 106, 90, .85); }

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(62, 147, 139, .85);
}
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); }

.btn-white {
  background: #fff;
  color: var(--coral-deep);
  box-shadow: 0 12px 26px -14px rgba(0,0,0,.4);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -14px rgba(0,0,0,.45); }

.btn-lg { padding: 21px 40px; font-size: 18px; }
.btn-arrow svg { transition: transform .2s ease; }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 3px; color: var(--star); }
.rating-line {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 15px;
}
.rating-line .score { font-weight: 800; }
.rating-line .muted { color: var(--text-3); font-weight: 600; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 249, 245, .82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(0,0,0,.4);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; display: block; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(140deg, var(--teal), var(--teal-deep));
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
}
.logo-text { line-height: 1; }
.logo-text .name {
  font-weight: 800; font-size: 21px; letter-spacing: -.01em; color: var(--ink);
  display: block;
}
.logo-text .tag {
  font-size: 10.5px; letter-spacing: .07em; color: var(--text-3); text-transform: uppercase;
  font-weight: 600; margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: 14px; }
.main-nav a {
  text-decoration: none; color: var(--text); font-weight: 600; font-size: 15.5px;
  position: relative; transition: color .18s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--coral); transition: width .22s ease;
}
.main-nav a:hover { color: var(--teal-deep); }
.main-nav a:hover::after { width: 100%; }

.header-spacer { flex: 1; }
.header-phone {
  font-weight: 800; font-size: 18px; color: var(--ink); text-decoration: none;
  white-space: nowrap; letter-spacing: -.01em;
}
.header-phone:hover { color: var(--teal-deep); }
.header-cta { flex-shrink: 0; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display:block; width: 26px; height: 2.4px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 30px 0 0; }
.hero-stage {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 620px;
  background: var(--teal);
}
/* split coral panel on the right */
.hero-stage::after {
  content: "";
  position: absolute; inset: 0 0 0 58%;
  background: var(--coral);
  z-index: 0;
}
.hero-swirls { position: absolute; inset: 0; z-index: 1; opacity: .28; pointer-events: none; }
.hero-grid {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  min-height: 620px;
  padding: 54px 60px;
}
.hero-vertical {
  position: absolute; left: 18px; top: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; pointer-events: none;
}
.hero-vertical span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  font-size: clamp(120px, 17vw, 230px);
  letter-spacing: -.04em;
  color: rgba(255,255,255,.16);
  line-height: .8;
  user-select: none;
}
.hero-copy { position: relative; z-index: 4; align-self: center; max-width: 540px; color: #fff; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 16px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 14px; backdrop-filter: blur(4px);
  margin-bottom: 26px;
}
.hero-rating .muted { color: rgba(255,255,255,.78); font-weight: 600; }
.hero h1 {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: #FFE7C4; }
.hero-sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  max-width: 46ch;
}
.hero-metrics {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 30px;
  border-radius: var(--r);
  overflow: hidden;
}
.hero-metric {
  flex: 1; min-width: 120px;
  padding: 16px 20px;
  background: rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.18);
}
.hero-metric:last-child { border-right: none; }
.hero-metric .num { font-weight: 800; font-size: 24px; line-height: 1; color: #fff; }
.hero-metric .lbl { font-size: 13px; color: rgba(255,255,255,.82); margin-top: 6px; font-weight: 600; }
.hero-cta-row { margin-top: 32px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-cta-note { font-size: 13.5px; color: rgba(255,255,255,.82); font-weight: 600; }

.hero-visual { position: relative; z-index: 4; align-self: center; justify-self: center; width: 100%; }
.hero-photo-real {
  width: 100%; height: 520px; object-fit: cover; display: block;
  border-radius: 24px;
  box-shadow: 0 36px 60px -24px rgba(20, 50, 46, .5);
  user-select: none;
}
.hero-photo {
  width: 100%; height: 460px;
  border-radius: var(--r-lg);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.5);
  rotate: 1.5deg;
}
.hero-swatch-strip {
  position: absolute; left: -26px; bottom: 26px; z-index: 5;
  display: flex; flex-direction: column; gap: 0;
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
  rotate: -3deg;
}
.hero-swatch-strip i { width: 64px; height: 40px; display: block; }
.hero-swatch-card {
  position: absolute; right: -14px; top: -22px; z-index: 5;
  background: #fff; border-radius: 14px; padding: 12px 16px 14px;
  box-shadow: var(--shadow); width: 168px; rotate: 3deg;
}
.hero-swatch-card .sw { height: 54px; border-radius: 9px; margin-bottom: 9px; }
.hero-swatch-card .nm { font-size: 13px; font-weight: 800; color: var(--ink); }
.hero-swatch-card .cd { font-size: 11px; color: var(--text-3); font-weight: 600; }

/* feature strip (dark cards) */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: -54px;
  position: relative; z-index: 8;
}
.feature-card {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px 24px;
  min-height: 150px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #DFE9E6; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-soft);
  display: grid; place-items: center; color: var(--teal-deep);
}
.feature-card.accent .feature-icon { background: #FCE3DD; color: var(--coral-deep); }
.feature-card .ft { font-weight: 700; font-size: 15.5px; line-height: 1.3; color: var(--text); }

/* ============================================================
   Generic section rhythm
   ============================================================ */
.block { padding: 96px 0; }
#why { padding-top: 24px; }
.block-head { max-width: 760px; margin-bottom: 48px; }
.block-head .h-section { margin-top: 16px; }
.block-head p { margin-top: 18px; }
.block.tinted { background: var(--teal-soft); }

/* ---------- Pain block ---------- */
.pain-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pain-body p { font-size: 19px; line-height: 1.7; color: var(--text-2); }
.pain-body p + p { margin-top: 20px; }
.pain-body strong { color: var(--text); font-weight: 700; }
.pain-accent {
  position: relative;
  background: var(--teal-soft);
  border-radius: 22px;
  padding: 40px 42px 38px;
}
.pain-qmark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px; line-height: .55; height: 18px;
  color: var(--coral);
}
.pain-accent .qt { font-size: 21px; font-weight: 600; line-height: 1.5; color: var(--ink); margin-top: 8px; }
.pain-accent .qt b { color: var(--teal-deep); font-weight: 700; }
.pain-accent .ph { margin-top: 22px; }

.pain-visual { position: relative; }
.pain-photo { width: 100%; height: 480px; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.pain-tag {
  position: absolute; bottom: 22px; left: 22px;
  background: #fff; border-radius: var(--r); padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
  font-weight: 700; font-size: 14px;
}
.pain-tag .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 30px 26px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .25s ease;
}
.t-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.t-card .stars { margin-bottom: 16px; }
.t-card .t-title { font-weight: 600; font-size: 19.5px; line-height: 1.45; color: var(--ink); letter-spacing: -.005em; }
.t-card .t-body { color: var(--text-2); font-size: 15.5px; line-height: 1.6; margin-top: 12px; flex: 1; }
.t-person { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.t-ava {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff;
}
.t-meta .nm { font-weight: 700; font-size: 15px; color: var(--ink); }
.t-meta .ct { font-size: 13px; color: var(--text-3); font-weight: 600; }
.t-src {
  margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--teal-deep);
  background: var(--teal-soft); padding: 6px 10px; border-radius: 8px;
}

/* compact reviews (block 7) */
.r-masonry { columns: 3; column-gap: 22px; }
.r-card {
  break-inside: avoid; margin-bottom: 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow-soft);
}
.r-card .stars { margin-bottom: 12px; }
.r-card .r-title { font-weight: 700; font-size: 17px; line-height: 1.35; color: var(--ink); letter-spacing: -.005em; margin-bottom: 10px; }
.r-card .r-body { font-size: 15px; line-height: 1.6; color: var(--text-2); }
.r-card .r-src { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-soft); padding: 6px 10px; border-radius: 8px; }
.r-person { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.r-ava { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #fff; flex-shrink: 0; }
.r-meta .nm { font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.2; }
.r-meta .ct { font-size: 12px; color: var(--text-3); font-weight: 600; }
.r-scn { margin-left: auto; font-size: 11px; font-weight: 700; color: var(--teal-deep); }

/* ---------- How it works ---------- */
.flow { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1000px; margin: 0 auto; }
.flow::before {
  content: ""; position: absolute; top: 45px; left: 16.6%; right: 16.6%; height: 2px; z-index: 0;
  background: var(--line);
}
.flow-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.flow-badge {
  width: 90px; height: 90px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px var(--teal-soft), 0 16px 32px -14px rgba(62,147,139,.65);
}
.flow-num { font-weight: 800; font-size: 30px; line-height: 1; letter-spacing: -.02em; }
.flow-step.coral .flow-badge { background: var(--coral); box-shadow: 0 0 0 8px #FCE3DD, 0 16px 32px -14px rgba(242,106,90,.55); }
.flow-copy { margin-top: 30px; }
.flow-title { font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.flow-text { margin-top: 10px; font-size: 15.5px; line-height: 1.6; color: var(--text-2); max-width: 250px; margin-left: auto; margin-right: auto; text-wrap: pretty; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 38px 32px 34px;
  box-shadow: var(--shadow-soft);
}
.step-num {
  font-weight: 900; font-size: 60px; line-height: 1; color: var(--teal);
  letter-spacing: -.04em;
}
.step.coral .step-num { color: var(--coral); }
.step h3 { font-size: 21px; margin-top: 6px; color: var(--ink); }
.step p { color: var(--text-2); font-size: 15.5px; line-height: 1.6; margin-top: 12px; }
.step-ico {
  position: absolute; top: 34px; right: 32px;
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; color: #fff;
  background: var(--teal);
}
.step.coral .step-ico { background: var(--coral); }
.steps-note {
  margin-top: 34px; text-align: center; font-weight: 700; color: var(--text-2);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.steps-note .pill-note { background: #fff; border: 1px solid var(--line); padding: 12px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow-soft); }

/* ---------- Value props ---------- */
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vp-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #DFE9E6; }
.vp-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  font-weight: 800; font-size: 18px; margin-bottom: 20px;
}
.vp-card:nth-child(2) .vp-num,
.vp-card:nth-child(4) .vp-num { background: var(--coral); }
.vp-card h3 { font-size: 20px; color: var(--ink); }
.vp-card p { color: var(--text-2); font-size: 15px; line-height: 1.6; margin-top: 12px; }
.vp-cta-card {
  background: linear-gradient(150deg, var(--coral), var(--coral-deep));
  border: none; display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.vp-cta-card h3 { font-size: 23px; line-height: 1.25; color: #fff; }
.vp-cta-card p { color: rgba(255,255,255,.92); }

/* ---------- Compare table (MONS vs строймаркет) ---------- */
.cmp { max-width: 1020px; margin: 0 auto; }
.cmp-table {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cmp-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.cmp-table > .cmp-row:last-child { border-bottom: none; }
.cmp-cell { padding: 20px 24px; display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.45; }
.cmp-crit { font-weight: 700; color: var(--ink); background: var(--bg); align-items: center; }
.cmp-mons { background: var(--teal-soft); color: var(--text); font-weight: 600; }
.cmp-other { color: var(--text-2); }
.cmp-head-row .cmp-cell { padding-top: 24px; padding-bottom: 22px; align-items: center; }
.cmp-head { font-weight: 800; font-size: 18px; letter-spacing: -.01em; }
.cmp-head.cmp-mons { color: var(--teal-deep); }
.cmp-head.cmp-other { color: var(--text-3); }
.cmp-head .cmp-tag { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--coral); color: #fff; padding: 4px 9px; border-radius: var(--r-pill); margin-left: auto; }
.cmp-ic { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; margin-top: 1px; }
.cmp-ic.yes { background: var(--teal); color: #fff; }
.cmp-ic.no { background: #EFE9DF; color: var(--text-3); }
@media (max-width: 720px) {
  .cmp-head-row { display: none; }
  .cmp-row { grid-template-columns: 1fr; }
  .cmp-crit { background: var(--ink); color: #fff; font-size: 16px; padding: 16px 20px; }
  .cmp-mons, .cmp-other { padding: 16px 20px; }
  .cmp-mons::before, .cmp-other::before {
    content: attr(data-label); flex-shrink: 0; min-width: 96px;
    font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--text-3); margin-top: 2px;
  }
}

/* ---------- Palette showcase ---------- */
.pal-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.pal-card {
  border-radius: var(--r); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pal-sw { height: 128px; display: block; }
.pal-meta { padding: 14px 16px 16px; }
.pal-nm { font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: -.01em; }
.pal-cd { font-size: 12px; color: var(--text-3); font-weight: 600; margin-top: 3px; letter-spacing: .06em; }
.pal-note { margin-top: 34px; display: flex; align-items: center; justify-content: center; }
.pal-note .pill-note { background: #fff; border: 1px solid var(--line); padding: 12px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow-soft); font-weight: 700; color: var(--text-2); }
@media (max-width: 900px) { .pal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .pal-grid { grid-template-columns: repeat(2, 1fr); } .pal-sw { height: 104px; } }

/* ---------- Finishes (Варианты финишной отделки) ---------- */
.finish { position: relative; overflow: hidden; }
.finish-leaf { position: absolute; color: rgba(62,147,139,.10); pointer-events: none; z-index: 0; }
.finish-leaf--tr { width: 150px; height: 150px; top: 38px; right: 60px; transform: rotate(18deg); }
.finish-leaf--br { width: 200px; height: 200px; bottom: -30px; right: 30%; transform: rotate(150deg); color: rgba(62,147,139,.07); }
.finish .container { position: relative; z-index: 1; }
.finish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.finish-card { display: flex; flex-direction: column; align-items: flex-start; }
.finish-photo { width: 100%; background: #fff; border-radius: 16px; box-shadow: var(--shadow-soft); overflow: hidden; }
.finish-name { font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; margin-top: 22px; }
.finish-desc { font-size: 16px; line-height: 1.5; color: var(--text-2); margin-top: 12px; max-width: 30ch; }
.finish-more {
  margin-top: 22px; cursor: pointer;
  background: transparent; color: var(--teal-deep);
  border: 1.6px solid var(--teal); border-radius: var(--r-pill);
  padding: 13px 38px; font: inherit; font-weight: 700; font-size: 15px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.finish-more:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.finish-divider { position: relative; height: 1px; background: rgba(62,147,139,.28); margin: 64px 0 44px; }
.finish-divider::before, .finish-divider::after {
  content: ""; position: absolute; top: -5px; width: 1px; height: 11px; background: rgba(62,147,139,.45);
}
.finish-divider::before { left: 0; transform: rotate(-30deg); }
.finish-divider::after { right: 0; transform: rotate(30deg); }
.finish-consult { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.finish-consult-h { font-size: clamp(24px, 2.8vw, 38px); font-weight: 600; line-height: 1.18; letter-spacing: -.015em; color: var(--ink); max-width: 60%; }
.finish-consult-btn { flex-shrink: 0; }
@media (max-width: 1080px) { .finish-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 900px) {
  .finish-consult { flex-direction: column; align-items: flex-start; gap: 24px; }
  .finish-consult-h { max-width: 100%; }
}
@media (max-width: 520px) { .finish-grid { grid-template-columns: 1fr; } }

/* ---------- Palette slider (Палитра Времена года) ---------- */
.ps-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; margin-bottom: 30px; }
.ps-title { font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; letter-spacing: -.015em; color: var(--ink); line-height: 1.1; margin-bottom: 26px; }
.ps-desc { font-size: 17px; line-height: 1.6; color: var(--text-2); max-width: 52ch; margin-bottom: 26px; }
.ps-viewport { overflow: hidden; }
.ps-track { display: flex; flex-wrap: nowrap; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.ps-slide { flex: 0 0 100%; min-width: 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: stretch; }
.ps-col-left, .ps-col-right { display: flex; flex-direction: column; min-width: 0; }
.ps-swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ps-chip { position: relative; aspect-ratio: 1 / 1.12; border-radius: 9px; padding: 11px 12px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; box-shadow: 0 4px 14px -8px rgba(40,60,58,.4); }
.ps-chip-brand { position: absolute; top: 11px; right: 11px; font-size: 8px; font-weight: 700; letter-spacing: .22em; opacity: .5; }
.ps-chip-n { font-size: 16px; font-weight: 700; line-height: 1; }
.ps-chip-rule { height: 1px; background: currentColor; opacity: .3; margin: 6px 0 5px; }
.ps-chip-nm { font-size: 8.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; opacity: .85; line-height: 1.15; }
.ps-room { position: relative; flex: 1; border-radius: 18px; overflow: hidden; background: #fff; box-shadow: var(--shadow-soft); min-height: 420px; display: flex; }
.ps-room-chip { position: absolute; top: 18px; left: 18px; width: 96px; z-index: 2; filter: drop-shadow(0 8px 20px rgba(0,0,0,.28)); }
.ps-room-chip .ps-chip { box-shadow: 0 0 0 3px rgba(255,255,255,.92); }
@media (max-width: 520px) { .ps-room-chip { width: 76px; top: 12px; left: 12px; } }
.ps-room image-slot { flex: 1; width: 100%; }
.ps-footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; margin-top: 44px; }
.ps-arrows { display: flex; gap: 16px; }
.ps-arrow {
  width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--teal); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 26px -14px rgba(62,147,139,.85); transition: background .18s ease, transform .18s ease;
}
.ps-arrow:hover { background: var(--teal-deep); transform: translateY(-2px); }
.ps-foot-h { text-align: center; font-size: clamp(22px, 2.6vw, 36px); font-weight: 800; letter-spacing: -.015em; color: var(--ink); }
.ps-foot-btn { justify-self: end; }
@media (max-width: 900px) {
  .ps-head, .ps-slide { grid-template-columns: 1fr; gap: 28px; }
  .ps-room { min-height: 300px; }
  .ps-head .ps-desc { display: none; }
  .ps-footer { grid-template-columns: 1fr; justify-items: center; gap: 22px; text-align: center; }
  .ps-foot-btn { justify-self: center; }
}
@media (max-width: 520px) { .ps-swatches { gap: 9px; } .ps-chip { border-radius: 7px; padding: 8px; } }

/* ---------- Portfolio ---------- */
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pf-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); background: #E9E4DA;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pf-card image-slot { width: 100%; height: 340px; }
.pf-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 60px 28px 26px;
  background: linear-gradient(to top, rgba(20,24,23,.92), rgba(20,24,23,0));
  color: #fff; pointer-events: none;
}
.pf-overlay .pf-name { font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.pf-overlay .pf-result { display: flex; align-items: center; gap: 9px; margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,.9); font-weight: 600; }
.pf-overlay .pf-result .chk { color: #7BE0A0; flex-shrink: 0; }
.pf-chip { top: 16px; left: 16px; }
.pf-badge {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: rgba(255,255,255,.92); color: var(--ink);
  font-size: 12px; font-weight: 700; padding: 7px 13px; border-radius: var(--r-pill);
}

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item.open { box-shadow: var(--shadow-soft); border-color: #DFE9E6; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 26px; display: flex; align-items: center; gap: 18px;
  font-weight: 700; font-size: 17.5px; color: var(--ink); letter-spacing: -.01em;
}
.faq-q .faq-ic {
  margin-left: auto; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: var(--teal-soft); color: var(--teal-deep);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-item.open .faq-ic { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 26px 26px; color: var(--text-2); font-size: 16px; line-height: 1.62; }

.faq-aside {
  position: sticky; top: 110px;
  background: var(--bg-card); color: var(--text); border: 1px solid var(--line);
  box-shadow: var(--shadow-soft); border-radius: var(--r-lg);
  padding: 40px 38px;
}
.faq-aside h3 { font-size: 26px; line-height: 1.2; color: var(--ink); }
.faq-aside p { color: var(--text-2); margin-top: 16px; font-size: 16px; line-height: 1.6; }
.faq-aside .faq-stat { display: flex; gap: 26px; margin: 28px 0; }
.faq-aside .faq-stat .num { font-weight: 800; font-size: 30px; color: var(--teal-deep); }
.faq-aside .faq-stat .lbl { font-size: 13px; color: var(--text-3); margin-top: 4px; }

/* ---------- Final CTA ---------- */
.final {
  text-align: center;
  background: var(--teal);
  color: #fff;
  border-radius: 30px;
  padding: 80px 40px;
  position: relative; overflow: hidden;
}
.final::after { content:""; position:absolute; inset: 0 0 0 60%; background: var(--coral); z-index:0; opacity:.0; }
.final-mark {
  position: absolute; left: 3%; top: 50%; transform: translateY(-50%);
  height: 88%; width: auto; z-index: 1; pointer-events: none;
  opacity: .6;
}
.final .final-swirls { position: absolute; inset: 0; opacity: .2; pointer-events: none; }
.final-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; text-wrap: balance; }
.final p { font-size: 19px; color: rgba(255,255,255,.92); margin-top: 18px; }
.final .btn { margin-top: 32px; }
.final-rating { margin-top: 24px; display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; color: rgba(255,255,255,.9); }
.final-rating .stars { color: #FFD66B; }

/* centered FAQ */
.faq-center { max-width: 860px; margin: 0 auto; }
.faq-center .faq-list { max-width: 820px; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--teal); color: rgba(255,255,255,.82); padding: 60px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.3fr auto;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.footer-logo { height: 84px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-copy { font-size: 15px; color: rgba(255,255,255,.75); }
.footer-nav { display: flex; flex-direction: column; gap: 22px; }
.footer-nav a {
  color: rgba(255,255,255,.9); text-decoration: none; font-size: 16px; font-weight: 600;
  width: fit-content; transition: color .18s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-contacts { display: flex; flex-direction: column; gap: 22px; }
.footer-link {
  color: rgba(255,255,255,.9); text-decoration: none; font-size: 16px; font-weight: 600;
  width: fit-content; transition: color .18s ease, border-color .18s ease;
  border-bottom: 1px solid transparent;
}
.footer-link:hover { color: #fff; border-bottom-color: rgba(255,255,255,.6); }
.footer-oferta { margin: 4px 0 0; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.62); max-width: 30ch; }
.footer-cta { justify-self: end; }
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 32px; }
  .footer-cta { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 560px) {
  .site-footer { padding: 44px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-logo { height: 66px; }
}

/* ============================================================
   LEGAL / PRIVACY PAGE
   ============================================================ */
.legal-header {
  border-bottom: 1px solid var(--line); background: var(--bg);
  position: sticky; top: 0; z-index: 20;
}
.legal-header .container { display: flex; align-items: center; justify-content: space-between; height: 82px; gap: 20px; }
.legal-header .logo-img { height: 56px; width: auto; display: block; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  color: var(--teal-deep); font-weight: 700; font-size: 15px; white-space: nowrap;
  transition: gap .18s ease;
}
.legal-back:hover { gap: 12px; }
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 64px var(--pad) 90px; }
.legal-wrap h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); line-height: 1.12; }
.legal-meta { margin-top: 14px; color: var(--text-3); font-size: 15px; }
.legal-intro { margin-top: 28px; font-size: 17.5px; line-height: 1.65; color: var(--text-2); }
.legal-wrap h2 {
  font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -.01em;
  margin: 48px 0 16px; padding-top: 8px;
}
.legal-wrap h2 .legal-num { color: var(--teal); margin-right: 10px; }
.legal-wrap p { margin: 0 0 14px; color: var(--text); line-height: 1.66; font-size: 16.5px; }
.legal-wrap ul { margin: 0 0 16px; padding-left: 22px; }
.legal-wrap li { margin-bottom: 9px; line-height: 1.6; color: var(--text); font-size: 16.5px; }
.legal-wrap li::marker { color: var(--teal); }
.legal-callout {
  margin: 22px 0; padding: 22px 26px; background: var(--teal-soft);
  border-radius: var(--r); font-size: 16px; line-height: 1.6; color: var(--ink-soft);
}
.legal-callout strong { color: var(--teal-deep); }
@media (max-width: 560px) {
  .legal-header .container { height: 64px; }
  .legal-header .logo-img { height: 42px; }
  .legal-wrap { padding-top: 40px; padding-bottom: 60px; }
}

/* ============================================================
   FLOATING CHAT
   ============================================================ */
.fab {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: #F5A623; color: #fff; border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(245, 166, 35, .8);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.07) translateY(-2px); }
.fab .fab-ping { position: absolute; inset: 0; border-radius: 50%; border: 2px solid #F5A623; animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ============================================================
   FORM MODAL (multi-step progressive)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(26, 32, 31, .55);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 520px;
  background: var(--bg-card); border-radius: var(--r-lg);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.55);
  overflow: hidden;
  transform: translateY(16px) scale(.98); transition: transform .3s cubic-bezier(.2,.9,.3,1);
  max-height: 92vh; display: flex; flex-direction: column;
}
.modal-overlay.show .modal { transform: none; }
.modal-head {
  padding: 26px 30px 0; position: relative;
}
.modal-head .modal-kicker { color: var(--teal-deep); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.modal-head h3 { font-size: 24px; margin-top: 10px; color: var(--ink); line-height: 1.18; }
.modal-head p { color: var(--text-2); font-size: 15px; margin-top: 10px; line-height: 1.55; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: #F1ECE3; color: var(--text-2); display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--coral); color: #fff; }

.modal-progress { display: flex; gap: 6px; padding: 22px 30px 0; }
.modal-progress i { flex: 1; height: 4px; border-radius: 4px; background: var(--line); transition: background .3s ease; }
.modal-progress i.active { background: var(--teal); }
.modal-progress i.done { background: var(--coral); }

.modal-body { padding: 22px 30px 30px; overflow-y: auto; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 15px 16px; font-size: 16px; font-family: inherit; color: var(--ink);
  background: #fff; transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(62,147,139,.13);
}
.field input.err { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(242,106,90,.12); }
.field .hint { font-size: 12.5px; color: var(--text-3); margin-top: 7px; }
.field .err-msg { font-size: 12.5px; color: var(--coral-deep); margin-top: 7px; font-weight: 600; }

.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: var(--r-sm);
  padding: 14px 16px; cursor: pointer; font-weight: 600; font-size: 15px; color: var(--text);
  display: flex; align-items: center; gap: 10px; transition: all .16s ease; text-align: left;
}
.chip:hover { border-color: var(--teal); }
.chip.sel { border-color: var(--teal); background: var(--teal-soft); color: var(--teal-deep); font-weight: 700; }
.chip .chip-ic { width: 22px; height: 22px; flex-shrink: 0; color: currentColor; }

.swatch-pick { display: flex; align-items: center; gap: 14px; margin-top: 6px; }
.swatch-range { flex: 1; }
.swatch-count { font-weight: 800; font-size: 30px; color: var(--teal-deep); min-width: 34px; text-align: center; }
input[type="range"] { -webkit-appearance: none; appearance: none; height: 6px; border-radius: 6px; background: var(--line); width: 100%; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); border: 3px solid #fff; }
input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: var(--teal); cursor: pointer; border: 3px solid #fff; }

.modal-foot { margin-top: 6px; display: flex; gap: 12px; align-items: center; }
.modal-foot .btn { flex: 1; }
.modal-foot .btn-back { flex: 0 0 auto; padding: 18px 22px; }
.modal-legal { font-size: 12px; color: var(--text-3); margin-top: 16px; line-height: 1.5; text-align: center; }
.modal-legal a { color: var(--teal-deep); }

/* success */
.success { text-align: center; padding: 14px 4px 8px; }
.success-mark {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--teal-soft); display: grid; place-items: center; color: var(--teal);
  animation: pop .4s cubic-bezier(.2,1.3,.4,1);
}
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.success h3 { font-size: 25px; color: var(--ink); }
.success p { color: var(--text-2); margin-top: 12px; font-size: 15.5px; line-height: 1.6; }
.success .pill-row { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.success .pill-row .p { background: var(--teal-soft); color: var(--teal-deep); font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: var(--r-pill); }

.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 15px 24px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 15px; z-index: 120; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none; transition: all .3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .t-chk { color: #7BE0A0; }

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  :root { --pad: 28px; }
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-copy { padding-left: 0; max-width: 100%; }
  .hero-stage::after { inset: 0 0 38% 0; left: 0; }
}

@media (max-width: 900px) {
  .main-nav, .header-phone { display: none; }
  .burger { display: block; }
  .pain-wrap, .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .t-grid, .steps, .vp-grid, .flow { grid-template-columns: 1fr; }
  .flow { gap: 18px; max-width: 440px; }
  .flow::before { display: none; }
  .flow-step { flex-direction: row; align-items: center; gap: 22px; text-align: left; }
  .flow-badge { width: 66px; height: 66px; flex-shrink: 0; box-shadow: 0 0 0 6px var(--teal-soft), 0 12px 24px -12px rgba(62,147,139,.6); }
  .flow-step.coral .flow-badge { box-shadow: 0 0 0 6px #FCE3DD, 0 12px 24px -12px rgba(242,106,90,.55); }
  .flow-num { font-size: 24px; }
  .flow-copy { margin-top: 0; }
  .flow-text { margin-top: 6px; max-width: none; margin-left: 0; margin-right: 0; }
  .r-masonry { columns: 2; }
  .pf-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .block { padding: 70px 0; }
  .header-cta .btn { padding: 13px 20px; font-size: 14px; }
}

@media (max-width: 620px) {
  :root { --pad: 18px; }
  body { font-size: 16px; }
  .header-inner { gap: 12px; height: 68px; }
  .logo-img { height: 42px; }
  .header-cta .btn { padding: 11px 15px; font-size: 13.5px; }
  .hero { padding: 14px 0 0; }
  .hero-stage { border-radius: 22px; min-height: 0; }
  .hero-grid { padding: 40px 26px 36px; min-height: 0; }
  .hero-copy { padding-left: 0; }
  .hero-vertical span { font-size: 110px; }
  .feature-strip { grid-template-columns: 1fr 1fr; margin-top: 22px; gap: 12px; }
  .feature-card { min-height: 0; padding: 18px; }
  .hero-metrics { flex-direction: column; }
  .hero-metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,.18); }
  .r-masonry { columns: 1; }
  .pain-photo { height: 320px; }
  .hero-cta-row .btn, .hero-cta-row { width: 100%; }
  .hero-cta-row .btn { width: 100%; }
  .final { padding: 56px 24px; border-radius: 22px; }
  .modal-foot { flex-wrap: wrap; }
  .block-head { margin-bottom: 34px; }
}
