.faq-block {
  max-width: 1170px;
  margin: 50px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.faq-block h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.faq-item label:hover {
  background: #efefef;
}

.faq-item label::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.2s;
}

.faq-item input:checked + label::after {
  content: '-';
}

.faq-content {
  display: none;
  padding: 0 16px 16px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.faq-item input:checked + label + .faq-content {
  display: block;
}

.why-light-wrapper {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 60px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-top: 40px;
  margin-bottom: 40px;
}

.why-light-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.why-light-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-light-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  width: 240px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInBlock 1s forwards;
}

.why-light-card:nth-child(2) { animation-delay: 0.2s; }
.why-light-card:nth-child(3) { animation-delay: 0.4s; }
.why-light-card:nth-child(4) { animation-delay: 0.6s; }

.why-light-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

.why-light-number {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.why-light-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Плавная анимация появления */
@keyframes fadeInBlock {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность */
@media (max-width: 991px) {
  .why-light-card {
    width: 45%;
  }
}
@media (max-width: 575px) {
  .why-light-card {
    width: 100%;
  }
}






.buy-process-flow {
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
}

.buy-process-title {
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.buy-process-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.buy-process-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.process-step {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  max-width: 240px;
  flex: 1 1 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInStep 1s forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.step-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  background: #0071e3;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,113,227,0.25);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.process-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Стрелки */
.process-arrow {
  font-size: 28px;
  color: #999;
  flex-shrink: 0;
}

/* Адаптивность */
@keyframes fadeInStep {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .buy-process-line {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}