.rtp-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 64px 24px;
  text-align: center;
}

.rtp-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 200;
  letter-spacing: 0.06em;
  color: #ffffff;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #000000;
  max-width: 1000px;
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.stat-band-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-band-item:last-child {
  border-right: none;
}

.stat-band-num {
  font-size: 32px;
  font-weight: 200;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.stat-band-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.rtp-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.rtp-visual {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  margin: 0 auto 40px;
  display: block;
}

.rtp-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary);
  margin: 32px 0 12px;
}

.rtp-body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}

.vol-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.vol-table th,
.vol-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.vol-table th {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vol-table td {
  color: var(--text);
}

@media (max-width: 768px) {
  .stat-band {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -20px;
  }
  .stat-band-item:nth-child(2) {
    border-right: none;
  }
  .rtp-body {
    padding: 48px 16px 60px;
    overflow: hidden;
  }
  .rtp-visual {
    max-width: 100%;
    max-height: 220px;
  }
}

@media (max-width: 375px) {
  .rtp-visual {
    max-height: 180px;
  }
}
