/* ===== SECTION 22: INFRASTRUCTURE SLIDER ===== */
.infra {
  padding: 80px 60px;
  background: #fff;
}

.infra__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.infra__title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.infra__subtitle {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.infra__arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.infra__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #1a1a1a;
}

.infra__arrow:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

.infra__slider-wrap {
  overflow: hidden;
}

.infra__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.infra__slider::-webkit-scrollbar {
  display: none;
}

.infra__slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.infra__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SECTION 23: FEATURES ===== */
.features {
  padding: 100px 80px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  background: #fff;
}

.features__left {
  flex: 0 0 380px;
}

.features__label {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6b6d3a;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.features__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.features__text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 32px;
}

.features__right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.features__card {
  background: #f8f8f6;
  border-radius: 16px;
  padding: 32px 28px;
}

.features__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107,109,58,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.features__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #6b6d3a;
}

.features__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.features__card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #777;
}

/* ===== SECTION 24: PRIVACY ===== */
.privacy {
  display: flex;
  width: 100%;
  min-height: 560px;
  background: #111;
}

.privacy__image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.privacy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.privacy__tag {
  position: absolute;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.2);
}

.privacy__tag--top {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.privacy__tag--left {
  top: 55%;
  left: 8%;
}

.privacy__tag--bottom {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.privacy__content {
  width: 50%;
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.privacy__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.privacy__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.privacy__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.privacy__list li {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  padding-left: 16px;
  position: relative;
}

.privacy__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #6b6d3a;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .infra {
    padding: 60px 40px;
  }

  .infra__title {
    font-size: 30px;
  }

  .infra__slide {
    flex: 0 0 calc(50% - 10px);
  }

  .features {
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
  }

  .features__left {
    flex: none;
  }

  .features__title {
    font-size: 32px;
  }

  .privacy {
    flex-direction: column;
  }

  .privacy__image,
  .privacy__content {
    width: 100%;
  }

  .privacy__image {
    min-height: 400px;
  }

  .privacy__content {
    padding: 50px 40px;
  }

  .privacy__title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .infra {
    padding: 40px 24px;
  }

  .infra__header {
    flex-direction: column;
    gap: 20px;
  }

  .infra__title {
    font-size: 24px;
  }

  .infra__slide {
    flex: 0 0 85%;
  }

  .features {
    padding: 40px 24px;
  }

  .features__title {
    font-size: 26px;
  }

  .features__right {
    grid-template-columns: 1fr;
  }

  .privacy__image {
    min-height: 300px;
  }

  .privacy__content {
    padding: 40px 24px;
  }

  .privacy__title {
    font-size: 24px;
  }

  .privacy__title br {
    display: none;
  }
}

@media (max-width: 480px) {
  .infra__title {
    font-size: 22px;
  }

  .infra__slide {
    flex: 0 0 90%;
  }

  .privacy__title {
    font-size: 22px;
  }
}
