/* ════════════════════════════════════════════════════════════════════════
   ИКИГАЙ · Clarity layer
   ──────────────────────────────────────────────────────────────────────
   Adds, on top of app.css:
   · line-icon base styling
   · "Что вы получаете"  (dark band, #what)
   · "Как это работает"  (warm band, #how)
   · mobile section rhythm + stronger section headers
   Desktop layout untouched except where noted; the heavy mobile work
   lives inside the breakpoints at the bottom.
   ════════════════════════════════════════════════════════════════════════ */

/* ── line icons ─────────────────────────────────────────────── */
.ic {
  display: inline-block;
  width: 28px; height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

/* ════════════════════════════════════════════════════════════
   WHAT  ·  dark "here is what we build" band
   ════════════════════════════════════════════════════════════ */
.band-what {
  background: var(--ink);
  color: var(--bg);
  padding-block: clamp(64px, 8vw, 120px);
  position: relative;
  z-index: 2;
}
.band-what .label { color: var(--accent); }
.band-what .label::before { background: var(--accent); }
.band-what .what-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.04;
  color: var(--bg);
  font-size: clamp(30px, 4.4vw, 56px);
  max-width: 16ch;
  margin-top: 18px;
}
.band-what .what-sub {
  color: color-mix(in srgb, var(--bg) 64%, transparent);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.7;
  max-width: 52ch;
  margin-top: 18px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: color-mix(in srgb, var(--bg) 14%, transparent);
  margin-top: clamp(40px, 5vw, 64px);
}
.what-cell {
  background: var(--ink);
  padding: 30px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s;
}
.what-cell:hover { background: var(--charcoal-3); }
.what-cell .ic { width: 34px; height: 34px; color: var(--accent); }
.what-cell .wc-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--bg);
  line-height: 1.05;
}
.what-cell .wc-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.what-cell .wc-desc {
  color: color-mix(in srgb, var(--bg) 60%, transparent);
  font-size: 13.5px;
  line-height: 1.65;
}

.what-foot {
  margin-top: clamp(36px, 4vw, 52px);
  padding-top: 28px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.what-foot .wf-note {
  color: color-mix(in srgb, var(--bg) 66%, transparent);
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 46ch;
}
.band-what .btn-primary { background: var(--accent); color: var(--ink); }
.band-what .btn-primary:hover { background: var(--bronze-warm); color: var(--ink); }

/* Магазин техники VS Икигай — comparison */
.vs-table {
  margin-top: clamp(28px, 3.6vw, 44px);
  max-width: 820px;
  border-top: 1px solid color-mix(in srgb, var(--bg) 16%, transparent);
}
.vs-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  padding: clamp(13px, 1.7vw, 18px) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 12%, transparent);
}
.vs-col { font-size: clamp(14px, 1.25vw, 17.5px); line-height: 1.35; }
.vs-store { text-align: right; color: color-mix(in srgb, var(--bg) 52%, transparent); }
.vs-iki {
  text-align: left; color: var(--bg); font-weight: 500;
  display: flex; align-items: baseline; gap: 9px;
}
.vs-tick { color: var(--accent); font-size: 0.8em; flex-shrink: 0; }
.vs-mid { text-align: center; color: color-mix(in srgb, var(--accent) 70%, transparent); font-size: 14px; }
.vs-head .vs-col {
  font-family: var(--font-display); font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.01em;
}
.vs-head .vs-store { color: color-mix(in srgb, var(--bg) 62%, transparent); }
.vs-head .vs-iki { color: var(--accent); font-weight: 400; }
.vs-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  color: var(--accent); font-family: var(--font-display); font-style: italic;
  font-size: 14px; letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .vs-row { grid-template-columns: 1fr 26px 1fr; gap: 8px; }
  .vs-mid:not(.vs-head .vs-mid) { font-size: 11px; }
  .vs-badge { width: 30px; height: 30px; font-size: 12px; }
}

/* ════════════════════════════════════════════════════════════
   HOW  ·  warm "from request to first evening" band
   ════════════════════════════════════════════════════════════ */
