:root {
  --rp-primary: #25d366;
  --rp-primary-dark: #128c7e;
  --rp-text: #0f172a;
  --rp-muted: #64748b;
  --rp-border: #e5e7eb;
  --rp-bg: #ffffff;
  --rp-bg-soft: #f8fafc;
  --rp-shadow: 0 12px 32px rgba(16, 24, 40, 0.08);
  --rp-radius: 16px;
}

.rp-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--rp-text);
  background: var(--rp-bg-soft);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.rp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.rp-hero {
  background: linear-gradient(135deg, var(--rp-primary) 0%, var(--rp-primary-dark) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.rp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.4;
}

.rp-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.rp-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.rp-hero__lead {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  max-width: 600px;
}

.rp-art {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--rp-radius);
  padding: 60px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rp-art__icon {
  font-size: 80px;
  color: #ffffff;
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

.rp-art__label {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rp-content {
  padding: 80px 0;
}

.rp-article {
  background: var(--rp-bg);
  border-radius: var(--rp-radius);
  padding: 60px;
  box-shadow: var(--rp-shadow);
  max-width: 900px;
  margin: 0 auto;
}

.rp-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rp-border);
}

.rp-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.rp-intro {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--rp-primary);
  margin-bottom: 48px;
}

.rp-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rp-text);
  margin: 0;
  font-weight: 500;
}

.rp-h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--rp-text);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rp-h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, var(--rp-primary), var(--rp-primary-dark));
  border-radius: 4px;
  flex-shrink: 0;
}

.rp-block p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rp-text);
  margin: 0 0 16px;
}

.rp-block p:last-child {
  margin-bottom: 0;
}

.rp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.rp-list li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--rp-text);
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.rp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 2px;
  background: var(--rp-primary);
  border-radius: 2px;
}

.rp-list li strong {
  color: var(--rp-primary-dark);
  font-weight: 600;
}

.rp-block a {
  color: var(--rp-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.rp-block a:hover {
  color: var(--rp-primary-dark);
  text-decoration: underline;
}

.rp-highlight {
  background: var(--rp-bg-soft);
  border: 2px solid var(--rp-border);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.rp-highlight h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--rp-text);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rp-highlight h4 i {
  color: var(--rp-primary);
}

.rp-highlight p {
  margin: 0;
  color: var(--rp-text);
}

.rp-notice {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.1));
  border-left: 4px solid var(--rp-primary);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.rp-notice p {
  margin: 0;
  color: var(--rp-text);
}

.rp-cta {
  background: linear-gradient(135deg, var(--rp-primary-dark) 0%, var(--rp-primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.rp-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.rp-cta__inner {
  position: relative;
  z-index: 1;
}

.rp-cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.rp-cta__title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.rp-cta__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px;
}

.rp-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.rp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.rp-btn--primary {
  background: #ffffff;
  color: var(--rp-primary-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.rp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.rp-btn--outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.rp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .rp-hero {
    padding: 60px 0 80px;
  }

  .rp-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rp-hero__title {
    font-size: 36px;
  }

  .rp-hero__lead {
    font-size: 18px;
  }

  .rp-art {
    padding: 40px;
  }

  .rp-art__icon {
    font-size: 60px;
  }

  .rp-content {
    padding: 60px 0;
  }

  .rp-article {
    padding: 40px 24px;
  }

  .rp-h3 {
    font-size: 20px;
  }

  .rp-cta {
    padding: 60px 0;
  }

  .rp-cta__title {
    font-size: 32px;
  }

  .rp-cta__actions {
    flex-direction: column;
  }

  .rp-btn {
    width: 100%;
    justify-content: center;
  }
}