@media (min-width: 992px) {
  .menuBar {
    display: none;
  }
}

@media (max-width: 600px) {
  .menuLink {
    display: none;
  }
}

.goog-te-combo {
  width: 170px;
}

:root {
  --accent: #1f4bff;
  /* blue button */
  --muted: #6b7280;
  --dark: #0f1724;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #111827;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0 !important;
}

/* Navbar */
.site-nav {
  background: #fff;
  border-bottom: 1px solid #eef2f6;
}

.brand {
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* Hero */
.hero {
  padding: 34px 18px;
}

.hero h1 {
  font-family: "Inter" !important;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 8px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.btn-primary-custom {
  background: var(--accent);
  border: none;
  box-shadow: 0 6px 18px rgba(31, 75, 255, 0.12);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-light-custom {
  background: #eef2ff;
  border: none;
  color: #1f4bff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}

.hero-image {
  margin-top: 16px;
  display: inline-block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(12, 15, 25, 0.06);
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* Stats */
.stats {
  padding: 22px 18px;
}

.stats .stat-number {
  font-weight: 700;
  font-size: 1.05rem;
}

.divider-vert {
  width: 1px;
  height: 48px;
  background: #e6e9ef;
  margin: 0 12px;
  display: inline-block;
}

/* dark section */
.dark-section {
  background: linear-gradient(180deg, #0b1221 0%, #0f1724 100%);
  color: #e6eefc;
  padding: 40px 18px;
  position: relative;
  overflow: hidden;
}

.dark-section h2 {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.08;
}

.dots-pattern {
  position: absolute;
  right: 18px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(6, 10px);
  gap: 8px;
  opacity: 0.28;
}

.dots-pattern span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
}

.btn-primary-custom {
  background: #1f4bff;
  /* blue */
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  /* white text */
  box-shadow: 0 6px 18px rgba(31, 75, 255, 0.12);
  transition: all 0.2s ease;
}

.btn-primary-custom:hover {
  color: #000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 12px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  padding: 20px;
  z-index: 1050;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-btn {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.lang-dropdown {
  max-height: 300px;
  overflow-y: auto;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* responsive tweaks */
@media (min-width: 768px) {
  .hero {
    padding: 56px 48px;
    text-align: left;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-row {
    align-items: center;
  }

  .hero-image {
    max-width: 420px;
  }
}
