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

:root {
  --bg: #070710;
  --bg2: #0f0f1e;
  --card: #12122a;
  --card2: #1a1a35;
  --border: rgba(255,255,255,0.07);
  --primary: #7c3aed;
  --primary-light: #9d5cf6;
  --accent: #a855f7;
  --gold: #f59e0b;
  --green: #10b981;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 30px rgba(124,58,237,0.15);
}

html { scroll-behavior: smooth; }

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

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

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(7,7,16,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-container { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text { font-size: 20px; font-weight: 800; color: white; }
.accent { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: white; }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; gap: 0; background: var(--bg2); border-top: 1px solid var(--border); }
.mobile-menu.active { display: flex; }
.mobile-menu a { padding: 14px 24px; color: var(--text); text-decoration: none; font-size: 15px; border-bottom: 1px solid var(--border); }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; box-shadow: 0 4px 20px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.5); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: white; color: var(--primary); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,255,255,0.2); }
.btn-full { width: 100%; justify-content: center; margin-top: 16px; }
.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 12px; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.25) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 50%, rgba(168,85,247,0.1) 0%, transparent 60%);
}
.hero-content { position: relative; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.3);
  color: var(--accent); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: clamp(36px, 6vw, 68px); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.gradient-text { background: linear-gradient(135deg, var(--primary-light), var(--accent), #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 40px; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: white; }
.stat-label { font-size: 13px; color: var(--muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── TRUST ───────────────────────────────────────────────────────── */
.trust { padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-icon { font-size: 28px; flex-shrink: 0; }
.trust-item strong { display: block; font-size: 15px; color: white; margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* ── SECTION HEADER ──────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ── PLATFORMS ───────────────────────────────────────────────────── */
.platforms { padding: 80px 0; }
.platform-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 16px; }
.platform-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 12px; text-align: center;
  cursor: default; transition: all 0.2s;
}
.platform-card:hover { border-color: var(--primary); transform: translateY(-4px); background: var(--card2); }
.platform-icon { font-size: 28px; margin-bottom: 8px; }
.platform-card span { font-size: 11px; color: var(--muted); font-weight: 500; }

/* ── SERVICES ────────────────────────────────────────────────────── */
.services { padding: 80px 0; background: var(--bg2); }
.filter-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 22px; border-radius: 50px; border: 1.5px solid var(--border);
  background: transparent; color: var(--muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--primary); color: white; }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.service-grid { display: none; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-grid.active { display: grid; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all 0.2s;
}
.service-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-top { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.platform-tag {
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
}
.ig { background: rgba(225,48,108,0.15); color: #e1306c; }
.tt { background: rgba(0,0,0,0.4); color: #69c9d0; border: 1px solid rgba(105,201,208,0.2); }
.yt { background: rgba(255,0,0,0.12); color: #ff4444; }
.tw { background: rgba(29,161,242,0.12); color: #1da1f2; }
.fb { background: rgba(24,119,242,0.12); color: #1877f2; }
.service-badge { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--gold); background: rgba(245,158,11,0.1); padding: 3px 10px; border-radius: 50px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: white; }
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }
.service-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-specs span { font-size: 12px; color: var(--muted); background: rgba(255,255,255,0.05); padding: 4px 10px; border-radius: 50px; }
.price-table { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--border); }
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(124,58,237,0.08); }
.price { font-weight: 700; color: var(--accent); font-size: 14px; }

/* ── HOW TO ──────────────────────────────────────────────────────── */
.how-to { padding: 80px 0; }
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card {
  flex: 1; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  position: relative;
}
.step-num { font-size: 48px; font-weight: 900; color: rgba(124,58,237,0.15); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: white; }
.step-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.step-connector { font-size: 24px; color: var(--primary); padding: 0 8px; flex-shrink: 0; }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-section { padding: 80px 0; background: var(--bg2); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; background: none; border: none; color: white;
  font-size: 15px; font-weight: 600; cursor: pointer; text-align: left; gap: 12px;
}
.faq-q:hover { color: var(--accent); }
.faq-q span { font-size: 20px; flex-shrink: 0; color: var(--accent); }
.faq-a { display: none; padding: 0 20px 18px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.faq-item.open .faq-a { display: block; }
.faq-item.open { border-color: rgba(124,58,237,0.3); }

/* ── CTA BANNER ──────────────────────────────────────────────────── */
.cta-banner { padding: 80px 0; }
.cta-content {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px; padding: 60px 40px; text-align: center;
  box-shadow: 0 20px 60px rgba(124,58,237,0.3);
}
.cta-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; color: white; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 28px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 12px 0 20px; line-height: 1.6; }
.social-links { display: flex; gap: 8px; }
.social-btn { padding: 8px 16px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; color: var(--muted); font-size: 13px; text-decoration: none; font-weight: 500; transition: all 0.2s; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-links h4 { font-size: 14px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p, .footer-bottom a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: white; }

/* ── PAGE HERO (terms/contact) ───────────────────────────────────── */
.page-hero { padding: 140px 0 60px; text-align: center; }
.page-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--muted); font-size: 16px; }
.page-content { padding: 40px 0 80px; }
.content-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; margin-bottom: 24px; }
.content-card h2 { font-size: 20px; font-weight: 700; margin-bottom: 16px; color: white; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.content-card h3 { font-size: 16px; font-weight: 600; margin: 20px 0 10px; color: var(--accent); }
.content-card p, .content-card li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.content-card ul, .content-card ol { padding-left: 20px; }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: center; text-decoration: none; transition: all 0.2s; }
.contact-method:hover { border-color: var(--primary); transform: translateX(4px); }
.contact-method-icon { font-size: 28px; flex-shrink: 0; }
.contact-method strong { display: block; color: white; font-size: 15px; margin-bottom: 4px; }
.contact-method span { font-size: 13px; color: var(--muted); }
.form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.form-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: white; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: white; font-size: 14px; font-family: inherit;
  transition: border-color 0.2s; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 120px; }
.form-success { display: none; padding: 16px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: var(--radius-sm); color: var(--green); font-size: 14px; margin-top: 16px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .service-grid.active { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-content { padding: 40px 24px; }
  .cta-content h2 { font-size: 26px; }
}
@media (max-width: 480px) {
  .platform-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
}