.band-how {
  background: var(--paper-2);
  padding-block: var(--pad-y);
  position: relative;
  z-index: 2;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 5vw, 64px);
  counter-reset: how;
}
.how-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}
.how-step .hs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.how-step .ic { width: 30px; height: 30px; color: var(--accent); }
.how-step .hs-num {
  counter-increment: how;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--ink-faint);
  font-feature-settings: "tnum" 1;
}
.how-step .hs-num::before { content: "0" counter(how); }
.how-step .hs-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.12;
  color: var(--ink);
}
.how-step .hs-desc {
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.7;
}
.how-cta { margin-top: clamp(32px, 4vw, 48px); }

/* product card icon (4 directions) */
.prod-ic {
  color: var(--accent);
  margin-bottom: 6px;
}
.prod-ic .ic { width: 30px; height: 30px; }

/* ════════════════════════════════════════════════════════════
   MOBILE  ·  rhythm + clarity  (the "простыня" fix)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  /* What grid → 2×2, comfortable */
  .what-grid { grid-template-columns: 1fr 1fr; }
  .what-cell { padding: 24px 20px 26px; gap: 10px; }
  .what-cell .wc-name { font-size: 20px; }
  .what-cell .ic { width: 30px; height: 30px; }
  .band-what .what-title { font-size: clamp(28px, 8vw, 38px); }

  /* How steps stack with a clear connecting rhythm */
  .how-grid { grid-template-columns: 1fr; gap: 0; }
  .how-step { padding: 22px 0 24px; border-top: none; border-bottom: 1px solid var(--line); }
  .how-step:last-child { border-bottom: none; }
  .how-step .hs-num { font-size: 30px; }

  /* ── Section rhythm: alternate warm bands so each block reads
     as its own "chapter" instead of one endless sheet ───────── */
  #concept      { background: var(--bg); }
  #scenarios    { background: var(--paper); }
  #products     { background: var(--paper-2); }
  #pricing      { background: var(--paper); }
  #portfolio    { background: var(--paper-2); }
  #configurator { background: var(--paper); }
  #reviews      { background: var(--paper-2); }
  #form         { background: var(--paper); }

  /* Stronger section headers on mobile — each section announces itself */
  .sec-head { gap: 14px; }
  .sec-head .label {
    font-size: 11.5px;
    letter-spacing: 0.18em;
  }
  .sec-head .label::before { width: 22px; }
}

@media (max-width: 460px) {
  .what-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   CONVERSION LAYER  ·  who / why / why-now / price / risk
   ════════════════════════════════════════════════════════════ */

/* ── urgency offer pill (hero + cta) ───────────────────────── */
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 13px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  line-height: 1.2;
}
.offer-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.offer-pill b { font-weight: 700; color: var(--ink); }

/* ── hero price-anchored trust row ─────────────────────────── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
}
.hero-trust .ht {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.3;
}
.hero-trust .ht svg {
  width: 17px; height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hero-trust .ht b {
  color: var(--ink);
  font-weight: 600;
}
.hero-trust .ht .from {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--accent-deep);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   FOR YOU  ·  self-identification ("это про вас")
   ════════════════════════════════════════════════════════════ */
.band-foryou {
  background: var(--bg);
  padding-block: var(--pad-y);
  position: relative;
  z-index: 2;
}
.foryou-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: clamp(36px, 4vw, 56px);
}
.foryou-card {
  background: var(--paper);
  padding: 34px 30px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .35s;
}
.foryou-card:hover { background: var(--paper-2); }
.foryou-card .fy-q {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.18;
  color: var(--ink);
  text-wrap: balance;
}
.foryou-card .fy-a {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}
.foryou-card .fy-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.foryou-foot {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 18px 28px;
  flex-wrap: wrap;
}
.foryou-foot .fyf-line {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
}
.foryou-foot .fyf-line em { color: var(--accent); font-style: italic; }

/* ── final CTA reinforcement ───────────────────────────────── */
.cta-offer {
  display: inline-flex;
  margin: 0 auto 26px;
  justify-content: center;
}
.cta-assure {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
}
.cta-assure .ca {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-2);
}
.cta-assure .ca svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 760px) {
  .foryou-grid { grid-template-columns: 1fr; }
  .band-foryou { background: var(--bg); }
  .hero-trust { gap: 10px 18px; margin-top: 18px; }
  .hero-offer-wrap { margin-bottom: 14px; }

  /* Hero diagram: keep it comfortably inside the first screen so its
     labels (Кинотеатр / Караоке / Игры / Умный дом) never touch the
     dark section below. */
  .hero-right { max-width: 300px; margin: 4px auto 34px; }
  /* The hover-callout is desktop-only (no hover on touch); hiding it
     prevents it from spilling onto the dark section on phones. */
  .hero-callout { display: none !important; }
}

