﻿.download-hero {
  background: #0f172a;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  position: relative;
}

  .download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(40, 51, 111, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
  }

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-content {
  color: white;
}

.download-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.download-subtitle {
  font-size: 1.5rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.license-check {
  color: #e2e8f0;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.license-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
}

  .license-link:hover {
    color: #f8fafc;
  }

.download-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-bottom: 2rem;
}

  .download-btn:hover {
    background: #f8fafc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

.download-info {
  color: #e2e8f0;
  font-size: 0.95rem;
  line-height: 1.6;
}

  .download-info p {
    margin: 0.25rem 0;
  }

.windows-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.download-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

  .download-visual img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

/* Footer override for download page */
.download-page .footer {
  background: white;
  border-top: 1px solid #e5e7eb;
}

  .download-page .footer::before {
    display: none;
  }

  .download-page .footer .container {
    position: static;
  }

  .download-page .footer p {
    color: #6b7280;
  }

.download-page .footer-logo-path {
  fill: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .download-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .download-title {
    font-size: 2.5rem;
  }

  .download-subtitle {
    font-size: 1.25rem;
  }
}