*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #bf5af2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2e;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
}

.nav-links a {
  color: #8e8e93;
}

.nav-links a:hover {
  color: #bf5af2;
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 48px 0 40px;
  text-align: center;
}

.hero-logo {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero .tagline {
  margin: 0 0 16px;
  color: #bf5af2;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero .lead {
  margin: 0 auto 32px;
  max-width: 540px;
  color: #8e8e93;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 320px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

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

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

.btn-secondary {
  background: #1c1c1e;
  color: #8e8e93;
  border: 1px solid #2a2a2e;
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-outline {
  background: transparent;
  color: #bf5af2;
  border: 1px solid #bf5af2;
}

.btn-outline:hover {
  background: rgba(191, 90, 242, 0.1);
  color: #bf5af2;
}

/* Sections */
section {
  padding: 40px 0;
}

section h2 {
  margin: 0 0 24px;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

.cards {
  display: grid;
  gap: 16px;
}

@media (min-width: 560px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: #1c1c1e;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #2a2a2e;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.card p {
  margin: 0;
  color: #8e8e93;
  font-size: 0.9rem;
}

/* Pricing */
.pricing {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .pricing {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.price-card {
  background: #1c1c1e;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #2a2a2e;
  text-align: center;
}

.price-card.featured {
  border-color: #bf5af2;
}

.price-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
}

.price-card .amount {
  margin: 12px 0 4px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #bf5af2;
}

.price-card .period {
  margin: 0 0 8px;
  color: #8e8e93;
  font-size: 0.85rem;
}

.price-card .desc {
  margin: 0 0 12px;
  color: #c7c7cc;
  font-size: 0.85rem;
}

.price-card .packages {
  margin: 12px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #2a2a2e;
  color: #8e8e93;
  font-size: 0.85rem;
  line-height: 1.55;
}

.price-card p {
  margin: 0;
  color: #8e8e93;
  font-size: 0.85rem;
}

.pricing-note {
  margin-top: 16px;
  text-align: center;
  color: #8e8e93;
  font-size: 0.85rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #2a2a2e;
}

.steps li:last-child {
  border-bottom: none;
}

.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #bf5af2;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.steps li strong {
  display: block;
  margin-bottom: 4px;
}

.steps li span {
  color: #8e8e93;
  font-size: 0.9rem;
}

/* Contacts */
.contacts {
  text-align: center;
}

.contacts p {
  margin: 0 0 12px;
  color: #8e8e93;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* Footer */
.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid #2a2a2e;
  text-align: center;
  color: #8e8e93;
  font-size: 0.85rem;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-links a {
  color: #8e8e93;
}

.footer-links a:hover {
  color: #bf5af2;
}

/* Privacy page */
.page-content {
  padding: 32px 0 48px;
}

.page-content h1 {
  margin: 0 0 8px;
  font-size: 1.75rem;
}

.page-content .updated {
  margin: 0 0 32px;
  color: #8e8e93;
  font-size: 0.85rem;
}

.page-content h2 {
  margin: 28px 0 12px;
  font-size: 1.1rem;
  text-align: left;
}

.page-content p,
.page-content ul {
  margin: 0 0 16px;
  color: #c7c7cc;
  font-size: 0.95rem;
}

.page-content ul {
  padding-left: 20px;
}

.page-content li {
  margin-bottom: 8px;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