@media (max-width: 400px) {
  .hero-right { max-width: 260px; margin-bottom: 30px; }
}

/* ════════════════════════════════════════════════════════════
   REVIEWS · example-object showcase (credibility visual)
   ════════════════════════════════════════════════════════════ */
.rev-showcase {
  position: relative;
  margin-bottom: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 300px;
  background: var(--paper);
}
.rev-showcase .rs-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.rev-showcase .rs-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.rev-showcase:hover .rs-photo img { transform: scale(1.04); }
.rev-showcase .rs-photo .rs-tag {
  position: absolute; left: 16px; top: 16px;
  z-index: 2;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  color: var(--bg);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 12px;
  backdrop-filter: blur(6px);
}
.rev-showcase .rs-body {
  padding: clamp(26px, 3vw, 44px);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.rev-showcase .rs-stars { color: var(--accent); letter-spacing: 3px; font-size: 15px; }
.rev-showcase .rs-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: 1.25;
  color: var(--ink);
  text-wrap: pretty;
}
.rev-showcase .rs-by { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.rev-showcase .rs-by .rs-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.rev-showcase .rs-by .rs-where { font-size: 12.5px; color: var(--ink-dim); }
.rev-showcase .rs-by .dotsep { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-faint); }

@media (max-width: 760px) {
  .rev-showcase { grid-template-columns: 1fr; }
  .rev-showcase .rs-photo { min-height: 200px; aspect-ratio: 16/10; }
}

/* ════════════════════════════════════════════════════════════
   TECH BUILDER · "marketplace with consultation & warranty"
   ════════════════════════════════════════════════════════════ */
.band-builder {
  background: var(--paper);
  padding-block: var(--pad-y);
  position: relative;
  z-index: 2;
}
.builder-lead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}
.builder-lead .bl-note {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.builder-lead .bl-note .bn {
  display: flex; align-items: center; gap: 13px;
  background: var(--bg); padding: 16px 18px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.35;
}
.builder-lead .bl-note .bn-ic {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent-soft);
}
.builder-lead .bl-note .bn-ic svg {
  width: 18px; height: 18px; stroke: var(--accent);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.builder-lead .bl-note .bn-t { text-wrap: balance; }
.builder-lead .bl-note .bn b { color: var(--ink); font-weight: 600; }
@media (max-width: 640px) {
  .builder-lead .bl-note { grid-template-columns: 1fr; }
}

.builder-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.builder-cats { display: flex; flex-direction: column; gap: 30px; }
.builder-cat .bc-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.builder-cat .bc-head .ic { width: 19px; height: 19px; color: var(--accent); }
.builder-cat .bc-head h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking); color: var(--ink);
}
.builder-cat .bc-head .bc-hint {
  margin-left: auto; font-size: 11px; color: var(--ink-dim);
  letter-spacing: 0.04em; text-transform: uppercase;
}

