/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1E293B;
  color: #FFFFFF;
  line-height: 1.6;
}

a {
  color: #1DB954;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Container ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.navbar__logo span {
  color: #1DB954;
}

.navbar__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.navbar__links a {
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 500;
}

.navbar__links a:hover {
  color: #FFFFFF;
}

/* ===== Hero ===== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(29, 185, 84, 0.12);
  color: #1DB954;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__title span {
  color: #1DB954;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: #94A3B8;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__stores {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2E3A47;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  border-radius: 12px;
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: default;
}

.store-badge__icon {
  width: 24px;
  height: 24px;
}

.store-badge__text {
  text-align: left;
}

.store-badge__small {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.store-badge__name {
  display: block;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
}

.section-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1DB954;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #2E3A47;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(29, 185, 84, 0.3);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(29, 185, 84, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, #1DB954, rgba(29, 185, 84, 0.3));
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  background: #1DB954;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid #1E293B;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 40px;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__links a {
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer__links a:hover {
  color: #FFFFFF;
}

.footer__contact {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* ===== Legal Pages ===== */
.legal {
  padding: 60px 0 80px;
}

.legal h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.legal__date {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: #1DB954;
}

.legal p,
.legal ul {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal ul {
  padding-left: 24px;
}

.legal ul li {
  margin-bottom: 6px;
}

.legal a {
  color: #1DB954;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .features__grid,
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .steps::before {
    display: none;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .legal h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .navbar__links {
    gap: 16px;
  }

  .hero__stores {
    flex-direction: column;
    align-items: center;
  }
}
