/* ============ TOKENS — YORHUS brand ============ */
:root {
  --ink: #062061;          /* exact brand navy (sampled from logo) */
  --ink-deep: #03174F;     /* darker for footer/contrast */
  --ink-soft: #14306F;     /* lighter navy for dark cards */
  --ink-line: rgba(232,224,208,0.14);
  --cream: #F5F0E4;        /* warm ivory bg */
  --cream-warm: #EDE6D2;
  --cream-deep: #DCD2BC;
  --gold: #C4A050;         /* brand gold */
  --gold-deep: #A07830;
  --gold-soft: #D9BC76;
  --muted: #6B7A8E;        /* navy-tinted grey for body text */
  --muted-on-dark: rgba(232,224,208,0.65);
  --text-on-dark: #E8E0D0;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Onest', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  /* ── motion system (Emil Kowalski-style physics) ── */
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);   /* spring-like settle */
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-snap: cubic-bezier(0.5, 1.4, 0.5, 1);  /* tiny overshoot */
  --t-fast: 0.18s;
  --t-mid: 0.34s;
  --t-slow: 0.5s;
  --lift: 0 10px 30px -12px rgba(6,32,97,0.28);
  --lift-strong: 0 18px 40px -16px rgba(6,32,97,0.34);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
em { font-style: italic; color: var(--gold-deep); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(240,235,222,0.08);
}

