/* App Page Styles */
.app-hero {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  padding: 8rem 2rem 5rem;
  margin-top: 70px;
  color: white;
}

.app-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-hero-text .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.app-hero-text .gradient-text {
  color: var(--dark-bg);
}

.app-hero-text .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--text-dark);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow-lg);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.download-btn svg {
  color: var(--primary-orange);
}

.download-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.download-store {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.app-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.app-stat {
  display: flex;
  flex-direction: column;
}

.app-stat strong {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.app-stat span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.app-hero-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* App Features */
.app-features {
  padding: 5rem 2rem;
  background: white;
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-showcase-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
  border-radius: 15px;
  transition: transform 0.3s;
}

.feature-showcase-item:hover {
  transform: translateY(-10px);
}

.feature-showcase-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-showcase-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-showcase-item p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Screenshots */
.screenshots {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.screenshot-card {
  text-align: center;
}

.screenshot-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  margin-bottom: 1rem;
}

.screenshot-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* How App Works */
.how-app-works {
  padding: 5rem 2rem;
  background: white;
}

.app-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.app-step {
  text-align: center;
  position: relative;
}

.app-step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.app-step-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 179, 71, 0.1));
  border: 3px solid var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-orange);
}

.app-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.app-step p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* App Reviews */
.app-reviews {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.03), rgba(255, 179, 71, 0.03));
}

.app-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.app-review-card {
  padding: 2rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-review-card .reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.app-review-card .reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.app-review-card .stars {
  color: var(--primary-yellow);
  font-size: 1.1rem;
}

.app-review-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .app-hero {
    padding: 6rem 1rem 3rem;
  }

  .app-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app-hero-text .hero-title {
    font-size: 2.5rem;
  }

  .download-buttons {
    flex-direction: column;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .app-stats {
    justify-content: space-around;
    width: 100%;
  }
}
