::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
  font-family: "Inter", sans-serif;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7ec8e3;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 40px -8px rgba(0, 32, 63, 0.18);
  min-width: 560px;
  z-index: 100;
  padding: 24px;
}

.products-trigger:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

.product-card {
  transition: all 0.2s ease;
  border-radius: 10px;
}

.product-card:hover {
  background: #f0f7ff;
}

.hero-gradient {
  background: linear-gradient(135deg, #00203f 0%, #003566 60%, #00507a 100%);
}

.stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.feature-icon {
  background: linear-gradient(135deg, #00203f 0%, #003566 100%);
}

.coming-soon-badge {
  background: rgba(126, 200, 227, 0.15);
  border: 1px solid rgba(126, 200, 227, 0.4);
}

.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #e2e8f0 30%,
    #e2e8f0 70%,
    transparent
  );
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}
