* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #3ad734, #bef28a);
  color: white;
  padding: 20px;
  overflow-x: hidden;
}

header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.login-btn {
  background: white;
  color: black;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

main {
  max-width: 1200px;
  margin: 0 auto;
}

.credit-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  gap: 40px;
}

.left {
  flex: 1 1 450px;
  max-width: 500px;
}

.left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: left;
  word-break: break-word;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 20px;
}

.cta-btn {
  background: #00c853;
  color: white;
  padding: 18px 36px;
  border: none;
  font-size: 22px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #00b044;
}

.right {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.right img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  margin-top: 40px; /* ⬅️ для десктопа */
}

/* ==== Кастомный слайдер ===== */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: white;
  border-radius: 10px;
  outline: none;
  padding: 0;
  margin: 10px 0 20px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00c853;
  cursor: pointer;
  margin-top: -3px; /* ✅ центр по твоей корректировке */
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00c853;
  cursor: pointer;
  border: none;
  margin-top: -3px;
}

/* ==== Шаги ==== */
.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  padding: 10px;
}

.step h3 {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: bold;
}

.step button {
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: bold;
  background: white;
  color: #00c853;
  border: none;
  cursor: pointer;
}

.step p {
  font-size: 18px;
  opacity: 0.95;
}

/* ==== Footer ==== */
footer {
  text-align: center;
  font-size: 14px;
  color: white;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

footer strong {
  font-size: 18px;
}

.footer-text {
  margin-top: 10px;
  color: #e0ffe3;
  font-size: 13px;
}

/* ==== Языковой переключатель ==== */
.desktop-break br {
  display: inline;
}

/* ==== Мобильная адаптация ==== */
@media screen and (max-width: 768px) {
  .credit-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

   .right img {
    max-width: 80%;
    display: block;
    margin: 0 auto;
    transform: translateY(-120px);
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  nav {
    justify-content: center;
    margin-top: 10px;
  }

  .cta-btn {
    width: 100%;
    font-size: 20px;
  }

  .left, .right {
    max-width: 100%;
  }

  .left h2 {
    font-size: 28px;
    text-align: center;
  }

  .desktop-break br {
    display: none;
  }
}
.license-link {
  color: #3366cc;
  font-weight: bold;
  font-size: 8px; /* ⬅️ Сделали меньше */
  text-decoration: none;
  text-align: center;
  display: inline-block;
  line-height: 1.4;
}
.footer-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-link,
.footer-link-right {
  font-size: 15px;
  color: #3366cc;
  text-decoration: none;
  line-height: 1.5;
  font-weight: bold;
  text-align: left;
}

