/* ================================================================
   KLIRI — Trust + Powered shared blocks
   Self-contained: uses local tokens, no external CSS variables.
   Safe to include alongside any page CSS.
   ================================================================ */

.powered-strip,
.trust-strip {
  --kbn-navy: #143A6B;
  --kbn-navy-deep: #0a1f3d;
  --kbn-teal: #1FA89A;
  --kbn-mint: #5FE3C7;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* -------- Powered by EasyVirtualFair -------- */
.powered-strip {
  background: #f6f9fb;
  padding: 56px 0 60px;
  border-top: 1px solid rgba(20,58,107,0.06);
}
.powered-strip .container,
.powered-strip > div:first-child {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.powered-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.powered-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-right: 24px;
  border-right: 1px solid rgba(20,58,107,0.12);
}
.powered-mark-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kbn-navy);
  font-weight: 700;
  opacity: 0.55;
}
.powered-mark-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  color: var(--kbn-navy-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.powered-mark-brand:hover { color: var(--kbn-teal); }
.powered-mark-brand svg {
  width: 22px; height: 22px;
  color: var(--kbn-teal);
  flex-shrink: 0;
}
.powered-mark-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .powered-mark-logo { height: 36px; max-width: 180px; }
}
.powered-copy {
  color: rgba(20,58,107,0.78);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}
.powered-copy strong { color: var(--kbn-navy-deep); font-weight: 600; }
.powered-copy a {
  color: var(--kbn-teal);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.powered-copy a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .powered-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .powered-mark {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: none;
    border-bottom: 1px solid rgba(20,58,107,0.12);
  }
}

/* -------- Security & Compliance trust strip -------- */
.trust-strip {
  background: var(--kbn-navy-deep);
  color: white;
  padding: 36px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-strip .container,
.trust-strip > div:first-child {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-strip-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 14px;
  max-width: 880px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.trust-badge:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--kbn-mint);
}
.trust-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(95,227,199,0.16);
  color: var(--kbn-mint);
  flex-shrink: 0;
}
.trust-badge-icon svg { width: 18px; height: 18px; }
.trust-badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.trust-badge-text strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: white;
}
.trust-badge-text span {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  font-weight: 500;
}
.trust-infra {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin: 0 auto;
  max-width: 80ch;
  text-align: center;
}
.trust-infra strong { color: rgba(255,255,255,0.78); font-weight: 600; }
.trust-more {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: var(--kbn-mint);
  text-decoration: none;
  font-weight: 600;
}
.trust-more:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .trust-badge { padding: 8px 12px; }
  .trust-badge-icon { width: 28px; height: 28px; }
}
