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

.download-hero {
  padding-bottom: 40px;
}

.download-section {
  padding: 0 0 100px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.download-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}

.download-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.download-card.featured {
  border-color: rgba(232,88,74,0.3);
  background: linear-gradient(180deg, rgba(232,88,74,0.05) 0%, var(--bg2) 50%);
}

.download-card.coming-soon {
  opacity: 0.6;
}

.download-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.download-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.download-icon.web {
  background: rgba(232,88,74,0.1);
  color: var(--accent);
}

.download-icon.android {
  background: rgba(14,201,172,0.1);
  color: var(--teal);
}

.download-icon.ios {
  background: rgba(255,184,77,0.1);
  color: var(--gold);
}

.download-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.download-card > p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 20px;
}

.download-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.download-details span {
  font-size: 12px;
  color: var(--text3);
}

.btn-full {
  width: 100%;
}

.download-note {
  font-size: 12px;
  color: var(--text3);
  margin-top: 12px;
  line-height: 1.5;
}

/* Install guide */
.install-guide {
  padding: 80px 0;
  background: var(--bg2);
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .download-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
