/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

:root {
  --primary: #00a2e8;
  --primary-hover: #0088cc;
  --bg-gradient-start: #0d1117;
  --bg-gradient-end: #161b27;
  --card-bg: #1c2333;
  --card-bg-hover: #222a3d;
  --text: #e0e6f0;
  --text-light: #8b95a8;
  --text-muted: #5a6478;
  --border: rgba(0, 162, 232, 0.12);
  --border-light: rgba(0, 162, 232, 0.25);
  --green: #00c896;
  --green-bg: rgba(0, 200, 150, 0.1);
  --red: #ff5252;
  --red-bg: rgba(255, 82, 82, 0.1);
  --orange: #ff9800;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: #33bbff; }
img { max-width: 100%; height: auto; }

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

/* ─── HEADER ─── */
header {
  background: rgba(13, 17, 23, 0.98);
  padding: 0.8rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--primary);
  transition: all 0.3s ease;
  gap: 12px;
  flex-wrap: nowrap;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 6px 14px;
  background: rgba(0, 162, 232, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(0, 162, 232, 0.15);
}
.logo img { height: 30px; width: 30px; border-radius: 6px; }
nav {
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-shrink: 1;
}
nav::-webkit-scrollbar { display: none; }
nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}
nav a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.3s;
  padding: 8px 14px;
  border-radius: 6px;
}
nav a:hover, nav a.active { color: var(--primary); background: rgba(0,162,232,0.08); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

/* ─── HEADER ICON BUTTONS ─── */
.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--text-light);
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.header-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 162, 232, 0.08);
}
.header-icon.header-social {
  background: #229ED9;
  border-color: #229ED9;
  color: #fff;
}
.header-icon.header-social:hover {
  background: #1a8bc4;
  border-color: #1a8bc4;
  color: #fff;
}
.header-icon.header-social-wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}
.header-icon.header-social-wa:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 162, 232, 0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: rgba(0, 162, 232, 0.1);
  color: var(--primary);
}
.btn-sm { padding: 7px 14px; font-size: 0.8rem; }
.btn-danger { background: var(--red-bg); color: var(--red); border: 1px solid rgba(255,82,82,0.2); }
.btn-danger:hover { background: rgba(255,82,82,0.15); }

/* ─── HERO ─── */
.hero {
  padding: 8rem 5% 4rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(0, 162, 232, 0.08) 0%, transparent 65%);
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(0, 162, 232, 0.08);
  border: 1px solid var(--border);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text);
}
.hero h1 span { color: var(--primary); }
.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── MOCKUP IMAGE ─── */
.mockup-image {
  margin: 3rem auto 0;
  display: block;
  max-width: 900px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 162, 232, 0.15);
  border: 1px solid var(--primary);
}

/* ─── SECTION ─── */
section { padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.section-title p { color: var(--text-light); max-width: 480px; margin: 0 auto; font-size: 0.95rem; }

/* ─── FEATURES ─── */
.features { background: rgba(22, 27, 39, 0.5); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.feat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--border-light);
}
.feat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--primary);
}
.feat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feat p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ─── STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 162, 232, 0.1);
  border: 1px solid var(--border-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 0.82rem; color: var(--text-light); }

/* ─── BRANDS ─── */
.brands-section { background: var(--bg-gradient-end); }
details {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
summary {
  padding: 1.5rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--text);
  list-style: none;
  position: relative;
}
summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  transition: transform 0.3s;
}
details[open] summary::after { transform: rotate(45deg); }
.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
}
.brand-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  transition: color 0.2s;
}
.brand-logo:hover { color: var(--primary); }

/* ─── SECURITY ─── */
.security-section {
  background: #1a1f2e;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.security-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s;
}
.security-card:hover { transform: translateY(-3px); }
.security-card .icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--primary); }
.security-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.security-card p { font-size: 0.85rem; color: var(--text-light); }