/* TOP UTILITY BAR */
.nav-top {
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(240,235,222,0.07);
  transition: height 0.28s ease, opacity 0.2s ease;
  overflow: hidden;
}
/* компактный хедер при скролле (только на странице калькулятора) — освобождает высоту для закреплённой панели */
.nav.compact .nav-top { height: 0 !important; opacity: 0; border-bottom-color: transparent; pointer-events: none; }
.nav-top-inner {
  display: flex; align-items: center;
  gap: 24px;
  padding: 6px 0;
  font-size: 13px;
}
.nav-top-spacer { flex: 1; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--cream);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone .nav-icon { width: 16px; height: 16px; color: var(--gold); }
.nav-socials {
  display: flex; align-items: center;
  gap: 4px;
}
.nav-soc {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: rgba(240,235,222,0.65);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.nav-soc svg { width: 15px; height: 15px; display: block; }
.nav-soc:hover {
  color: var(--gold);
  background: rgba(240,235,222,0.06);
  transform: translateY(-1px);
}
.nav-soc-wa:hover { color: #25D366; }
.nav-soc-tg:hover { color: #29B5F0; }
.nav-soc-vb:hover { color: #7360F2; }
.nav-soc-fb:hover { color: #1877F2; }
.nav-soc-tt:hover { color: #ff3b5c; }
.nav-soc-divider {
  width: 1px; height: 18px;
  background: rgba(232,224,208,0.2);
  margin: 0 4px;
}

@media (max-width: 760px) {
  .nav-phone span { display: none; }
  .nav-top-inner { gap: 12px; }
  .nav-soc { width: 30px; height: 30px; }
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  padding: 12px 0;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
}
.logo-mark {
  width: 56px; height: auto;
  aspect-ratio: 720 / 923;
  background: url('logo.png') center/contain no-repeat;
  flex-shrink: 0;
  display: block;
}
.logo-text {
  display: flex; flex-direction: column;
  gap: 4px;
  line-height: 1;
}
.logo-text-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.2em;
  color: var(--cream);
}
.logo-text-tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,222,0.6);
  white-space: nowrap;
  line-height: 1.4;
}
.nav-links {
  display: flex; gap: 32px; margin-left: auto;
  font-size: 15px; font-weight: 500;
}
.nav-links a { color: var(--cream); opacity: 0.78; transition: opacity 0.2s, color 0.2s; position: relative; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.mobile-drawer-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.lang-switch { display: flex; gap: 4px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; }
.lang-switch button, .lang-switch a {
  padding: 6px 10px; color: rgba(240,235,222,0.55);
  border-radius: 0;
  border-bottom: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lang-switch button:hover, .lang-switch a:hover { color: var(--cream); }
@media (max-width: 480px) { .lang-switch { gap: 2px; } .lang-switch a, .lang-switch button { padding: 6px 7px; } .lang-switch a:last-child, .lang-switch button:last-child { padding-right: 0; } }
@media (max-width: 540px) { .logo-text-tag { display: none; } .nav-inner { gap: 16px; } }
.lang-switch button.active, .lang-switch a.active { color: var(--gold); border-bottom-color: var(--gold); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-soft), color var(--t-fast) var(--ease-soft), box-shadow var(--t-fast) var(--ease-soft), border-color var(--t-fast) var(--ease-soft);
  will-change: transform;
}
/* ─ micro-interaction: hover lifts, press depresses (Kowalski physics) ─ */
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.975); transition-duration: 0.06s; }
.btn-primary:hover, .btn-gold:hover { box-shadow: 0 10px 24px -8px rgba(3,23,79,0.45); }
@media (prefers-reduced-motion: reduce) {
  .btn, .btn .arr { transition: background var(--t-fast), color var(--t-fast); }
  .btn:hover, .btn:active { transform: none; }
}
.btn-primary { background: var(--gold); color: var(--ink); font-weight: 600; }
.btn-primary:hover { background: var(--cream); color: var(--ink); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(27,45,79,0.18); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(232,224,208,0.3); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn .arr { width: 14px; height: 1px; background: currentColor; position: relative; transition: transform var(--t-mid) var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn .arr::after { content: ''; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }

.burger { display: none; width: 28px; height: 18px; position: relative; z-index: 120; cursor: pointer; }
.burger span { position: absolute; left: 0; right: 0; height: 1.5px; background: var(--cream); transition: transform 0.3s, opacity 0.2s; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* MOBILE DRAWER */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 84vw);
  height: 100vh; height: 100dvh;
  background: var(--ink-deep);
  border-left: 1px solid rgba(240,235,222,0.1);
  padding: 100px 32px 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
  z-index: 110;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); visibility: visible; }
.mobile-drawer-links { display: flex; flex-direction: column; }
.mobile-drawer-links a {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid rgba(240,235,222,0.08);
  transition: color 0.2s;
}
.mobile-drawer-links a:hover { color: var(--gold); }
.mobile-drawer-cta { margin-top: 28px; justify-content: center; }
.mobile-drawer-phone {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  color: var(--cream);
  font-size: 16px; font-weight: 500;
}
.mobile-drawer-phone svg { width: 18px; height: 18px; color: var(--gold); }
/* Backdrop is NON-interactive and invisible until .open — an invisible fixed
   layer with pointer-events:auto was the root cause of dead taps on mobile. */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(3,12,40,0.5);
  backdrop-filter: blur(2px);
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
body.drawer-open { overflow: hidden; }

@media (max-width: 960px) {
  html { scroll-padding-top: 72px; }
  .nav-top { display: none; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-right .btn { display: none; }
  .mobile-drawer { display: flex; }
  .mobile-overlay { display: block; }
}

/* ============ HERO ============ */
.hero {
  padding: clamp(70px, 11vw, 120px) 0 clamp(60px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); }
.hero h1 { margin-bottom: 24px; text-wrap: balance; }
.hero p.lede {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0; }

/* HERO BULLETS */
.hero-bullets {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0 0 40px;
  max-width: 52ch;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.hero-bullet-check {
  width: 24px; height: 24px;
  flex-shrink: 0;
  background: var(--ink);
  display: grid; place-items: center;
  border-radius: 50%;
  position: relative;
}
.hero-bullet-check::after {
  content: '';
  width: 9px; height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translate(1px, -1px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(27,45,79,0.12);
  padding-top: 28px;
}
.hero-stat { padding-right: 16px; }
.hero-stat + .hero-stat { padding-left: 24px; border-left: 1px solid rgba(27,45,79,0.12); }
.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 42px);
  line-height: 1; color: var(--ink);
  margin-bottom: 8px;
}
.hero-stat-num em { color: var(--gold-deep); font-style: italic; }
.hero-stat-lbl { font-size: 12px; color: var(--muted); letter-spacing: 0.02em; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  border-radius: 2px;
  overflow: hidden;
}
.hero-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual-tag {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--ink); color: var(--cream);
  padding: 12px 16px; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 2;
}
.hero-visual-tag strong { color: var(--gold); font-weight: 500; }
.hero-visual-meta {
  position: absolute; right: 20px; top: 20px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: right;
  line-height: 1.8;
  background: rgba(18,32,57,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 14px;
  border: 1px solid rgba(232,224,208,0.18);
  z-index: 2;
}
.hero-house-mark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 1;
  opacity: 0.18;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3; max-height: 360px; }
  .hero-stats { gap: 0; }
  .hero-stat + .hero-stat { padding-left: 16px; }
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 20px;
  font-size: 13px; line-height: 1.4;
}
.trust-item + .trust-item { border-left: 1px solid var(--ink-line); }
.trust-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.trust-item--secondary .trust-num {
  font-family: var(--mono);
  font-size: clamp(14px, 1.7vw, 19px);
  line-height: 1.1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.trust-lbl { color: rgba(232,224,208,0.85); }
.eco-grade { color: #2F5E37; font-weight: 700; }
.trust-num-eco { color: #7BC96F; }
@media (max-width: 900px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .trust-item:nth-child(odd) { border-left: none; }
  .trust-item:nth-child(2) { border-left: 1px solid var(--ink-line); }
}
@media (max-width: 560px) {
  .trust-row { grid-template-columns: 1fr; }
  .trust-item { border-left: none !important; padding: 0; }
}

/* ============ ADVANTAGES ============ */
.section { padding: clamp(80px, 10vw, 130px) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1.25fr;
  gap: clamp(28px, 4vw, 64px); align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head h2 { text-wrap: balance; margin-top: 4px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head p { color: var(--muted); max-width: 56ch; text-wrap: pretty; font-size: 16px; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; }
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(27,45,79,0.12);
  border: 1px solid rgba(27,45,79,0.12);
}
.adv-cell {
  background: var(--cream);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
}
.adv-cell:hover { background: var(--cream-warm); }
.adv-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 8px;
}
.adv-num {
  font-family: var(--serif);
  font-size: 36px; color: var(--gold-deep);
  line-height: 1;
}
.tech-reliability-grid .adv-cell:not(:first-child) .adv-num,
.quality-check-grid .adv-num {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(196,160,80,0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-deep) !important;
  background: rgba(196,160,80,0.08);
}
.adv-title { font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.adv-desc { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
@media (max-width: 900px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .adv-grid { grid-template-columns: 1fr; } }

/* ============ COMPARE TABLE (SIP vs others) ============ */
.cmp-section { background: var(--cream-warm); }
.cmp-wrap {
  margin-top: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(6,32,97,0.12);
  background: var(--cream);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cmp-table { width: 100%; border-collapse: collapse; }
@media (max-width: 640px) {
  .cmp-table { min-width: 560px; }
}
.cmp-table th, .cmp-table td {
  padding: 18px clamp(14px, 2vw, 26px);
  text-align: left;
  border-bottom: 1px solid rgba(6,32,97,0.1);
}
.cmp-table thead th {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500;
}
.cmp-table thead th:first-child { color: var(--muted); }
.cmp-col-sip {
  background: var(--ink); color: var(--cream) !important;
  text-align: center !important;
}
.cmp-col-sip .cmp-brand { font-family: var(--serif); font-size: 17px; letter-spacing: 0.1em; color: var(--gold); }
.cmp-col-other { color: var(--muted); text-align: center !important; }
.cmp-table tbody th {
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  color: var(--ink); width: 36%;
}
.cmp-table td { text-align: center; font-size: 14.5px; color: var(--muted); }
.cmp-table td.cmp-sip-cell {
  background: rgba(196,160,80,0.07);
  font-weight: 600; color: var(--ink);
}
.cmp-yes { color: #2F5E37; font-weight: 600; }
.cmp-no  { color: #C56A4A; }
.cmp-warn { color: var(--gold-deep); }
.cmp-ico { display: inline-flex; vertical-align: -2px; margin-right: 6px; }
.cmp-ico svg { width: 16px; height: 16px; }
.cmp-table tbody tr:last-child th,
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-note {
  margin-top: 18px; font-size: 13px; color: var(--muted);
  font-style: italic;
}
@media (max-width: 640px) {
  .cmp-table th, .cmp-table td { padding: 13px 10px; font-size: 13px; }
  .cmp-table tbody th { width: 40%; font-size: 13.5px; }
  .cmp-label-full { display: none; }
}

/* ============ LIVING ============ */
.living-section {
  background: var(--cream-warm);
}
.lvg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(6,32,97,0.12);
  border: 1px solid rgba(6,32,97,0.12);
}
.lvg-cell {
  background: var(--cream);
  padding: 44px 32px 40px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background 0.3s;
}
.lvg-cell:hover { background: var(--cream-warm); }
.lvg-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.lvg-icon svg { width: 36px; height: 36px; display: block; }
.lvg-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
}
.lvg-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .lvg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lvg-grid { grid-template-columns: 1fr; }
}

/* ============ FLOATING CONTACT BUBBLES ============ */
.float-contacts {
  position: fixed;
  right: 22px; bottom: 22px;
  display: flex; flex-direction: column;
  gap: 12px;
  z-index: 90;
}
.float-bubble {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(3,12,40,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform: translateY(0);
}
.float-bubble svg { width: 28px; height: 28px; }
.float-bubble:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px -6px rgba(3,12,40,0.5); }
.float-wa { background: #25D366; }
.float-tg { background: #29B5F0; }
@media (max-width: 960px) {
  /* на мобильных плавающие кружки заменяет единый нижний CTA-док */
  .float-contacts { display: none; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ nZEB ============ */
.nzeb-section {
  background: var(--ink-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.nzeb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 12% 16%, rgba(196,160,80,0.12), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 88%, rgba(196,160,80,0.07), transparent 62%);
  pointer-events: none;
}
.nzeb-inner { position: relative; z-index: 1; }

/* header */
.nzeb-head { max-width: 880px; margin-bottom: clamp(48px, 6vw, 72px); }
.nzeb-head .eyebrow { display: block; margin-bottom: 18px; }
.nzeb-h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 16px;
  text-wrap: balance;
}
.nzeb-standards {
  display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nzeb-standards .chip {
  border: 1px solid rgba(196,160,80,0.6);
  color: var(--gold);
  font-size: clamp(16px, 2vw, 26px); font-weight: 600; letter-spacing: 0.06em;
  padding: 9px 20px; border-radius: 4px;
}

/* claim band — PHI hero */
.nzeb-claim {
  margin: clamp(40px, 5vw, 60px) 0 clamp(56px, 7vw, 88px);
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(196,160,80,0.32);
  background:
    radial-gradient(ellipse 80% 130% at 0% 0%, rgba(196,160,80,0.10), transparent 58%),
    rgba(232,224,208,0.02);
  position: relative;
}
.nzeb-claim-kicker {
  display: block;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.nzeb-claim-lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.24;
  color: var(--cream);
  text-wrap: balance;
  max-width: 34ch;
}
.nzeb-claim-lead strong { color: var(--gold); font-weight: 500; }
.nzeb-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(32px, 4vw, 46px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(196,160,80,0.22);
}
.nzeb-metric { display: flex; flex-direction: column; gap: 10px; }
.nzeb-metric-num {
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.01em;
  display: flex; flex-direction: column; gap: 9px;
}
.nzeb-metric-num .u {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.nzeb-metric-lbl {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(232,224,208,0.72);
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .nzeb-metrics { grid-template-columns: 1fr; gap: 24px; }
  .nzeb-claim-lead { max-width: none; }
}

/* narrative */
.nzeb-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
  border-bottom: 1px solid rgba(232,224,208,0.14);
}
.nzeb-narrative p { font-size: 17px; line-height: 1.7; color: var(--muted-on-dark); text-wrap: pretty; }
.nzeb-narrative p + p { margin-top: 18px; }
.nzeb-flip {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--cream);
}
.nzeb-flip em { color: var(--gold); font-style: italic; }
.nzeb-flip-small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232,224,208,0.5);
  margin-bottom: 18px;
}

/* benefits */
.nzeb-benefits-label {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--cream);
  margin-bottom: 28px;
}
.nzeb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,224,208,0.14);
  border: 1px solid rgba(232,224,208,0.14);
  margin-bottom: clamp(56px, 7vw, 88px);
}
.nzeb-cell {
  position: relative;
  background: var(--ink);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background var(--t-mid) var(--ease-soft);
}
.nzeb-cell:hover { background: var(--ink-soft); }
.nzeb-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  color: var(--gold);
  transition: transform var(--t-mid) var(--ease-out), color var(--t-mid) var(--ease-soft);
}
.nzeb-cell:hover .nzeb-icon { transform: translateY(-4px) scale(1.08); }
.nzeb-icon svg { width: 30px; height: 30px; display: block; }
.nzeb-desc {
  color: var(--cream);
  font-size: 15.5px;
  line-height: 1.5;
  font-weight: 400;
}

/* explainers */
.nzeb-explainers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.nzeb-explain {
  background: var(--ink-soft);
  color: var(--cream);
  padding: clamp(32px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,160,80,0.26);
}
.nzeb-explain-tag {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.nzeb-explain-h {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 16px;
}
.nzeb-explain-p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(232,224,208,0.78);
}
.nzeb-explain-p + .nzeb-explain-p { margin-top: 14px; }
.nzeb-explain-simple {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(232,224,208,0.14);
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
}
.nzeb-explain-simple strong { color: var(--gold); font-weight: 500; }
.nzeb-explain-mark {
  position: absolute;
  right: -6px; bottom: -22px;
  font-family: var(--serif);
  font-size: clamp(120px, 16vw, 200px);
  line-height: 1;
  color: rgba(196,160,80,0.16);
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* manifesto */
.nzeb-manifesto {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.nzeb-manifesto-text {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.35;
  flex: 1; min-width: 280px;
  text-wrap: balance;
}
.nzeb-manifesto-text strong { font-weight: 600; }

@media (max-width: 900px) {
  .nzeb-cards { grid-template-columns: 1fr 1fr; }
  .nzeb-narrative { grid-template-columns: 1fr; }
  .nzeb-explainers { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nzeb-cards { grid-template-columns: 1fr; }
}

/* ============ CALCULATOR ============ */
.calc-section {
  background: var(--ink); color: var(--cream);
  padding: clamp(80px, 10vw, 130px) 0;
}
.calc-section h2 { color: var(--cream); }
.calc-section .section-head p { color: var(--muted-on-dark); }
.calc-section .eyebrow { color: var(--gold); }

.calc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.calc-main {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  padding: 36px clamp(24px, 3.5vw, 44px);
}
.calc-progress {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.calc-progress-track {
  flex: 1; height: 2px;
  background: rgba(232,224,208,0.08);
  position: relative; overflow: hidden;
}
.calc-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--gold);
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
}
.calc-step-counter {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted-on-dark);
  min-width: 80px; text-align: right;
}
.calc-step-counter strong { color: var(--gold); font-weight: 500; }

.calc-step { display: none; }
.calc-step.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.calc-step-eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.calc-step h3 {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15; margin-bottom: 10px; color: var(--cream);
}
.calc-step .hint {
  color: var(--muted-on-dark); margin-bottom: 28px;
  font-size: 14.5px; max-width: 56ch;
}

.opts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.opt {
  background: rgba(232,224,208,0.03);
  border: 1px solid var(--ink-line);
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; flex-direction: column; gap: 6px;
  text-align: left;
  position: relative;
}
.opt:hover { background: rgba(200,169,110,0.06); border-color: rgba(200,169,110,0.3); }
.opt.selected {
  background: rgba(200,169,110,0.1);
  border-color: var(--gold);
}
.opt.selected::after {
  content: '';
  position: absolute; top: 14px; right: 14px;
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%;
}
.opt-name { font-size: 15px; font-weight: 500; color: var(--cream); }
.opt-sub { font-size: 12.5px; color: var(--muted-on-dark); }

.opts-3 { grid-template-columns: repeat(3, 1fr); }
.opts-2 { grid-template-columns: repeat(2, 1fr); }
.opts-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 600px) {
  .opts-3, .opts-2, .opts-5 { grid-template-columns: 1fr 1fr; }
}

.area-slider-wrap {
  background: rgba(232,224,208,0.03);
  border: 1px solid var(--ink-line);
  padding: 30px;
}
.area-display {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
}
.area-display-num {
  font-family: var(--serif);
  font-size: 56px; line-height: 1; color: var(--gold);
}
.area-display-unit { font-size: 14px; color: var(--muted-on-dark); }
.area-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; background: rgba(232,224,208,0.1);
  outline: none; cursor: pointer;
}
.area-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; background: var(--gold);
  border-radius: 50%; cursor: pointer;
  border: 3px solid var(--ink-soft);
  box-shadow: 0 0 0 1px var(--gold);
}
.area-slider::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--gold);
  border-radius: 50%; border: 3px solid var(--ink-soft);
  box-shadow: 0 0 0 1px var(--gold); cursor: pointer;
}
.area-marks {
  display: flex; justify-content: space-between;
  margin-top: 14px; font-family: var(--mono);
  font-size: 10px; color: var(--muted-on-dark);
  letter-spacing: 0.05em;
}

