/************ Download Page Styles ************/

.sec-2 {
  padding-top: 151px;
}

/************ Download Hero ************/

.download-hero {
  text-align: center;
  padding: 60px 0 80px;
}

.download-hero-header {
  font-size: 3.1rem;
  font-weight: 500;
  color: var(--text-color-dark);
  line-height: 70px;
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.download-hero-header span {
  font-weight: bold;
  color: var(--primary-color);
}

.download-hero-desc {
  margin: 0 auto;
  max-width: 600px;
}

/************ Platform Cards ************/

.download-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
  padding: 0 15px;
}

.platform-card {
  background: #fff;
  border: 2px solid #eeeff2;
  border-radius: 10px;
  padding: 25px 20px;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
}

.platform-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0px 30px 54px rgba(0, 153, 153, 0.15);
  transform: translateY(-10px);
}

.platform-icon-ctr {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 153, 153, 0.05);
  border-radius: 15px;
}

.platform-icon {
  width: 35px;
  height: 35px;
}

.platform-info {
  text-align: center;
}

.platform-name {
  font-size: 1.5rem;
  color: var(--text-color-dark);
  font-weight: 500;
  margin: 0 0 10px;
}

.platform-desc {
  color: var(--text-color-light);
  margin: 0 0 25px;
  font-size: 0.95rem;
}

.platform-features {
  text-align: left;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eeeff2;
  border-bottom: 1px solid #eeeff2;
}

.platform-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--text-color-light);
  font-size: 0.9rem;
}

.platform-feature-item:last-child {
  margin-bottom: 0;
}

.platform-feature-item span {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 12px;
  flex-shrink: 0;
}

.platform-feature-item p {
  margin: 0;
}

.platform-download-btns {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-download {
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  word-break: break-word;
  white-space: normal;
}

.btn-download-alt {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  flex: 1;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  box-sizing: border-box;
  word-break: break-word;
  white-space: normal;
}

/************ Download Guide ************/

.download-guide {
  margin-bottom: 60px;
}

.download-guide .section-text {
  margin-bottom: 40px;
  padding: 0 15px;
}

.guide-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.guide-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.guide-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, rgba(0, 153, 153, 0.2) 100%);
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0px 20px 40px rgba(0, 153, 153, 0.25);
}

.step-title {
  font-size: 1.3rem;
  color: var(--text-color-dark);
  font-weight: 500;
  margin: 0 0 10px;
}

.step-desc {
  color: var(--text-color-light);
  margin: 0;
  line-height: 24px;
}

/************ FAQ Section ************/

.faq-section {
  margin-bottom: 100px;
}

.faq-section .section-text {
  margin-bottom: 35px;
  padding: 0 15px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-item {
  background: #fff;
  border: 2px solid #eeeff2;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  transition: all 300ms ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0px 15px 30px rgba(0, 153, 153, 0.1);
}

.faq-question {
  font-size: 1.2rem;
  color: var(--text-color-dark);
  font-weight: 500;
  margin: 0 0 15px;
}

.faq-answer {
  color: var(--text-color-light);
  margin: 0;
  line-height: 28px;
}

.faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/************ Download CTA ************/

.download-cta {
  position: relative;
  margin-bottom: 60px;
  padding: 0 15px;
}

.download-cta-content {
  background: linear-gradient(135deg, var(--primary-color) 0%, #00cccc 100%);
  border-radius: 10px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0px 20px 40px rgba(0, 153, 153, 0.25);
}

.download-cta-header {
  color: #fff;
  margin: 0 0 15px;
}

.download-cta-desc {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 30px;
}

.download-cta-btn {
  background: #fff;
  color: var(--primary-color);
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 300ms ease;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

.download-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
  color: var(--primary-color);
}

/************ Responsive Styles ************/

@media screen and (max-width: 992px) {
  .download-platforms {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .guide-steps {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .guide-step:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sec-2 {
    padding-top: 100px;
  }

  .download-hero {
    padding: 30px 0 40px;
  }

  .download-hero-header {
    font-size: 1.8rem;
    line-height: 42px;
    padding: 0 15px;
  }

  .download-hero-desc {
    padding: 0 20px;
  }

  .download-platforms {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 15px;
  }

  .platform-card {
    padding: 20px 15px;
  }

  .platform-download-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-download,
  .btn-download-alt {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .download-cta-content {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .download-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 576px) {
  .sec-2 {
    padding-top: 80px;
  }

  .download-hero {
    padding: 25px 0 35px;
  }

  .download-hero-header {
    font-size: 1.6rem;
    line-height: 36px;
    margin-bottom: 0.8rem;
  }

  .download-hero-desc {
    font-size: 0.9rem;
    max-width: 100%;
    padding: 0 15px;
  }

  .platform-card {
    padding: 20px 15px;
  }

  .platform-name {
    font-size: 1.3rem;
  }

  .platform-desc {
    font-size: 0.85rem;
  }

  .platform-features {
    padding: 12px 0;
    margin: 15px 0;
  }

  .platform-feature-item {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-desc {
    font-size: 0.9rem;
    line-height: 22px;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
    line-height: 24px;
  }

  .download-cta-content {
    padding: 25px 15px;
    margin: 0 15px;
    border-radius: 8px;
  }

  .download-cta-header {
    font-size: 1.4rem;
  }

  .download-cta-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 400px) {
  .download-hero-header {
    font-size: 1.4rem;
    line-height: 32px;
  }

  .platform-icon-ctr {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .platform-icon {
    width: 28px;
    height: 28px;
  }

  .platform-name {
    font-size: 1.2rem;
  }

  .btn-download,
  .btn-download-alt {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}
