body {
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: white;
  margin: 0;
}

.section {
  padding: 120px 1rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .wrapper {
    flex-direction: row;
  }

  .wrapper.flex-row-reverse {
    flex-direction: row-reverse;
  }
}

.image img {
  width: 100%;
  max-width: 600px;
  max-width: 800px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
  gap: 1.5rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.desc {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1rem;
}

.btn-download {
  background: #2563eb;
  padding: 0.75rem 3rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-download:hover {
  background: #1e40af;
  transform: scale(1.05);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background-color: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid #4b5563;
  backdrop-filter: blur(6px);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: bold;
}

.nav a {
  margin-left: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #60a5fa;
}

.header-spacer {
  height: 5rem;
}

.highlight-cyan {
  color: #22d3ee;
}

.highlight-blue {
  color: #3b82f6;
}

/* Анимация появления */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
}
.footer {
  flex-shrink: 0;
  background-color: #111;
  padding: 50px 0;
  text-align: center;
  border-top: 1px solid #eff5ff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #6356c5;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .footer-link {
        font-size: 13px;
    }
    .footer-title {
        font-size: 14px;
    }
    .nav a:not(:first-child) {
        display: none;
    }

}