.tech-item {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .1s;
  margin-top: 8px;
}
.tech-item:hover { border-color: var(--ink-faint); }
.tech-item.on { border-color: var(--accent); background: var(--accent-soft); }
.tech-item:active { transform: scale(0.995); }
.tech-item .ti-box {
  width: 22px; height: 22px; flex-shrink: 0;
  border: 1.5px solid var(--ink-faint);
  border-radius: 5px;
  display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.tech-item.on .ti-box { background: var(--accent); border-color: var(--accent); }
.tech-item .ti-box svg { width: 14px; height: 14px; stroke: var(--bg); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.tech-item.on .ti-box svg { opacity: 1; }
.tech-item .ti-main { flex: 1; min-width: 0; }
.tech-item .ti-name { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.tech-item .ti-desc { display: block; font-size: 12.5px; color: var(--ink-dim); line-height: 1.45; margin-top: 3px; }
.tech-item .ti-price {
  font-family: var(--font-display);
  font-size: 17px; color: var(--ink); white-space: nowrap;
  font-feature-settings: "tnum" 1;
}
.tech-item .ti-price .pf { font-size: 11px; color: var(--ink-dim); display: block; text-align: right; letter-spacing: 0.04em; }

/* summary rail */
.builder-summary {
  position: sticky; top: 90px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  padding: 26px 24px 24px;
}
.builder-summary .bs-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent);
}
.builder-summary .bs-total {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 44px); font-weight: 400;
  line-height: 1; margin: 10px 0 4px;
  font-feature-settings: "tnum" 1;
}
.builder-summary .bs-total .cur { font-size: 22px; color: color-mix(in srgb, var(--bg) 70%, transparent); }
.builder-summary .bs-approx { font-size: 12px; color: color-mix(in srgb, var(--bg) 55%, transparent); line-height: 1.5; }
.builder-summary .bs-list {
  margin: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--bg) 16%, transparent);
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 9px;
  max-height: 220px; overflow-y: auto;
}
.builder-summary .bs-row { display: flex; justify-content: space-between; gap: 12px; font-size: 12.5px; }
.builder-summary .bs-row span:first-child { color: color-mix(in srgb, var(--bg) 78%, transparent); }
.builder-summary .bs-row span:last-child { color: var(--bg); white-space: nowrap; font-feature-settings: "tnum" 1; }
.builder-summary .bs-empty { font-size: 12.5px; color: color-mix(in srgb, var(--bg) 55%, transparent); line-height: 1.6; margin: 16px 0; }
.builder-summary .btn-primary { width: 100%; justify-content: center; background: var(--accent); color: var(--ink); margin-top: 6px; }
.builder-summary .btn-primary:hover { background: var(--bronze-warm); }
.builder-summary .bs-foot { font-size: 11.5px; color: color-mix(in srgb, var(--bg) 55%, transparent); line-height: 1.55; margin-top: 12px; text-align: center; }

@media (max-width: 880px) {
  .builder-layout { grid-template-columns: 1fr; }
  .builder-summary { position: static; order: 2; }
}

/* ════════════════════════════════════════════════════════════
   MARKET · transparent equipment pricing ("marketplace + service")
   ════════════════════════════════════════════════════════════ */