/* ─── PRICING ─── */
.pricing-section { text-align: center; }
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card {
  background: linear-gradient(160deg, #1c2333 60%, #1a2035);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 22px 28px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 162, 232, 0.15);
  border-color: var(--border-light);
}
.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 36px rgba(0, 162, 232, 0.2);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00a2e8, #0077cc);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-duration {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pricing-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.pricing-price {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup {
  font-size: 24px;
  font-weight: 700;
  vertical-align: super;
  color: var(--primary);
}
.pricing-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 20px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.pricing-features li {
  font-size: 13.5px;
  color: #c0cad8;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-cta {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
  text-align: center;
}
.pricing-cta.outline {
  border: 2px solid rgba(0, 162, 232, 0.5);
  color: var(--primary);
  background: transparent;
}
.pricing-cta.outline:hover {
  background: rgba(0, 162, 232, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}
.pricing-cta.filled {
  background: linear-gradient(90deg, #00a2e8, #0077cc);
  color: #fff;
}
.pricing-cta.filled:hover {
  background: linear-gradient(90deg, #00b8ff, #0088ee);
  box-shadow: 0 4px 16px rgba(0, 162, 232, 0.35);
  color: #fff;
}

/* ─── COMMUNITY ─── */
.community-section {
  background: linear-gradient(135deg, rgba(13,17,23,0.98), rgba(22,27,39,0.98));
  border-top: 1px solid var(--border);
}
.community-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.community-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 22px;
  text-decoration: none;
  transition: 0.3s;
  min-width: 220px;
  color: inherit;
}
.community-card:hover {
  border-color: var(--primary);
  background: rgba(0, 162, 232, 0.06);
}
.community-card .c-icon { font-size: 28px; flex-shrink: 0; }
.community-card .c-title { font-weight: 700; font-size: 14px; color: var(--text); }
.community-card .c-sub { font-size: 12px; color: var(--text-light); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,162,232,0.08), rgba(0,162,232,0.03));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-banner h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { color: var(--text-light); margin-bottom: 24px; }

/* ─── DOWNLOAD PAGE ─── */
.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.dl-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.dl-card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.dl-icon { font-size: 2rem; margin-bottom: 14px; color: var(--primary); }
.dl-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.dl-card .meta { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 18px; }
.dl-card .btn { width: 100%; justify-content: center; }

/* ─── DOCS ─── */
.docs-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.docs-side { position: sticky; top: 84px; align-self: start; }
.docs-side ul { list-style: none; }
.docs-side a {
  display: block; padding: 7px 14px; font-size: 0.85rem;
  color: var(--text-light); border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all .15s;
}
.docs-side a:hover { color: var(--text); background: rgba(255,255,255,0.02); }
.docs-side a.active { color: var(--primary); border-left-color: var(--primary); background: rgba(0,162,232,0.06); }
.docs-body h2 { font-size: 1.3rem; font-weight: 700; margin: 40px 0 14px; padding-top: 16px; }
.docs-body h2:first-child { margin-top: 0; }
.docs-body h3 { font-size: 1rem; font-weight: 600; margin: 24px 0 10px; color: var(--primary); }
.docs-body p { color: var(--text-light); margin-bottom: 14px; font-size: 0.9rem; line-height: 1.7; }
.docs-body ul, .docs-body ol { color: var(--text-light); padding-left: 22px; margin-bottom: 14px; }
.docs-body li { margin-bottom: 6px; font-size: 0.9rem; }
.docs-body code {
  background: rgba(255,255,255,0.05); padding: 2px 7px;
  border-radius: 4px; font-family: var(--mono); font-size: 0.82rem;
  color: var(--primary);
}
.docs-body pre {
  background: rgba(13,17,23,0.6); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 18px;
  overflow-x: auto; margin-bottom: 14px;
}
.docs-body pre code { background: none; padding: 0; color: var(--text); }
.docs-body .callout {
  background: rgba(0,162,232,0.06); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 14px;
  font-size: 0.88rem;
}
.docs-body .callout b { color: var(--primary); }

/* ─── FORMS ─── */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-light); margin-bottom: 6px; }
.input {
  width: 100%; padding: 10px 14px;
  background: rgba(13,17,23,0.6); border: 1px solid var(--border);
  border-radius: 7px; color: var(--text);
  font-family: var(--font); font-size: 0.88rem;
  transition: border-color .15s;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,162,232,0.1); }
