/* === JW INFO SOLUTION — Landing Page === */
:root {
  --bg-0: #050b1a;
  --bg-1: #07112a;
  --bg-2: #0b1a3a;
  --bg-card: rgba(13, 28, 60, 0.6);
  --border: rgba(80, 160, 255, 0.18);
  --border-strong: rgba(80, 160, 255, 0.35);
  --text: #e9f1ff;
  --text-dim: #9fb3d1;
  --text-muted: #6a7fa0;
  --cyan: #2EE6FF;
  --blue: #2A7BFF;
  --blue-2: #4f8bff;
  --green: #25D366;
  --grad: linear-gradient(135deg, #2EE6FF 0%, #2A7BFF 100%);
  --grad-soft: linear-gradient(135deg, rgba(46,230,255,0.15), rgba(42,123,255,0.15));
  --shadow: 0 20px 60px -20px rgba(42, 123, 255, 0.35);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ===== Background ===== */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,230,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,230,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top, black 30%, transparent 80%);
}
.bg-glow {
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 1200px; height: 700px;
  background:
    radial-gradient(closest-side, rgba(42,123,255,0.35), transparent 70%),
    radial-gradient(closest-side, rgba(46,230,255,0.20) 30%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ===== Nav ===== */
.nav {
  padding: 18px 0;
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 11, 26, 0.6);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; }
.brand-text {
  font-weight: 700; letter-spacing: 0.5px; font-size: 18px;
}
.brand-text strong { color: var(--cyan); font-weight: 800; }
.brand-text em { font-style: normal; color: var(--text-dim); font-weight: 500; font-size: 13px; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; color: var(--text-dim); transition: color .2s;
}
.nav-links a:hover { color: var(--cyan); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s, box-shadow .2s, background .2s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad);
  color: #001022;
  box-shadow: 0 10px 30px -10px rgba(42,123,255,0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -10px rgba(46,230,255,0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ===== Hero ===== */
.hero { padding: 70px 0 100px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(46,230,255,0.08);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(46,230,255,0.25);
  margin-bottom: 18px;
}
h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -0.5px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex; gap: 36px; padding: 0; margin: 0; list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 28px; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { font-size: 13px; color: var(--text-muted); }

/* ===== Laptop / dashboard mock ===== */
.hero-visual {
  position: relative;
  perspective: 1500px;
}
.laptop {
  position: relative;
  transform: rotateY(-8deg) rotateX(6deg);
  filter: drop-shadow(0 30px 60px rgba(0, 30, 80, 0.6));
}
.laptop-screen {
  background: linear-gradient(180deg, #0a1530, #061025);
  border: 1px solid var(--border-strong);
  border-radius: 14px 14px 4px 4px;
  padding: 8px;
  aspect-ratio: 16/10;
}
.laptop-base {
  height: 14px;
  background: linear-gradient(180deg, #1a2a55 0%, #0a1530 100%);
  border-radius: 0 0 14px 14px;
  margin: 0 -20px;
  position: relative;
}
.laptop-base::after {
  content: '';
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 90px; height: 6px;
  background: #050a1e;
  border-radius: 0 0 10px 10px;
}

.dash {
  background: #07122b;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 140px 1fr 110px;
  height: 100%;
  overflow: hidden;
  gap: 1px;
}
.dash-sidebar, .dash-main, .dash-stats {
  background: rgba(10,22,50,0.85);
  padding: 10px;
}
.dash-search {
  height: 18px;
  background: rgba(46,230,255,0.08);
  border-radius: 6px;
  margin-bottom: 10px;
}
.chat-row {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 4px; border-radius: 6px;
  position: relative;
}
.chat-row.active { background: rgba(46,230,255,0.08); }
.avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #2EE6FF, #2A7BFF);
  flex-shrink: 0;
}
.lines { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.lines span { height: 5px; background: rgba(159,179,209,0.3); border-radius: 3px; }
.lines span.short { width: 60%; background: rgba(159,179,209,0.18); }
.chat-row .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
}

.dash-main { display: flex; flex-direction: column; gap: 6px; padding: 12px; }
.dash-header { height: 22px; background: rgba(46,230,255,0.08); border-radius: 6px; }
.bubble {
  height: 14px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  max-width: 70%;
}
.bubble.short { max-width: 40%; }
.bubble.out {
  background: linear-gradient(90deg, rgba(37,211,102,0.35), rgba(37,211,102,0.2));
  align-self: flex-end;
}
.dash-input {
  margin-top: auto;
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 9px;
  color: var(--text-muted);
}
.dash-input span { flex: 1; }
.dash-input .send {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green);
}

.dash-stats { display: flex; flex-direction: column; gap: 8px; padding: 12px 8px; }
.kpi {
  background: rgba(46,230,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 6px;
  display: flex; align-items: flex-end; gap: 3px;
  height: 40px;
}
.bar { flex: 1; border-radius: 2px; }
.b1 { height: 40%; background: rgba(42,123,255,0.6); }
.b2 { height: 70%; background: rgba(46,230,255,0.7); }
.b3 { height: 95%; background: linear-gradient(180deg, #2EE6FF, #2A7BFF); }

.float-icon {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  color: var(--cyan);
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.icon-bot   { top: -10px;  left: -20px; }
.icon-wa    { top: 30%;    right: -28px; color: #fff; background: var(--green); border-color: transparent; animation-delay: .5s; }
.icon-chart { bottom: 10%; left: -30px;  animation-delay: 1s; }
.icon-users { bottom: -10px; right: 10%;  animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ===== Strip ===== */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(7,17,42,0.5);
  padding: 28px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  color: var(--cyan);
  flex-shrink: 0;
}
.strip-item h4 { margin: 0 0 2px; font-size: 15px; }
.strip-item p { margin: 0; color: var(--text-dim); font-size: 13px; }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(11,26,58,0.6), transparent);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 14px;
  line-height: 1.15;
  font-weight: 800;
}
.section-sub { color: var(--text-dim); font-size: 17px; margin: 0; }

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, border-color .2s, background .2s;
  backdrop-filter: blur(6px);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: rgba(15, 33, 70, 0.7);
}
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--text-dim); font-size: 14.5px; }

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.benefits-copy h2 { font-size: clamp(28px, 3vw, 38px); margin: 0 0 18px; line-height: 1.15; }
.check-list { list-style: none; padding: 0; margin: 28px 0; }
.check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad);
  color: #001022;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bcard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.bcard:nth-child(odd) { transform: translateY(-12px); }
.bcard-num {
  font-size: 38px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.bcard-label { color: var(--text-dim); font-size: 13px; }

/* ===== Plans ===== */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan-featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(46,230,255,0.08), rgba(42,123,255,0.04));
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #001022;
  font-weight: 700; font-size: 12px;
  padding: 5px 14px; border-radius: 999px;
}
.plan h3 { margin: 0 0 18px; font-size: 20px; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.plan-price .currency { color: var(--text-dim); font-size: 16px; }
.plan-price .amount { font-size: 42px; font-weight: 800; }
.plan-price .period { color: var(--text-dim); font-size: 14px; }
.plan-price .quote {
  font-size: 22px;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plans-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-dim);
  font-size: 15px;
}
.plans-note a { color: var(--cyan); font-weight: 600; }
.plans-note a:hover { text-decoration: underline; }
.plan ul {
  list-style: none; padding: 0; margin: 0 0 28px;
  flex: 1;
}
.plan ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14.5px;
}
.plan ul li::before { content: "✓ "; color: var(--cyan); font-weight: 700; }

