:root {
  --bg: #08080c;
  --surface: #111116;
  --surface2: #1a1a22;
  --border: #252530;
  --text: #eeeef2;
  --text2: #8888a0;
  --accent: #a855f7;
  --accent2: #c084fc;
  --accent-glow: rgba(168,85,247,0.2);
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* NAV */
.navbar {
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent2), #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { color: var(--text2); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent2); box-shadow: 0 0 25px var(--accent-glow); }

/* HERO */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(ellipse at 50% 40%, var(--accent-glow) 0%, transparent 55%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero .container { position: relative; z-index: 1; }
.hero .badge {
  display: inline-block;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent2);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 { font-size: 4rem; font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 20px; }
.hero .gradient-text { background: linear-gradient(135deg, #c084fc, #e9d5ff, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.15rem; color: var(--text2); max-width: 550px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 25px var(--accent-glow); }
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 35px var(--accent-glow); }
.btn-secondary { background: var(--surface2); color: #fff; border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--border); transform: translateY(-2px); }
.btn-large { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* STATS */
.stats { padding: 50px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-number { font-size: 2.6rem; font-weight: 900; background: linear-gradient(135deg, var(--accent2), #e9d5ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--text2); font-size: 0.85rem; margin-top: 2px; }

/* SECTIONS */
section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
.section-header p { color: var(--text2); font-size: 1.05rem; }
.section-header a { color: var(--accent2); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.feature-icon { font-size: 2.6rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { color: var(--text2); font-size: 0.88rem; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.gallery-item:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.gallery-image {
  height: 280px;
  background: var(--surface2);
  overflow: hidden;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover .gallery-image img { transform: scale(1.08); }
.gallery-info { padding: 18px 20px; }
.gallery-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.gallery-info p { color: var(--text2); font-size: 0.82rem; text-transform: capitalize; }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card { text-align: center; }
.step-number {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem; font-weight: 800;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.step-card h3 { margin-bottom: 6px; font-size: 1rem; }
.step-card p { color: var(--text2); font-size: 0.88rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.stars { color: #fbbf24; margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-card > p { color: var(--text2); font-style: italic; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { color: var(--text2); font-size: 0.8rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item h3 { font-size: 0.95rem; margin-bottom: 6px; }
.faq-item p { color: var(--text2); font-size: 0.88rem; }
.faq-item a { color: var(--accent2); }

/* FORMS */
.order-form { max-width: 680px; margin: 0 auto; }
.form-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 18px;
}
.form-section h2 { font-size: 1.1rem; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.85rem; color: var(--text2); }
input, select, textarea {
  width: 100%; padding: 12px 15px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
textarea { resize: vertical; min-height: 100px; }

/* PAYMENT */
.payment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 780px; margin: 0 auto; }
.payment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: all 0.2s;
}
.payment-card:hover { border-color: var(--accent); }
.payment-card h2 { font-size: 1rem; margin-bottom: 10px; }
.payment-card p { color: var(--text2); font-size: 0.85rem; }
.crypto-address { font-size: 0.72rem !important; background: var(--bg); padding: 10px; border-radius: 6px; margin-top: 6px; font-family: monospace; word-break: break-all; }
.warning-box { background: rgba(251,191,36,0.08); border: 1px solid rgba(251,191,36,0.25); border-radius: var(--radius-sm); padding: 18px 22px; margin-top: 36px; text-align: center; }
.warning-box p { color: #fbbf24; font-weight: 500; font-size: 0.9rem; }

/* PAGE HEADER */
.page-header { padding: 56px 0; text-align: center; border-bottom: 1px solid var(--border); }
.page-header h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--text2); font-size: 1.05rem; }

/* CTA */
.cta-section { text-align: center; }
.cta-section h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-section p { color: var(--text2); margin-bottom: 28px; }

/* FOOTER */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-col p, .footer-col li { color: var(--text2); font-size: 0.85rem; margin-bottom: 6px; }
.footer-col ul { list-style: none; }
.footer-col a { color: var(--text2); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; color: var(--text2); font-size: 0.8rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .stats-grid, .features-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.8rem; }
}
@media (max-width: 640px) {
  .stats-grid, .features-grid, .steps-grid, .gallery-grid, .testimonials-grid, .payment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 70px 0 50px; }
}

.scrolling-gallery { overflow-x: auto; white-space: nowrap; padding: 10px 0; }
.scrolling-gallery::-webkit-scrollbar { height: 6px; }
.scrolling-gallery::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.scrolling-track { display: inline-flex; gap: 10px; }
.scrolling-track img { height: 120px; width: auto; border-radius: 8px; border: 1px solid var(--border); cursor: pointer; transition: all 0.2s; }
.scrolling-track img:hover { border-color: var(--accent); transform: scale(1.05); }
