/* Dedicated App Landing Page Styles */
.app-landing-page {
  background: #fdfdfd;
}

/* Override global main styles from style.css */
.app-landing-page main {
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  padding-top: 80px !important; /* Keep the top space for fixed elements */
}

.product-hero {
  position: relative;
  padding: 40px 20px 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  text-align: center;
  overflow: hidden;
}

.product-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.product-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.product-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-family: 'Quicksand', 'Montserrat', sans-serif;
}

.product-hero p {
  font-size: 1.4rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
  margin-top: 0;
  color: #4a90e2;
  font-size: 1.3rem;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.quality-commitment {
  background: linear-gradient(to right, #f0f7ff, #ffffff);
  padding: 50px;
  border-radius: 24px;
  margin: 80px 0;
  border-left: 8px solid #4a90e2;
}

.video-showcase {
  margin: 60px 0;
  text-align: center;
}

.video-showcase h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.video-showcase p {
  color: #666;
  margin-bottom: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quality-commitment h3 {
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.quality-commitment ul {
  padding-left: 20px;
}

.quality-commitment li {
  margin-bottom: 15px;
}

.download-section {
  text-align: center;
  padding: 80px 40px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 80px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.download-section h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Quicksand', sans-serif;
}

.play-badge-large {
  height: 90px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-badge-large:hover {
  transform: scale(1.1) rotate(2deg);
}

.back-to-home {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.back-to-home a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.back-to-home a:hover {
  color: #357abd;
}

@media (max-width: 768px) {
  .product-hero h2 {
    font-size: 2.5rem;
  }
  .product-hero p {
    font-size: 1.2rem;
  }
  .product-hero {
    padding-top: 140px;
  }
  .quality-commitment {
    padding: 30px;
  }
}
