:root{
  --bg:#ffffff;
  --panel:#f7f8fa;
  --text:#0b0f14;
  --muted:rgba(11,15,20,.62);
  --line:rgba(11,15,20,.10);
  --accent:#1f6feb;
  --radius:18px;
  --shadow: 0 18px 45px rgba(11,15,20,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 600px at 85% 10%, rgba(31,111,235,.10), transparent 55%),
    radial-gradient(900px 600px at 10% 30%, rgba(11,15,20,.04), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 20px}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.78);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand-mark{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, rgba(31,111,235,.85), rgba(31,111,235,.10));
  border:1px solid rgba(31,111,235,.20);
}
.brand-name{font-weight:600; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted); margin-top:1px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{font-size:14px; color:var(--muted)}
.nav a:hover{color:var(--text)}

.actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  font-size:14px; font-weight:500;
  border:1px solid var(--line);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:active{transform:translateY(1px)}
.btn-ghost{
  background: rgba(11,15,20,.04);
}
.btn-ghost:hover{background: rgba(11,15,20,.07)}

/* WhatsApp green */
.btn-wa{
  background: rgba(37, 211, 102, .16);
  border-color: rgba(37, 211, 102, .40);
}
.btn-wa:hover{
  background: rgba(37, 211, 102, .22);
  border-color: rgba(37, 211, 102, .55);
}

.btn-icon{gap:10px}
.ico{width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center}
.ico svg{width:18px; height:18px; display:block}

.menu-btn{
  display:none;
  border:1px solid var(--line);
  background: rgba(11,15,20,.04);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  font-size:16px;
}

.mobile-nav{
  border-top:1px solid var(--line);
  padding:12px 20px 18px;
  display:flex; flex-direction:column; gap:10px;
}
.mobile-nav a{color:var(--muted)}
.mobile-nav a:hover{color:var(--text)}

.hero{padding:72px 0 38px}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
}
.hero h1{
  margin:0;
  font-size:54px;
  letter-spacing:-1px;
  line-height:1.05;
}
.accent{color:var(--accent)}
.lead{
  margin:14px 0 0;
  font-size:16px;
  color:var(--muted);
  max-width:62ch;
}

.hero-cta{
  margin-top:22px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.72);
}
.hero-line{margin:0; font-size:15px}
.cta-row{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}

.chips{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}
.chip{
  font-size:12px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
}

.hero-card{
  position:relative;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.65));
  box-shadow: var(--shadow);
  overflow:hidden;
  padding:18px;
}
.hero-card-title{font-weight:600; font-size:14px}
.list{margin-top:12px; display:grid; gap:10px}
.li{display:flex; align-items:center; gap:10px; color:var(--muted); font-size:13px}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: rgba(31,111,235,.85);
}
.hero-glow{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 60% 30%, rgba(31,111,235,.18), transparent 55%);
  z-index:-1;
}

.section{padding:48px 0}
.section.alt{background: rgba(11,15,20,.02); border-top:1px solid rgba(11,15,20,.04); border-bottom:1px solid rgba(11,15,20,.04)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
.section-head h2{margin:0; font-size:22px; letter-spacing:-.2px}
.section-head p{margin:0; color:var(--muted); max-width:65ch; font-size:14px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}

.logo-grid{
  display:grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap:10px;
}
.logo{
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
  border-radius: 14px;
  padding:12px 10px;
  text-align:center;
  color: rgba(11,15,20,.72);
  font-size:13px;
}

.note-box{
  margin-top:14px;
  border:1px solid rgba(31,111,235,.20);
  background: rgba(31,111,235,.06);
  border-radius: var(--radius);
  padding:14px 16px;
}
.note-title{font-weight:600; font-size:13px}
.note-text{color:var(--muted); font-size:13px; margin-top:4px}

.steps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  gap:12px;
}
.step-no{
  width:34px; height:34px; border-radius:12px;
  border:1px solid rgba(31,111,235,.20);
  background: rgba(31,111,235,.10);
  display:flex; align-items:center; justify-content:center;
  font-weight:600;
}
.step-title{font-weight:600}
.step-text{color:var(--muted); font-size:14px; margin-top:2px}

.callout{
  margin-top:18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  border:1px solid rgba(11,15,20,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--radius);
  padding:16px;
}
.callout-title{font-weight:600}
.callout-text{color:var(--muted); font-size:14px}

.footer{
  margin-top:28px;
  padding:18px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  font-size:12px;
}

.small{font-size:12px}
.muted{color:var(--muted)}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size:12px}

@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr;}
  .hero h1{font-size:42px}
  .grid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .logo-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .nav,.actions{display:none}
  .menu-btn{display:inline-flex}
}


/* Hero card photo (trust) */
.hero-card-photo{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70)),
    url("assets/trust-hero.png");
  background-size: cover;
  background-position: center;
}


/* === WhatsApp Floating Button === */
.wa-float{position:fixed;right:16px;bottom:16px;z-index:9999;display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:999px;border:1px solid rgba(37, 211, 102, .40);background:rgba(37, 211, 102, .14);backdrop-filter: blur(6px);-webkit-backdrop-filter: blur(6px);text-decoration:none;color:inherit;box-shadow:0 10px 24px rgba(0,0,0,.18);}
.wa-float:hover{transform:translateY(-1px);}
.wa-float-ico{width:22px;height:22px;display:grid;place-items:center;}
.wa-float-ico svg{width:22px;height:22px;}
.wa-float-text{display:flex;flex-direction:column;line-height:1.05;}
.wa-float-title{font-weight:600;font-size:.92rem;}
.wa-float-number{font-size:.84rem;opacity:.85;}
.wa-inline{text-decoration:none;border-bottom:1px dashed rgba(255,255,255,.35);}
@media (max-width:480px){.wa-float-text{display:none}.wa-float{padding:12px;border-radius:999px}}