.market-layout {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: clamp(36px, 4vw, 56px);
}
.market-cats { background: var(--bg); }
.market-cat { border-bottom: 1px solid var(--line); }
.market-cat:last-child { border-bottom: none; }
.market-cat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px clamp(20px, 2.5vw, 32px) 12px;
}
.market-cat-head .ic { width: 22px; height: 22px; color: var(--accent); }
.market-cat-head .mc-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  color: var(--ink);
}
.market-cat-head .mc-jp { color: var(--accent); font-family: var(--font-display); font-size: 15px; margin-left: auto; opacity: .7; }
.market-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 13px clamp(20px, 2.5vw, 32px);
  cursor: pointer;
  transition: background .2s;
}
.market-item:hover { background: var(--paper); }
.market-item.on { background: var(--accent-soft); }
.market-item .mi-info { min-width: 0; }
.market-item .mi-name { font-size: 14.5px; color: var(--ink); font-weight: 500; line-height: 1.3; }
.market-item .mi-sub { font-size: 12px; color: var(--ink-dim); line-height: 1.4; margin-top: 2px; }
.market-item .mi-price {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--accent-deep);
  white-space: nowrap;
  font-feature-settings: "tnum" 1;
}
.market-item .mi-add {
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .2s;
}
.market-item:hover .mi-add { border-color: var(--accent); color: var(--accent); }
.market-item.on .mi-add { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* estimate cart */
.market-cart {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column;
  position: sticky; top: 90px;
  align-self: start;
}
.market-cart .mk-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.market-cart .mk-title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: var(--display-weight);
  color: var(--bg); margin: 8px 0 18px; line-height: 1.1;
}
.market-cart .mk-list {
  display: flex; flex-direction: column; gap: 9px;
  min-height: 44px;
  max-height: 230px; overflow-y: auto;
  padding-bottom: 4px;
}
.market-cart .mk-empty { color: color-mix(in srgb, var(--bg) 50%, transparent); font-size: 13px; line-height: 1.6; }
.market-cart .mk-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; align-items: baseline; }
.market-cart .mk-row .r-name { color: color-mix(in srgb, var(--bg) 82%, transparent); }
.market-cart .mk-row .r-price { color: var(--bg); font-variant-numeric: tabular-nums; white-space: nowrap; }
.market-cart .mk-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid color-mix(in srgb, var(--bg) 18%, transparent);
  margin-top: 16px; padding-top: 16px;
}
.market-cart .mk-total .t-lbl { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: color-mix(in srgb, var(--bg) 55%, transparent); }
.market-cart .mk-total .t-amt { font-family: var(--font-display); font-size: 30px; color: var(--accent); line-height: 1; }
.market-cart .btn-primary { background: var(--accent); color: var(--ink); width: 100%; justify-content: center; margin-top: 18px; }
.market-cart .btn-primary:hover { background: var(--bronze-warm); color: var(--ink); }
.market-cart .mk-assure { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.market-cart .mk-assure li { display: flex; align-items: center; gap: 9px; font-size: 12px; color: color-mix(in srgb, var(--bg) 72%, transparent); }
.market-cart .mk-assure svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.market-note { font-size: 12px; color: var(--ink-dim); margin-top: 16px; line-height: 1.6; }

@media (max-width: 860px) {
  .market-layout { grid-template-columns: 1fr; }
  .market-cart { position: static; }
}
@media (max-width: 520px) {
  .market-item { grid-template-columns: 1fr auto; grid-template-areas: "info price" "info add"; gap: 4px 12px; }
  .market-item .mi-info { grid-area: info; }
  .market-item .mi-price { grid-area: price; }
  .market-item .mi-add { grid-area: add; justify-self: end; }
}

/* ════════════════════════════════════════════════════════════
   CINEMATIC HERO  ·  «Икигай дома» — fullscreen photo montage
   ════════════════════════════════════════════════════════════ */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0e0d0a;
  color: #fff;
}
.hc-bg { position: absolute; inset: 0; z-index: 0; }
.hc-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease;
  will-change: opacity, transform;
  /* darkened ~70% — cinematic, lets the white headline read cleanly */
  filter: brightness(0.3) saturate(0.8) contrast(1.04);
}
.hc-slide.on {
  opacity: 1;
  animation: hcZoom 7s ease-out forwards;
}
@keyframes hcZoom { from { transform: scale(1.08); } to { transform: scale(1.16); } }
[data-motion="off"] .hc-slide.on { animation: none; transform: scale(1.08); }

.hc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,13,10,0.70) 0%, rgba(14,13,10,0.32) 34%, rgba(14,13,10,0.42) 60%, rgba(14,13,10,0.92) 100%);
}
.hc-overlay::after {
  /* subtle film grain / vignette for depth */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 40%, transparent 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hc-content {
  position: relative; z-index: 2;
  padding-top: 150px;
  padding-bottom: 26px;
}
.hc-content .offer-pill {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.38);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hc-content .offer-pill b { color: #fff; }
.hc-content .label { color: rgba(255,255,255,0.82); }
.hc-content .label::before { background: var(--accent); }

.hc-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(46px, 8.2vw, 112px);
  line-height: 0.98;
  color: #fff;
  margin: 16px 0 0;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}
.hc-title em { color: var(--accent); font-style: italic; }
.hc-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.62;
  max-width: 56ch;
  margin-top: 20px;
  text-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
.hc-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hc-ctas .btn-ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.hc-ctas .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.hc-trust {
  display: flex; flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 28px;
}
.hc-trust .ht {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: rgba(255,255,255,0.9); line-height: 1.3;
}
.hc-trust .ht svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hc-trust .ht b { color: #fff; font-weight: 600; }
.hc-trust .ht .from { font-family: var(--font-display); font-size: 17px; color: var(--accent); font-weight: 500; }

/* chips that name the four directions, riding the bottom of the hero */
.hc-chips {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 0 var(--pad-x) 30px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hc-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 13px; font-weight: 500; color: #fff;
}
.hc-chip svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* slide progress dots */
.hc-dots { position: absolute; right: var(--pad-x); bottom: 30px; z-index: 3; display: flex; gap: 8px; }
.hc-dots button {
  width: 28px; height: 3px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.3); transition: background .3s;
}
.hc-dots button.on { background: var(--accent); }

@media (max-width: 760px) {
  .hc-content { padding-top: 116px; }
  .hc-title { font-size: clamp(38px, 11vw, 56px); }
  .hc-trust { gap: 10px 18px; }
  .hc-chips { gap: 8px; padding-bottom: 24px; }
  .hc-chip { padding: 8px 12px; font-size: 12px; }
  .hc-ctas { flex-direction: column; align-items: stretch; }
  .hc-ctas .btn { justify-content: center; }
  .hc-dots { display: none; }
}

/* ════════════════════════════════════════════════════════════
   EDITORIAL HERO  ·  premium type left + photo-ikigai diagram right
   Static SVG — paints instantly, no React dependency.
   ════════════════════════════════════════════════════════════ */
.hero-ed {
  position: relative;
  background: var(--bg);
  padding-top: clamp(124px, 13vw, 184px);
  padding-bottom: clamp(56px, 7vw, 104px);
  overflow: hidden;
}
.hero-ed-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(28px, 4.5vw, 76px);
  align-items: center;
}
.hero-ed-text { max-width: 640px; }
.hero-ed-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.0;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: balance;
}
.hero-ed-title em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-ed-sub {
  color: var(--ink-dim);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
  max-width: 52ch;
  margin-top: 24px;
}
.hero-ed-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-ed-trust {
  display: flex; flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-ed-trust .ht {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--ink-dim); line-height: 1.3;
}
.hero-ed-trust .ht svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-ed-trust .ht b { color: var(--ink); font-weight: 600; }
.hero-ed-trust .ht .from { font-family: var(--font-display); font-size: 18px; color: var(--accent); font-weight: 500; }

