:root{
  --bg: #0b1220;
  --primary: #0d6efd;
  --primary2:#0b5ed7;
  --accent:#25d366;
  --text:#111827;
  --muted:#6b7280;
  --card:#ffffff;
  --soft:#f5f7fb;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 14px;
}

*{ box-sizing:border-box; margin:0; padding:0; font-family: Arial, Helvetica, sans-serif; }
body{ color:var(--text); background:#fff; line-height:1.6; }

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

.topbar{ background:#0f172a; color:#cbd5e1; font-size:.92rem; }
.topbar-inner{ display:flex; gap:14px; align-items:center; justify-content:space-between; padding:10px 0; }
.topbar-link{ color:#cbd5e1; text-decoration:none; }
.topbar-link:hover{ text-decoration:underline; }

.hero{
  background: radial-gradient(1200px 600px at 20% 10%, rgba(13,110,253,.35), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(37,211,102,.25), transparent 60%),
              #0b1220;
  color:#fff;
  padding:60px 0;
}
.hero-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap:28px; align-items:stretch; }
@media(max-width: 900px){ .hero-grid{ grid-template-columns:1fr; } }

.badge{
  display:inline-block;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  padding:6px 10px;
  border-radius:999px;
  font-size:.85rem;
  margin-bottom:12px;
}

.hero h1{ font-size:2.4rem; line-height:1.2; margin-bottom:10px; }
.subtitle{ color:#e5e7eb; margin-bottom:18px; max-width: 560px; }

.cta-row{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:18px; }

.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  transition: transform .06s ease, opacity .2s ease;
}
.btn:hover{ opacity:.95; }
.btn:active{ transform: translateY(1px); }

.primary{ background:var(--accent); color:#0b1220; }
.secondary{ background:var(--primary); color:#fff; }
.ghost{ background: rgba(255,255,255,.10); color:#fff; border:1px solid rgba(255,255,255,.18); }
.full{ width:100%; text-align:center; }

.trust{ display:flex; flex-wrap:wrap; gap:10px; }
.trust-item{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  padding:8px 10px;
  border-radius:12px;
  font-size:.92rem;
}

.hero-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding:20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.hero-card h2{ font-size:1.2rem; margin-bottom:8px; }
.hero-card p{ color:#e5e7eb; margin-bottom:12px; }
.mini{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; color:#cbd5e1; font-size:.92rem; }

.section{ padding:56px 0; }
.soft{ background: var(--soft); }

.section-title{ font-size:1.8rem; margin-bottom:8px; text-align:center; }
.section-subtitle{ color:var(--muted); text-align:center; margin-bottom:22px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
@media(max-width: 900px){ .grid-3{ grid-template-columns:1fr; } }

.card{
  background: var(--card);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  text-align:left;
}
.icon{
  width:40px; height:40px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:#eef2ff;
  margin-bottom:10px;
  font-size:1.15rem;
}
.card h3{ margin-bottom:6px; }
.card p{ color:var(--muted); }

.step{
  background:#fff;
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  text-align:left;
}
.step-num{
  display:inline-flex;
  width:34px; height:34px;
  align-items:center; justify-content:center;
  border-radius:10px;
  background:#e8f1ff;
  color:var(--primary2);
  font-weight:800;
  margin-bottom:10px;
}

.center{ text-align:center; }
.mt-24{ margin-top:24px; }

.testimonials{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media(max-width: 900px){ .testimonials{ grid-template-columns:1fr; } }

.quote{
  background:#fff;
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  text-align:left;
}
.quote p{ margin-bottom:8px; color:#111827; }
.quote span{ color:var(--muted); font-size:.95rem; }

.faq{ max-width:800px; margin:0 auto; display:grid; gap:10px; }
details{
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px 16px;
}
summary{ cursor:pointer; font-weight:800; }
details p{ margin-top:8px; color:var(--muted); }

.footer{
  background:#0f172a;
  color:#cbd5e1;
  padding:18px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
.muted{ color:#94a3b8; }

.wa-float{
  position:fixed;
  right:16px;
  bottom:16px;
  width:52px;
  height:52px;
  border-radius:18px;
  background: var(--accent);
  color:#0b1220;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:1.4rem;
  font-weight:800;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
