/* Navigation Header */
.site-navigation {
  min-height: 50px;
  position: relative;
  z-index: 5;
}

.site-navigation.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.brand-section {
  display: flex;
  align-items: center;
}

.topbar-notice {
  background-color: transparent;
  color: #FFFFFF;
  border: none;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#FF8D35, #F01111);
  padding: 10px;
  border-radius: 8px;
}

.topbar-notice img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.topbar-notice .topbar-text {
  margin-left: 8px;
  font-weight: 700;
  color: #FFFFFF;
}

.nav-wrapper {
  padding: 10px 16px;
  width: 100%;
  /* background: rgba(36, 0, 108, 0.8); */
  /* backdrop-filter: blur(10px); */
  border: none;
  /* border-radius: 16px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  display: inline-block;
  width: 100%;
  max-width: 150px;
  height: auto;
  font-size: 0;
}

.brand-logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.menu-link {
  font-size: 14px;
  font-weight: 400;
  color: #B3B3B3;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #5e35b1;
}

.menu-link.active {
  color: #FF8D35;
}

/* Hero Section */
.hero-area {
  text-align: center;
  width: 100%;
  max-width: 545px;
  margin: 11px auto 0;
}

.update-badge {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  background: linear-gradient(#FF8D35, #F01111);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 8px 16px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(240, 17, 17, 0.3);
}

.hero-heading {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.2;
}

.hero-description {
  color: #B3B3B3;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
  font-size: 11px;
  line-height: 1.2;
  display: none;
}

/* Trust Badges */
.trust-badges {
  width: 100%;
  max-width: 582px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 0 auto 20px;
}

.trust-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 4px;
  text-transform: capitalize;
}

.trust-item span {
  display: block;
  font-weight: 700;
  font-size: 10px;
  color: #FFFFFF;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  fill: #FF8D35;
}

.trust-item.mobile svg {
  width: 21px;
  height: 21px;
}

.trust-item.fast svg {
  width: 21px;
  height: 21px;
}

@media (min-width: 412px) {
  .trust-item span {
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .hero-description {
    display: block;
  }

  .site-navigation {
    min-height: 70px
  }

  .brand-section {
    display: flex;
    align-items: center;
  }

  .brand-logo {
    max-width: 230px;
  }

  .topbar-notice {
    font-size: 11px;
  }

  .topbar-notice img {
    width: 24px;
    height: 24px;
  }

  .topbar-notice .topbar-text {
    margin-left: 12px;
  }

  .hero-area {
    margin: 21px auto;
  }

  .update-badge {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .hero-heading {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .trust-badges {
    justify-content: flex-start;
    gap: 25px;
    margin: 0 auto 24px;
  }

  .trust-item {
    gap: 10px;
  }

  .trust-item span {
    font-size: 16px;
  }

  .trust-item svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-area {
    max-width: 963px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-description {
    font-size: 22px;
  }

  .trust-badges {
    max-width: 700px;
  }

  .trust-item span {
    font-size: 18px;
  }

  .trust-item svg {
    fill: #FF8D35;
  }

  .trust-item.secure svg {
    width: 21px;
    height: 21px;
  }

  .trust-item.mobile svg {
    width: 25px;
    height: 25px;
  }

  .trust-item.fast svg {
    width: 30px;
    height: 30px;
  }

  .trust-item span {
    font-size: 21px;
  }
}

@media (min-width: 1280px) {
  .nav-wrapper {
    padding: 12px 60px;
  }

  .brand-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .menu-link {
    font-size: 16px;
    font-weight: 700;
  }

  .hero-area {
    margin: 41px auto;
  }

  .topbar-notice {
    font-size: 13px;
  }

  .update-badge {
    font-size: 21px;
    padding: 4px 24px;
    margin-bottom: 24px;
  }

  .hero-heading {
    font-size: 56px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .trust-badges {
    max-width: 800px;
    justify-content: space-between;
  }

  .trust-item {
    gap: 20px;
  }

  .trust-item.secure svg {
    width: 28px;
    height: 28px;
  }

  .trust-item.mobile svg {
    width: 32px;
    height: 32px;
  }

  .trust-item.fast svg {
    width: 36px;
    height: 36px;
  }

  .trust-item span {
    font-size: 21px;
  }

}

@media (min-width: 1320px) {
  .brand-logo {
    max-width: 250px;
  }

  .topbar-notice {
    font-size: 14px;
  }
}