/* =========================================================
   Pur3ity — Trust sections (supporting styles)
   Everything is scoped under .t-trust so it cannot collide
   with styles.css. Reuses the shared CSS variables
   (--navy, --teal, --green, --line, --radius, --shadow, etc.)
   defined in styles.css. Load styles.css FIRST, then this file.
   ========================================================= */

.t-trust{ color: var(--ink); }
.t-trust .t-sub{ max-width: 620px; margin: 0 auto 30px; }
.t-trust .t-cta-row{ margin-top: 30px; }

/* Small "illustrative / sample" note used in several sections */
.t-trust .t-illustrative{
  font-size: .78rem;
  color: var(--muted);
  margin-top: 20px;
  font-style: italic;
}
.t-trust .t-illustrative-inline{
  font-style: italic;
  color: var(--muted);
}

/* ---------- (a) Stats / credibility bar ---------- */
.t-trust .t-stats{ background: var(--navy); padding: 40px 0; }
.t-trust .t-stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.t-trust .t-stat{
  text-align: center;
  padding: 8px 10px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.t-trust .t-stat:first-child{ border-left: 0; }
.t-trust .t-stat-num{
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.05;
}
.t-trust .t-stat .t-plus{ color: #ffffff; }
.t-trust .t-stat-label{
  margin-top: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: #cccccc;
}
.t-trust .t-stats .t-illustrative{ color: #999999; }

/* ---------- (b) How it works — 4 steps ---------- */
.t-trust .t-steps{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.t-trust .t-step{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.t-trust .t-step-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.t-trust .t-step-num{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  display: grid; place-items: center;
}
.t-trust .t-step-ico{
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal);
  display: grid; place-items: center;
}
.t-trust .t-step h3{ margin-bottom: .35em; }

/* ---------- (c) What we test for ---------- */
.t-trust .t-tests{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
/* 7 cards: let the last ones flow naturally on the 2-row grid */
.t-trust .t-test{ padding: 20px; }
.t-trust .t-test-head{ margin-bottom: 10px; }
.t-trust .t-test-tag{
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue);
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  padding: 3px 9px;
  border-radius: 99px;
}
.t-trust .t-test h3{ margin-bottom: .35em; }
.t-trust .t-test p{ margin-bottom: 0; color: var(--muted); font-size: .95rem; }

/* ---------- (d) Testimonials ---------- */
.t-trust .t-quotes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.t-trust .t-quote{ margin: 0; padding: 24px; display: flex; flex-direction: column; }
.t-trust .t-stars{ color: #111111; letter-spacing: 2px; font-size: .95rem; margin-bottom: 10px; }
.t-trust .t-quote blockquote{
  margin: 0 0 18px;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
}
.t-trust .t-quote figcaption{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: .95rem;
}
.t-trust .t-avatar{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal);
  font-weight: 800;
  font-size: .85rem;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* ---------- (e) Partner / brand logo strip ---------- */
.t-trust .t-logos-cap{ margin-bottom: 22px; color: var(--muted); }
.t-trust .t-logos{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 34px;
}
.t-trust .t-logo{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #9aa8b4;            /* greyed out */
  filter: grayscale(1);
  letter-spacing: -.01em;
  opacity: .85;
  transition: color .2s ease, opacity .2s ease;
}
.t-trust .t-logo b{ font-weight: 800; }
.t-trust .t-logo svg{ color: #9aa8b4; }
.t-trust .t-logo:hover{ color: var(--navy); opacity: 1; }

/* ---------- (f) Trust & credentials badges ---------- */
.t-trust .t-badges{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}
.t-trust .t-badge{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  width: 188px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.t-trust .t-badge-shield{ display: block; line-height: 0; }
.t-trust .t-badge-label{
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.3;
}

/* ---------- (g) Honesty callout ---------- */
.t-trust .t-honesty{
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  padding: 32px 34px;
}
.t-trust .t-honesty h2{ color: var(--navy); text-align: center; }
.t-trust .t-honesty-cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 22px;
}
.t-trust .t-honesty-col{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.t-trust .t-honesty-col h3{ margin-bottom: .6em; }
.t-trust .t-honesty-col ul{
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 12px;
}
.t-trust .t-honesty-col li{
  position: relative;
  padding-left: 28px;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.5;
}
.t-trust .t-honesty-col li::before{
  position: absolute;
  left: 0; top: -1px;
  font-weight: 800;
  font-size: 1rem;
}
.t-trust .t-does h3{ color: var(--green); }
.t-trust .t-does li::before{ content: "✓"; color: var(--green); }
.t-trust .t-doesnt h3{ color: var(--amber); }
.t-trust .t-doesnt li::before{ content: "—"; color: var(--amber); }
.t-trust .t-honesty-foot{ margin: 22px 0 0; text-align: center; color: var(--muted); }

/* ---------- (h) Final CTA band ---------- */
.t-trust .t-cta-sec{ padding: 0 0 60px; }
.t-trust .t-cta{
  background: linear-gradient(120deg, var(--navy), #222222);
  border-radius: 18px;
  padding: 46px 40px;
  text-align: center;
  color: #fff;
}
.t-trust .t-cta h2{ color: #fff; }
.t-trust .t-cta p{
  color: #cccccc;
  max-width: 560px;
  margin: 0 auto 8px;
  font-size: 1.05rem;
}
.t-trust .t-cta-btns{ justify-content: center; }
/* ghost button needs to read on the dark band */
.t-trust .t-ghost-onnavy{
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.t-trust .t-ghost-onnavy:hover{
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .t-trust .t-tests{ grid-template-columns: repeat(2, 1fr); }
  .t-trust .t-steps{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px){
  .t-trust .t-stat-grid{ grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .t-trust .t-stat{ border-left: 0; }
  .t-trust .t-quotes{ grid-template-columns: 1fr; }
  .t-trust .t-honesty-cols{ grid-template-columns: 1fr; }
  .t-trust .t-stat-num{ font-size: 2.1rem; }
}
@media (max-width: 560px){
  .t-trust .t-tests{ grid-template-columns: 1fr; }
  .t-trust .t-steps{ grid-template-columns: 1fr; }
  .t-trust .t-badge{ width: 100%; max-width: 320px; }
}
