:root {
  color-scheme: light;
  font-family: "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  background: #0b1531;
  color: #111;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: radial-gradient(circle at top, rgba(94, 158, 255, 0.24), transparent 38%),
              linear-gradient(180deg, #08112a 0%, #061721 100%);
  color: #061724;
  display: flex;
  justify-content: center;
  padding: 18px 16px 24px;
  direction: rtl;
}
.page-container {
  width: min(100%, 580px);
  background: rgba(255,255,255,0.98);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255,255,255,0.42);
  text-align: center;
}
.hero {
  padding: 24px 22px 28px;
  background: linear-gradient(180deg, #3971ff 0%, #3db7ff 100%);
  color: #fff;
  text-align: center;
}
.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.24);
}
.logo-wrap img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}
.headline {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.subtext {
  max-width: 88%;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.92;
  line-height: 1.75;
}
.content {
  padding: 22px 20px 30px;
}
.card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(14, 48, 86, 0.08);
}
.stats {
  display: grid;
  gap: 14px;
}
.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(57,113,255,.08), rgba(61,183,255,.08));
}

.stat-item.stat-center {
  justify-content: center;
}
.stat-item.stat-center .stat-value {
  font-size: 1rem;
  color: #10275d;
}
.stat-title {
  font-size: 0.95rem;
  color: #4a5d79;
}
.stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #10275d;
}
.benefit-list {
  font-size: 0.98rem;
  color: #31557f;
  line-height: 1.8;
  margin-top: 14px;
}
.benefit-list li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-right: 22px;
}
.benefit-list li::before {
  content: "✔";
  position: absolute;
  right: 0;
  top: 0;
  color: #1f77ff;
  font-size: 0.9rem;
  line-height: 1.75;
}
.cta-panel {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}
.price-tag {
  text-align: center;
  padding: 20px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
  border: 1px solid rgba(63, 114, 255, 0.14);
}
.price-tag strong {
  display: block;
  font-size: 2rem;
  color: #0d1f47;
  margin-bottom: 6px;
}
.price-tag span {
  font-size: 0.96rem;
  color: #5f79a5;
}
.cta-button {
  width: 100%;
  padding: 18px 20px;
  border: none;
  border-radius: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #1e67ff 0%, #2fc2ff 100%);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 20px 30px rgba(30, 103, 255, 0.25);
}
.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 34px rgba(30, 103, 255, 0.32);
}
.cta-note {
  text-align: center;
  font-size: 0.93rem;
  color: #537197;
  padding: 0 8px;
}
.footer {
  padding: 10px 16px 20px;
  text-align: center;
  font-size: 0.88rem;
  color: #7890ad;
}
@media (max-width: 420px) {
  body {padding: 14px 12px 18px;}
  .hero {padding: 20px 18px 24px;}
  .content {padding: 18px 16px 24px;}
  .stat-item {padding: 14px 16px;}
  .cta-button {padding: 16px 18px;}
}
