/* ═══════════════════════════════════════
   PELADANG — TRUST PAGE STYLES
   Shared styles for /about/, /contact/, /free/
   ═══════════════════════════════════════ */

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-actions .btn,
.trust-actions .cta-button {
  text-decoration: none;
}

.trust-proof-strip,
.trust-card-grid,
.contact-grid,
.free-faq-grid {
  display: grid;
  gap: 18px;
  margin: 2rem 0;
}

.trust-proof-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card-grid,
.free-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-proof-card,
.trust-card,
.contact-card,
.free-faq-card,
.trust-note {
  background: #fff;
  border: 1px solid var(--gray200);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
}

.trust-proof-card {
  padding: 20px 22px;
  background: linear-gradient(145deg, #fff, var(--gray50));
}

.trust-proof-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--f600);
  margin-bottom: 10px;
}

.trust-proof-card strong {
  display: block;
  font-size: 20px;
  color: var(--t900);
  line-height: 1.2;
  margin-bottom: 8px;
}

.trust-proof-card span {
  display: block;
  font-size: 14px;
  color: var(--t500);
  line-height: 1.65;
}

.trust-card,
.contact-card,
.free-faq-card {
  padding: 22px 22px 24px;
}

.trust-card h3,
.contact-card h3,
.free-faq-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--f800);
}

.trust-card p,
.contact-card p,
.free-faq-card p {
  margin: 0;
  color: var(--t500);
  line-height: 1.7;
}

.contact-card .contact-link,
.contact-card .contact-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 700;
}

.contact-card .contact-meta {
  color: var(--t400);
  font-size: 14px;
}

.contact-card .contact-link {
  color: var(--f600);
  text-decoration: none;
}

.contact-card .contact-link:hover {
  color: var(--f500);
}

.trust-list {
  list-style: none;
  margin: 1.4rem 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.trust-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  background: var(--gray50);
  border: 1px solid var(--gray200);
  border-radius: var(--r-lg);
  color: var(--t500);
  line-height: 1.65;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--f200), var(--f500));
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .12);
}

.trust-media-frame {
  margin: 2rem 0 2.5rem;
  padding: 18px;
  background: linear-gradient(180deg, rgba(22, 163, 74, .08), rgba(22, 163, 74, .03));
  border: 1px solid rgba(22, 163, 74, .12);
  border-radius: calc(var(--r-xl) + 6px);
  box-shadow: var(--sh-md);
}

.trust-media-frame picture,
.trust-media-frame img {
  display: block;
}

.trust-media-frame img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  border: 1px solid rgba(15, 23, 42, .08);
  background: #fff;
}

.trust-media-frame figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--t400);
  line-height: 1.6;
}

.trust-note {
  padding: 20px 22px;
  margin: 2rem 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, .12), rgba(255, 255, 255, .95));
}

.trust-note h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #92400e;
}

.trust-note p {
  margin: 0;
  color: #78350f;
  line-height: 1.7;
}

.free-faq-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--t900);
  font-size: 15px;
}

.trust-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.trust-links-row a {
  font-weight: 700;
  text-decoration: none;
}

.trust-links-row a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .trust-proof-strip,
  .contact-grid,
  .trust-card-grid,
  .free-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trust-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-actions .btn,
  .trust-actions .cta-button {
    width: 100%;
    justify-content: center;
  }

  .trust-media-frame {
    padding: 12px;
  }

  .trust-proof-card,
  .trust-card,
  .contact-card,
  .free-faq-card,
  .trust-note {
    padding: 18px;
  }
}
