/* СБРОС */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}
 header img {
      height: 48px;
    }

/* КОНТЕЙНЕР */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(70px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}


.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.nav a:hover {
  color: #fff;
}

.btn-small {
  padding: 8px 18px;
  font-size: 14px;
}

/* КНОПКИ */
.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-secondary {
  border: 1px solid #555;
  color: #fff;
}

.btn-secondary:hover {
  border-color: #fff;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(120, 82, 255, 0.35), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tagline {
  color: #a0a0a0;
  font-size: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
}

.hero-sub {
  color: #c0c0c0;
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
}

/* МЕТРИКИ */
.hero-metrics {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.metric-value {
  font-size: 20px;
  font-weight: 600;
}

.metric-label {
  color: #a0a0a0;
  font-size: 14px;
}

/* СЕКЦИИ */
.section {
  padding: 100px 0;
}

.section.dark {
  background: #0a0a0a;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.section-sub {
  text-align: center;
  color: #b0b0b0;
  margin-bottom: 40px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  background: #0b0b0b;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #1a1a1a;
  transition: 0.2s;
}

.feature-card:hover {
  border-color: #3b3b3b;
  transform: translateY(-4px);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.5;
}

/* PRICING */
.pricing-tilt-grid {
  display: grid;
  gap: 30px;

  /* 🔥 Делаем 4 карточки в ряд */
  grid-template-columns: repeat(4, 1fr);
}

/* 📱 Адаптив — чтобы не ломалось на телефонах */
@media (max-width: 1200px) {
  .pricing-tilt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .pricing-tilt-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-tilt-card {
  background: rgba(24, 24, 24, 0.6);
  border: 1px solid #272727;
  border-radius: 20px;
  padding: 0;
  position: relative;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
}

.pricing-tilt-card:hover {
  transform: translateY(-6px);
  border-color: #3d3d3d;
}

.pricing-tilt-card.highlight {
  border: 2px solid white;
}

.popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: black;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

.pricing-tilt-inner {
  padding: 32px;
}

.pricing-tilt-inner h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.subtitle {
  color: #9b9b9b;
  font-size: 14px;
  margin-bottom: 20px;
}

.price-box {
  margin-bottom: 24px;
}

.price {
  font-size: 38px;
  font-weight: 700;
}

.price span {
  font-size: 18px;
  color: #b0b0b0;
}

.robux {
  color: #8a8a8a;
  font-size: 14px;
  margin-top: 4px;
}

.features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.features li.yes::before {
  content: "✓";
  color: #4ade80;
  font-weight: 700;
}

.features li.no::before {
  content: "✗";
  color: #555;
  font-weight: 700;
}

.buy-btn {
  width: 100%;
  padding: 12px 0;
  border-radius: 999px;
  border: 1px solid #2a2a2a;
  background: transparent;
  color: white;
  font-weight: 600;
  transition: 0.2s;
}

.buy-btn:hover {
  background: #111;
  border-color: #444;
}

.buy-btn.white {
  background: white;
  color: black;
  border-color: white;
}

.buy-btn.white:hover {
  background: #e5e5e5;
}


.disclaimer {
  text-align: center;
  margin-top: 20px;
  color: #888;
  font-size: 14px;
}

/* WHY US — TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #1a1a1a;
  text-align: left;
}

.comparison-table th {
  color: #ccc;
  font-weight: 600;
}

.comparison-table td {
  color: #ddd;
}

.comparison-table tr:hover {
  background: #111;
}

/* FAQ */
details {
  background: #0b0b0b;
  border: 1px solid #1a1a1a;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: 0.2s;
}

details:hover {
  border-color: #3b3b3b;
}

summary {
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 12px;
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.5;
}

/* START BLOCK */
.center {
  text-align: center;
}

.center .btn-primary {
  margin-top: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 0;
  color: #777;
  border-top: 1px solid #111;
  margin-top: 40px;
}

/* АДАПТИВ */
@media (max-width: 900px) {
  .hero-title {
    font-size: 34px;
  }

  .nav {
    display: none;
  }

  .pricing-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}