.gyra-benefits-section {
  padding: 96px 24px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.gyra-benefits-header {
  margin-bottom: 64px;
}

.gyra-benefits-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 900;
  margin: 0 0 16px;
  color: #ffffff;
}

.gyra-benefits-subtitle {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.gyra-benefits-note {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  margin: 8px 0 0;
}

.gyra-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gyra-benefit-card {
  padding: 32px;
  border-radius: 24px;
  background: rgba(51, 25, 34, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(238, 43, 108, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.gyra-benefit-card:hover {
  border-color: #ee2b6c;
  transform: translateY(-4px);
}

.gyra-benefit-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 43, 108, 0.2);
  color: #ee2b6c;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.gyra-benefit-card:hover .gyra-benefit-icon-wrap {
  background: #ee2b6c;
  color: #ffffff;
}

.gyra-benefit-icon {
  font-size: 22px;
  line-height: 1;
}

.gyra-benefit-title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.gyra-benefit-text {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

@media (max-width: 991px) {
  .gyra-benefits-title {
    font-size: 36px;
  }

  .gyra-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gyra-benefits-section {
    padding: 72px 24px;
  }

  .gyra-benefits-title {
    font-size: 30px;
  }

  .gyra-benefits-grid {
    grid-template-columns: 1fr;
  }
}
