* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;

  background-image: url('../assets/images/background.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  color: #ffffff;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}


.landing-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.navbar {
  padding-top: 30px;
  padding-bottom: 10px;
  flex-shrink: 0;
}

.navbar .logo {
  width: 150px;
  height: auto;
}

.hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  position: relative;
  min-height: 0;
}

.hero-content {
  flex: 0 0 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 10px;
}

.hero-content .hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-content .hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-content .app-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-content .app-buttons .store-btn {
  transition: transform 0.2s ease;
}

.hero-content .app-buttons .store-btn img {
  height: 52px;
  width: auto;
}

.hero-content .app-buttons .store-btn:hover {
  transform: translateY(-3px);
}

.hero-content .legal-links {
  display: flex;
  gap: 15px;
}

.hero-content .legal-links .pill-btn {
  background-color: #ff8e4f;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.hero-content .legal-links .pill-btn:hover {
  background-color: #e87b3d;
}

.hero-visuals {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.hero-visuals .phone-cluster {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 550px;
}

.hero-visuals .phone {
  position: absolute;
  width: 46%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}


.hero-visuals .phone-center {
  top: 14%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
}

.hero-visuals .phone-left {
  top: 48%;
  left: 1%;
  transform: translateY(-50%);
  width: 40%;
}

.hero-visuals .phone-right {
  top: -21%;
  right: -2%;
  width: 40%;
  transform: none;
}

@media (max-width: 992px) {
  body {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
    background-attachment: fixed;
  }
  
  .landing-wrapper {
    height: auto;
    padding: 40px 5%;
  }

  .navbar {
    padding-bottom: 40px;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
  }
  
  .hero-content {
    flex: auto;
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
    align-items: center;
  }
  
  .hero-content .hero-subtitle {
     margin-left: auto;
     margin-right: auto;
  }

  .hero-content .app-buttons {
    justify-content: center;
    margin-bottom: 40px;
  }
  
  .hero-content .legal-links {
    justify-content: center;
  }
  
  .hero-visuals {
    width: 100%;
    height: auto;
    min-height: 500px;
    justify-content: center;
    overflow: visible;
  }
  
  .hero-visuals .phone-cluster {
    height: 500px;
    max-width: 100%; 
    transform: scale(0.9);
  }
  
  .hero-visuals .phone-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
  }
  
  .hero-visuals .phone-left {
    top: 60%;
    left: 0;
    width: 45%;
    transform: none;
  }
  
  .hero-visuals .phone-right {
    top: 40%;
    right: 0;
    width: 45%;
    transform: none;
  }
}