* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: radial-gradient(circle at top left, #0b245a, #050f24);
  color: #ffffff;
  line-height: 1.4;
}

/* BACKGROUND GRID */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 95%, rgba(0, 162, 255, 0.05) 96%),
    linear-gradient(90deg, transparent 95%, rgba(0, 162, 255, 0.05) 96%);
  background-size: 40px 40px;
  z-index: -1;
}

/* HEADER */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  background: #061632;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.report-mail {
  background: #1f5eff;
  padding: 8px 14px;
  border-radius: 6px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 50px 30px;
  gap: 30px;
}

.big-shield {
  font-size: 140px;
  filter: drop-shadow(0 0 30px rgba(0,123,255,0.5));
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.hero-right h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-right p {
  max-width: 450px;
  font-size: 15px;
  color: #cfd9ff;
  margin-bottom: 20px;
}

/* REPORT BUTTON */
.report-button {
  display: inline-block;
  background: linear-gradient(135deg, #2d6bff, #00c3ff);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0,123,255,0.5);
  transition: 0.3s ease;
}

.report-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,180,255,0.9);
}

/* SECTIONS */
.stats-section,
.trusted-section,
.service-section,
.process-section {
  padding: 50px 20px;
  text-align: center;
}

.stats-box,
.trusted-logos,
.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1000px;
  margin: auto;
}

.trusted-logos { grid-template-columns: repeat(4, 1fr); }

.stat,
.service-box,
.process-box,
.trusted-box {
  background: rgba(20, 60, 120, 0.4);
  padding: 22px;
  border-radius: 18px;
}

/* DISCLAIMER */
.disclaimer-section {
  background: rgba(10, 30, 70, 0.6);
  padding: 30px;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 16px;
  text-align: center;
  font-size: 13px;
}

/* VISI MISI */
.vm-section {
  background: #061632;
  padding: 50px 20px;
  text-align: center;
}

.vm-box {
  max-width: 900px;
  margin: auto;
  background: #0b224a;
  padding: 30px;
  border-radius: 20px;
  text-align: left;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background: #040c1c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .stats-box,
  .service-grid,
  .process-grid,
  .trusted-logos {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 10px;
  }
}