/* 											Блок 1 - Баннер											 */
.valoper-banner-section {
  width: 100%;
  aspect-ratio: 2884 / 1024;
  background-image: url("../images/jur/valoper-banner.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.valoper-banner-overlay {
  width: 50%;
  height: 100%;
  background-color: rgba(255, 255, 255, 1); /* светлый полупрозрачный блок для читаемости */
  display: flex;
  align-items: center;
  padding: 3rem;
  box-sizing: border-box;
}

.valoper-banner-content {
  max-width: 500px;
}

.valoper-banner-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: bold;
}

.valoper-banner-text {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}
.valoper-banner-button {
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #aa3e3e, #712727);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.valoper-banner-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #c44a4a, #8a2f2f);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .valoper-banner-section {
    aspect-ratio: unset;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.5rem;
    background-size: cover;
  }

  .valoper-banner-overlay {
    width: 100%;
    height: auto;
    padding: 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.92);
  }

  .valoper-banner-content {
    max-width: 100%;
  }

  .valoper-banner-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .valoper-banner-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .valoper-banner-button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}







/* 											Блок 2 - Вступительная информация											 */
.valoper-intro-wrapper {
  background-color: #f3e7e4; /* тёплый светло-красноватый, но не вырвиглаз */
  padding: 4rem 1.5rem;
}

.valoper-intro-container {
  max-width: 1000px;
  margin: 0 auto;
}

.valoper-intro-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  color: #1a1a1a;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.valoper-intro-block {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.valoper-intro-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.valoper-intro-text {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.valoper-intro-divider {
  height: 2px;
  width: 80px;
  background: #b9a3a0;
  margin: 2rem 0;
  border-radius: 1px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: all 0.6s ease;
}

.valoper-intro-visible {
  opacity: 1 !important;
  transform: none !important;
}
/* 											Блок 3 - Конверсионные операции и валютный контроль											 */
.valoper-conv-wrapper {
  background-color: #fffdfc;
  padding: 5rem 2rem;
}

.valoper-conv-container {
  max-width: 1100px;
  margin: 0 auto;
}

.valoper-conv-title {
  font-size: 2.25rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1f1f1f;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.valoper-conv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.valoper-conv-card {
  background: #333;
  color: #F9F9F9;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.valoper-conv-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.valoper-conv-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #a33e3e, #fff);
  margin: 4rem auto;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: all 0.6s ease;
}

.valoper-conv-control {
  background: #fcfafa;
  padding: 2.5rem;
  border-left: 6px solid #a33e3e;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #333;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.valoper-conv-visible {
  opacity: 1 !important;
  transform: none !important;
}
/* 											Блок 4 - Аккордеон									 */
.valoper-clue {
	padding-bottom: 100px;
}
/* 											Блок 5 - Доп информация									 */
.valoper-info-wrapper {
  background-color: #f5eaea; /* красновато-белый фон */
  padding: 5rem 2rem;
}

.valoper-info-container {
  max-width: 1000px;
  margin: 0 auto;
}

.valoper-info-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #301010; /* чуть темнее, под стиль фона */
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.valoper-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.valoper-info-box {
  background-color: #ffffff;
  border: 1px solid #dfcaca;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(100, 50, 50, 0.05);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.valoper-info-box::before,
.valoper-info-box::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #aa4a4a;
}

.valoper-info-box::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.valoper-info-box::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.valoper-info-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #792424;
}

.valoper-info-box p,
.valoper-info-box ul {
  font-size: 1.05rem;
  color: #3a1d1d;
  line-height: 1.7;
}

.valoper-info-box ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.valoper-info-visible {
  opacity: 1 !important;
  transform: none !important;
}

