: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 grid */
.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;
}

.miniCTA{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.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); }

.alertHero{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(124,58,237,.22);
  background: rgba(124,58,237,.10);
}
.alertHero__icon{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(124,58,237,.18);
  font-weight:1000;
}
.alertHero__text{ color:#334155; font-weight:760; line-height: 1.5; }

/* 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; }

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

.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); }

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

/* Main */
.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0px 16px 70px;
}
.container--tight{ padding-top: 0px; }

.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;
}

/* Layout utilities */
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top: 12px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 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; }

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

.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; }

.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; }

.card{
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 15% 10%, rgba(34,197,94,.10), transparent 50%), #ffffff;
}
.card__icon{
  width:42px; height:42px;
  border-radius: 18px;
  display:grid; place-items:center;
  background: rgba(34,197,94,.12);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card h3{ margin:0 0 6px; font-weight:1000; }
.card p{ margin:0; color:#334155; font-weight:720; }

.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);
}
.cardLink:hover{ transform: translateY(-1px); box-shadow: 0 10px 20px rgba(2,6,23,.08); }

.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; }

.highlight{
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background:#fff;
  margin-top: 12px;
}
.highlight h3{ margin:0 0 6px; font-weight:1000; }
.highlight p{ margin:0; color:#334155; font-weight:720; line-height:1.55; }

.highlight--purple{
  border-color: rgba(124,58,237,.18);
  background: linear-gradient(90deg, rgba(124,58,237,.12), rgba(167,139,250,.07));
}
.highlight--blue{
  border-color: rgba(14,165,233,.18);
  background: linear-gradient(90deg, rgba(14,165,233,.12), rgba(147,197,253,.10));
}

.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; }
  .grid3{ grid-template-columns: 1fr; }
}
