/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background: url('../images/hero_bg.jpg') center center / cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-wordmark {
  max-width: 500px;
  width: 80%;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero h2 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ccc;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-download {
  height: 52px;
  width: auto;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
  background: #000;
  padding: 60px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.screenshots-track img {
  height: 500px;
  width: auto;
  border-radius: 24px;
  flex-shrink: 0;
}

/* ===== WHAT IS YAAAS SECTION ===== */
.what-section {
  background: #444;
  padding: 80px 0;
}

.what-inner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.what-text {
  flex: 1;
}

.what-text h2 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}

.what-text ul {
  list-style: disc;
  padding-left: 24px;
  color: #ddd;
  font-size: 16px;
  line-height: 1.8;
}

.what-text li {
  margin-bottom: 12px;
}

.what-text strong {
  color: #fff;
}

.what-cta {
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.what-download {
  height: 48px;
  width: auto;
}

/* ===== MEDIA SECTION ===== */
.media-section {
  background: #000;
  padding: 60px 0;
  text-align: center;
}

.media-inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.media-section h2 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.media-section p {
  color: #ccc;
  font-size: 16px;
}

.media-section a {
  color: #feeb19;
  font-weight: 700;
}

/* ===== GET THE APP SECTION ===== */
.get-app {
  position: relative;
  background: url('../images/friends_bg.jpg') center center / cover no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.get-app-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.get-app-content {
  position: relative;
  z-index: 2;
}

.get-app h2 {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.get-app-icon {
  width: 120px;
  height: auto;
  border-radius: 24px;
  transition: transform 0.2s;
}

.get-app-icon:hover {
  transform: scale(1.05);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: #000;
  padding: 80px 0;
}

.faq-group {
  max-width: 800px;
  width: 90%;
  margin: 0 auto 60px;
}

.faq-group:last-child {
  margin-bottom: 0;
}

.faq-group-title {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #feeb19;
  margin-bottom: 24px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: 'Poppins', 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: #feeb19;
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 20px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero {
    min-height: 450px;
    padding: 60px 20px;
  }

  .hero-wordmark {
    max-width: 350px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h2 {
    font-size: 20px;
  }

  .screenshots-track {
    justify-content: flex-start;
    padding: 0 20px;
  }

  .screenshots-track img {
    height: 380px;
  }

  .what-inner {
    flex-direction: column;
    text-align: center;
  }

  .what-text h2 {
    font-size: 26px;
  }

  .what-text ul {
    text-align: left;
  }

  .get-app h2 {
    font-size: 28px;
  }

  .faq-group-title {
    font-size: 26px;
  }

  .faq-item summary {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 380px;
    padding: 50px 16px;
  }

  .hero-wordmark {
    max-width: 260px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .screenshots-track img {
    height: 300px;
    border-radius: 16px;
  }

  .what-text h2 {
    font-size: 22px;
  }

  .get-app h2 {
    font-size: 22px;
  }
}
