:root {
  --bg: #050508;
  --surface: #0e0e14;
  --surface-2: #16161f;
  --surface-3: #1e1e2a;
  --border: #252535;
  --text: #eaeaf2;
  --text-2: #c0c0d0;
  --text-muted: #7878a0;
  --accent: #ff5722;
  --accent-soft: #ff572230;
  --accent-2: #ff9100;
  --green: #22c55e;
  --green-soft: #22c55e20;
  --blue: #3b82f6;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1060px; margin: 0 auto; padding: 0 20px; }

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  padding: 14px 0;
  background: #050508e0;
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
nav .container { display:flex; justify-content:space-between; align-items:center; }
.logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px; font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.logo .lo-accent { color: var(--accent); }
.nav-links { display:flex; gap:24px; align-items:center; }
.nav-links a {
  color: var(--text-muted); text-decoration:none; font-size:14px; font-weight:500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.2s;
}
.btn-nav:hover { opacity:0.9; transform: translateY(-1px); }

/* ── LANG SWITCHER ── */
.lang-switcher {
  display:flex;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
}
.lang-switcher button {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 5px 10px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-switcher button:hover { color: var(--text); }
.lang-switcher button.active {
  background: var(--accent);
  color: #fff;
}

/* ── HERO ── */
.hero {
  padding: 150px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute; top:60px; left:50%; transform:translateX(-50%);
  width:700px; height:700px;
  background: radial-gradient(ellipse, var(--accent-soft) 0%, transparent 65%);
  pointer-events:none;
  filter: blur(40px);
}
.tag {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius:100px;
  padding: 6px 16px 6px 10px;
  font-size:13px; color:var(--text-muted);
  margin-bottom:28px;
  position:relative;
}
.tag-dot {
  width:7px; height:7px;
  background:var(--green);
  border-radius:50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight:700; line-height:1.12;
  letter-spacing: -1.5px;
  margin-bottom:20px;
  position:relative;
}
.grad {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero p.sub {
  font-size:17px; color:var(--text-2);
  max-width:640px; margin:0 auto 36px;
  line-height:1.75;
}
.hero-cta {
  display:inline-flex; align-items:center; gap:10px;
  background: linear-gradient(135deg, var(--accent), #e04a1a);
  color:#fff;
  padding:15px 30px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700; font-size:15px;
  transition: all 0.25s;
  box-shadow: 0 6px 30px var(--accent-soft);
}
.hero-cta:hover { transform:translateY(-2px); box-shadow: 0 10px 40px var(--accent-soft); }
.hero-note { margin-top:14px; font-size:13px; color:var(--text-muted); }

/* ── LANG PILLS ── */
.langs {
  display:flex; gap:10px; justify-content:center; flex-wrap:wrap;
  margin:32px 0 0;
}
.lang {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:100px;
  padding:6px 18px;
  font-size:13px; color:var(--text-muted);
}
.lang b { color:var(--text); }

/* ── TRUST BAR ── */
.trust {
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:1px; background:var(--border);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  margin:56px 0 0;
}
.trust-item {
  background:var(--surface);
  padding:24px 16px;
  text-align:center;
}
.trust-val {
  font-family:'JetBrains Mono',monospace;
  font-size:28px; font-weight:700;
  color:var(--accent);
  line-height:1;
  margin-bottom:4px;
}
.trust-lbl { font-size:12px; color:var(--text-muted); }

/* ── COMPARISON ── */
.compare { padding:80px 0 60px; }
.stitle {
  font-family:'JetBrains Mono',monospace;
  font-size:11px; text-transform:uppercase;
  letter-spacing:3px; color:var(--accent);
  margin-bottom:12px;
}
.sheading {
  font-size:clamp(26px,3.8vw,38px);
  font-weight:700; letter-spacing:-0.8px;
  margin-bottom:40px; line-height:1.2;
}
.compare-table {
  width:100%;
  border-collapse:collapse;
  font-size:14px;
}
.compare-table th, .compare-table td {
  padding:14px 16px;
  text-align:left;
  border-bottom:1px solid var(--border);
}
.compare-table th {
  font-size:12px; text-transform:uppercase;
  letter-spacing:1.5px; color:var(--text-muted);
  font-weight:600;
  background:var(--surface);
}
.compare-table td { color:var(--text-2); }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table .hl {
  background:var(--surface-2);
  color:var(--text);
  font-weight:600;
  border-left:2px solid var(--accent);
}
.compare-table .hl-h { color:var(--accent); }
.x { color:#ef4444; }
.o { color:var(--green); }

/* ── PLATFORMS ── */
.platforms { padding:60px 0 60px; }
.platform-pills {
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
  margin-bottom:24px;
}
.channel-cat {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 14px;
  margin-top: 8px;
  text-align: center;
}
.platform-pill {
  display:flex; align-items:center; gap:8px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 22px;
  font-size:14px; font-weight:600;
  color:var(--text);
}
.platform-pill .emoji { font-size:20px; }
.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.pill-icon svg { display: block; }
.platforms .note {
  text-align:center;
  font-size:13px;
  color:var(--text-muted);
}

/* ── PRICING ── */
.pricing { padding:60px 0 80px; }
.pricing-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap:24px;
}
.pcard {
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:36px 32px;
  position:relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display:flex; flex-direction:column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.pcard:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.1); }
.pcard.pop {
  border-color:var(--accent);
  box-shadow: 0 0 40px rgba(255, 87, 34, 0.1), inset 0 0 60px rgba(255, 87, 34, 0.05);
}
.pcard.pop:hover {
  border-color: rgba(255, 87, 34, 0.8);
  box-shadow: 0 8px 50px rgba(255, 87, 34, 0.15), inset 0 0 80px rgba(255, 87, 34, 0.08);
}
.pop-badge {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  font-size:12px; font-weight:700;
  padding:5px 18px;
  border-radius:100px;
  letter-spacing:0.5px;
  white-space:nowrap;
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}
.ptier {
  font-family:'JetBrains Mono',monospace;
  font-size:12px; text-transform:uppercase;
  letter-spacing:2px; color:var(--text-muted);
  margin-bottom:8px;
}
.pcard.pop .ptier { color: var(--accent); }
.pname { font-size:22px; font-weight:700; margin-bottom:16px; letter-spacing:-0.3px; color: #fff; }
.pprice { display:flex; align-items:flex-end; gap:4px; margin-bottom:4px; }
.pcurr { font-size:18px; color:var(--text-muted); font-weight:500; margin-bottom: 6px; }
.pnum {
  font-family:'JetBrains Mono',monospace;
  font-size:52px; font-weight:700; line-height:1;
  color: #fff;
  letter-spacing: -2px;
}
.poriginal {
  font-family:'JetBrains Mono',monospace;
  font-size:18px;
  color:var(--text-muted);
  text-decoration:line-through;
  opacity:0.5;
  margin-left:8px;
  margin-bottom: 8px;
  font-weight:400;
}
.pdiscount-badge {
  display:inline-block;
  align-self: flex-start;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.pusd { font-size:13px; color:var(--text-muted); margin-bottom:20px; display:block; font-weight: 500;}
.pdesc { color:var(--text-2); font-size:14px; margin-bottom:28px; line-height:1.65; min-height: 46px; }
.pfeats { list-style:none; margin-bottom:32px; flex:1; display:flex; flex-direction:column; gap:12px; }
.pfeats li {
  font-size:14px;
  display:flex; align-items:flex-start; gap:10px;
  color:var(--text-2);
  line-height: 1.5;
}
.ck { 
  color:var(--green); 
  flex-shrink:0; 
  font-weight:700; 
  font-size:15px;
  margin-top:2px;
}
.pbtn {
  display:block; text-align:center;
  padding:16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700; font-size:15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border:none; cursor:pointer;
}
.pbtn.primary {
  background:linear-gradient(135deg,var(--accent),#e04a1a);
  color:#fff;
  box-shadow:0 6px 20px rgba(255, 87, 34, 0.25);
}
.pbtn.primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(255, 87, 34, 0.35); }
.pbtn.ghost {
  background: rgba(255,255,255,0.03);
  color:var(--text);
  border:1px solid rgba(255,255,255,0.08);
}
.pbtn.ghost:hover { background: rgba(255,255,255,0.06); transform:translateY(-2px); }

/* ── ADDONS ── */
.addons {
  margin-top:40px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:14px;
  padding:28px;
}
.addons h3 { font-size:16px; margin-bottom:16px; font-weight:600; }
.addon-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap:10px;
}
.addon-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 14px;
  background:var(--surface-2);
  border-radius:8px;
  font-size:13px;
}
.addon-item span:last-child {
  font-family:'JetBrains Mono',monospace;
  color:var(--accent);
  font-weight:600;
  font-size:13px;
}

/* ── PROCESS ── */
.process { padding:80px 0; }
.steps { display:grid; gap:3px; }
.step {
  display:grid;
  grid-template-columns:56px 1fr;
  gap:20px;
  padding:28px 24px;
  background:var(--surface);
  border-radius:10px;
  align-items:start;
}
.snum {
  font-family:'JetBrains Mono',monospace;
  font-size:28px; font-weight:700;
  color:var(--accent); opacity:.5;
}
.step h3 { font-size:16px; font-weight:600; margin-bottom:4px; }
.step p { font-size:13px; color:var(--text-muted); line-height:1.6; }

/* ── PAYMENT ── */
.payment { padding:40px 0 80px; }
.pay-methods {
  display:flex; gap:12px; flex-wrap:wrap;
  justify-content:center;
}
.pay-pill {
  display:flex; align-items:center; gap:8px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 20px;
  font-size:14px;
  color:var(--text-2);
}
.pay-pill .emoji { font-size:20px; }

/* ── FAQ ── */
.faq { padding:60px 0; }
.faq-item { border-bottom:1px solid var(--border); padding:20px 0; }
.faq-q {
  font-size:15px; font-weight:600;
  cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  user-select:none;
}
.faq-q::after {
  content:'+';
  font-family:'JetBrains Mono',monospace;
  font-size:18px; color:var(--accent);
  flex-shrink:0;
  transition: transform 0.2s;
}
.faq-a {
  max-height:0; overflow:hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color:var(--text-muted); font-size:14px; line-height:1.7;
}
.faq-item.open .faq-a { max-height:300px; padding-top:12px; }
.faq-item.open .faq-q::after { content:'−'; }

/* ── CTA FINAL ── */
.final {
  padding:80px 0 100px;
  text-align:center;
}
.final h2 {
  font-size:clamp(26px,4vw,38px);
  font-weight:700; letter-spacing:-0.8px;
  margin-bottom:14px;
}
.final p { color:var(--text-muted); margin-bottom:28px; font-size:15px; }

/* ── FOOTER ── */
footer {
  border-top:1px solid var(--border);
  padding:28px 0;
  text-align:center;
  color:var(--text-muted);
  font-size:12px;
}

/* ── TRANSPARENCY & SECURITY SECTIONS ── */
.transparency-section {
  padding: 80px 0;
  background: var(--surface-2);
}
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}

/* ── ABOUT DEVELOPER ── */
.about-section { padding: 80px 0; }
.about-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}
.about-text { flex: 1; min-width: 280px; }
.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--surface-2), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  border: 4px solid var(--surface-2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

/* ── PRIVACY GRID ── */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── SHOWCASE VIDEO ── */
.video-section {
  padding: 80px 0;
}
.video-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  width: 100%;
}
.video-wrapper blockquote {
  margin: 0 !important;
  width: 100%;
}
.video-wrapper iframe {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── TABLE ── */
/* ── MOBILE ── */
@media(max-width:768px) {
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(28px, 7vw, 42px); }
  .hero p.sub { font-size: 15px; max-width: 100%; }
  .trust { grid-template-columns: repeat(2,1fr); }
  .trust-val { font-size: 22px; }
  .nav-links a:not(.btn-nav) { display:none; }
  .btn-nav { display:none; }
  .lang-switcher button { padding: 5px 8px; font-size: 10px; }
  .compare-table { font-size:13px; }
  .compare-table th, .compare-table td { padding:12px 14px; }
  .compare-table th:nth-child(2),
  .compare-table td:nth-child(2),
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3),
  .compare-table th:nth-child(4),
  .compare-table td:nth-child(4) { display: none; }
  .step { grid-template-columns:40px 1fr; gap:14px; padding:20px 16px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sheading { font-size: clamp(22px, 5vw, 32px); margin-bottom: 24px; }
  .privacy-grid { grid-template-columns: 1fr; }
  .about-card { padding: 28px 20px; gap: 24px; }
  .about-avatar { width: 120px; height: 120px; font-size: 48px; margin: 0 auto; }
  .transparency-section { padding: 48px 0; }
  .about-section { padding: 48px 0; }
}
@media(max-width:480px) {
  .hero { padding: 100px 0 48px; }
  .hero h1 { font-size: 28px; letter-spacing: -1px; }
  .hero p.sub { font-size: 14px; line-height: 1.65; }
  .hero-cta { padding: 13px 24px; font-size: 14px; }
  .trust { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns:1fr; }
}

