/* /fix — входная платная ступень. Переиспользует gs-* и ag-*, здесь только своё. */

/* лесенка цен: где эта покупка стоит относительно остальных */
.fx-ladder {
  margin-top: 32px; padding: 24px 26px;
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}
.fx-l-label { font-size: 9.5px; letter-spacing: 0.2em; color: var(--text-faint); margin-bottom: 18px; }
.fx-rung {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.fx-rung:last-of-type { border-bottom: none; }
.fx-price { font-size: 17px; color: var(--text-dim); letter-spacing: -0.01em; }
.fx-what { font-size: 14.5px; line-height: 1.6; color: var(--text-faint); }
.fx-what b { color: var(--text-dim); font-weight: 600; }
.fx-what i { font-style: normal; color: var(--accent); }

.fx-here {
  margin: 0 -14px; padding-left: 14px; padding-right: 14px;
  background: rgba(228, 135, 154, 0.07);
  border-radius: 10px; border-bottom-color: transparent;
}
.fx-here .fx-price { color: var(--accent); font-weight: 600; }
.fx-here .fx-what b { color: var(--text); }

.fx-credit {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px; line-height: 1.65; color: var(--text-faint);
}
.fx-credit b { color: var(--ok); font-weight: 600; }

/* шесть работ */
.fx-list { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; counter-reset: fx; }
.fx-list li {
  counter-increment: fx; position: relative; padding: 14px 18px 14px 52px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--panel);
  font-size: 14.5px; line-height: 1.62; color: var(--text-faint);
}
.fx-list li::before {
  content: counter(fx); position: absolute; left: 16px; top: 14px;
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--accent);
  border: 1px solid rgba(228, 135, 154, 0.35); background: rgba(228, 135, 154, 0.07);
}
.fx-list b { color: var(--text); font-weight: 600; }

.fx-not {
  margin-top: 24px; padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}
.fx-n-label { font-size: 9.5px; letter-spacing: 0.2em; color: var(--text-faint); margin-bottom: 12px; }
.fx-not p { font-size: 14.5px; line-height: 1.7; color: var(--text-dim); margin: 0; }

/* четыре шага */
.fx-steps { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fx-steps li {
  display: grid; grid-template-columns: 96px 1fr; gap: 18px;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--panel); padding: 20px 24px;
}
.fx-steps .fx-n {
  font-size: 10px; letter-spacing: 0.14em; color: var(--accent);
  padding-top: 4px;
}
.fx-steps h3 {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em;
  font-size: 17px; margin: 0 0 7px; line-height: 1.25;
}
.fx-steps p { font-size: 14.5px; line-height: 1.65; color: var(--text-faint); margin: 0; }

/* блок покупки */
.fx-buy {
  margin-top: 30px; padding: 30px 28px;
  border: 1px solid rgba(228, 135, 154, 0.3); border-radius: 20px;
  background: rgba(228, 135, 154, 0.05);
}
.fx-buy-k { font-size: 9.5px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 14px; }
.fx-buy h3 {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.025em;
  font-size: clamp(20px, 2.8vw, 26px); line-height: 1.2; margin: 0 0 12px;
}
.fx-buy-p { font-size: 15px; line-height: 1.7; color: var(--text-dim); margin: 0; }

@media (max-width: 640px) {
  .fx-ladder, .fx-not, .fx-buy { padding: 20px 18px; }
  .fx-rung { grid-template-columns: 1fr; gap: 4px; }
  .fx-here { margin: 0 -10px; padding-left: 10px; padding-right: 10px; }
  .fx-steps li { grid-template-columns: 1fr; gap: 8px; padding: 18px 18px; }
  .fx-steps .fx-n { padding-top: 0; }
  .fx-list li { padding: 13px 16px 13px 46px; }
}

/* «то, что видно» — единственный блок на странице, который продаёт глазами */
.fx-seen {
  margin-top: 26px; padding: 24px 26px;
  border: 1px solid rgba(228, 135, 154, 0.28); border-radius: 16px;
  background: rgba(228, 135, 154, 0.055);
}
.fx-s-label { font-size: 9.5px; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 12px; }
.fx-seen p { font-size: 15.5px; line-height: 1.72; color: var(--text-dim); margin: 0; }
.fx-seen b { color: var(--text); font-weight: 600; }
@media (max-width: 640px) { .fx-seen { padding: 20px 18px; } }
