:root{
  --line:#e5e7eb;
  --shadow: 0 14px 40px rgba(2, 6, 23, .10);
  --radius:18px;

  --green1:#16a34a;
  --green2:#22c55e;

  --blue1:#0ea5e9;
  --blue2:#93c5fd;

  --purple1:#7c3aed;
  --purple2:#a78bfa;

  --amber1:#f59e0b;
  --amber2:#fde68a;

  --text:#0b1220;
  --muted:#64748b;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, rgba(34,197,94,.10), transparent 40%),
              radial-gradient(circle at 80% 15%, rgba(124,58,237,.10), transparent 45%),
              linear-gradient(180deg,#f6f8ff 0%, #f3fff9 100%);
}

/* Trust strip */
.trustStrip{
  background: rgba(255,255,255,.8);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
}
.trustStrip__wrap{
  max-width: 1180px;
  margin:0 auto;
  padding: 8px 16px;
  display:flex;
  gap:10px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.trustStrip__left{ display:flex; gap:8px; flex-wrap:wrap; }
.trustStrip__right{ display:flex; gap:10px; flex-wrap:wrap; }

.chip{
  font-size:.85rem;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  border:1px solid rgba(0,0,0,.05);
}
.chip--dark{ background:#111827; color:#fff; }
.chip--green{ background: linear-gradient(90deg,var(--green1),var(--green2)); color:#fff; }
.chip--blue{ background: linear-gradient(90deg,var(--blue1),var(--blue2)); color:#0b1220; }
.chip--purple{ background: linear-gradient(90deg,var(--purple1),var(--purple2)); color:#0b1220; }

.miniLink{
  color:#0b1220;
  text-decoration:none;
  font-weight:900;
  font-size:.9rem;
  padding:6px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
}
.miniLink:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,.08); }

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header__wrap{
  max-width: 1180px;
  margin:0 auto;
  padding: 10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#0b1220;
}
.brand__logo{
  height:44px;
  width:auto;
  border-radius:14px;
}
.brand__title{
  font-size:1rem;
  font-weight:1000;
  letter-spacing:.2px;
}
.brand__sub{
  font-size:.9rem;
  color: var(--muted);
  font-weight:800;
}

.social{ display:flex; gap:10px; align-items:center; }
.socialBtn{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#fff;
  border:1px solid var(--line);
  box-shadow: 0 10px 22px rgba(2,6,23,.07);
  transition: .2s ease;
}
.socialBtn img{ width:18px; height:18px; }
.socialBtn:hover{ transform: translateY(-2px); }

/* Hero */
.hero{ padding: 14px 16px 6px; }
.hero--compact{ padding-bottom: 4px; }

.hero__wrap{
  max-width: 1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.55fr .75fr;
  gap:14px;
  align-items:start;
}
.heroCard{
  background: radial-gradient(circle at 10% 10%, rgba(34,197,94,.18), transparent 45%),
              radial-gradient(circle at 80% 20%, rgba(124,58,237,.15), transparent 48%),
              #ffffff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.heroCard--tight{ padding: 16px; }

.heroBadge{
  display:inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.18);
  font-weight:1000;
  margin-bottom: 10px;
}
.heroCard h1{
  margin:0 0 8px;
  font-size: 1.45rem;
  letter-spacing:.2px;
}
.lead{
  margin:0 0 12px;
  color:#334155;
  font-weight:700;
  line-height: 1.55;
}

/* CTA */
.ctaGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
  margin: 10px 0 10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 16px;
  text-decoration:none;
  font-weight:1000;
  border: 1px solid rgba(0,0,0,.06);
  transition:.18s ease;
}
.btn:hover{ transform: translateY(-2px); }

.btn--green{
  color:#fff;
  background: linear-gradient(90deg,var(--green1),var(--green2));
  box-shadow: 0 14px 34px rgba(34,197,94,.18);
}
.btn--blue{
  color:#0b1220;
  background: linear-gradient(90deg,var(--blue1),var(--blue2));
  box-shadow: 0 14px 34px rgba(14,165,233,.16);
}
.btn--purple{
  color:#0b1220;
  background: linear-gradient(90deg,var(--purple1),var(--purple2));
  box-shadow: 0 14px 34px rgba(124,58,237,.14);
}
.btn--ghost{
  color:#0b1220;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--big{ padding: 13px 16px; border-radius: 18px; }

.miniCTA{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}
.linkPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration:none;
  font-weight:1000;
  color:#0b1220;
  background:#fff;
  border:1px solid var(--line);
}
.linkPill:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,.08); }

/* Info bar */
.infoBar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 10px 0 10px;
}
.infoPill{
  padding: 10px 12px;
  border-radius: 16px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:900;
  color:#0b1220;
}
.infoPill .k{ color:#475569; font-weight:1000; margin-right:6px; }

/* Anti scam */
.antiScam{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(245,158,11,.35);
  background: rgba(245,158,11,.10);
}
.antiScam--tight{ padding: 11px; }
.antiScam__icon{
  width:34px; height:34px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(245,158,11,.18);
  font-weight:1000;
}
.antiScam__title{ font-weight:1000; margin-bottom: 4px; }
.antiScam__text{ color:#334155; font-weight:700; line-height: 1.5; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-weight:900; }

/* Side */
.side{ display:grid; gap:12px; }
.sideCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}
.sideCard--tight{ padding: 12px; }
.sideCard--glow{
  background: radial-gradient(circle at 10% 10%, rgba(34,197,94,.18), transparent 50%),
              radial-gradient(circle at 90% 20%, rgba(14,165,233,.16), transparent 50%),
              #ffffff;
}
.sideTitle{ font-weight:1000; font-size: 1.05rem; }
.sideSub{ color:#475569; font-weight:800; margin-top: 4px; }

.steps{ display:grid; gap:10px; margin-top: 10px; }
.steps--tight{ gap:9px; margin-top: 10px; }
.step{
  display:grid;
  grid-template-columns: 40px 1fr;
  gap:10px;
  padding: 10px;
  border-radius: 16px;
  border:1px solid var(--line);
  background:#fff;
}
.step__n{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight:1000;
  color:#fff;
  background: linear-gradient(90deg,var(--green1),var(--green2));
}
.step__t{ font-weight:1000; }
.step__d{ color:#475569; font-weight:700; }

.sideBtns{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.sideBtns--tight{ margin-top: 10px; }
.btnSmall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:1000;
  border:1px solid var(--line);
  background:#fff;
  color:#0b1220;
}
.btnSmall--green{ border-color: rgba(34,197,94,.28); }
.btnSmall--blue{ border-color: rgba(14,165,233,.28); }
.btnSmall--purple{ border-color: rgba(124,58,237,.28); }
.btnSmall:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,.08); }

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  font-weight:850;
  color:#0f172a;
}
.bullets li{ margin: 8px 0; }

