/* ============================================================
   Tryvio — Landing Page
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  color: #14233c;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0b1c3d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.lp-brand-logo {
  width: 34px; height: 34px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.28);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: #0dd4b4;
}
.lp-brand-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.lp-brand-name span { color: #0dd4b4; }
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.lp-nav-link {
  font-size: 13px;
  color: #9fb3c8;
  text-decoration: none;
  font-weight: 600;
  transition: color .15s;
}
.lp-nav-link:hover { color: #fff; }
.lp-nav-btn {
  background: #1D9E75;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
  text-decoration: none;
  transition: filter .15s;
}
.lp-nav-btn:hover { filter: brightness(1.08); }

/* ── HERO ── */
.lp-hero {
  background: #0b1c3d;
  position: relative;
  overflow: hidden;
  padding: 56px 6vw 64px;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,212,180,0.12);
}
.lp-hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.lp-badge {
  display: inline-block;
  background: rgba(13,212,180,0.12);
  border: 1px solid rgba(13,212,180,0.25);
  color: #0dd4b4;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 15px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: .3px;
}
.lp-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.lp-hero h1 span { color: #0dd4b4; }
.lp-hero-desc {
  font-size: 15px;
  color: #9fb3c8;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 420px;
}
.lp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1D9E75;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  border-bottom: 4px solid #0F6E56;
  text-decoration: none;
  letter-spacing: .3px;
  transition: filter .15s, transform .05s;
}
.lp-cta-primary:hover { filter: brightness(1.07); }
.lp-cta-primary:active { transform: translateY(2px); border-bottom-width: 2px; }
.lp-cta-primary .arr { transition: transform .15s; }
.lp-cta-primary:hover .arr { transform: translateX(4px); }

/* Kartu preview skor */
.lp-score {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
}
.lp-score-label {
  font-size: 11px;
  color: #7f93ab;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.lp-score-top {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 16px;
}
.lp-score-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #0dd4b4;
}
.lp-score-max { font-size: 13px; color: #7f93ab; }
.lp-score-badge {
  margin-left: auto;
  background: rgba(63,185,80,0.15);
  color: #5DCAA5;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 100px;
  align-self: center;
}
.lp-bar-row { margin-bottom: 11px; }
.lp-bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9fb3c8;
  margin-bottom: 4px;
}
.lp-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
}
.lp-bar-fill { height: 100%; border-radius: 3px; }

/* ── TRUST STRIP ── */
.lp-trust {
  background: #081428;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 20px 6vw;
}
.lp-trust-item { text-align: center; }
.lp-trust-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0dd4b4;
  line-height: 1;
}
.lp-trust-l {
  font-size: 11px;
  color: #7f93ab;
  margin-top: 4px;
}

/* ── SECTIONS ── */
.lp-section { padding: 60px 6vw; }
.lp-section-inner { max-width: 1000px; margin: 0 auto; }
.lp-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #1D9E75;
  letter-spacing: .6px;
  text-align: center;
  margin-bottom: 8px;
}
.lp-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #14233c;
  text-align: center;
  letter-spacing: -.5px;
  margin-bottom: 36px;
}

/* Cara kerja */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-step {
  background: #f7faf9;
  border: 1px solid #e8eef0;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
}
.lp-step-n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #E1F5EE;
  color: #0F6E56;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.lp-step-t {
  font-size: 15px;
  font-weight: 700;
  color: #14233c;
  margin-bottom: 6px;
}
.lp-step-d {
  font-size: 12.5px;
  color: #7b8a99;
  line-height: 1.55;
}

/* Fitur */
.lp-features-sec { background: #f4f7f6; }
.lp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}
.lp-feature {
  background: #fff;
  border: 1px solid #e8eef0;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lp-feature i {
  font-size: 24px;
  color: #1D9E75;
  flex-shrink: 0;
}
.lp-feature-t {
  font-size: 14px;
  font-weight: 700;
  color: #14233c;
  margin-bottom: 3px;
}
.lp-feature-d {
  font-size: 12.5px;
  color: #7b8a99;
  line-height: 1.5;
}

/* Footer minimalis */
.lp-footer {
  background: #081428;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
}
.lp-footer-copy {
  font-size: 11px;
  color: #5a6b7d;
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .lp-hero h1 { font-size: 32px; }
  .lp-nav-links { gap: 12px; }
  .lp-nav-link { display: none; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-section h2 { font-size: 23px; }
}