.contact-fields { display: grid; gap: 14px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-on-dark); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 14px 16px;
  background: rgba(232,224,208,0.04);
  border: 1px solid var(--ink-line);
  color: var(--cream); font-size: 15px;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.field input:focus { border-color: var(--gold); background: rgba(232,224,208,0.07); }
.field input::placeholder { color: rgba(232,224,208,0.3); }

.calc-nav {
  display: flex; gap: 12px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--ink-line);
}
.calc-nav .btn { padding: 12px 18px; }
.calc-back { color: var(--muted-on-dark); background: transparent; }
.calc-back:hover { color: var(--cream); }
.calc-next { background: var(--gold); color: var(--ink); margin-left: auto; }
.calc-next:hover { background: var(--cream); }
.calc-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Calc success panel */
.calc-success {
  text-align: center;
  padding: 20px 8px 8px;
  animation: fadeUp 0.5s ease;
}
.calc-success-icon { width: 60px; height: 60px; margin: 0 auto 18px; color: var(--gold); }
.calc-success-icon svg { width: 100%; height: 100%; }
.calc-success-h { font-family: var(--serif); font-size: 28px; color: var(--cream); margin-bottom: 12px; }
.calc-success-p { color: rgba(232,224,208,0.78); font-size: 15px; line-height: 1.6; max-width: 44ch; margin: 0 auto 24px; }
.calc-success-price {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px; margin: 0 auto 24px; max-width: 320px;
  background: rgba(196,160,80,0.1);
  border: 1px solid rgba(196,160,80,0.3);
}
.calc-success-price-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.calc-success-price-val { font-size: 16px; color: rgba(232,224,208,0.8); }
.calc-success-price-val strong { font-family: var(--serif); font-size: 34px; color: var(--gold); font-weight: 500; margin-right: 6px; }
.calc-success .btn { justify-content: center; }

/* Price panel */
.calc-price {
  position: sticky; top: 100px;
  background: linear-gradient(180deg, var(--ink-soft) 0%, var(--ink-deep) 100%);
  border: 1px solid rgba(196,160,80,0.35);
  padding: 36px clamp(24px, 3vw, 36px);
  color: var(--cream);
}
.calc-price-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.calc-price-main {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.calc-price-val {
  font-family: var(--serif);
  font-size: 64px; line-height: 1;
  color: var(--cream); font-weight: 500;
}
.calc-price-unit { font-size: 14px; color: var(--muted-on-dark); }
.calc-price-total {
  font-family: var(--mono); font-size: 13px;
  color: rgba(232,224,208,0.7);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(232,224,208,0.12);
  margin-bottom: 24px;
}
.calc-price-total strong { color: var(--gold); font-weight: 500; }

.calc-summary { display: grid; gap: 12px; font-size: 13.5px; }
.calc-sum-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
}
.calc-sum-row .k { color: var(--muted-on-dark); }
.calc-sum-row .v { color: var(--cream); font-weight: 500; text-align: right; }
.calc-sum-row.empty .v { color: rgba(232,224,208,0.3); }

.calc-note {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(232,224,208,0.12);
  font-size: 12px; color: rgba(232,224,208,0.55);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-price { position: relative; top: 0; }
}

