.spravkoff-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  color: #1f2937;
  line-height: 1.6;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #6b7280;
}

.breadcrumbs a {
  color: #6b7280;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #111827;
}

.breadcrumbs span {
  margin: 0 6px;
}

.cluster-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  border-radius: 24px;
  padding: 56px 40px;
  margin-bottom: 48px;
  border: 1px solid #e5e7eb;
}

.cluster-hero__content {
  max-width: 760px;
}

.cluster-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 13px;
  color: #374151;
}

.cluster-hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #111827;
}

.cluster-subtitle {
  font-size: 18px;
  color: #4b5563;
  margin: 0 0 28px;
}

.cluster-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.spravkoff-page section {
  margin-bottom: 64px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #111827;
}

.section-heading p {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
}

.text-block {
  max-width: 900px;
}

.text-block p {
  margin: 0 0 16px;
  color: #374151;
  font-size: 16px;
}

.services-grid,
.benefits-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.benefit-item,
.step-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.benefit-item:hover,
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.service-card__content,
.benefit-item,
.step-item {
  padding: 28px;
}

.service-card h3,
.benefit-item h3,
.step-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: #111827;
}

.service-card p,
.benefit-item p,
.step-item p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.08em;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 20px;
  background: #ffffff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #111827;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
  color: #4b5563;
}

.cluster-cta__inner {
  background: #111827;
  color: #ffffff;
  border-radius: 24px;
  padding: 42px 32px;
  text-align: center;
}

.cluster-cta__inner h2 {
  margin: 0 0 12px;
  font-size: 30px;
}

.cluster-cta__inner p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.cluster-cta__inner .btn-primary {
  background: #ffffff;
  color: #111827;
}

.cluster-cta__inner .btn-primary:hover {
  background: #f3f4f6;
}

@media (max-width: 991px) {
  .cluster-hero {
    padding: 40px 24px;
  }

  .cluster-hero h1 {
    font-size: 34px;
  }

  .services-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .spravkoff-page {
    padding: 18px 16px 56px;
  }

  .cluster-hero h1 {
    font-size: 28px;
  }

  .cluster-subtitle {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .services-grid,
  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .service-card__content,
  .benefit-item,
  .step-item {
    padding: 22px;
  }

  .cluster-cta__inner {
    padding: 32px 20px;
  }
}