/* ===== CTA ===== */
.cta {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, rgba(42,123,255,0.18), rgba(46,230,255,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-copy h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; line-height: 1.2; }
.cta-copy p { color: var(--text-dim); margin: 0; font-size: 17px; }
.cta-form {
  background: rgba(7,17,42,0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.cta-form input {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s;
}
.cta-form input:focus { border-color: var(--cyan); }
.cta-form input::placeholder { color: var(--text-muted); }
.cta-form small {
  display: block;
  text-align: center;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 12px;
}
.cta-success {
  text-align: center;
  padding: 20px 0;
}
.cta-success strong { font-size: 20px; color: var(--cyan); display: block; margin-bottom: 6px; }
.cta-success p { color: var(--text-dim); margin: 0; }

/* ===== Footer ===== */
.footer {
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-tag {
  color: var(--text-dim);
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.footer-cols h5 {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-size: 14px;
  transition: color .15s;
}
.footer-cols a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

/* ===== Floating WhatsApp button ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform .15s, box-shadow .2s;
  animation: pulseWA 2.4s ease-in-out infinite;
}
.fab-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px -10px rgba(37, 211, 102, 0.75);
}
.fab-whatsapp svg { flex-shrink: 0; }
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%      { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner,
  .benefits-grid,
  .cta-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 50px 0 80px; }
  .features,
  .plans { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .bcard:nth-child(odd) { transform: none; }
  .hero-stats { gap: 20px; }
  .hero-stats strong { font-size: 22px; }
  .laptop { transform: none; }
  .float-icon { display: none; }
}
@media (max-width: 600px) {
  .benefits-cards { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .fab-whatsapp span { display: none; }
  .fab-whatsapp { padding: 14px; bottom: 16px; right: 16px; }
}
