/* =========================
   SECTION BASE
========================= */
.snet-fullwidth .credibility-section {
  background: linear-gradient(135deg, #f9fff9 0%, #f0f4ff 100%);
  color: #222;
  box-sizing: border-box;
  padding: clamp(3rem, 6vw, 6rem) 0;
  overflow: hidden;
}

/* =========================
   TYPOGRAPHY
========================= */
.credibility-section .section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  color: #0f5ea8;
  margin-bottom: 0.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.credibility-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #00e291;
  border-radius: 2px;
}

.section-description {
  max-width: 700px;
  margin: 1rem auto 0.75rem;
  color: #1f2937;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.section-paragraph {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #1f2937;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.6;
}

.section-tagline {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #0f5ea8;
}

/* =========================
   GRID SAFETY
========================= */
.credibility-section .row,
.credibility-section .row .col-12,
.credibility-section .row .col-md-6,
.credibility-section .row .col-lg-3 {
  overflow: visible;
}

/* =========================
   CARDS
========================= */
.credibility-card {
  background: linear-gradient(135deg, #fff, #f9fafc);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform .25s ease, box-shadow .25s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 100%;
}

.credibility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

/* ICONS */
.credibility-card i,
.value-card i {
  font-size: 1.8rem;
  color: #494e9f;
  margin-bottom: 0.75rem;
}

/* NUMBERS */
.credibility-number {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #004aad;
  margin-bottom: 0.5rem;
}

/* LABEL */
.credibility-label {
  font-size: 0.95rem;
  color: #555;
}

/* =========================
   VALUE CARDS
========================= */
.value-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: clamp(1.2rem, 2vw, 2rem);
  transition: transform .25s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

/* =========================
   ANIMATIONS
========================= */
.credibility-number.finished {
  animation: popOnce .4s ease;
}

@keyframes popOnce {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); color: #00e291; }
  100% { transform: scale(1); }
}

.credibility-number.animating {
  text-shadow: 0 0 8px rgba(0, 226, 145, 0.6);
}

/* =========================
   RESPONSIVE FIXES
========================= */
@media (max-width: 768px) {
  .credibility-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