/* ── interactive ikigai diagram (clean rings + auto-cycling center hub) ── */
.hero-ed-figure { position: relative; width: 100%; }
.hero-ikigai-wrap { position: relative; width: 100%; }
.hero-ikigai { width: 100%; height: auto; display: block; overflow: visible; }

.hero-ikigai .hi-ring {
  fill: var(--c, var(--accent));
  fill-opacity: 0;
  stroke: var(--c, var(--accent));
  stroke-width: 0.8;
  stroke-opacity: 0.42;
  transition: fill-opacity .6s ease, stroke .6s ease, stroke-width .6s ease, stroke-opacity .6s ease;
}
.hero-ikigai .hi-ring-g.on .hi-ring {
  fill-opacity: 0.14;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-opacity: 1;
}
.hero-ikigai .hi-dots circle { fill: var(--bg); stroke: var(--accent); stroke-width: 1; }

.hero-ikigai .hi-label-g { opacity: 0.42; transition: opacity .5s ease; }
.hero-ikigai .hi-label-g.on { opacity: 1; }
.hero-ikigai .hi-name {
  font-family: var(--font-display); font-size: 23px; font-weight: 400;
  fill: var(--ink); letter-spacing: -0.01em;
}
.hero-ikigai .hi-sub {
  font-family: var(--font-body); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.16em; fill: var(--ink-faint); text-transform: uppercase;
  transition: fill .5s ease;
}
.hero-ikigai .hi-label-g.on .hi-sub { fill: var(--accent); }