/* MOBILE STICKY PRICE BAR */
.calc-mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--ink-deep);
  border-top: 1px solid rgba(196,160,80,0.35);
  padding: 12px 16px;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -8px 24px -10px rgba(3,12,40,0.5);
}
.calc-mobile-price { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.calc-mobile-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-on-dark);
}
.calc-mobile-val { font-size: 14px; color: rgba(240,235,222,0.8); }
.calc-mobile-val strong {
  font-family: var(--serif);
  font-size: 24px; color: var(--gold); font-weight: 500;
  margin-right: 4px;
}
.calc-mobile-btn { padding: 12px 24px; }
@media (max-width: 980px) {
  .calc-mobile-bar.visible { display: flex; }
}

/* ============ PROJECTS ============ */
.proj-section { background: var(--cream-warm); }
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.proj-card {
  background: var(--cream);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-soft);
}
.proj-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -24px rgba(6,32,97,0.32); }
.adv-icon, .lvg-icon { transition: transform var(--t-mid) var(--ease-out), color var(--t-mid) var(--ease-soft); }
.adv-cell:hover .adv-icon, .lvg-cell:hover .lvg-icon { transform: translateY(-4px) scale(1.08); color: var(--gold-deep); }
.proj-img {
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  position: relative; overflow: hidden;
}
.proj-img-empty {
  background: var(--cream-deep);
  display: grid; place-items: center;
}
.proj-img-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.proj-img-placeholder {
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(6,32,97,0.18);
  line-height: 1;
}
.proj-status {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--ink);
  color: var(--cream);
  z-index: 2;
}
.proj-status-done { background: #2F5E37; color: var(--cream); }
.proj-status-wip { background: var(--gold); color: var(--ink); }
.proj-status-slot { background: var(--cream); color: var(--ink); border: 1px solid rgba(6,32,97,0.25); }

.proj-card-cta {
  border: 1px dashed rgba(6,32,97,0.32);
  background: var(--cream);
  cursor: pointer;
}
.proj-card-cta:hover {
  border-color: var(--gold);
  background: rgba(196,160,80,0.04);
}
.proj-img-cta {
  background: transparent;
  display: grid; place-items: center;
}
.proj-img-cta::before { content: none; }
.proj-cta-mark {
  font-family: var(--serif);
  font-size: 100px;
  color: rgba(6,32,97,0.12);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proj-card-cta:hover .proj-cta-mark { color: var(--gold); transition: color 0.3s; }

.proj-body {
  padding: 28px 28px 28px;
  display: flex; flex-direction: column;
  gap: 16px;
  flex: 1;
}
.proj-title {
  font-family: var(--serif);
  font-size: 24px; line-height: 1.2;
  color: var(--ink);
}
.proj-desc {
  color: var(--muted);
  font-size: 15px; line-height: 1.55;
  text-wrap: pretty;
}
.proj-specs {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(6,32,97,0.12);
  margin-top: 4px;
}
.proj-specs > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(6,32,97,0.08);
  font-size: 13.5px;
}
.proj-specs dt {
  color: var(--muted);
  letter-spacing: 0.02em;
}
.proj-specs dd {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

.proj-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding: 14px 4px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-top: 1px solid rgba(6,32,97,0.12);
  transition: color 0.2s;
}
.proj-cta:hover { color: var(--gold-deep); }
.proj-cta-primary { color: var(--gold-deep); }
.proj-cta-primary:hover { color: var(--ink); }
.proj-cta .arr { width: 14px; height: 1px; background: currentColor; position: relative; }
.proj-cta .arr::after { content: ''; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }

@media (max-width: 900px) { .proj-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proj-grid { grid-template-columns: 1fr; } }
.proj-card-cta {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px dashed rgba(27,45,79,0.3);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.proj-card-cta:hover {
  border-color: var(--gold);
  background: rgba(196,160,80,0.04);
}
.proj-img-cta {
  background: transparent;
  display: grid; place-items: center;
}
.proj-img-cta::before { content: none; }
.proj-cta-mark {
  font-family: var(--serif);
  font-size: 88px;
  color: rgba(27,45,79,0.12);
  line-height: 1;
  letter-spacing: -0.02em;
}
.proj-card-cta:hover .proj-cta-mark { color: var(--gold); transition: color 0.3s; }
.proj-body { padding: 28px; }
.proj-title { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; line-height: 1.2; }
.proj-desc { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .proj-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proj-grid { grid-template-columns: 1fr; } }

/* ============ TECHNOLOGY · SIP PANEL FIGURE ============ */
.tech-section {
  background: var(--ink);
  color: var(--text-on-dark);
}
.tech-section h2 { color: var(--cream); }
.tech-section .section-head .eyebrow { color: var(--gold); }
.tech-section .section-head p { color: var(--muted-on-dark); }

.panel-figure {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  aspect-ratio: 3/2;
  background: var(--ink-soft);
  overflow: visible;
}
.panel-img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

.panel-label {
  position: absolute;
  display: flex; align-items: center;
  gap: 0;
  z-index: 3;
  pointer-events: none;
  transform: translateY(-50%);
}
.panel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 6px rgba(196,160,80,0.55);
  flex-shrink: 0;
}
.panel-line {
  width: clamp(40px, 8vw, 100px);
  height: 1.5px;
  background: var(--cream);
  flex-shrink: 0;
}
.panel-cap {
  display: flex; flex-direction: column;
  gap: 3px;
  padding: 10px 16px;
  line-height: 1.3;
  background: rgba(12,31,91,0.92);
  border: 1px solid rgba(196,160,80,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}
.panel-cap strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--cream);
  letter-spacing: 0.02em;
}
.panel-cap > span {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(240,235,222,0.78);
}
.panel-cap-meta {
  color: var(--gold) !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* Bottom label needs to reverse direction (dot on right, label on left) when label exits frame */
.panel-label-bot { flex-direction: row; }

.tech-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 56px auto 0;
  border-top: 1px solid var(--ink-line);
  padding-top: 28px;
}
.tech-stat { padding: 0 24px; }
.tech-stat + .tech-stat { border-left: 1px solid var(--ink-line); }
.tech-stat-num {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 10px;
}
.tech-stat-num em {
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.6em;
  margin-left: 4px;
}
.tech-stat-lbl {
  font-size: 12px;
  color: var(--muted-on-dark);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .panel-figure { aspect-ratio: 4/3; }
  .panel-cap strong { font-size: 14px; }
  .panel-cap span { font-size: 11px; }
  .panel-line { width: 40px; }
}
@media (max-width: 600px) {
  .tech-stats { grid-template-columns: 1fr; gap: 18px; }
  .tech-stat + .tech-stat { border-left: none; border-top: 1px solid var(--ink-line); padding-top: 18px; }
  .panel-cap { white-space: normal; }
  .panel-label-top { left: 50% !important; }
  .panel-label-mid { left: 12% !important; }
  .panel-label-bot { left: 50% !important; }
}

/* ============ FAQ ============ */
.faq-section {
  background: var(--cream);
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(6,32,97,0.14);
}
.faq-item {
  border-bottom: 1px solid rgba(6,32,97,0.14);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  gap: 24px;
  align-items: center;
  padding: 28px 4px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover .faq-q-text { color: var(--gold-deep); }
.faq-q-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
}
.faq-q-text {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  transition: color 0.2s;
  text-wrap: balance;
}
.faq-toggle {
  width: 32px; height: 32px;
  position: relative;
  border: 1px solid rgba(6,32,97,0.2);
  border-radius: 50%;
  transition: background 0.25s, border-color 0.25s, transform 0.3s;
  flex-shrink: 0;
  justify-self: end;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 12px; height: 1.5px; }
.faq-toggle::after { width: 1.5px; height: 12px; transition: transform 0.3s; }
.faq-item[open] .faq-toggle {
  background: var(--gold);
  border-color: var(--gold);
}
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after { background: var(--ink); }
.faq-item[open] summary .faq-q-text { color: var(--gold-deep); }

.faq-a {
  padding: 0 4px 28px 88px;
  font-size: 16px;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.65;
  text-wrap: pretty;
}

@media (max-width: 600px) {
  .faq-item summary {
    grid-template-columns: 36px 1fr 28px;
    gap: 14px;
    padding: 22px 0;
  }
  .faq-a { padding-left: 50px; padding-bottom: 22px; font-size: 15px; }
}

