body {
  margin: 0;
  font-family: Inter, system-ui;
  background: radial-gradient(circle at top, #0f1b3d, #050914);
  color: #fff;
}

.topbar {
  display: flex;
  justify-content: space-between;
  padding: 18px 40px;
  background: #060b1f;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}
.logo span { color: #38f38a; }

.topbar a {
  color: #cfd6ff;
  margin-left: 18px;
  text-decoration: none;
}

.wrapper {
  padding: 60px 40px;
  text-align: center;
}

.subtitle {
  color: #9aa3ff;
  margin-bottom: 25px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}
.tabs.small { margin-bottom: 40px; }

.tab {
  padding: 10px 18px;
  border-radius: 8px;
  background: #0c1333;
  border: 1px solid #1b2a6d;
  color: #cdd6ff;
  cursor: pointer;
}
.tab.active {
  background: #101d4f;
  border-color: #38f38a;
  color: #38f38a;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: #0b1436;
  border: 1px solid #1a2a66;
  border-radius: 14px;
  padding: 25px;
  text-align: left;
}

.card.glow {
  box-shadow: 0 0 0 1px #38f38a, 0 0 25px rgba(56,243,138,0.25);
}

.card h3 {
  color: #38f38a;
}

.card ul {
  padding-left: 18px;
  color: #cdd6ff;
}

.price {
  font-size: 26px;
  margin: 18px 0;
}

.price span {
  font-size: 14px;
  color: #9aa3ff;
}

.order {
  display: block;
  text-align: center;
  background: #38f38a;
  color: #00140a;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.why {
  padding: 60px 40px;
  background: #050914;
  text-align: center;
}

.why span { color: #38f38a; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-box {
  background: #0b1436;
  border: 1px solid #1a2a66;
  padding: 22px;
  border-radius: 12px;
}

footer {
  padding: 20px;
  text-align: center;
  color: #7d86c7;
}
