/* ============================================================
   TRUSTED PARTNER SECTION
   Full-bleed dark image, circular ring stats
============================================================ */
.trusted {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* Background */
.trusted-bg { position: absolute; inset: 0; z-index: 0; }
.trusted-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.trusted-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11,31,58,0.97) 0%,
    rgba(11,31,58,0.88) 55%,
    rgba(11,31,58,0.80) 100%
  );
}
.trusted-bg-noise {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,194,168,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Layout ── */
.trusted-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============================================================
   LEFT — CONTENT
============================================================ */
.trusted-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.trusted-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.trusted-label-line {
  display: inline-block;
  width: 28px; height: 2px;
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  border-radius: 2px;
  flex-shrink: 0;
}

.trusted-heading {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.trusted-heading-accent {
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
}

.trusted-body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

/* Service pills */
.trusted-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trusted-pills span {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 13px;
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}
.trusted-pills span:hover {
  background: rgba(0,194,168,0.15);
  border-color: rgba(0,194,168,0.35);
  color: #00C2A8;
}

.trusted-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00C2A8;
  background: var(--secondary, #00C2A8);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(0,194,168,0.3);
}
.trusted-cta:hover {
  background: #00a891;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,194,168,0.4);
}
.trusted-cta svg { transition: transform 0.2s; }
.trusted-cta:hover svg { transform: translateX(4px); }

/* ============================================================
   RIGHT — CIRCULAR RING STATS
============================================================ */
.trusted-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.trusted-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Ring */
.trusted-stat-ring {
  position: relative;
  width: 120px; height: 120px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.trusted-stat:hover .trusted-stat-ring { transform: scale(1.06); }

.trusted-stat-svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.trusted-stat-track {
  fill: none;
  stroke: rgba(255,255,255,0.07);
  stroke-width: 6;
}
.trusted-stat-fill {
  fill: none;
  stroke: #00C2A8;
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.trusted-stat-fill--alt {
  stroke: rgba(0,194,168,0.5);
}

/* Center number */
.trusted-stat-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.trusted-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trusted-stat-plus {
  font-size: 18px;
  font-weight: 700;
  color: #00C2A8;
  color: var(--secondary, #00C2A8);
  align-self: flex-start;
  margin-top: 4px;
}

.trusted-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .trusted { padding: 72px 0; }
  .trusted-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .trusted-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .trusted-stat-ring { width: 100px; height: 100px; }
  .trusted-stat-num { font-size: 22px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  .trusted { padding: 56px 0; }
  .trusted-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trusted-stat-ring { width: 110px; height: 110px; }
  .trusted-cta { width: 100%; justify-content: center; }
}