/* ============ PRODUCTION ============ */
.prod-section {
  background: var(--cream-warm);
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.prod-cell {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.prod-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2,0.7,0.2,1);
}
.prod-cell:hover img { transform: scale(1.03); }
.prod-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,32,57,0) 50%, rgba(18,32,57,0.78) 100%);
  pointer-events: none;
}
.prod-cell figcaption {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 2;
  color: var(--cream);
}
.prod-tag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(18,32,57,0.6);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.prod-cap {
  font-size: 14px;
  line-height: 1.45;
  color: var(--cream);
  text-wrap: pretty;
  max-width: 38ch;
}
@media (max-width: 760px) {
  .prod-grid { grid-template-columns: 1fr; gap: 16px; }
  .prod-cap { font-size: 13px; }
}

/* ============ PROCESS HERO ============ */
.proc-hero {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink-soft);
  overflow: hidden;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.proc-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.proc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,32,57,0) 50%, rgba(18,32,57,0.55) 100%);
  pointer-events: none;
}
.proc-hero-cap {
  position: absolute; left: 24px; bottom: 24px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.proc-hero-tag {
  display: inline-flex; align-self: flex-start;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--mono);
}
.proc-hero-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(18,32,57,0.6);
  padding: 6px 12px;
  align-self: flex-start;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 600px) {
  .proc-hero { aspect-ratio: 4/3; }
  .proc-hero-cap { left: 16px; bottom: 16px; right: 16px; }
}

/* ============ PROCESS STEPS ============ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.proc-step {
  padding: 32px 28px 32px 0;
  border-top: 1px solid var(--ink);
  position: relative;
}
.proc-step + .proc-step { padding-left: 28px; }
.proc-num {
  font-family: var(--serif);
  font-size: 14px; color: var(--gold-deep);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.proc-title { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; line-height: 1.2; }
.proc-desc { color: var(--muted); font-size: 14px; line-height: 1.55; }
.proc-time {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 16px;
}
@media (max-width: 900px) { .proc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .proc-grid { grid-template-columns: 1fr; } .proc-step + .proc-step { padding-left: 0; } }

/* ============ TIMELINE (Сроки) ============ */
.tl-section { background: var(--ink); color: var(--text-on-dark); }
.tl-section .section-head .eyebrow { color: var(--gold); }
.tl-section h2 { color: var(--cream); }
.tl-section .section-head p { color: var(--muted-on-dark); }
.tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(240,235,222,0.12);
  border: 1px solid rgba(240,235,222,0.12);
  margin-top: clamp(36px, 5vw, 56px);
}
.tl-cell {
  background: var(--ink);
  padding: 36px 30px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.tl-step {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.tl-dur {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1; color: var(--cream);
  letter-spacing: -0.01em; margin-bottom: 6px;
}
.tl-dur em { font-style: normal; color: var(--gold); }
.tl-name { font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.tl-desc { font-size: 13.5px; line-height: 1.5; color: var(--muted-on-dark); }
.tl-variants { display: grid; gap: 10px; margin-top: 4px; }
.tl-variant {
  padding: 12px 14px;
  background: rgba(240,235,222,0.05);
  border-left: 2px solid var(--gold);
}
.tl-variant-h {
  font-size: 12px; font-weight: 600; color: var(--cream);
  display: flex; justify-content: space-between; gap: 10px; align-items: baseline;
}
.tl-variant-dur { font-family: var(--mono); font-size: 11px; color: var(--gold); white-space: nowrap; }
.tl-variant-d { font-size: 12px; color: var(--muted-on-dark); margin-top: 3px; line-height: 1.45; }
.tl-total {
  margin-top: 24px;
  display: flex; align-items: center; gap: clamp(16px,3vw,32px);
  flex-wrap: wrap;
  padding: clamp(24px,3vw,32px) clamp(28px,4vw,44px);
  background: var(--gold); color: var(--ink);
}
.tl-total-lbl {
  font-family: var(--sans);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream);
  background: var(--ink-deep);
  padding: 7px 14px; border-radius: 999px;
  white-space: nowrap;
}
.tl-total-val {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1; letter-spacing: -0.01em;
  flex: 1; min-width: 200px;
}
.tl-total .btn { flex-shrink: 0; }
@media (max-width: 760px) {
  .tl-grid { grid-template-columns: 1fr; }
}

/* timeline rows */
.tl-rows {
  margin-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(240,235,222,0.14);
}
.tl-row {
  display: grid;
  grid-template-columns: 44px 1fr 150px;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(240,235,222,0.14);
}
.tl-row-no {
  font-family: var(--mono); font-size: 12px;
  color: var(--gold); letter-spacing: 0.1em;
}
.tl-row-mid { min-width: 0; }
.tl-row-name {
  font-size: clamp(16px, 1.6vw, 19px); font-weight: 600;
  color: var(--cream); margin-bottom: 10px;
}
.tl-row-bar {
  height: 5px; background: rgba(240,235,222,0.1);
  position: relative; overflow: hidden; max-width: 520px;
}
.tl-row-bar span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}
.tl-row-dur {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--cream); text-align: right; white-space: nowrap;
}
.tl-row-dur em { font-style: normal; color: var(--muted-on-dark); font-size: 13px; font-family: var(--sans); display: block; margin-top: 2px; }
@media (max-width: 600px) {
  .tl-row { grid-template-columns: 30px 1fr auto; gap: 12px; }
  .tl-row-dur { font-size: 18px; }
}

/* ============ VIDEO ============ */
.video-section {
  background: var(--cream-warm);
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.video-poster {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(196,160,80,0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--ink-deep) 0%, var(--ink-soft) 100%);
  display: flex;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.video-poster::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(240,235,222,0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(240,235,222,0.04) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.video-poster-grid {
  position: relative;
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  max-width: 560px;
  padding: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,222,0.55);
}
.video-poster-grid span {
  padding: 6px 14px;
  border: 1px solid rgba(240,235,222,0.18);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.video-frame:hover .video-poster-grid span {
  color: var(--gold);
  border-color: rgba(196,160,80,0.35);
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 22px;
  z-index: 2;
  pointer-events: none;
}
.video-play-btn {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 0 12px rgba(196,160,80,0.15),
    0 0 0 28px rgba(196,160,80,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-play-btn svg { width: 42px; height: 42px; margin-left: 4px; display: block; }
.video-frame:hover .video-play-btn {
  transform: scale(1.08);
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 0 16px rgba(196,160,80,0.22),
    0 0 0 36px rgba(196,160,80,0.08);
}
.video-soon {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,235,222,0.7);
  background: rgba(6,32,97,0.6);
  padding: 8px 14px;
  border: 1px solid rgba(240,235,222,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.video-cta-wrap {
  position: absolute;
  right: 22px; bottom: 22px;
  z-index: 3;
}
.video-cta { padding: 14px 22px; font-size: 13px; }

@media (max-width: 600px) {
  .video-frame { aspect-ratio: 4/3; }
  .video-play-btn { width: 72px; height: 72px; }
  .video-play-btn svg { width: 30px; height: 30px; }
  .video-cta-wrap {
    position: static;
    padding: 16px;
    background: var(--ink-deep);
    display: flex; justify-content: center;
  }
  .video-cta { width: 100%; justify-content: center; }
}

/* ============ TEAM ============ */
.team-section {
  background: var(--cream);
}
.team-photo {
  margin: 0 0 48px;
  aspect-ratio: 16/6;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(6,32,97,0.2);
}
.team-photo-empty {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  color: rgba(6,32,97,0.4);
}
.team-photo-icon svg { width: 88px; height: 60px; display: block; }
.team-photo-cap {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(6,32,97,0.55);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(6,32,97,0.12);
  border: 1px solid rgba(6,32,97,0.12);
}
.team-cell {
  background: var(--cream);
  padding: 36px 28px 32px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: background 0.3s;
}
.team-cell:hover { background: var(--cream-warm); }
.team-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
}
.team-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } .team-photo { aspect-ratio: 4/3; } }

/* ============ REVIEWS ============ */
.rev-section { background: var(--cream-warm); }
.rev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(27,45,79,0.1);
  border: 1px solid rgba(27,45,79,0.1);
}
.rev-cell {
  background: var(--cream);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.rev-stars { display: flex; gap: 4px; color: var(--gold-deep); font-size: 14px; letter-spacing: 2px; }
.rev-quote {
  font-family: var(--serif); font-size: 20px;
  line-height: 1.4; color: var(--ink);
  text-wrap: pretty;
}
.rev-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding-top: 12px;
}
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-deep);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 18px;
  color: var(--ink);
}
.rev-name { font-weight: 500; font-size: 14px; }
.rev-loc { font-size: 12px; color: var(--muted); margin-top: 2px; }