.input::placeholder { color: var(--text-muted); }
textarea.input { min-height: 110px; resize: vertical; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238b95a8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

/* ─── ACTIVATE ─── */
.act-card {
  max-width: 440px; margin: 100px auto 0;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 36px;
}
.act-card .icon { font-size: 2.4rem; margin-bottom: 16px; text-align: center; }
.act-card h2 { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 6px; }
.act-card .sub { text-align: center; color: var(--text-light); font-size: 0.88rem; margin-bottom: 28px; }
.act-result {
  margin-top: 20px; padding: 12px 16px; border-radius: 7px;
  font-size: 0.85rem; display: none;
}
.act-result.ok { display: block; background: var(--green-bg); border: 1px solid rgba(0,200,150,0.2); color: var(--green); }
.act-result.fail { display: block; background: var(--red-bg); border: 1px solid rgba(255,82,82,0.2); color: var(--red); }

/* ─── SUPPORT ─── */
.supp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.supp-opt {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px;
  transition: border-color .2s, transform .15s;
}
.supp-opt:hover { border-color: var(--border-light); transform: translateY(-2px); }
.supp-opt .ico { font-size: 1.6rem; margin-bottom: 10px; color: var(--primary); }
.supp-opt h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.supp-opt p { font-size: 0.82rem; color: var(--text-light); }

.faq-item {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px 24px; margin-bottom: 10px;
}
.faq-item h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.faq-item p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ─── STATUS PAGE ─── */
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.status-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.status-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(0,200,150,0.5); }
.status-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(255,82,82,0.5); }
.status-uptime {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--mono);
}
.status-uptime-bar {
  display: flex;
  gap: 2px;
  margin-top: 12px;
}
.status-uptime-bar span {
  flex: 1;
  height: 24px;
  border-radius: 3px;
}
.status-uptime-bar span.up { background: var(--green); opacity: 0.7; }
.status-uptime-bar span.down { background: var(--red); opacity: 0.7; }
.response-time {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  max-width: 900px;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--card-bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table th:first-child,
.compare-table td:first-child { text-align: left; }
.compare-table td { color: var(--text-light); }
.compare-table tr:hover td { background: rgba(255,255,255,0.015); }
.compare-table .check { color: var(--green); font-size: 1.1rem; }
.compare-table .cross { color: var(--red); font-size: 1.1rem; }
.compare-table .partial { color: var(--orange); font-size: 1.1rem; }
.compare-table .highlight-col {
  background: rgba(0,162,232,0.04);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.compare-table th.highlight-col {
  background: rgba(0,162,232,0.08);
  color: var(--primary);
}

/* ─── LIVE STATS ─── */
.live-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 60px;
}
.live-stat {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.live-stat .stat-icon { font-size: 1.4rem; margin-bottom: 8px; color: var(--primary); }
.live-stat .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--mono);
}
.live-stat .stat-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.live-stat .stat-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,150,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,200,150,0); }
}

/* ─── ADMIN ─── */
.admin-login { max-width: 380px; margin: 120px auto 0; }
.admin-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 60px); margin-top: 60px; }
.admin-nav {
  background: rgba(13,17,23,0.6); border-right: 1px solid var(--border);
  padding: 20px 12px;
}
.admin-nav h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 0 12px; margin-bottom: 10px; }
.admin-nav ul { list-style: none; }
.admin-nav a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; font-size: 0.85rem; color: var(--text-light);
  border-radius: 6px; transition: all .15s;
}
.admin-nav a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.admin-nav a.active { color: var(--primary); background: rgba(0,162,232,0.06); }
.admin-body { padding: 28px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.admin-head h1 { font-size: 1.3rem; font-weight: 700; }

/* ─── STAT CARDS ─── */
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 28px; }
.scard {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 18px;
}
.scard .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.scard .val { font-size: 1.5rem; font-weight: 700; margin-top: 2px; }

