/* RT */

.rt-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 18%,
      rgba(185, 150, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 26%,
      rgba(142, 220, 255, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #fbf9ff 0%, #f7f1ff 48%, #effaff 100%);
}

.rt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 42%),
    radial-gradient(
      circle at 52% 100%,
      rgba(255, 255, 255, 0.7),
      transparent 34%
    );
  pointer-events: none;
}

.rt-section .container {
  position: relative;
  z-index: 1;
}

.rt-head {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.rt-head .section-kicker {
  margin-inline: auto;
}

.rt-head h2 {
  font-family: var(--font-title);
  font-size: clamp(2.55rem, 4.9vw, 5.15rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: #23172f;
}

.rt-head p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.rt-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 22px;
}

.rt-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.48)
    ),
    linear-gradient(
      135deg,
      rgba(239, 231, 255, 0.92),
      rgba(233, 248, 255, 0.84)
    );
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.rt-panel::before,
.rt-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.rt-panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.panel-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--color-primary-dark);
  font-weight: 900;
  font-size: 1.75rem;
  box-shadow: 0 18px 42px rgba(91, 60, 164, 0.12);
  backdrop-filter: blur(14px);
}

.rt-panel-content {
  max-width: 430px;
}

.rt-panel h3 {
  margin-bottom: 14px;
  font-family: var(--font-title);
  font-size: clamp(2.15rem, 3vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: #23172f;
}

.rt-panel p {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 1rem;
}

.rt-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.rt-panel-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(91, 60, 164, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.rt-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rt-benefit-card {
  position: relative;
  min-height: 252px;
  padding: 26px;
  border: 1px solid rgba(91, 60, 164, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px rgba(57, 38, 96, 0.07);
  backdrop-filter: blur(16px);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
  overflow: hidden;
}

.rt-benefit-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(142, 220, 255, 0.22),
    transparent 68%
  );
  pointer-events: none;
}

.rt-benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(159, 122, 234, 0.26);
  box-shadow: 0 24px 58px rgba(57, 38, 96, 0.12);
}

.rt-benefit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(159, 122, 234, 0.22);
}

.rt-benefit-card h3 {
  margin-bottom: 9px;
  color: #261c35;
  font-size: 1.16rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.rt-benefit-card p {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
