/* =========================
   TRUTH SECTION (How it works)
   + Inter font (same as .mis)
========================= */

/* Inter everywhere in this section */
.truth, .truth *{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.truth{
  padding: 72px 0;
}

.truth-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.truth-title{
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 24px;
  color: #0f172a;
}

.truth-layout{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}

/* LEFT GRID */
.truth-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.truth-card{
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(2, 6, 23, .06);
}

.truth-icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, .10);
  color: #2563eb;
  margin-bottom: 10px;
}

.truth-card-title{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.truth-card-text{
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(15, 23, 42, .72);
}

/* RIGHT IMAGE PANEL */
.truth-right{
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: radial-gradient(1200px 500px at 10% 10%, rgba(37,99,235,.10), transparent 55%),
              linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.00));
  box-shadow: 0 18px 44px rgba(2, 6, 23, .08);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 18px;
}

.truth-right-img{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 38px rgba(2,6,23,.18));
  transform: translateZ(0);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .truth-layout{
    grid-template-columns: 1fr;
  }
  .truth-right{
    order: 2;
  }
  .truth-right-img{
    max-height: 360px;
  }
}

@media (max-width: 640px){
  .truth-title{
    font-size: 30px;
  }
  .truth-grid{
    grid-template-columns: 1fr;
  }
}
