.download-hero {
  padding-top: 80px;
  padding-bottom: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.download-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.download-hero__content h1 {
  margin-bottom: var(--space-lg);
}

.download-hero__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.download-hero__image {
  display: flex;
  justify-content: center;
}

.download-hero__image img {
  max-width: 300px;
  width: 100%;
}

.store-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.store-badge {
  display: inline-block;
  transition: opacity 0.2s;
}

.store-badge img {
  display: block;
  border: none;
  outline: none;
}

.store-badge:hover {
  opacity: 0.8;
}

.download-features {
  padding: var(--space-3xl) 0;
}

.download-features .card {
  text-align: center;
}

@media (max-width: 768px) {
  .download-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .download-hero__image {
    order: -1;
  }

  .download-hero__image img {
    max-width: 220px;
  }

  .store-badges {
    justify-content: center;
  }
}
