/* ============================================================
   АвтоБро — дополнительные блоки (схемы сделки, города)
   Используется на buy.html и гео-страницах autobro.online.
   ============================================================ */

/* --- схемы сделки --- */
.scheme {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}
.scheme-block {
  background: #1f1e1e;
  border: 1px solid #2c2b2b;
  border-radius: 20px;
  padding: 24px 20px;
}
.scheme-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.scheme-block__tag {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(159, 234, 78, 0.15);
  color: #9fea4e;
  font-size: 13px;
  font-weight: 700;
}
.scheme-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}
.scheme-step {
  flex: 1 1 150px;
  background: #161515;
  border: 1px solid #2c2b2b;
  border-radius: 14px;
  padding: 14px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scheme-step h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.scheme-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #a8a8a8;
}
.scheme-arrow {
  flex: none;
  display: flex;
  align-items: center;
  color: #9fea4e;
  font-size: 20px;
  font-weight: 700;
  padding: 0 2px;
}
@media (max-width: 860px) {
  .scheme-arrow { display: none; }
  .scheme-step { flex: 1 1 100%; min-height: 0; }
}

/* --- блок городов --- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.city-card {
  display: block;
  padding: 18px 16px;
  background: #1f1e1e;
  border: 1px solid #2c2b2b;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.city-card:hover {
  border-color: #9fea4e;
  transform: translateY(-2px);
}
.city-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.city-card span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #a8a8a8;
}

/* --- гео-страницы: двухколоночный блок «почему» --- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}
.two-col p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #cfcfcf;
}
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checks li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.5;
  color: #cfcfcf;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(159, 234, 78, 0.15);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #9fea4e;
  border-bottom: 2px solid #9fea4e;
  transform: rotate(-45deg);
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; }
}

/* гео-страницы: статистика в hero без карточки */
.hero__visual > .hero__stats:first-child { margin-top: 0; }
