


.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { opacity: .8; }
.topbar .tb-phone { font-weight: 600; letter-spacing: .01em; }
.topbar .tb-note { color: #c9ced6; margin-right: auto; }
@media (max-width: 700px) {
  .topbar .wrap { justify-content: center; gap: 8px 18px; padding-top: 0; padding-bottom: 0; }
  .topbar .tb-note { display: none; }
  
  .topbar a { min-height: var(--tap); }
}


.hero-v2 {
  position: relative;
  overflow: hidden;
  background: var(--hero-wash);
  padding: clamp(40px, 6vw, 76px) 0 clamp(28px, 4vw, 44px);
}
.hero-v2 h1 {
  font-size: clamp(32px, 5vw, 56px);
  max-width: 17ch;
  margin: 14px 0 18px;
}
.hero-v2 .lead {
  font-size: clamp(17px, 1.9vw, 20px);
  color: var(--ink-soft);
  max-width: 62ch;
}
.hero-v2 .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

.hero-v2-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (min-width: 1000px) { .hero-v2-grid { grid-template-columns: 1.25fr .75fr; } }

.hero-card {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
}
.hero-card .mono { display: block; margin-bottom: 16px; }
.hero-card ul { list-style: none; }
.hero-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.45;
}
.hero-card li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent-ink);
  border-bottom: 2px solid var(--accent-ink);
  transform: rotate(-45deg);
}
.hero-card-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}


.est {
  display: grid;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
@media (min-width: 1000px) { .est { grid-template-columns: 1.05fr .95fr; } }

.est-controls h2 { margin: 10px 0 14px; }
.est-controls .lead { max-width: none; } 
.est-form { margin-top: 28px; }

.est-kind { border: 0; margin-bottom: 26px; }
.est-kind legend {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.est-kind label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: var(--tap);
  margin-right: 18px;
  cursor: pointer;
  font-size: 16px;
}
.est-kind input { accent-color: var(--accent-ink); width: 18px; height: 18px; }


.est-tip { margin-top: 26px; }
.est-avto {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-ink);
  margin-left: 8px;
}


.est-more { margin-top: 4px; }


.est-hint {
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}


.est-actions { display: grid; gap: 10px; }
@media (min-width: 480px) { .est-actions { grid-template-columns: 1fr; } }
.est-actions .btn { width: 100%; justify-content: center; text-align: center; }

.est-actions .btn-soft { background: var(--bg); border: 1px solid var(--line); }
.est-actions .btn-soft:hover { background: var(--panel-2); }
.est-more summary {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  cursor: pointer;
  font-size: 16px;
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.est-more summary::marker { color: var(--ink-soft); }
.est-more[open] summary { margin-bottom: 14px; }
.est-more .est-kind { margin-bottom: 18px; }

.est-area label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.est-area output {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.est-area input[type="range"] {
  width: 100%;
  height: var(--tap);
  accent-color: var(--ink);
  cursor: pointer;
}
.est-scale {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}

.est-result {
  background: var(--panel);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
}
.est-result .mono { display: block; margin-bottom: 10px; }
.est-total {
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.est-perm2 {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
}
.est-what {
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 18px;
}
.est-what li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #2b2f36;
}
.est-cta-note { font-size: 15px; margin-bottom: 18px; }
.est-result .btn { width: 100%; justify-content: center; }
.est-legal {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}


.facts-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(28px, 4vw, 44px);
}
@media (min-width: 640px) { .facts-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .facts-row { grid-template-columns: repeat(3, 1fr); } }
.fact {
  background: #fff;
  padding: 22px 22px 20px;
}
.fact .fact-key {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.fact .fact-val { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }


.flow-list { display: grid; gap: 12px; counter-reset: flow; }
.flow-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px 24px;
}
@media (min-width: 768px) { .flow-item { grid-template-columns: 56px 1fr; gap: 24px; padding: 26px 30px; } }
.flow-item .step-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent-ink);
  padding-top: 4px;
  letter-spacing: .06em;
}
.flow-item h3 { font-size: 20px; margin-bottom: 6px; }
.flow-item p { color: var(--ink-soft); font-size: 16px; max-width: 72ch; }
.flow-item .flow-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  border-left: 2px solid var(--line);
  padding-left: 12px;
}