/* ── USE CASES ── */
.usecases-section {
  padding: 80px 0;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.usecase-card {
  background: rgba(14, 14, 20, 0.7);
  backdrop-filter: blur(12px) saturate(1.8);
  -webkit-backdrop-filter: blur(12px) saturate(1.8);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0; /* For animation */
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.usecase-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  z-index: 2;
}
.usecase-card:hover {
  border-color: rgba(255, 87, 34, 0.5);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 87, 34, 0.1);
  background: rgba(22, 22, 31, 0.8);
}
.usecase-img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(0.2) brightness(0.9);
}
.usecase-card:hover .usecase-img {
  transform: scale(1.1);
  filter: grayscale(0) brightness(1.05);
}
.usecase-title {
  font-size: 17px;
  font-weight: 700;
  margin: 22px 24px 12px;
  color: #fff;
  letter-spacing: -0.2px;
}
.usecase-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 24px 28px;
  opacity: 0.85;
}

/* Staggered animation delays */
.usecase-card:nth-child(1) { animation-delay: 0.1s; }
.usecase-card:nth-child(2) { animation-delay: 0.2s; }
.usecase-card:nth-child(3) { animation-delay: 0.3s; }
.usecase-card:nth-child(4) { animation-delay: 0.4s; }
.usecase-card:nth-child(5) { animation-delay: 0.5s; }
.usecase-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(max-width:600px) {
  .usecase-grid { grid-template-columns: 1fr; }
}
@media(min-width:601px) and (max-width:900px) {
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 60px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
}
.wa-float svg {
  flex-shrink: 0;
}
.wa-float-label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: -0.2px;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55); }
}
@media(max-width:480px) {
  .wa-float-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}
