body {
  margin: 0;
  -font-family: Inter, sans-serif;
  background: #F4F7FB;
  color: #0F172A;
}

.new-service-detail .container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.new-service-detail h1 {
  font-size: 44px;
  line-height: 1.2;
}

.new-service-detail h2 {
  font-size: 30px;
  line-height: 30px;
}

.new-service-detail .accent {
  color: #5A50C8;
}

.new-service-detail .sub {
  font-size: 18px;
  margin-top: 20px;
}

.new-service-detail .badge {
  display: inline-flex;
  gap: 8px;
  background: #EEF2FF;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.new-service-detail .hero-benefits div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.new-service-detail .hero-benefits i {
  width: 18px;
  height: 18px;
}

.new-service-detail .btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.new-service-detail .primary {
  background: linear-gradient(135deg, #2F7D6B, #5A50C8);
  color: #fff;
}

.new-service-detail .primary:hover {
  opacity: 0.9;
}

.new-service-detail .big {
  font-size: 18px;
}

.new-service-detail .note {
  margin-top: 10px;
  font-size: 14px;
  color: #64748B;
}

.new-service-detail .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.new-service-detail .card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  transition: 0.3s;
}

.new-service-detail .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.new-service-detail .card i {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

.new-service-detail .steps {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.new-service-detail .step {
  flex: 1;
  text-align: center;
}

.new-service-detail .step i {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.new-service-detail .trust-box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.new-service-detail .trust-item strong {
  font-size: 24px;
  display: block;
}

.new-service-detail .price {
  text-align: center;
}

section.container.prices {
    text-align: center;
}

.price-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #E2E8F0;
}

.new-service-detail .price-value {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.new-service-detail .price-box ul {
  list-style: none;
  padding: 0;
}

.new-service-detail .price-box li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.new-service-detail .faq-item {
  margin-bottom: 20px;
}

.new-service-detail .final {
  text-align: center;
  background: linear-gradient(135deg, #E6F4F1, #EEF2FF);
  border-radius: 20px;
}

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

/* =========================
   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%;
  }
}