.header {
  width: 100%;
  height: 72px;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(22, 13, 62, 0.08);
}

.header__container {
  max-width: 1200px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  width: 180px;
  height: 64px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  text-decoration: none;
}

.logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link,
.nav__dropdown-btn {
  font-size: 15px;
  font-weight: 600;
  color: #2b2057;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.nav__link:hover,
.nav__dropdown-btn:hover,
.nav__link--active {
  color: #4b2bbf;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 20;

  min-width: 190px;
  padding: 10px;

  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(22, 13, 62, 0.16);

  display: none;
  flex-direction: column;
  gap: 4px;
}

.nav__dropdown:hover .nav__dropdown-menu {
  display: flex;
}

.nav__dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;

  color: #2b2057;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav__dropdown-menu a:hover {
  background: #f3efff;
  color: #4b2bbf;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-btn {
  display: none;
}

.language-switcher {
  height: 40px;
  padding: 0 10px;

  border: 1px solid #ddd6ff;
  border-radius: 10px;
  background: #ffffff;

  color: #2b2057;
  font-weight: 700;
  cursor: pointer;
}

.cta-btn {
  height: 42px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: #4b2bbf;
  color: #ffffff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  white-space: nowrap;
}

.cta-btn:hover {
  background: #3b2389;
}

.burger {
  width: 42px;
  height: 42px;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  border: none;
  border-radius: 10px;
  background: #f3efff;
  cursor: pointer;
}

.burger span {
  width: 22px;
  height: 2px;
  background: #2b2057;
  border-radius: 999px;
}

@media (max-width: 1100px) {
  .header__container {
    gap: 14px;
  }

  .logo {
    width: 160px;
  }

  .nav {
    gap: 14px;
  }

  .nav__link,
  .nav__dropdown-btn {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .header__container {
    gap: 16px;
  }

  .logo {
    width: 160px;
    height: 52px;
  }

  .nav {
    display: none;
  }

  .header__actions {
    margin-left: auto;
  }

  .cta-btn {
    display: none;
  }

  .burger {
    display: flex;
  }
}

@media (max-width: 576px) {
  .header {
    height: 64px;
  }

  .header__container {
    height: 64px;
    padding: 0 16px;
  }

  .logo {
    width: 140px;
    height: 46px;
  }

  .language-switcher {
    height: 36px;
    font-size: 13px;
  }

  .burger {
    width: 38px;
    height: 38px;
  }
}