/* ─── TABLE ─── */
.tbl-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 14px; text-align: left; font-size: 0.85rem; border-bottom: 1px solid var(--border); }
th { color: var(--text-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
td { color: var(--text-light); }
tr:hover td { background: rgba(255,255,255,0.015); }
.pill {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 600;
}
.pill-ok { background: var(--green-bg); color: var(--green); }
.pill-exp { background: var(--red-bg); color: var(--red); }
.pill-admin { background: rgba(0,162,232,0.1); color: var(--primary); }

/* ─── FOOTER ─── */
footer {
  background: #0a0e15;
  color: var(--text-light);
  padding: 3rem 5%;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand { font-weight: 700; font-size: 1rem; color: var(--primary); }
.footer-nav { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: var(--text-muted); font-size: 0.82rem; }
.footer-nav a:hover { color: var(--primary); }
.footer-copy { width: 100%; text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; }

/* ─── TOAST ─── */
.toast-container {
  position: fixed; top: 76px; right: 20px; z-index: 200;
  display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 16px; font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 8px;
  animation: tslide .25s ease;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid var(--red); }
.toast.info { border-left: 3px solid var(--primary); }
@keyframes tslide { from { transform: translateX(100%); opacity: 0; } }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── PARTICLES ─── */
#particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
}
@keyframes float-up {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: 0.5; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-400px) scale(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .dl-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .live-stats { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }
  .pricing-grid { flex-wrap: wrap; gap: 16px; }
  .pricing-card { max-width: 100%; flex: 1 1 200px; }
}
/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 23, 0.98);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 80px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  padding: 16px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a:active {
  color: var(--primary);
  background: rgba(0,162,232,0.08);
}
.mobile-menu .mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-menu .mobile-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 40px;
  width: 100%;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu .mobile-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 0;
  border-bottom: none;
}
.mobile-menu .mobile-btn {
  display: inline-flex;
  margin-top: 16px;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border-bottom: none;
  width: auto;
}

@media (max-width: 768px) {
  header { padding: 0.5rem 0.6rem; gap: 6px; }
  .logo { font-size: 0.85rem; padding: 4px 8px; gap: 4px; }
  .logo img { height: 20px; width: 20px; }
  nav { display: none; }
  .hamburger { display: block; }
  .header-actions { display: flex; gap: 4px; padding-left: 6px; border-left: 1px solid rgba(255,255,255,0.1); margin-left: auto; }
  .header-actions .btn-primary { display: none; }
  .header-icon { width: 28px; height: 28px; font-size: 12px; }
  .btn-sm { padding: 5px 10px; font-size: 0.7rem; }
  .hero { padding: 5rem 5% 3rem; }
  .hero h1 { font-size: 1.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .docs-side { position: static; }
  .supp-grid { grid-template-columns: 1fr; }
  .admin-wrap { grid-template-columns: 1fr; }
  .admin-nav { display: none; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .compare-table { font-size: 0.72rem; }
  .compare-table th, .compare-table td { padding: 8px 6px; }
  .footer-content { flex-direction: column; text-align: center; }
}

/* ─── UTILS ─── */
.hidden { display: none !important; }
.tc { text-align: center; }

/* ─── AUTH TABS ─── */
.auth-tab {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.auth-tab:hover { color: var(--text); background: rgba(255,255,255,0.02); }
.auth-tab.active {
  color: var(--primary);
  background: rgba(0, 162, 232, 0.08);
  border-bottom: 2px solid var(--primary);
}

/* ─── AUTH CARD ─── */
.auth-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
}