/* Main */
.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 16px 70px;
}
.section{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  margin: 12px 0;
}
.section--first{ margin-top: 8px; }
.sectionHead h2{
  margin:0 0 8px;
  font-size: 1.22rem;
  letter-spacing:.2px;
}
.sectionHead p{
  margin:0;
  color:#475569;
  font-weight:750;
}

.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top: 12px;
}
.box{
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background:#fff;
}
.box h3{ margin:0 0 6px; font-weight:1000; }
.box p{ margin:0; color:#334155; font-weight:720; line-height: 1.55; }

.box--green{
  background: linear-gradient(90deg, rgba(34,197,94,.12), rgba(34,197,94,.04));
  border-color: rgba(34,197,94,.18);
}
.box--blue{
  background: linear-gradient(90deg, rgba(14,165,233,.12), rgba(147,197,253,.10));
  border-color: rgba(14,165,233,.18);
}
.box--purple{
  background: linear-gradient(90deg, rgba(124,58,237,.12), rgba(167,139,250,.07));
  border-color: rgba(124,58,237,.18);
}
.box--amber{
  background: linear-gradient(90deg, rgba(245,158,11,.16), rgba(253,230,138,.18));
  border-color: rgba(245,158,11,.22);
}
.box--soft{ background:#f8fafc; }

.small{ font-size:.93rem; color:#475569; font-weight:750; margin-top: 8px; }

.linksList{
  margin:0;
  padding-left: 18px;
  font-weight:900;
}
.linksList li{ margin: 7px 0; }
.linksList a{ color:#0b1220; text-decoration:none; }
.linksList a:hover{ text-decoration: underline; }

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.tag{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight:1000;
  background: rgba(14,165,233,.10);
  border: 1px solid rgba(14,165,233,.18);
  margin-right: 8px;
}

.noteBox{
  margin-top: 12px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(14,165,233,.30);
  background: rgba(14,165,233,.10);
}
.noteBox__icon{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(14,165,233,.18);
  font-weight:1000;
}
.noteBox__text{ color:#334155; font-weight:760; line-height:1.5; }

.cardLink{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:1000;
  color:#0b1220;
  background:#fff;
  border: 1px solid var(--line);
  margin-top: 10px;
}
.cardLink:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,.08); }

/* Timeline */
.timeline{
  margin-top: 12px;
  border-left: 3px solid rgba(34,197,94,.35);
  padding-left: 16px;
  display:grid;
  gap:12px;
}
.tlItem{ position:relative; }
.tlDot{
  position:absolute;
  left: -28px;
  top: 8px;
  width:14px; height:14px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--green1),var(--green2));
  box-shadow: 0 10px 20px rgba(34,197,94,.25);
}
.tlTitle{ font-weight:1000; }
.tlText{ color:#334155; font-weight:720; }
.tlText a{ color:#0b1220; font-weight:1000; text-decoration:none; }
.tlText a:hover{ text-decoration: underline; }

/* Alert */
.alert{
  margin-top: 12px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(245,158,11,.22);
  background: rgba(245,158,11,.12);
}
.alert__icon{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(245,158,11,.20);
  font-weight:1000;
}
.alert__text{ color:#334155; font-weight:760; line-height:1.5; }

/* Accordion */
.acc{
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 12px 14px;
  background:#fff;
  margin-top: 12px;
}
.acc summary{
  cursor:pointer;
  font-weight:1000;
  list-style:none;
}
.acc summary::-webkit-details-marker{ display:none; }
.acc__content{ padding-top: 10px; color:#334155; font-weight:720; }

/* Contact */
.contact{
  display:flex;
  gap:14px;
  align-items:stretch;
  justify-content:space-between;
  padding: 14px;
  border-radius: 22px;
  border:1px solid rgba(34,197,94,.18);
  background: radial-gradient(circle at 10% 10%, rgba(34,197,94,.18), transparent 50%),
              radial-gradient(circle at 90% 20%, rgba(14,165,233,.16), transparent 50%),
              #ffffff;
  margin-top: 12px;
}
.contact__title{ font-weight:1000; font-size: 1.12rem; }
.contact__sub{ color:#475569; font-weight:800; margin-top: 4px; }

.contactLinks{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 12px;
}
.contactLinks a{
  text-decoration:none;
  font-weight:1000;
  color:#0b1220;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid var(--line);
  background:#fff;
}
.contactLinks a:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,.08); }

.footNote{
  margin-top: 14px;
  color:#64748b;
  font-weight:800;
  font-size: .95rem;
}

/* Floating WhatsApp */
.floatWA{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display:grid;
  place-items:center;
  text-decoration:none;
  color:#fff;
  font-size: 1.35rem;
  font-weight:1000;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  box-shadow: 0 18px 44px rgba(34,197,94,.28);
  border: 1px solid rgba(255,255,255,.35);
  z-index: 99;
}
.floatWA:hover{ transform: translateY(-2px); }

/* Responsive */
@media (max-width: 980px){
  .hero__wrap{ grid-template-columns: 1fr; }
  .ctaGrid{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .contact{ flex-direction:column; }
}
