/*
 * OpsMed — Trust & Security Page Styles
 * WCAG 2.2 AA Compliant
 */

/* === PAGE HERO === */
.page-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 100%);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: var(--space-md); }
.page-hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === TRUST GRID === */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}
.trust-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.trust-card__icon {
  width: 52px;
  height: 52px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-600);
  margin-bottom: var(--space-lg);
}
.trust-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
}
.trust-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === CHECKLIST COLUMNS === */
.checklist-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}
@media (min-width: 768px) { .checklist-columns { grid-template-columns: repeat(2, 1fr); } }

.checklist-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid var(--slate-200);
}
.checklist-col h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--blue-100);
  color: var(--blue-800);
}
.checklist-col ul {
  list-style: none;
  padding: 0;
}
.checklist-col li {
  padding: var(--space-sm) 0;
  padding-left: 2rem;
  position: relative;
  color: var(--slate-700);
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--slate-100);
}
.checklist-col li:last-child { border-bottom: none; }
.checklist-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
  font-size: 1.1rem;
}

/* === RESPONSIVE === */
@media (max-width: 639px) {
  .trust-card { padding: var(--space-xl); }
  .checklist-col { padding: var(--space-xl); }
}
