* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  }

body {
background-color: #fff;
color: #222;
display: flex;
flex-direction: column;
align-items: center;
}

.navbar {
width: 100%;
max-width: 1200px;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
font-size: 20px;
}

.nav-right {
display: flex;
align-items: center;
gap: 15px;
}
.signup:hover{
  background-color: #46178F;
}
.signup {
  cursor: pointer;
  width: 100px;
  height: 44px;
background: #3B5BFF;
color: #fff;
border: none;
padding: 8px 16px;
border-radius: 4px;
font-weight: 500;
}

.login { width: 100px;
  cursor: pointer;
  height: 44px;
  color:#979797 ;
  height: 44px;
padding: 8px 16px;
font-weight: 700;
}

.hero {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
padding-top: 80px;
}

.aps-text{
  font-size:14px;
font-weight: 800;
margin-bottom: 20px;

}

.hero-text h1 {
font-size:74px;
font-weight: 800;
margin-bottom: 20px;
}

.anys {
  
  font-weight: 400;
font-size: 24px;
color: #555;
margin-bottom: 30px;
}

.cta {
background: #3B5BFF;
color: white;
padding: 12px 24px;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
font-weight: 800;
width: 255px;
height: 56px;
}

.apps {
  margin-top: 48px;

font-weight: bold;
      font-size: 14px;
      color: 000000;
}

.store-buttons  {
  display: flex;
  

width: 140px;
margin-right: 10px;
}

.hero-image img {
  margin-left: 100px;
width: 494px;
height: 436px;
max-width: 100%;
}
.lang{
  margin-right: 5px;
  font-weight: 400;
}
.left {
  padding-left: 30px;
}
.but{
  margin-right: 20px;
  border: none;
  cursor: pointer;
}
.butr{
  border: none;
  cursor: pointer;
}
/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  /* Ховаємо стандартне меню */
  .nav-right {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  /* Коли активне */
  .nav-right.active {
    display: flex;
  }

  /* Бургер */
  .burger {
    width: 25px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #222;
    border-radius: 3px;
    transition: 0.3s;
  }

  /* Анімація при відкритті */
  .burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
  }
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
  }

  /* Герой */
  .hero {
    flex-direction: column;
    padding: 120px 20px 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .anys {
    font-size: 18px;
  }

  .cta {
    width: 100%;
    max-width: 280px;
  }

  .hero-image img {
    margin: 40px 0 0 0;
    width: 100%;
    height: auto;
  }
}