/* center hub */
.hi-hub {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(176px, 42%, 232px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: 0 18px 50px -22px rgba(22, 20, 15, 0.45);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px; text-align: center;
  padding: 18px;
}
.hi-hub-kanji, .hi-hub-name, .hi-hub-desc {
  transition: opacity .22s ease, transform .22s ease;
}
.hi-hub.switching .hi-hub-kanji,
.hi-hub.switching .hi-hub-name,
.hi-hub.switching .hi-hub-desc { opacity: 0; transform: translateY(5px); }
.hi-hub-kanji {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 2.2vw, 28px); line-height: 1;
  color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hi-hub-name {
  font-family: var(--font-display); font-weight: var(--display-weight);
  font-size: clamp(16px, 1.5vw, 19px); line-height: 1.05;
  color: var(--ink); letter-spacing: -0.01em;
}
.hi-hub-desc {
  font-family: var(--font-body); font-size: clamp(10.5px, 0.92vw, 12px);
  line-height: 1.36; color: var(--ink-dim);
  max-width: 17ch; text-wrap: balance;
}
.hi-hub-next {
  margin-top: 5px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  background: transparent; color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.hi-hub-next:hover { background: var(--accent); color: var(--bg); transform: scale(1.07); }

@media (max-width: 980px) {
  .hero-ed-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-ed-figure { max-width: 560px; margin: 4px auto 0; }
}
@media (max-width: 760px) {
  .hero-ed { padding-top: 108px; }
  .hero-ed-title { font-size: clamp(38px, 11vw, 56px); }
  .hero-ed-ctas { flex-direction: column; align-items: stretch; }
  .hero-ed-ctas .btn { justify-content: center; }
  .hero-ed-trust { gap: 10px 18px; }
}
@media (max-width: 520px) {
  .hero-ed { padding-top: 90px; padding-bottom: 40px; }
  .hi-hub { width: clamp(148px, 46%, 188px); padding: 15px; }
  .hi-hub-desc { font-size: 11px; max-width: 18ch; }
  .hi-hub-next { width: 32px; height: 32px; }
  .hero-ikigai .hi-name { font-size: 26px; }
  .hero-ikigai .hi-sub { font-size: 12px; }
}

/* ════════════════════════════════════════════════════════════
   BUDGET split label  +  SCENE VISUALIZER
   ════════════════════════════════════════════════════════════ */
.builder-split { display: flex; align-items: center; gap: 18px; margin: 46px 0 30px; }
.builder-split::before, .builder-split::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.builder-split span {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap;
}

.scene-viz { padding-block: var(--pad-y); background: var(--bg); }
.sv-head { margin-bottom: 36px; }
.sv-title {
  font-family: var(--font-display); font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(32px, 4.4vw, 60px); line-height: 1.0; margin-top: 14px; text-wrap: balance;
}
.sv-title em { color: var(--accent); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }

/* 99+ сценариев отдыха */
.scn-lead { font-size: clamp(14px, 1.15vw, 16px); color: var(--ink-dim); line-height: 1.7; max-width: 560px; }
.scn-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.2vw, 14px);
  margin-top: clamp(22px, 2.6vw, 32px);
}
.scn-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: clamp(16px, 1.6vw, 22px);
  background: var(--paper); border: 1px solid var(--line);
  min-height: 118px; justify-content: space-between;
  transition: border-color .3s, transform .3s, background .3s;
}
.scn-card:hover { border-color: color-mix(in srgb, var(--accent) 55%, transparent); transform: translateY(-3px); }
.scn-jp {
  font-family: var(--font-display); font-style: italic; color: var(--accent);
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.scn-name { font-size: clamp(13px, 1.05vw, 15px); color: var(--ink); line-height: 1.3; }
.scn-cta { margin-top: clamp(24px, 3vw, 36px); }
@media (max-width: 760px) { .scn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .scn-grid { grid-template-columns: 1fr; } }

/* Что входит в проект — scope of work */
.scope-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}
.scope-item {
  display: flex; flex-direction: column; gap: 9px;
  padding: clamp(18px, 1.8vw, 26px);
  background: var(--paper); border: 1px solid var(--line);
  transition: border-color .3s, transform .3s;
}
.scope-item:hover { border-color: color-mix(in srgb, var(--accent) 50%, transparent); transform: translateY(-3px); }
.scope-num {
  font-family: var(--font-display); font-style: italic; color: var(--accent);
  font-size: 22px; line-height: 1;
}
.scope-name { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.2; }
.scope-desc { font-size: 12.5px; color: var(--ink-dim); line-height: 1.55; }
.scope-result {
  grid-column: span 1;
  display: flex; flex-direction: column; gap: 12px; justify-content: center;
  padding: clamp(18px, 1.8vw, 26px);
  background: var(--ink); color: var(--bg);
}
.scope-result-jp { font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 30px; line-height: 1; }
.scope-result-t { font-size: 14px; line-height: 1.55; color: color-mix(in srgb, var(--bg) 82%, transparent); }
@media (max-width: 880px) { .scope-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .scope-grid { grid-template-columns: 1fr; } }

