.site-header {
  background-color: var(--bg-dark);
  padding-top: 40px;
  height: 1000px;
  position: relative;
  background: url('../images/bg-hero.webp') no-repeat  bottom center;
  overflow: hidden;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 2;
  position: relative;
}

.logo img {
  height: 40px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 42px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-secondary);
}

@media(min-width: 769px) {
  .nav-link-mobile {
    display: none;
  }
}

.nav-links a {
  font-size: 0. ninerem;
}

@media(max-width: 768px) {
.btn-nav-login,
.btn-nav-call {
  display: none;
 }
}

.languages {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  /* padding-right: 20px; */
}
.languages li,
.languages li a,
.languages li a img {
  width: 25px !important;
  height: 25px !important;
  transform: 0.2s;
}
.languages li:hover,
.languages li a:hover,
.languages li a img:hover {
  scale: 1.05;
  transform: 0.2s;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}


/* HERO SECTION */
.hero {
  padding: 90px 0 160px;
  text-align: center;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-primary);
  max-width: 880px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}


.hero-images-bg {
  position: absolute;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-images-bg__img1 {
  width: 831px;
  bottom: 0;
  left: calc(50% - 495px);
}
.hero-images-bg__img2 {
  width: 151px;
  left: 0; 
  top: 50%;
  transform: translateY(-50%);
}
.hero-images-bg__img3 {
  width: 203px;
  top: -10px;
  right: 0;
}
.trusts {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
}
.trust-plans {
  width: 136px;
  background: url('../images/icon-check.svg') no-repeat center center;
}
.trust-plans img {
  width: 100%;
  animation: rotation 40s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.trust-badge {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.trust-badge__flags {
  display: inline-flex;
  align-items: center;
}

.flag {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  display: inline-block;
  overflow: hidden;
}

.flag + .flag {
  margin-left: -8px;
}

.trust-badge__text {
  margin: 0;
  line-height: 1.25;
  font-size: 0.875rem;
}

.trust-badge__text {
  max-width: 290px;
}





@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  

  .nav-actions {
    /* display: none; */
  }

  .hero {
    padding: 50px 0 30px;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: initial;
    /* height: 790px; */
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .hero-subtitle {
    margin-bottom: 20px;
    padding: 20px 20px;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .hero-cta {
    flex-direction: row;
    gap: 16px;
  }
  

  .btn {
    /* width: 100%; */
  }
    
  .hero-cta.hero-cta-smw a:nth-child(2) {
      width: 35%;
  }

  .hero-images-bg__img1 {
    width: 95%;
    left: calc(50% - 47.5%);
    bottom: 75px;
  }

  .hero-images-bg__img2 {
    display: none;
  }

  .hero-images-bg__img3 {
    width: 125px;
  }

  .trusts {
    width: 100%;
    gap: 30px;
    padding: 0px 40px 150px 0;
    justify-content: flex-end;
    scale: 0.8;
  }
  .trust-plans {
    width: 100px;
    background-size: 25%;
  }
  .trust-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 10px;
  }
  .trust-badge__text {
    font-size: 0.775rem;
    line-height: 1.5;
  }

}

