@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

:root {
  --bg: #0C0C14;
  --bg-2: #13131F;
  --bg-3: #1C1C2C;
  --accent: #00FF88;
  --accent-dim: rgba(0,255,136,0.12);
  --wa-green: #25D366;
  --wa-dark: #1DA851;
  --text: #FFFFFF;
  --text-muted: #8888AA;
  --text-secondary: #CCCCDD;
  --border: rgba(255,255,255,0.1);
  --border-accent: rgba(0,255,136,0.45);
  --glow: 0 0 60px rgba(0,255,136,0.22);
  --font-display: 'Bebas Neue', cursive;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius: 16px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; line-height: 1.6; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s var(--ease);
}
nav.scrolled {
  background: rgba(12,12,20,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 48px;
}
.nav-logo { font-family: var(--font-display); font-size: 28px; letter-spacing: 3px; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--accent); }

.nav-center { display: flex; align-items: center; gap: 4px; position: absolute; left: 50%; transform: translateX(-50%); }

.nav-link { font-size: 14px; font-weight: 600; color: var(--text-muted); text-decoration: none; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; white-space: nowrap; }
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.nav-dropdown { position: relative; }
.dropdown-trigger { background: none; border: none; cursor: pointer; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-muted); padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.dropdown-trigger:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 8px 8px; min-width: 240px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: all 0.25s var(--ease); z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 8px; text-decoration: none; transition: all 0.2s; }
.dropdown-item:hover { background: rgba(255,255,255,0.06); }
.d-icon { font-size: 20px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: var(--accent-dim); border-radius: 8px; flex-shrink: 0; }
.d-title { font-size: 13px; font-weight: 700; color: var(--text); }
.d-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-nav { background: var(--accent); color: #000; padding: 10px 20px; border-radius: 6px; font-weight: 800; font-size: 13px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-nav:hover { background: #fff; transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary { background: var(--accent); color: #000; padding: 15px 28px; border-radius: 7px; font-weight: 800; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.25s var(--ease); border: none; cursor: pointer; }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,255,136,0.25); }

.btn-outline { background: transparent; color: var(--text); padding: 15px 28px; border-radius: 7px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border); transition: all 0.25s var(--ease); }
.btn-outline:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-wa { background: var(--wa-green); color: #fff; padding: 15px 28px; border-radius: 7px; font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all 0.25s var(--ease); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.3); }

.btn-wa-full { background: var(--wa-green); color: #fff; padding: 18px 32px; border-radius: 8px; font-weight: 700; font-size: 16px; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; transition: all 0.25s var(--ease); }
.btn-wa-full:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(37,211,102,0.3); }

.wa-svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* ── LAYOUT ── */
section { padding: 110px 48px; }
.container { max-width: 1160px; margin: 0 auto; }
.sec-label { font-size: 11px; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.sec-title { font-family: var(--font-display); font-size: clamp(52px,6vw,86px); line-height: 0.93; letter-spacing: 1.5px; margin-bottom: 20px; }
.sec-sub { font-size: 18px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

.badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(0,255,136,0.08); border: 1px solid var(--border-accent); border-radius: 100px; padding: 7px 18px; font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 32px; text-decoration: none; }
.badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.feat-list li { font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 9px; }
.feat-list li::before { content: '→'; color: var(--accent); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* ── FOOTER ── */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 48px 36px; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.footer-brand .logo { font-family: var(--font-display); font-size: 26px; letter-spacing: 3px; color: var(--text); text-decoration: none; display: inline-block; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 260px; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-wa { font-size: 13px; color: var(--wa-green); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.footer-wa:hover { color: #fff; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s} .d5{transition-delay:.5s}

/* ── STAT CARDS ── */
.stat-card { background: rgba(255,255,255,0.025); border: 1px solid var(--border); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: var(--radius); padding: 38px 28px; text-align: center; position: relative; overflow: hidden; transition: all 0.3s var(--ease); }
.stat-card::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60%; height:1px; background:linear-gradient(90deg,transparent,var(--border-accent),transparent); }
.stat-card::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:0%; height:2px; background:var(--accent); transition:width 0.4s var(--ease); }
.stat-card:hover::after { width:60%; }
.stat-card:hover { border-color: var(--border-accent); background: rgba(0,255,136,0.03); transform: translateY(-4px); }
.stat-num { font-family: var(--font-display); font-size: 68px; line-height: 1; color: var(--accent); margin-bottom: 10px; }
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ── CARD DEMOS ── */
.card-demo { background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08); border-top: 1px solid rgba(0,255,136,0.25); border-radius: 14px; height: 270px; position: relative; overflow: hidden; }
.card-demo::after { content:''; position:absolute; top:-40%; left:0; right:0; height:40%; background:linear-gradient(to bottom,transparent,rgba(0,255,136,0.04),transparent); animation:scanLine 4s linear infinite; pointer-events:none; }
@keyframes scanLine { from{top:-40%} to{top:100%} }

.demo-chat { padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; height: 100%; }
.demo-chat-hdr { display:flex; align-items:center; gap:8px; padding-bottom:8px; border-bottom:1px solid rgba(255,255,255,0.06); margin-bottom:2px; }
.d-ava { width:26px; height:26px; background:var(--wa-green); border-radius:50%; font-size:11px; font-weight:800; color:#000; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.d-grpname { font-size:11px; font-weight:700; }
.d-online { font-size:9px; color:var(--wa-green); margin-left:auto; font-weight:700; }

.d-bubble { padding:7px 11px; border-radius:10px; font-size:10.5px; line-height:1.5; max-width:88%; opacity:0; animation-fill-mode:forwards; animation-timing-function:var(--ease); animation-name:popIn; animation-duration:0.35s; }
@keyframes popIn { from{opacity:0;transform:translateY(6px) scale(0.96)} to{opacity:1;transform:translateY(0) scale(1)} }
.d-bubble.in { background:rgba(255,255,255,0.09); color:#d0d0d0; align-self:flex-start; border-radius:3px 10px 10px 10px; }
.d-bubble.out { background:rgba(0,255,136,0.16); color:#00FF88; align-self:flex-end; border-radius:10px 3px 10px 10px; text-align:right; }
.d-bubble.b1{animation-delay:.5s} .d-bubble.b2{animation-delay:2.1s} .d-bubble.b3{animation-delay:3s}

.d-typing { display:flex; gap:3px; align-items:center; padding:7px 11px; background:rgba(0,255,136,0.1); border-radius:10px 3px 10px 10px; align-self:flex-end; opacity:0; width:fit-content; animation:typingShow 1.3s ease forwards; animation-delay:1.2s; }
@keyframes typingShow { 0%{opacity:0} 10%{opacity:1} 75%{opacity:1} 100%{opacity:0} }
.d-typing span { width:5px; height:5px; background:var(--accent); border-radius:50%; animation:dotBounce 0.7s ease infinite; }
.d-typing span:nth-child(2){animation-delay:.13s} .d-typing span:nth-child(3){animation-delay:.26s}
@keyframes dotBounce { 0%,100%{transform:translateY(0);opacity:.4} 50%{transform:translateY(-3px);opacity:1} }

.demo-flow { padding:16px; display:flex; flex-direction:column; align-items:center; justify-content:space-evenly; height:100%; gap:4px; }
.d-flow-msg { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.08); border-radius:8px; padding:8px 12px; font-size:10.5px; color:#bbb; text-align:center; width:100%; }
.d-flow-arr { font-size:14px; color:var(--accent); animation:arrDown 1.2s ease infinite; }
@keyframes arrDown { 0%,100%{transform:translateY(0);opacity:.5} 50%{transform:translateY(3px);opacity:1} }
.d-flow-brain { width:50px; height:50px; background:rgba(0,255,136,0.12); border:2px solid rgba(0,255,136,0.5); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:22px; animation:brainPulse 2s ease infinite; flex-shrink:0; }
@keyframes brainPulse { 0%{box-shadow:0 0 0 0 rgba(0,255,136,.5)} 70%{box-shadow:0 0 0 16px rgba(0,255,136,0)} 100%{box-shadow:0 0 0 0 rgba(0,255,136,0)} }
.d-flow-chips { display:flex; gap:6px; flex-wrap:wrap; justify-content:center; }
.d-chip { background:rgba(0,255,136,0.12); border:1px solid rgba(0,255,136,.45); border-radius:100px; padding:4px 11px; font-size:10px; color:var(--accent); font-weight:700; opacity:0; animation:chipPop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.d-chip.c1{animation-delay:.7s} .d-chip.c2{animation-delay:1.1s} .d-chip.c3{animation-delay:1.5s}
@keyframes chipPop { from{opacity:0;transform:scale(.6) translateY(6px)} to{opacity:1;transform:scale(1) translateY(0)} }

.demo-doc { padding:12px 14px; display:flex; flex-direction:column; gap:8px; height:100%; }
.d-doc-trigger { background:rgba(255,255,255,0.06); border-radius:7px; padding:7px 11px; font-size:10.5px; color:#bbb; }
.d-doc-arr { text-align:center; color:var(--accent); font-size:14px; animation:arrDown 1.2s ease infinite; animation-delay:.3s; }
.d-doc-card { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:10px 12px; flex:1; position:relative; opacity:0; animation:slideUp .5s var(--ease) forwards; animation-delay:.7s; }
@keyframes slideUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.d-doc-type { font-size:9px; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--accent); margin-bottom:2px; }
.d-doc-num { font-size:10px; color:#555; margin-bottom:7px; }
.d-doc-row { display:flex; justify-content:space-between; font-size:10px; color:#777; margin-bottom:3px; }
.d-doc-total { border-top:1px solid rgba(255,255,255,.08); margin-top:5px; padding-top:5px; display:flex; justify-content:space-between; font-size:11px; font-weight:800; color:#fff; }
.d-doc-stamp { position:absolute; top:8px; right:10px; background:rgba(0,255,136,.14); border:1.5px solid var(--accent); border-radius:4px; padding:2px 7px; font-size:8px; font-weight:800; color:var(--accent); letter-spacing:2px; transform:rotate(12deg); opacity:0; animation:stampAppear .5s cubic-bezier(0.34,1.56,0.64,1) forwards; animation-delay:1.7s; }
@keyframes stampAppear { from{opacity:0;transform:rotate(12deg) scale(2.5)} to{opacity:1;transform:rotate(12deg) scale(1)} }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-center { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  section { padding: 80px 20px; }
  .site-footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 28px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .sec-title { font-size: clamp(42px,12vw,66px); }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  max-width: calc(100vw - 40px);
  width: max-content;
}
#cookie-banner.show { transform: translateX(-50%) translateY(0); }
#cookie-banner p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
#cookie-banner a { color: var(--accent); text-decoration: none; }
#cookie-banner button {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: opacity 0.2s;
  flex-shrink: 0;
}
#cookie-banner button:hover { opacity: 0.85; }

/* ── TESTIMONIALS ── */
.testi-section-hp {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.testi-hp-inner { max-width: 1160px; margin: 0 auto; }
.testi-hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: var(--border-accent); }
.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testi-stars span { color: #FFD700; font-size: 14px; }
.testi-text-card {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-text-card::before { content: '"'; color: var(--accent); font-size: 20px; font-style: normal; line-height: 0; vertical-align: -6px; margin-right: 2px; }
.testi-text-card::after  { content: '"'; color: var(--accent); font-size: 20px; font-style: normal; line-height: 0; vertical-align: -6px; margin-left:  2px; }
.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-ava {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #000;
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── HERO TRUST PILLS ── */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-trust-pill::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 1024px) {
  .testi-hp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .testi-section-hp { padding: 80px 20px; }
  .testi-hp-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; text-align: center; width: calc(100vw - 40px); }
}
