/* === Fullwidth Credibility Section (User Benefits) === */
.snet-fullwidth .user-benefits {
  padding: clamp(3rem, 6vw, 6rem) 5%;
  background: linear-gradient(135deg, #f9fff9 0%, #eaf4ff 100%);
  margin: 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* Grid Layout */
.benefits-content {
  display: grid;
  max-width: 1140px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: start;
  box-sizing: border-box;
}

/* Image */
.benefits-img {
  text-align: center;
  max-width: 100%;
}
.benefits-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Text Section */
.bold-text-6 {
  font-family: 'Titillium Web', sans-serif;
  color: #000248;
  font-size: clamp(2rem, 5vw, 3.125rem);
  line-height: clamp(2.5rem, 6vw, 3.75rem);
font-weight: bold;
  letter-spacing: 0.25px;
  max-width: 477px;
  margin: 0 auto;
}
.heading-4 {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}
.heading-4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(40px, 6vw, 60px);
  height: 3px;
  background: #00e291;
  border-radius: 2px;
}
.text-block-8 {
  max-width: 477px;
  font-family: Roboto, sans-serif;
  color: #414661;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: clamp(1.5rem, 3vw, 1.875rem);
  letter-spacing: -0.2px;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
  margin-left: auto;
  margin-right: auto;
}

/* Benefit Items */
.benefit-item {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 0.75rem);
  background: #fff;
  border-radius: 8px;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
}
.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.benefit-item i {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #00c853;
  flex-shrink: 0;
}
.benefit-item span {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: #222;
  line-height: 1.5;
}

/* === Responsive Media Queries (Bootstrap-style tiers) === */

/* Extra small: <576px */
@media (max-width: 575.98px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 60px 15px;
    text-align: center;
  }
  .bold-text-6 {
    font-size: clamp(1.8rem, 5vw, 2.125rem);
    line-height: clamp(2.2rem, 6vw, 2.75rem);
  }
  .benefit-item {
    padding: 10px 14px;
  }
}

/* Small: ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .benefits-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .bold-text-6 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }
}

/* Medium: ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 80px 20px;
    text-align: center;
  }
  .bold-text-6 {
    font-size: clamp(2.2rem, 5vw, 2.625rem);
    line-height: clamp(2.6rem, 6vw, 3.25rem);
  }
}

/* Large: ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .benefits-content {
    grid-template-columns: 1.25fr 1fr;
  }
}

/* Extra large: ≥1200px */
@media (min-width: 1200px) {
  .benefits-content {
    grid-template-columns: 1.25fr 1fr;
  }
}

/* AOS reset for mobile */
@media (max-width: 768px) {
  [data-aos] {
    transition-delay: 0ms !important;
  }
}