/* Что меняется после установки */
.after-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(22px, 3vw, 44px); align-items: stretch;
}
.after-photo { position: relative; overflow: hidden; min-height: 280px; border: 1px solid var(--line); }
.after-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.after-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; justify-content: center; gap: clamp(14px, 1.6vw, 20px); }
.after-list li { display: flex; gap: 16px; align-items: flex-start; padding-bottom: clamp(14px, 1.6vw, 20px); border-bottom: 1px solid var(--line); }
.after-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.after-jp {
  font-family: var(--font-display); font-style: italic; color: var(--accent);
  font-size: clamp(26px, 2.4vw, 34px); line-height: 1; flex-shrink: 0;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.after-txt { display: flex; flex-direction: column; gap: 3px; }
.after-txt b { font-size: clamp(15px, 1.3vw, 18.5px); font-weight: 500; line-height: 1.25; }
.after-txt span { font-size: 13px; color: var(--ink-dim); line-height: 1.4; }
.after-punch {
  margin-top: clamp(26px, 3.2vw, 40px);
  font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.2; text-wrap: balance; max-width: 720px;
}
.after-punch em { color: var(--accent); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100; }
@media (max-width: 720px) {
  .after-grid { grid-template-columns: 1fr; }
  .after-photo { min-height: 220px; }
}

/* Hero carousel · "видео загружается" badge (photos are placeholders for video) */
.hcar-soon {
  position: absolute; left: 14px; top: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: color-mix(in srgb, #0a0907 62%, transparent);
  backdrop-filter: blur(6px);
  padding: 7px 12px; border: 1px solid color-mix(in srgb, #fff 26%, transparent);
  border-radius: 100px;
}
.hcar-soon .hs-tri { color: var(--accent); font-size: 8px; }

.sv-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  background: #16140f; border: 1px solid var(--line);
}
.sv-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
}
.sv-img.on { opacity: 1; transform: scale(1); }
.sv-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,13,10,0.18) 0%, rgba(14,13,10,0) 36%, rgba(14,13,10,0.6) 100%);
}
.sv-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-end; gap: 18px;
  padding: clamp(20px, 3vw, 40px);
}
.sv-cap-jp {
  font-family: var(--font-display); font-style: italic; line-height: 0.9;
  font-size: clamp(38px, 5vw, 70px); color: var(--accent);
  font-variation-settings: "opsz" 144, "SOFT" 100; flex-shrink: 0;
}
.sv-cap-name { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); color: #fff; line-height: 1.05; margin-bottom: 6px; }
.sv-cap-desc { font-family: var(--font-body); font-size: clamp(13px, 1.1vw, 15.5px); color: rgba(255,255,255,0.82); line-height: 1.5; max-width: 48ch; }
.sv-cap-jp, .sv-cap-name, .sv-cap-desc { transition: opacity .24s ease, transform .24s ease; }
.sv-cap.switching .sv-cap-jp,
.sv-cap.switching .sv-cap-name,
.sv-cap.switching .sv-cap-desc { opacity: 0; transform: translateY(6px); }

.sv-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-top: 0;
}
.sv-tab {
  background: var(--paper); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 14px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-dim);
  border-top: 2px solid transparent;
  transition: background .25s, color .25s, border-color .25s;
}
.sv-tab .jp { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink-faint); transition: color .25s; }
.sv-tab:hover { background: var(--paper-2); color: var(--ink); }
.sv-tab.on { background: var(--ink); color: #fff; border-top-color: var(--accent); }
.sv-tab.on .jp { color: var(--accent); }

@media (max-width: 760px) {
  .sv-frame { aspect-ratio: 4 / 5; }
  .sv-cap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sv-tabs { grid-template-columns: repeat(2, 1fr); }
}

/* ── Numbers moved into the closing CTA ──────────────────────────────── */
.cta-stats { max-width: 1000px; margin: 0 auto clamp(40px, 5vw, 60px); }

/* ── Closing CTA — centered finish ── */
.cta { text-align: center; }
.cta .label.center { justify-content: center; }
.cta-title { margin-left: auto; margin-right: auto; }
.cta-sub { margin-inline: auto; }
.cta-btns { justify-content: center; }
.cta-assure { justify-content: center; }
.cta-contacts { justify-content: center; gap: clamp(36px, 6vw, 60px); }
.cta-contacts > div { text-align: center; align-items: center; }

.service-compact .service-inner { text-align: left !important; }
.service-compact .service-head { text-align: left !important; }
.service-compact .service-head .label { justify-content: flex-start !important; }
.service-compact .service-intro { margin-inline: 0 !important; }
.service-compact .service-foot { align-items: flex-start !important; text-align: left !important; }
.service-compact .service-bar { justify-content: flex-start !important; }
.service-compact .service-gift { margin-left: 0 !important; margin-right: 0 !important; }
