/* ── App Hero Section ── */
section.app-hero {
  padding: 10rem 0 4rem;
  background: #fff;
}

section.app-hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.app-hero__image {
  flex: 0 0 45%;
  max-width: 45%;
}

.app-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.app-hero__content {
  flex: 1;
}

.app-hero__tag {
  display: inline-block;
  background: #f0f0f0;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
  color: #555;
  margin-bottom: 1.25rem;
}

.app-hero__title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

.app-hero__text {
  color: #555;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.app-hero__download {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.app-hero__store-btn {
  display: inline-block;
  background: var(--primary-color);
  padding: 0.6rem 1rem;
  line-height: 0;
}

.app-hero__store-btn img {
  height: 40px;
  width: auto;
  display: block;
}

/* ── Pricing Section ── */
section.pricing {
  padding: 4rem 0;
  background: #f7f8fa;
}

.pricing__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.pricing__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing__plans {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}

.pricing__plan {
  flex: 1;
  max-width: 300px;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
}

.pricing__plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.pricing__plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin: 1rem 0 1.25rem;
}

.pricing__plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing__plan-features li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: #333;
  line-height: 1.4;
}

.pricing__plan-features li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

@media (max-width: 768px) {
  section.app-hero {
    padding: 7rem 1.25rem 2rem;
  }

  section.app-hero .container {
    flex-direction: column;
    gap: 2rem;
  }

  .app-hero__image {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .app-hero__title {
    font-size: 2rem;
  }

  section.pricing {
    padding: 2rem 1.25rem;
  }

  .pricing__plans {
    flex-direction: column;
    align-items: center;
  }

  .pricing__plan {
    max-width: 100%;
    width: 100%;
  }
}
