
/* ── Credentials ─────────────────────────────────────────────── */
.creds-sec { padding: var(--pad-section); background: var(--fog); border-top: 1px solid var(--border); }

.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }

.cred-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

/* gold bottom bar on hover */
.cred-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cred-card:hover::after { transform: scaleX(1); }
.cred-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }

/* ghost number top-right */
.cred-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.05;
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* navy icon box */
.cred-icon-box {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.cred-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 7px; }
.cred-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── States ──────────────────────────────────────────────────── */
.states-sec { padding: var(--pad-section); }
.states-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; justify-content: center; }
.s-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: all .2s; box-shadow: var(--shadow-sm); }
.s-card:hover { border-color: var(--gold-border); color: var(--navy); background: var(--fog); }
.s-card::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 12px; }
