.trust-section {
  background:
    linear-gradient(
      to bottom,
      #0a0a0a,
      #111111
    );
}

.trust-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.trust-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 35px;
}

.trust-content p {
  max-width: 850px;
  margin: auto auto 35px;
  font-size: 18px;
}

/* ===========================
   TRUST GRID
=========================== */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 60px 0;
}

.trust-card {
  padding: 38px 32px;
  border-radius: 30px;
  background: linear-gradient(145deg, #141414, #0c0c0c);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 200, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 200, 0, 0.05);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card h3 {
  color: var(--white);
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* ===========================
   QUESTION BOX
=========================== */

.trust-question {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 50px;

  background: rgba(255,200,0,.08);

  border: 1px solid rgba(255,200,0,.25);
  border-radius: 35px;

  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.4;
}

.trust-question span {
  color: var(--primary);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 992px) {

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-question {
    padding: 35px;
    font-size: 28px;
  }

  .trust-content p {
    font-size: 16px;
  }

}