.cost-page {
  background: #F6F8FB;
  padding: 60px 0;
  font-family: Inter, sans-serif;
}

.cost-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.cost-hero {
  text-align: center;
  margin-bottom: 60px;
}

.cost-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
  text-align: center;
}

.cost-sub {
  color: #64748B;
  font-size: 18px;
  margin-bottom: 25px;
}

.cost-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.cost-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  font-size: 14px;
}

.cost-btn {
  background: #2F7D6B;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
}

/* CARDS */
.cost-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 20px;
}

.cost-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  text-align: center;
}

.cost-card-popular {
  border: 2px solid #5A50C8;
}

.cost-label {
  font-size: 12px;
  margin-bottom: 10px;
  color: #5A50C8;
}

.cost-value {
  font-size: 26px;
  margin: 10px 0;
}

.cost-btn-outline {
  border: 1px solid #2F7D6B;
  color: #2F7D6B;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
}

/* INFO */
.cost-info {
    padding: 30px 0px;
}

.cost-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.cost-info-item {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  text-align: center;
}

/* RISK */
.cost-risk {
    padding: 30px 0px;
}

.cost-risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.cost-risk-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  text-align: center;
}

.cost-risk-final {
  background: #E6F4F1;
}

/* FAQ */
.cost-faq {
    padding: 30px 0px;
}

.cost-faq-item {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid #E2E8F0;
}

/* CTA */
.cost-cta {
  text-align: center;
  margin-top: 50px;
}

li {
    list-style-type: none;
}

a.prr-link {
    color: #4B42AA;
    text-decoration: none;
    padding-bottom: 1px;
}

.prr-info {
	margin-top:20px;
	margin-bottom: 20px;
}

/* =========================
   OUTER BLOCK (фон)
========================= */

.crosslink-block {
  width: 100%;
  background: #F6F8FB;
  padding: 30px 0;
  margin-top: 40px;
}

/* =========================
   INNER LAYOUT (ВАЖНО!)
   используем твой дизайн-container
========================= */

.design-container {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
	border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.crosslink-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* =========================
   TEXT BLOCK
========================= */

.crosslink-text {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 750px;
}

.crosslink-text h3 {
  margin: 0;
  font-size: 16px;
  color: #0F172A;
}

.crosslink-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #64748B;
  line-height: 1.4;
}

/* =========================
   BUTTON (в стиле твоего сайта)
========================= */

.crosslink-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #5A50C8, #7C3AED);
  color: #fff;

  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(90,80,200,0.25);

  white-space: nowrap;
}

.crosslink-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(90,80,200,0.35);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .crosslink-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .crosslink-btn {
    width: 90%;
    justify-content: center;
  }

  .crosslink-text {
    max-width: 100%;
  }
}