.price-figure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 18px;
}
.price-figure .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-figure .unit { font-size: 16px; color: var(--ink-soft); }
.price-why {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.price-why h3 { font-size: 19px; margin-bottom: 8px; }
.price-why p { color: var(--ink-soft); font-size: 16px; }


.party-grid { display: grid; gap: 16px; }
@media (min-width: 900px) { .party-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 900px) { .party-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.party {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
}
.party .role {
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.party h3 { font-size: 21px; margin-bottom: 6px; }
.party .req {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
  word-break: break-word;
}
.party p { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
.party ul { list-style: none; margin-bottom: 14px; }
.party li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 16px; margin-bottom: 7px; }
.party li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.party .party-links { margin-top: auto; display: flex; flex-wrap: wrap; gap: 8px 18px; padding-top: 8px; }
.party .party-links a {
  color: var(--accent-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
  min-height: var(--tap);
  display: inline-flex;
  align-items: center;
}
.party .party-links a:hover { color: var(--ink); }


.stage {
  padding-top: clamp(26px, 3.5vw, 40px);
  margin-top: clamp(26px, 3.5vw, 40px);
  border-top: 1px solid var(--line);
}
.stage:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.stage-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; margin-bottom: 18px; }
.stage-head .stage-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent-ink);
  letter-spacing: .06em;
}
.stage-head h3 { font-size: clamp(20px, 2.6vw, 26px); }
.stage-head .stage-why { color: var(--ink-soft); font-size: 15px; width: 100%; max-width: 72ch; }

.stage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 700px)  { .stage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .stage-grid { grid-template-columns: repeat(4, 1fr); } }


@media (min-width: 700px) {
  .stage-grid.sparse { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
  .stage-grid.sparse .stage-tile img { aspect-ratio: 3 / 2; }
}

.stage-tile { margin: 0; }
.stage-tile img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--panel);
}
.stage-tile figcaption {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.stages-more { display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }
.stages-more[hidden] { display: none; }


.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.35;
  min-height: var(--tap);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  color: var(--accent-ink);
  font-weight: 400;
}
.faq details[open] summary::after { content: "-"; }
.faq .faq-a { padding: 0 0 24px; color: var(--ink-soft); font-size: 16px; max-width: 72ch; }
.faq .faq-a p + p { margin-top: 10px; }


.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  margin: 26px 0 8px;
}
.contact-row a,
.contact-row span {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--ink);
}
.contact-row a:hover { color: var(--accent-ink); }


.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  display: none;
  gap: 10px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}

.sticky-cta .btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 50px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
}
.sticky-cta .btn-soft { flex: 1 1 0; background: var(--panel); }
@media (max-width: 767px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 78px; }
}
@media (prefers-reduced-motion: reduce) { .sticky-cta .btn:hover { transform: none; } }


.v2-note { font-size: 14px; color: var(--ink-soft); margin-top: 16px; max-width: 72ch; }
.slot-mark {
  background: #fff6e5;
  border-bottom: 1px dashed #d9b26a;
  padding: 0 3px;
}
.cta-mid { display: flex; justify-content: center; margin-top: clamp(30px, 4vw, 48px); }


.brief-grid { display: grid; gap: 20px; margin: 26px 0 6px; }
@media (min-width: 900px) { .brief-grid { grid-template-columns: 1fr 1fr; } }
.brief-row { border: 0; }
.brief-row legend, .brief-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.brief-opt { text-transform: none; letter-spacing: 0; opacity: .7; }
.brief-row label:not(.brief-label) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--tap);
  margin-right: 16px;
  cursor: pointer;
  font-size: 16px;
}
.brief-row input[type="radio"] { accent-color: var(--accent-ink); width: 18px; height: 18px; }
.brief-row input[type="number"], .brief-row textarea {
  width: 100%;
  max-width: 320px;
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.brief-row textarea { max-width: none; resize: vertical; }
.brief-row input:focus, .brief-row textarea:focus { outline: 2px solid var(--accent-ink); outline-offset: 1px; }