.rev-invite {
  background: var(--ink) !important;
  color: var(--cream);
  text-decoration: none;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 16px;
  transition: background 0.25s;
}
.rev-invite:hover { background: var(--ink-soft) !important; }
.rev-invite .rev-quote { color: var(--cream); font-size: 22px; }
.rev-invite-eye {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}
.rev-invite-cta {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: auto; padding-top: 12px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 760px) { .rev-grid { grid-template-columns: 1fr; } }

/* ============ LIVE BUILD ============ */
.live-section {
  background: var(--ink);
  color: var(--text-on-dark);
}
.live-section h2 { color: var(--cream); }
.live-section .section-head .eyebrow { color: var(--gold); }
.live-section .section-head p { color: var(--muted-on-dark); }

.live-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.live-main {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--ink-soft);
  overflow: hidden;
  margin: 0;
}
.live-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.live-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(6,32,97,0.88);
  border: 1px solid var(--gold);
  padding: 9px 14px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.live-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(196,160,80,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(196,160,80,0); }
}

/* RIGHT: STATUS CARD */
.live-card {
  background: var(--ink-soft);
  border: 1px solid rgba(196,160,80,0.35);
  padding: 32px 32px 28px;
  display: flex; flex-direction: column;
  gap: 22px;
}
.live-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-line);
}
.live-obj {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--cream);
  line-height: 1;
}
.live-day {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.live-specs {
  display: grid;
  gap: 12px;
}
.live-specs > div {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.live-specs dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.live-specs dd {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  text-align: right;
}
.live-ready-pct {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
}

.live-progress {
  display: flex; flex-direction: column;
  gap: 10px;
}
.live-progress-bar {
  position: relative;
  height: 6px;
  background: rgba(240,235,222,0.08);
  overflow: hidden;
  border-radius: 3px;
}
.live-progress-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 3px;
  transition: width 0.6s ease;
}
.live-progress-marks {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,235,222,0.45);
}

.live-card-note {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(240,235,222,0.85);
  padding: 16px;
  background: rgba(6,32,97,0.5);
  border-left: 2px solid var(--gold);
  text-wrap: pretty;
}

.live-actions {
  display: flex; flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.live-act {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(240,235,222,0.2);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.live-act svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: color 0.2s; }
.live-act:hover {
  background: rgba(196,160,80,0.08);
  border-color: var(--gold);
  color: var(--gold);
}
.live-act:hover svg { color: var(--gold); }
.live-act-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.live-act-primary svg { color: var(--ink); }
.live-act-primary:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.live-act-primary:hover svg { color: var(--ink); }

@media (max-width: 900px) {
  .live-grid { grid-template-columns: 1fr; }
  .live-main { aspect-ratio: 16/10; }
}
@media (max-width: 480px) {
  .live-card { padding: 24px 22px; }
  .live-obj { font-size: 24px; }
  .live-progress-marks { font-size: 8.5px; }
}

/* ============ APPLY FORM ============ */
.apply-section {
  background: var(--ink);
  color: var(--cream);
}
.apply-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.apply-left h2 { color: var(--cream); }
.apply-left .eyebrow { color: var(--gold); display: block; margin-bottom: 16px; }
.apply-left p {
  color: rgba(232,224,208,0.75);
  max-width: 44ch;
  margin-top: 24px;
}
.apply-bullets {
  margin-top: 32px; display: grid; gap: 12px;
}
.apply-bullet {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(232,224,208,0.85);
}
.apply-bullet::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.apply-form {
  background: rgba(232,224,208,0.05);
  border: 1px solid rgba(232,224,208,0.15);
  padding: 36px;
  display: grid; gap: 16px;
}
.apply-form .field input,
.apply-form .field select {
  width: 100%; padding: 14px 16px;
  background: rgba(232,224,208,0.05);
  border: 1px solid rgba(232,224,208,0.18);
  color: var(--cream); font-size: 15px;
  outline: none;
}
.apply-form .field input:focus,
.apply-form .field select:focus { border-color: var(--gold); }
.apply-form .field input::placeholder { color: rgba(232,224,208,0.35); }
.apply-form .field input.invalid,
.apply-form .field select.invalid { border-color: #E08A6A; }
.field-err {
  display: none;
  font-size: 12px;
  color: #E8A48C;
  margin-top: 6px;
}
.field-err.show { display: block; }
.apply-success {
  text-align: center;
  padding: 20px 12px;
  animation: fadeUp 0.5s ease;
}
.apply-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.apply-success-icon svg { width: 100%; height: 100%; }
.apply-success-h {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 12px;
}
.apply-success-p {
  color: rgba(232,224,208,0.8);
  font-size: 15px;
  line-height: 1.6;
  max-width: 38ch;
  margin: 0 auto 28px;
}
.apply-success-actions {
  display: flex; flex-direction: column; gap: 12px;
}
.apply-success-actions .btn { width: 100%; justify-content: center; }
.apply-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form .btn { width: 100%; justify-content: center; padding: 16px; margin-top: 8px; }
.apply-form .form-note { font-size: 11px; color: rgba(232,224,208,0.5); text-align: center; }
@media (max-width: 860px) { .apply-grid { grid-template-columns: 1fr; } }

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: var(--text-on-dark);
  padding: 0 0 30px;
  margin-top: 0;
}

/* CTA BAND */
.footer-cta {
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(240,235,222,0.08);
  padding: 40px 0;
}
.footer-cta-inner {
  display: flex; align-items: center; gap: 36px;
  flex-wrap: wrap;
}
.footer-cta-text {
  display: flex; flex-direction: column; gap: 8px;
  flex: 1; min-width: 280px;
}
.footer-cta-eye {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-cta-h {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
  color: var(--cream);
  text-wrap: balance;
}
.footer-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* MAIN GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding: 70px 0 56px;
  border-bottom: 1px solid var(--ink-line);
}
.footer-brand .logo-mark { width: 80px; }
.footer-brand .logo-text { color: var(--cream); }
.footer-brand p {
  margin-top: 20px; color: var(--muted-on-dark);
  font-size: 14.5px; line-height: 1.6;
  max-width: 32ch;
}
.footer-col h4,
.footer-contact h4 {
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  color: rgba(240,235,222,0.72);
  font-size: 14.5px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold); }

/* CONTACT COLUMN */
.footer-contact ul {
  list-style: none;
  display: grid; gap: 14px;
}
.ft-line {
  display: flex; align-items: center; gap: 14px;
  color: rgba(240,235,222,0.85);
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.2s;
}
a.ft-line:hover { color: var(--gold); }
a.ft-line:hover .ft-ico { color: var(--gold); border-color: rgba(196,160,80,0.55); }
.ft-line-static {
  color: rgba(240,235,222,0.72);
  cursor: default;
}
.ft-ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid rgba(240,235,222,0.16);
  border-radius: 50%;
  color: var(--gold);
  transition: color 0.2s, border-color 0.2s;
}
.ft-ico svg { width: 16px; height: 16px; display: block; }
.ft-line-text { line-height: 1.4; }

/* BOTTOM */
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 30px;
  font-size: 13px; color: var(--muted-on-dark);
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { letter-spacing: 0.02em; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--ink-line);
  display: grid; place-items: center;
  color: rgba(240,235,222,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,160,80,0.06);
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 56px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-cta-actions .btn { flex: 1; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ GUARANTEES ============ */
.guar-section { background: var(--cream); }
.guar-icon {
  width: 68px; height: 68px; margin-bottom: 4px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--cream);
  box-shadow: 0 10px 24px -10px rgba(140,102,30,0.55), inset 0 1px 0 rgba(255,255,255,0.35);
}
.guar-icon svg { width: 34px; height: 34px; }
.guar-cell:hover .guar-icon { transform: translateY(-2px); }
.guar-icon { transition: transform 0.3s ease; }
.guar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(6,32,97,0.1);
  border: 1px solid rgba(6,32,97,0.1);
  margin-top: clamp(36px, 5vw, 56px);
}
.guar-cell {
  background: var(--cream);
  padding: 44px 36px 40px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
}
.guar-cell:hover { background: var(--cream-warm); }
.guar-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 68px);
  line-height: 0.95; color: var(--ink);
  letter-spacing: -0.02em;
}
.guar-num em { font-style: normal; color: var(--gold-deep); font-size: 0.5em; }
.guar-t { font-family: var(--serif); font-size: 21px; line-height: 1.2; color: var(--ink); }
.guar-d { font-size: 14.5px; line-height: 1.55; color: var(--muted); }
@media (max-width: 760px) { .guar-grid { grid-template-columns: 1fr; } }

