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

body {
  background: #f4f7fb;
  color: #1a1a1a;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
  color: #0056d2;
  letter-spacing: 0.5px;
}

.nav-menu-wrap {
  position: relative;
  display: inline-block;
  margin-right: 16px;
}
.nav-menu-btn {
  background: #f4f6fa;
  border: 1px solid #e5e9f0;
  border-radius: 10px;
  height: 38px;
  padding: 0 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}
.nav-menu-btn:hover {
  border-color: #0056d2;
  color: #0056d2;
}
.nav-menu-dropdown {
  position: absolute;
  right: 0;
  top: 46px;
  width: 220px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 50;
  padding: 8px 0;
}
.nav-menu-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  margin-left: 0;
}
.nav-menu-dropdown a:hover {
  background: #f4f6fa;
  color: #0056d2;
}

.navbar-right a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  margin-left: 16px;
}

.navbar-right a:hover {
  color: #0056d2;
}

.navbar-right .divider {
  color: #ccc;
}

.nav-cta {
  background: #0056d2;
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
}

.nav-cta:hover {
  background: #003d99;
  color: white !important;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #0056d2, #007bff);
  color: white;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s ease-in-out;
}

.btn-primary {
  background: white;
  color: #0056d2;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Hero visual — image cards */
.hero-visual {
  flex: 0 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-img-card {
  background: white;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease;
}

.hero-img-card:hover {
  transform: translateY(-6px);
}

.hero-img-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.hero-img-card span {
  color: #0056d2;
  font-weight: 700;
  font-size: 0.85rem;
}

.card-2 {
  margin-top: 30px;
}

@media (max-width: 700px) {
  .hero {
    padding: 50px 24px;
    text-align: center;
    justify-content: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .card-2 {
    margin-top: 0;
  }
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 30px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #0056d2;
}

.feature-card p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.feature-card a {
  color: #0056d2;
  font-weight: 600;
  text-decoration: none;
}

.feature-card a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 24px;
  color: #777;
  font-size: 0.85rem;
  border-top: 1px solid #e5e9f0;
}

/* Heading font — Poppins for visual hierarchy against Inter body text */
h1, h2, h3, .logo, .brand, .gate-box h2 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
}
