:root {
  --primary: #1a0033;
  --accent: #8b3dff;
  --accent-light: #a855ff;
  --accent-lighter: #d8b4ff;
  --bg-main: #0f0015;
  --bg-surface: #1a0033;
  --text-main: #ffffff;
  --text-muted: #b0b0b0;
  --text-light: #808080;
  --border: #2d1a4d;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.promo-banner {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  text-align: center;
  padding: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header {
  background: rgba(15, 0, 21, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 40px;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 61, 255, 0.4);
}

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

section {
  padding: 4rem 0;
}

.section-label {
  display: inline-block;
  background: rgba(139, 61, 255, 0.15);
  color: var(--accent-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-main);
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--accent-light);
}

p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.hero-stats > div {
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.hero-stats span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* BUTTONS */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(139, 61, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(139, 61, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(139, 61, 255, 0.1);
}

/* GRIDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

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

/* CARDS */
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(139, 61, 255, 0.2);
  transform: translateY(-4px);
}

.icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(139, 61, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* REVIEW CARDS */
.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.3s;
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(139, 61, 255, 0.2);
}

.review-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.review-text {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.review-author strong {
  color: var(--text-main);
  font-size: 0.95rem;
}

.review-author span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review-badge {
  display: inline-block;
  background: rgba(139, 61, 255, 0.2);
  color: var(--accent-light);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* PRICING */
.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(139, 61, 255, 0.3);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  margin: 1rem 0;
}

.price-main span {
  font-size: 1.2rem;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-list li {
  padding: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.features-list li:before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}

/* FAQ */
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-surface);
  border: none;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.3s;
}

.faq-question:hover {
  background: rgba(139, 61, 255, 0.1);
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, rgba(139, 61, 255, 0.1) 0%, rgba(139, 61, 255, 0.05) 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(139, 61, 255, 0.15) 0%, rgba(139, 61, 255, 0.05) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 0.5rem;
}

/* TRUST CARDS */
.trust-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  transition: all 0.3s;
}

.trust-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.trust-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.trust-card h3 {
  margin-bottom: 0.6rem;
}

.trust-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* DEVICE BLOCKS */
.device-block {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.device-block h3 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.device-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.device-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.device-step-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.device-step p {
  margin: 0;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background: rgba(15, 0, 21, 0.95);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand a {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-brand a span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-col h4 {
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .nav-links {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card.popular {
    transform: scale(1);
  }
}

/* COUNTDOWN */
.countdown-section {
  background: rgba(139, 61, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.time-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  min-width: 80px;
}

.time-box b {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.time-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
