/*==================================================
DOWNLOADS HERO
==================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}

.downloads-hero {
  padding: 180px 8% 120px;

  background: linear-gradient(135deg, #fff7f2, #ffffff);

  position: relative;

  overflow: hidden;

  text-align: center;
}

.downloads-hero::before {
  content: "";

  position: absolute;

  width: 420px;

  height: 420px;

  background: rgba(255, 107, 0, 0.08);

  border-radius: 50%;

  top: -180px;

  left: -120px;
}

.downloads-hero::after {
  content: "";

  position: absolute;

  width: 300px;

  height: 300px;

  background: rgba(255, 140, 50, 0.1);

  border-radius: 50%;

  bottom: -120px;

  right: -80px;
}

.downloads-hero-content {
  position: relative;

  z-index: 2;

  max-width: 800px;

  margin: auto;
}

.downloads-hero h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);

  color: #111827;

  margin: 20px 0;

  line-height: 1.2;
}

.downloads-hero p {
  font-size: 1.15rem;

  color: #555;

  line-height: 1.9;

  margin-bottom: 40px;
}

.download-buttons {
  display: flex;

  justify-content: center;

  gap: 20px;

  flex-wrap: wrap;
}

/*==================================================
APP EXPERIENCE
==================================================*/

.app-experience {
  padding: 120px 8%;

  background: #ffffff;
}

.app-layout {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 80px;

  align-items: center;
}

.app-info h2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);

  color: #111827;

  margin: 20px 0;
}

.app-info p {
  color: #666;

  line-height: 1.9;

  margin-bottom: 40px;
}

.feature-list {
  display: flex;

  flex-direction: column;

  gap: 25px;
}

.feature-item {
  display: flex;

  align-items: flex-start;

  gap: 20px;
}

.feature-icon {
  width: 70px;

  height: 70px;

  background: #fff3eb;

  color: #ff6b00;

  border-radius: 18px;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 2rem;

  flex-shrink: 0;
}

.feature-item h3 {
  color: #111827;

  margin-bottom: 8px;
}

.phone-preview {
  display: flex;

  justify-content: center;
}

.phone-frame {
  width: 280px;

  height: 560px;

  background: linear-gradient(135deg, #111827, #2d3748);

  border-radius: 45px;

  color: #ffffff;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);

  border: 8px solid #222;
}

.phone-frame {
  font-size: 5rem;
}

.phone-frame p {
  margin-top: 25px;

  font-size: 1.2rem;

  color: #ffffff;
}

/*==================================================
DOWNLOAD STATISTICS
==================================================*/

.download-stats {
  padding: 110px 8%;

  background: #fff8f3;
}

.stats-wrapper {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;
}

.stat-item {
  text-align: center;

  padding: 45px 20px;

  border-radius: 24px;

  background: #ffffff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.stat-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 30px 60px rgba(255, 107, 0, 0.15);
}

.stat-item h2 {
  font-size: 3rem;

  color: #ff6b00;

  margin-bottom: 12px;
}

.stat-item p {
  color: #666;

  font-size: 1.05rem;
}

/*==================================================
FINAL DOWNLOAD CTA
==================================================*/

.download-cta {
  padding: 130px 8%;

  background: linear-gradient(135deg, #ff6b00, #ff9d42);

  text-align: center;

  color: #ffffff;
}

.download-cta-content {
  max-width: 850px;

  margin: auto;
}

.download-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);

  margin: 20px 0;

  line-height: 1.2;
}

.download-cta p {
  font-size: 1.1rem;

  line-height: 1.9;

  margin-bottom: 50px;

  opacity: 0.95;
}

.store-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 25px;
}

.store-btn {
  display: flex;

  align-items: center;

  gap: 18px;

  background: #ffffff;

  color: #111827;

  text-decoration: none;

  padding: 18px 28px;

  border-radius: 18px;

  transition: 0.35s;

  min-width: 240px;
}

.store-btn:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.store-icon {
  font-size: 2rem;
}

.store-btn small {
  display: block;

  color: #666;

  font-size: 0.8rem;

  letter-spacing: 1px;
}

.store-btn strong {
  display: block;

  font-size: 1.15rem;

  margin-top: 4px;
}

/*==================================================
DOWNLOADS RESPONSIVE - TABLET
==================================================*/

@media (max-width: 992px) {
  .downloads-hero {
    padding: 150px 6% 100px;
  }

  .downloads-hero h1 {
    font-size: 3rem;
  }

  .app-layout {
    grid-template-columns: 1fr;

    gap: 60px;

    text-align: center;
  }

  .feature-item {
    justify-content: center;

    text-align: left;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*==================================================
DOWNLOADS RESPONSIVE - MOBILE
==================================================*/

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;

    padding: 0 20px;
  }

  .downloads-hero {
    padding: 120px 0 80px;
  }

  .downloads-hero h1 {
    font-size: 2.4rem;
  }

  .downloads-hero p {
    font-size: 1rem;
  }

  .download-buttons {
    flex-direction: column;

    align-items: center;
  }

  .app-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .feature-item {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }

  .phone-frame {
    width: 220px;

    height: 450px;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    flex-direction: column;

    align-items: center;
  }

  .store-btn {
    width: 100%;

    max-width: 320px;

    justify-content: center;
  }
}