/* utility */
.divider-line {
  height: 1px; background: rgba(27,45,79,0.12);
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ============ REPEAT CTA BAND ============ */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-band.gold { background: var(--gold); color: var(--ink); }
.cta-band-inner {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 56px);
  padding: clamp(36px, 5vw, 60px) 0;
  flex-wrap: wrap;
}
.cta-band-text { flex: 1; min-width: 280px; }
.cta-band-eyebrow {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.cta-band.gold .cta-band-eyebrow { color: var(--ink-deep); }
.cta-band-h {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 10px; text-wrap: balance;
}
.cta-band-p {
  font-size: 16px; line-height: 1.55;
  color: rgba(232,224,208,0.75); max-width: 52ch;
}
.cta-band.gold .cta-band-p { color: rgba(6,32,97,0.75); }
.cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.cta-band-mark {
  position: absolute; right: -20px; bottom: -40px;
  font-family: var(--serif); font-size: 200px; line-height: 1;
  color: rgba(232,224,208,0.04); pointer-events: none;
}
.cta-band.gold .cta-band-mark { color: rgba(6,32,97,0.06); }
@media (max-width: 700px) {
  .cta-band-actions { width: 100%; }
  .cta-band-actions .btn { flex: 1; justify-content: center; }
}
/* ============ PROJECTS CATALOG + MODAL ============ */
.pc-meta{display:block;font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.pc-viewall{margin-top:36px;display:flex;justify-content:center}
.pc-h1{font-family:var(--serif);font-size:clamp(30px,3.6vw,44px);line-height:1.15;color:var(--ink)}
.pc-filters{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px}
.pc-filters+.pc-filters{margin-top:10px}
.pc-grid{margin-top:0}
.pc-group{margin-top:clamp(36px,5vw,60px)}
.pc-group-h{font-family:var(--serif);font-size:clamp(22px,2.6vw,32px);line-height:1.2;color:var(--ink);margin-bottom:20px;padding-bottom:12px;border-bottom:1px solid rgba(6,32,97,.14);display:flex;align-items:baseline;gap:12px}
.pc-group-n{font-family:var(--mono);font-size:12px;letter-spacing:.1em;color:var(--muted)}
.pc-card{border:0;padding:0;font:inherit;text-align:left;cursor:pointer;width:100%}
.pc-card .proj-img{display:block}
.pc-card .proj-body{display:flex;flex-direction:column;gap:14px}
.pc-card .proj-title{display:block;font-family:var(--serif);font-size:24px;line-height:1.2;color:var(--ink)}
.pc-card .proj-desc{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}
.pc-card .proj-cta{margin-top:auto}
dialog.pm{border:0;padding:0;background:var(--cream);width:min(1140px,94vw);max-width:none;max-height:min(760px,92vh);box-shadow:0 40px 90px -30px rgba(3,23,79,.5)}
dialog.pm::backdrop{background:rgba(3,23,79,.62)}
.pm-inner{position:relative;display:grid;grid-template-columns:3fr 2fr}
.pm-media{background:var(--cream-deep);display:flex;align-items:center;justify-content:center;overflow:hidden}
.pm-media img{width:100%;height:100%;max-height:min(760px,92vh);object-fit:contain;display:block}
.pm-info{padding:clamp(24px,3vw,40px);overflow-y:auto;max-height:min(760px,92vh)}
.pm-close{position:absolute;top:12px;right:12px;z-index:3;width:44px;height:44px;border:0;background:var(--ink);color:var(--cream);font-size:18px;cursor:pointer;display:grid;place-items:center}
.pm-close:hover{background:var(--gold);color:var(--ink)}
.pm-badges{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px;padding-right:48px}
.pm-badges .proj-status{position:static}
.pm-cat{font-family:var(--mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;padding:6px 12px;border:1px solid rgba(6,32,97,.25);color:var(--ink)}
.pm-title{font-family:var(--serif);font-size:clamp(24px,2.4vw,32px);line-height:1.15;color:var(--ink);margin-bottom:10px}
.pm-tagline{color:var(--muted);font-size:15px;line-height:1.55;margin-bottom:6px}
.pm-h{font-family:var(--mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-deep);margin:22px 0 8px}
.pm-desc{font-size:14.5px;line-height:1.65;color:var(--ink)}
.pm-specs{list-style:none;margin:0;padding:0}
.pm-specs li{padding:8px 0;border-bottom:1px solid rgba(6,32,97,.08);font-size:13.5px;color:var(--ink)}
.pm-disclaimer{margin-top:18px;padding-top:12px;border-top:1px solid rgba(6,32,97,.12);font-size:13px;font-style:italic;color:var(--muted)}
.pm-cta{margin-top:22px}
.pc-filter-label{font-family:var(--mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;color:var(--muted);margin-right:6px;align-self:center}
.proj-filter{font-family:var(--sans,inherit);font-size:13px;font-weight:600;letter-spacing:.01em;padding:9px 16px;border:1px solid rgba(6,32,97,.28);border-radius:999px;background:transparent;color:var(--ink);cursor:pointer;transition:border-color .2s,background .2s,color .2s}
.proj-filter:hover{border-color:var(--gold);color:var(--gold-deep)}
.proj-filter.is-active{background:var(--ink);border-color:var(--ink);color:var(--cream)}
@media (max-width:860px){dialog.pm{width:100vw;height:100dvh;max-height:none;margin:0;inset:0}.pm-inner{display:block;height:100dvh;overflow-y:auto}.pm-media{max-height:46vh}.pm-media img{max-height:46vh;height:auto}.pm-info{overflow:visible;max-height:none;padding:22px 18px 48px}.pm-close{position:fixed}}

/* ============ V6 MOBILE OVERHAUL ============
   Z-INDEX SCALE: content 1 · sticky nav 100 · mobile backdrop 105 · drawer 110 ·
   burger 120 · calc mbar 70 · mobile CTA dock 80 · <dialog> native top-layer ·
   consent 9999. Не вводить произвольные значения вне шкалы. */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--gold); color: var(--ink); padding: 12px 18px; font-weight: 600; }
.skip-link:focus { left: 8px; top: 8px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
.lang-switch-drawer { display: flex; gap: 8px; margin-top: 22px; }
.lang-switch-drawer a, .lang-switch-drawer button { min-width: 48px; min-height: 44px; display: grid; place-items: center; border: 1px solid rgba(240,235,222,0.25); color: var(--cream); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; }
.lang-switch-drawer a.active, .lang-switch-drawer button.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.mcta-dock { display: none; }
@media (max-width: 960px) {
  /* компактный мобильный хедер: ≤64px */
  .nav-inner { min-height: 60px; padding-top: 6px; padding-bottom: 6px; padding-right: max(4px, env(safe-area-inset-right)); gap: 18px; }
  .nav-right { margin-left: auto; }
  .logo-mark { width: 34px; }
  .logo-text-name { font-size: 17px; }
  .logo-text-tag { font-size: 8px; }
  .burger { width: 48px; height: 48px; margin-right: 0; }
  .burger span { left: 10px; right: 10px; }
  .mcta-dock { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: flex; gap: 10px; align-items: stretch; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: var(--ink-deep); border-top: 1px solid rgba(196,160,80,0.35); box-shadow: 0 -8px 24px -10px rgba(3,12,40,0.5); }
  .mcta-dock .mcta-main { flex: 1.4; justify-content: center; min-height: 48px; padding: 12px 14px; font-size: 15px; }
  .mcta-contact-wrap { flex: 1; position: relative; display: flex; }
  .mcta-contact { flex: 1; min-height: 48px; border: 1px solid rgba(240,235,222,0.3); color: var(--cream); font-size: 15px; font-weight: 600; display: grid; place-items: center; }
  .mcta-menu { position: absolute; bottom: calc(100% + 12px); right: 0; min-width: 220px; background: var(--ink); border: 1px solid rgba(196,160,80,0.4); box-shadow: 0 18px 40px -16px rgba(3,12,40,0.6); display: flex; flex-direction: column; }
  .mcta-menu a { color: var(--cream); padding: 14px 18px; min-height: 48px; display: flex; align-items: center; font-size: 15px; border-bottom: 1px solid rgba(240,235,222,0.08); }
  .mcta-menu a:last-child { border-bottom: 0; }
  .mcta-menu[hidden] { display: none; }
  .mcta-menu a:hover { color: var(--gold); }
  body.has-dock { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  body.has-dock.kb-open { padding-bottom: 0; }
  body.drawer-open .mcta-dock, body.modal-open .mcta-dock, body.kb-open .mcta-dock, body.yh-consent-open .mcta-dock { display: none; }
  body.kb-open .mbar, body.drawer-open .mbar, body.modal-open .mbar, body.kb-open .calc-mobile-bar { display: none !important; }
  .calcx input, .calcx select, .apply-form input, .apply-form select, .apply-form textarea { font-size: 16px !important; }
}
@media (max-width: 760px) {
  .pc-filters { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin-left: calc(-1 * var(--pad)); margin-right: calc(-1 * var(--pad)); padding: 2px var(--pad) 6px; }
  .pc-filters::-webkit-scrollbar { display: none; }
  .proj-filter { flex: 0 0 auto; min-height: 44px; padding: 10px 16px; font-size: 14px; }
  .pc-filter-label { flex: 0 0 auto; align-self: center; }
}
.pc-results { margin-top: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.pc-empty { margin-top: 40px; padding: 40px 24px; border: 1px dashed rgba(6,32,97,0.25); text-align: center; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.pc-empty[hidden] { display: none; }
.pc-empty p { color: var(--muted); font-size: 16px; }
@media (max-width: 860px) {
  .pm-close { top: calc(8px + env(safe-area-inset-top)); right: 8px; }
  .pm-info { padding-bottom: calc(48px + env(safe-area-inset-bottom)) !important; }
}
@media (max-width: 720px) {
  .footer-col h4 { display: flex; align-items: center; justify-content: space-between; min-height: 44px; cursor: pointer; margin-bottom: 0; }
  .footer-col h4::after { content: ''; width: 8px; height: 8px; border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold); transform: rotate(45deg); transition: transform 0.2s; flex: 0 0 auto; margin-left: 12px; }
  .footer-col.open h4::after { transform: rotate(-135deg); }
  .footer-col ul { display: none; padding-bottom: 14px; }
  .footer-col.open ul { display: block; }
}
@media (max-width: 760px) {
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; gap: 14px; }
  h1 { font-size: clamp(34px, 9vw, 42px); }
  h2 { font-size: clamp(28px, 7vw, 34px); }
  .hero { padding: 44px 0 52px; }
  .proj-grid { gap: 18px; }
  .pc-group { margin-top: 36px; }
}

/* ============ V6 CMP MOBILE: таблица сравнения как карточки ============ */
@media (max-width: 760px) {
  .cmp-wrap { overflow: visible; }
  .cmp-table { display: block; border: 0; }
  .cmp-table thead { display: none; }
  .cmp-table tbody { display: block; }
  .cmp-table tbody tr { display: block; background: var(--cream); border: 1px solid rgba(6,32,97,0.12); padding: 14px 16px; margin-bottom: 12px; }
  .cmp-table tbody th { display: block; text-align: left; font-family: var(--serif); font-size: 17px; padding: 0 0 8px; border: 0; }
  .cmp-table tbody td { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 8px 0; border: 0; border-top: 1px solid rgba(6,32,97,0.08); text-align: right; font-size: 14px; }
  .cmp-table tbody td::before { content: attr(data-label); color: var(--muted); font-size: 13px; text-align: left; flex: 0 0 auto; }
  .cmp-table tbody td.cmp-sip-cell { color: var(--gold-deep); font-weight: 600; }
  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ============ V7 IA ============ */
.proc-line { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 10px; }
.proc-line-step { display: inline-flex; align-items: baseline; gap: 10px; font-family: var(--serif); font-size: clamp(18px, 2vw, 24px); color: var(--ink); }
.proc-line-step em { font-family: var(--mono); font-style: normal; font-size: 11px; color: var(--gold-deep); letter-spacing: 0.1em; }
.proc-line-arr { width: 34px; height: 1px; background: rgba(6,32,97,0.3); position: relative; flex: 0 0 auto; }
.proc-line-arr::after { content: ''; position: absolute; right: 0; top: -3px; width: 6px; height: 6px; border-top: 1px solid rgba(6,32,97,0.45); border-right: 1px solid rgba(6,32,97,0.45); transform: rotate(45deg); }
@media (max-width: 640px) { .proc-line { flex-direction: column; align-items: flex-start; gap: 10px; } .proc-line-arr { width: 1px; height: 20px; margin-left: 26px; } .proc-line-arr::after { top: auto; bottom: 0; right: -3px; transform: rotate(135deg); } }
.dir-card .proj-cta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 960px) { .mcta-dock .mcta-main { flex: 1; } }

.pc-filters[hidden] { display: none; }
.pc-more-wrap { margin-top: 32px; display: flex; justify-content: center; }
.pc-more-wrap[hidden] { display: none; }
.v7-proof { display: flex; gap: clamp(18px, 3vw, 36px); align-items: center; background: var(--cream); padding: clamp(16px, 2.5vw, 28px); max-width: 720px; }
.v7-proof-img { width: clamp(140px, 22vw, 240px); aspect-ratio: 4/3; object-fit: cover; flex: 0 0 auto; }
.v7-proof-body { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
@media (max-width: 560px) { .v7-proof { flex-direction: column; align-items: stretch; } .v7-proof-img { width: 100%; } }
body.dock-suppress .mcta-dock { display: none !important; }
.calcx .calc-grp { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); margin: 38px 0 4px; }
.calcx .block:first-of-type ~ .calc-grp { border-top: 1px solid rgba(232,224,208,0.1); padding-top: 26px; }
@media (max-width: 960px) {
  .calcx .block-head { cursor: default; }
}
.calcx .block-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px 43px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.calcx .block-action::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(196,160,80,0.12);
}
.calcx .block.done .block-no {
  background: var(--gold);
  color: var(--ink-deep);
  border-color: var(--gold);
}
.calcx .block.done .block-action { color: rgba(232,224,208,0.7); }
.calcx .block.done .block-action::before {
  content: '✓';
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  color: var(--ink-deep);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
}
.calcx .block.need-choice {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(196,160,80,0.55), 0 24px 60px -38px rgba(196,160,80,0.8);
}
.calcx .calc-gate {
  margin: 14px 22px 0;
  padding: 16px;
  border: 1px solid rgba(196,160,80,0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,160,80,0.13), rgba(255,255,255,0.035));
}
.calcx .calc-gate-top {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.calcx .calc-gate strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.1;
  color: var(--cream);
}
.calcx .calc-gate p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 8px 0 12px;
}
.calcx .calc-gate-btn {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(196,160,80,0.45);
  border-radius: 11px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.calcx .calc-gate-btn:hover { background: rgba(196,160,80,0.1); }
.calcx:not(.is-complete) .price,
.calcx:not(.is-complete) .bd-toggle,
.calcx:not(.is-complete) .bd,
.calcx:not(.is-complete) .note,
.calcx:not(.is-complete) #ctaArea {
  display: none !important;
}
.calcx.is-complete .calc-gate { display: none; }
.calcx .btn.is-disabled {
  opacity: 0.52;
  filter: saturate(0.65);
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.calcx .mbar-hint {
  display: none;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(232,224,208,0.76);
  margin-top: 3px;
}
.calcx:not(.is-complete) .mbar .mv,
.calcx:not(.is-complete) .mbar .mv2 { display: none; }
.calcx:not(.is-complete) .mbar .mbar-hint { display: block; }
.calcx:not(.is-complete) .mbar .ml { color: var(--gold-soft); }
@media (max-width: 680px) {
  .calcx .block-action { margin-left: 0; font-size: 9.5px; letter-spacing: 0.13em; }
}

/* V7 CTA-BAND PAD */
@media (max-width: 1280px) { .cta-band-inner { padding-left: var(--pad); padding-right: var(--pad); } }
