.download-hero {
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.download-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .download-hero-inner {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
}

.download-version-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 204, 102, 0.1);
  border: 1px solid rgba(0, 204, 102, 0.3);
  color: var(--color-success);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.download-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.download-hero-sub {
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.download-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 1024px) {
  .download-cta-group {
    justify-content: flex-start;
  }
}

.download-phone-img {
  max-width: 260px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 50px rgba(245, 197, 24, 0.15));
}

/* ========== APP DETAILS ========== */
.app-details {
  background: var(--color-surface);
  padding: 4rem 0;
}

.app-details-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .app-details-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.app-details-table-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.app-details-table {
  width: 100%;
  border-collapse: collapse;
}

.app-details-table tr:last-child td {
  border-bottom: none;
}

.app-details-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.app-details-table td:first-child {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 500;
  width: 40%;
}

.app-details-table td:last-child {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ========== INSTALL STEPS ========== */
.install-steps {
  background: var(--color-bg);
  padding: 5rem 0;
}

.step-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.step-card-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border-radius: 50%;
  color: #0a0a0f;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-gold);
}

.step-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.step-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.step-card-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ========== FEATURES LIST ========== */
.features-new {
  background: var(--color-surface);
  padding: 4rem 0;
}

.features-new-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .features-new-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-new-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  transition: var(--transition);
}

.feature-new-item:hover {
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: var(--shadow-gold);
}

.feature-new-check {
  width: 28px;
  height: 28px;
  background: rgba(0, 204, 102, 0.1);
  border: 1px solid rgba(0, 204, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-success);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.feature-new-text {
  font-size: 0.88rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ========== DOWNLOAD CTA FINAL ========== */
.download-cta-final {
  background: linear-gradient(135deg, #0a0000, #180408, #0a0000);
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
