:root {
  --primary: #5c6cfc;
  --primary-glow: rgba(92, 108, 252, 0.3);
  --bg: #06060c;
  --surface: #0c0c14;
  --surface-accent: #141421;
  --text: #ffffff;
  --text-muted: #8e8e9e;
  --border: rgba(255, 255, 255, 0.05);
  --accent-gradient: linear-gradient(135deg, #5c6cfc 0%, #a855f7 100%);
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  padding: 1.2rem 0;
  position: fixed; top: 0; width: 100%; z-index: 1000;
  backdrop-filter: blur(15px);
  background: rgba(6, 6, 12, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex; justify-content: space-between; align-items: center;
}

.logo {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px;
}

.logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

nav a {
  color: var(--text-muted); text-decoration: none; margin-left: 1.5rem;
  font-size: 0.95rem; font-weight: 500; transition: 0.3s;
}

nav a:hover { color: var(--text); }

.hero {
  padding: 12rem 0 8rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(92, 108, 252, 0.12) 0%, transparent 70%);
}

.badge {
  background: rgba(92, 108, 252, 0.1);
  border: 1px solid rgba(92, 108, 252, 0.3);
  color: #7c89ff;
  padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700;
  margin-bottom: 2rem; display: inline-block;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -2px;
}

.gradient-text {
  background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px; margin: 0 auto 3rem; font-size: 1.2rem; color: var(--text-muted);
}

.services-preview {
  display: flex; gap: 2rem; justify-content: center; margin-top: 4rem; opacity: 0.8;
}

.s-item {
  font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.5rem;
}

.btn {
  padding: 0.9rem 2.2rem; border-radius: 10px; font-weight: 700; text-decoration: none; transition: 0.3s; display: inline-block;
}

.btn-primary {
  background: var(--accent-gradient); color: white; box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-secondary {
  background: rgba(255,255,255,0.03); color: white; border: 1px solid var(--border);
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 4rem;
}

.price-card {
  background: var(--surface); border: 1px solid var(--border); padding: 3rem; border-radius: 24px; transition: 0.3s;
}

.price-card:hover { border-color: var(--primary); transform: translateY(-5px); }

.price-card.popular {
  background: linear-gradient(180deg, var(--surface-accent) 0%, var(--surface) 100%);
  border-color: rgba(92, 108, 252, 0.4);
}

.service-icon { font-size: 3rem; margin-bottom: 1.5rem; }

.price { font-size: 2.5rem; font-weight: 800; margin: 1.5rem 0; }
.price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }

.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 6rem 0;
}

.feat-list {
  list-style: none; margin-top: 2rem;
}

.feat-list li {
  margin-bottom: 1rem; font-weight: 600; font-size: 1.1rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); backdrop-filter: blur(10px);
  padding: 3rem; border-radius: 30px;
}

.status-line {
  display: flex; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--border);
}

footer {
  background: #030307; padding: 6rem 0 3rem; border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem;
}

.footer-links h4 { margin-bottom: 1.5rem; color: var(--text); }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 0.8rem; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }

@media (max-width: 768px) {
  .grid-2, .footer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 3rem; }
}