* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f7fb;
  color: #222;
  line-height: 1.6;
}

/* HEADER */

.header {
  background: #071426;
  padding: 10px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* LOGO AREA */

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.logo-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.85;
  margin-top: 4px;
}

/* NAVBAR */

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav > a,
.dropdown > a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  padding: 10px 0;
  transition: 0.3s ease;
  position: relative;
}

.nav > a:hover,
.dropdown > a:hover {
  color: #4da3ff;
}

/* DROPDOWN */

.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: " ▾";
  font-size: 13px;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 22px;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 250px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 9999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 13px 18px;
  color: #02060c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.25s ease;
}

.dropdown-menu li a:hover {
  background: #f4f7fb;
  color: #103460;
  padding-left: 24px;
}

/* HOME HERO */

.home-hero {
  min-height: 88vh;
  padding: 120px 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(33, 111, 213, 0.18), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #eef3f9 100%);
}

.hero-content {
  width: 100%;
  max-width: 1100px;
}

.hero-badge,
.section-badge,
.verify-badge {
  display: inline-block;
  padding: 10px 20px;
  background: #eaf3ff;
  color: #216fd5;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
}

.home-hero h1 {
  font-size: 72px;
  line-height: 1.05;
  color: #071426;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.home-hero p {
  max-width: 820px;
  margin: 0 auto 40px;
  font-size: 22px;
  line-height: 1.7;
  color: #4b5563;
}

/* BUTTONS */

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  display: inline-block;
  padding: 16px 34px;
  background: #216fd5;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #03070b;
  transform: translateY(-3px);
}

.primary-btn {
  background: linear-gradient(135deg, #071426, #216fd5);
}

.secondary-btn {
  background: #ffffff;
  color: #071426;
  border: 1px solid #d7dee7;
}

.secondary-btn:hover {
  background: #eaf3ff;
  color: #216fd5;
}

/* HERO STATS */

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-card {
  width: 240px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(220, 227, 236, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card h3 {
  font-size: 38px;
  color: #071426;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 16px;
  color: #5b6470;
  margin: 0;
}

/* SECTION */

.section {
  padding: 90px 8%;
  text-align: center;
  background: #ffffff;
}

.light {
  background: #f4f7fb;
}

.section h2 {
  font-size: 44px;
  color: #071426;
  margin-bottom: 18px;
}

.section > p {
  font-size: 19px;
  color: #4b5563;
  margin-bottom: 42px;
}

/* CARDS */

.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card {
  width: 310px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e4eaf1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  font-size: 24px;
  color: #050a12;
  margin-bottom: 14px;
}

.card p {
  color: #5b6470;
  font-size: 16px;
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: #216fd5;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* COMING SOON PAGE */

.coming-soon {
  min-height: 80vh;
  padding: 90px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(33, 111, 213, 0.14), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #eef3f9 100%);
}

.coming-soon h1 {
  font-size: 72px;
  color: #071426;
  margin-bottom: 20px;
  line-height: 1.1;
}

.coming-soon p {
  font-size: 22px;
  max-width: 720px;
  color: #4b5563;
  margin-bottom: 35px;
}

.coming-soon .btn {
  padding: 16px 34px;
  border-radius: 12px;
}

/* VERIFY CERTIFICATE */

.verify-section {
  min-height: 85vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background:
    radial-gradient(circle at top left, rgba(11, 99, 206, 0.12), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #eef3f9 100%);
}

.verify-box {
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.96);
  padding: 65px 55px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(7, 20, 38, 0.1);
  border: 1px solid rgba(220, 227, 236, 0.9);
  text-align: center;
}

.verify-box h1 {
  font-size: 56px;
  line-height: 1.1;
  color: #071426;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.verify-subtitle {
  max-width: 560px;
  margin: 0 auto 42px;
  font-size: 18px;
  color: #5b6470;
}

.verify-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #071426;
}

.input-group input {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #d7dee7;
  border-radius: 16px;
  font-size: 17px;
  background: #ffffff;
  outline: none;
  transition: 0.3s ease;
}

.input-group input:focus {
  border-color: #0b63ce;
  box-shadow: 0 0 0 4px rgba(11, 99, 206, 0.12);
}

.verify-form button {
  margin-top: 10px;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #071426, #0b63ce);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.35s ease;
}

.verify-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11, 99, 206, 0.25);
}

.verify-note {
  margin-top: 24px;
  font-size: 14px;
  color: #6b7280;
}

.result-box {
  margin-top: 38px;
  padding: 32px;
  border-radius: 20px;
  text-align: left;
}

.result-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 22px;
}

.result-box h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.result-box p {
  margin-bottom: 10px;
  color: #374151;
  font-size: 16px;
}

.success {
  background: #ecfdf5;
  border: 1px solid #34d399;
}

.success .result-icon {
  background: #10b981;
  color: #ffffff;
}

.success h2 {
  color: #047857;
}

.error {
  background: #fef2f2;
  border: 1px solid #f87171;
}

.error .result-icon {
  background: #ef4444;
  color: #ffffff;
}

.error h2 {
  color: #b91c1c;
}

/* FOOTER */

.footer {
  background: #020912;
  color: #ffffff;
  text-align: center;
  padding: 30px;
  font-size: 17px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .home-hero h1 {
    font-size: 56px;
  }

  .verify-box h1 {
    font-size: 46px;
  }

  .coming-soon h1 {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 20px;
    padding: 18px 5%;
  }

  .logo-container {
    justify-content: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .home-hero {
    padding: 90px 6%;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero p {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-card {
    width: 100%;
  }

  .coming-soon {
    padding: 70px 6%;
  }

  .coming-soon h1 {
    font-size: 52px;
  }

  .coming-soon p {
    font-size: 18px;
  }

  .verify-section {
    padding: 60px 16px;
  }

  .verify-box {
    padding: 36px 26px;
  }

  .verify-box h1 {
    font-size: 38px;
  }

  .verify-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .site-logo {
    width: 48px;
    height: 48px;
  }

  .logo {
    font-size: 26px;
  }

  .logo-subtitle {
    font-size: 12px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .coming-soon h1 {
    font-size: 42px;
  }

  .coming-soon p {
    font-size: 16px;
  }

  .verify-box {
    padding: 30px 22px;
  }

  .verify-box h1 {
    font-size: 32px;
  }

  .input-group input {
    padding: 16px;
  }
}