.rp-page {
  background: #fff;
  color: #111;
}

.rp-hero {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, .16), transparent 35%),
    linear-gradient(135deg, #081120 0%, #10213b 55%, #16345f 100%);
  color: #fff;
  padding: 72px 0;
}

.rp-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 50px;
}

.rp-kicker,
.rp-section__head span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #3b82f6;
  font-weight: 800;
}

.rp-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  margin: 0 0 18px;
}

.rp-hero p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.rp-hero__image {
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 32px;
  padding: 42px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}

.rp-hero__image img {
  max-width: 340px;
  width: 100%;
}

.rp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.rp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background:#3b82f6;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.rp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.18);
}

.rp-btn--light {
  background: #fff;
  color: #111;
}

.rp-section {
  padding: 70px 0;
}

.rp-section--soft {
  background: #f8f6f1;
}

.rp-section__head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.rp-section__head h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 12px;
}

.rp-section__head p {
  color: #666;
  line-height: 1.7;
}

.rp-grid {
  display: grid;
  gap: 22px;
}

.rp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.rp-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.rp-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 38px rgba(0,0,0,.06);
  transition: .25s ease;
}

.rp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(0,0,0,.10);
}

.rp-card__num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #3b82f6;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
}

.rp-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.rp-card p {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

.rp-split {
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 40px;
}

.rp-split h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 14px;
}

.rp-split p {
  color: #555;
  line-height: 1.7;
}

.rp-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.rp-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: #333;
}

.rp-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: #c9a24d;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.rp-highlight {
  background: #111;
  color: #fff;
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.rp-highlight h3 {
  font-size: 28px;
  margin: 0 0 12px;
}

.rp-highlight p {
  color: rgba(255,255,255,.72);
  margin-bottom: 24px;
}

.rp-video-section {
  padding: 70px 0 90px;
  background: #111;
  color: #fff;
}

.rp-video-section .rp-section__head p {
  color: rgba(255,255,255,.7);
}

.rp-video {
  display: flex;
  justify-content: center;
}

.rp-video iframe {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  background: #000;
}

@media (max-width: 900px) {
  .rp-hero {
    padding: 48px 0;
  }

  .rp-hero__inner,
  .rp-split {
    grid-template-columns: 1fr;
  }

  .rp-hero__content {
    text-align: center;
  }

  .rp-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .rp-actions {
    justify-content: center;
  }

  .rp-grid--4,
  .rp-grid--3 {
    grid-template-columns: 1fr;
  }

  .rp-section {
    padding: 52px 0;
  }

  .rp-card,
  .rp-highlight {
    padding: 24px;
  }
}