/* Общая обёртка — .description.content внутри .page.static */
.description.content {
  box-sizing: border-box;
}
.description.content *, .description.content *::before, .description.content *::after {
  box-sizing: border-box;
}

/* ─── HEADER / LOGO (внутри контента страницы) ─── */
.description .site-header {
  background: #fff;
  border-bottom: 2px solid #DD101D;
  padding: 18px 0;
}
.description .site-header .inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.description .site-header img {
  height: 44px;
  display: block;
}

/* ─── HERO CONTACT BLOCK ─── */
.description .contact-hero {
  background: linear-gradient(135deg, #DD101D 0%, #a50d15 100%);
  color: #fff;
  padding: 48px 24px;
}
.description .contact-hero .inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.description .contact-hero h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.description .contact-hero p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 480px;
}
.description .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
.description .contact-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.description .contact-card:hover { background: rgba(255,255,255,0.22); }
.description .contact-card .icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.description .contact-card .label {
  font-size: 0.72rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}
.description .contact-card .value {
  font-size: 0.97rem;
  font-weight: 600;
}
.description .contact-cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #DD101D;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.description .contact-cta-btn:hover { opacity: 0.88; }

/* ─── MAIN CONTENT (.page-body) ─── */
.page-body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #2a2a2a;
  line-height: 1.65;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* ─── TYPOGRAPHY ─── */
.page-body h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.page-body h1 span { color: #DD101D; }

.page-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.page-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 24px 0 8px;
}
.page-body p { margin-bottom: 14px; color: #3a3a3a; }

/* ─── TRUST STRIP ─── */
.page-body .trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 40px;
}
.page-body .trust-item {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px 18px;
  border-left: 3px solid #DD101D;
}
.page-body .trust-item .num {
  font-size: 1.7rem;
  font-weight: 800;
  color: #DD101D;
  line-height: 1;
  margin-bottom: 4px;
}
.page-body .trust-item .desc {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* ─── CATEGORIES ─── */
.page-body .categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.page-body .cat-item {
  background: #fafafa;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #2a2a2a;
}
.page-body .cat-item strong { color: #DD101D; margin-right: 6px; }

/* ─── STEPS ─── */
.page-body .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.page-body .step {
  text-align: center;
  padding: 20px 12px;
  background: #fafafa;
  border-radius: 10px;
  border-top: 3px solid #17864C;
}
.page-body .step .num {
  width: 36px;
  height: 36px;
  background: #17864C;
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.page-body .step p {
  font-size: 0.85rem;
  margin: 0;
  color: #444;
}
.page-body .step strong { display: block; font-size: 0.9rem; margin-bottom: 4px; color: #1a1a1a; }

/* ─── REQUIREMENTS ─── */
.page-body .req-list {
  list-style: none;
  margin: 14px 0;
  padding: 0;
}
.page-body .req-list li {
  padding: 10px 14px;
  background: #fafafa;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: #3a3a3a;
}

/* ─── FAQ ─── */
.page-body .faq-item {
  border-bottom: 1px solid #ebebeb;
  padding: 18px 0;
}
.page-body .faq-item:last-child { border-bottom: none; }
.page-body .faq-item h3 {
  font-size: 0.97rem;
  color: #1a1a1a;
  margin: 0 0 8px;
  cursor: default;
}
.page-body .faq-item p { margin: 0; font-size: 0.9rem; color: #555; }

/* ─── BOTTOM CTA ─── */
.page-body .bottom-cta {
  background: #3A3A3A;
  color: #fff;
  border-radius: 12px;
  padding: 36px 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.page-body .bottom-cta h3 { font-size: 1.2rem; margin: 0 0 6px; color: #fff; }
.page-body .bottom-cta p { margin: 0; opacity: 0.75; font-size: 0.9rem; }
.page-body .bottom-cta a.btn {
  background: #DD101D;
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.page-body .bottom-cta a.btn:hover { opacity: 0.88; }

@media (max-width: 680px) {
  .description .contact-hero .inner { grid-template-columns: 1fr; }
  .page-body .trust-strip { grid-template-columns: 1fr 1fr; }
  .page-body .steps { grid-template-columns: 1fr 1fr; }
  .page-body .categories-grid { grid-template-columns: 1fr; }
  .page-body .bottom-cta { flex-direction: column; text-align: center; }
  .page-body h1 { font-size: 1.5rem; }
}
