

.page-hero {
  background: var(--c-bg-dark);
  color: var(--c-fg-inv);
  padding-block: var(--space-5) var(--space-4);
  border-bottom: 3px solid var(--c-accent);
}
.page-hero h1 {
  color: var(--c-fg-inv);
  margin-top: var(--space-1);
}
.page-hero .section-label {
  color: #6db3f2;
}
.page-hero p {
  color: #a8bfd6;
  margin-top: var(--space-2);
  max-width: 60ch;
  font-size: 1.0625rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5em;
  align-items: center;
  font-size: 0.875rem;
  color: #7a9cbd;
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}
.breadcrumb a { color: #7a9cbd; }
.breadcrumb a:hover { color: var(--c-fg-inv); }
.breadcrumb-sep { opacity: 0.5; }

.page-content {
  padding-block: var(--space-5);
}
.page-content-inner {
  max-width: 820px;
}

.about-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--col-gap);
  align-items: start;
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--c-border);
}
.about-block:last-child { border-bottom: none; }
.about-block-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.about-block h2 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  margin-top: 0.3em;
}
.about-block p { color: var(--c-muted); }
.about-block ul {
  list-style: disc;
  padding-left: 1.4em;
  color: var(--c-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.team-card {
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-border);
  margin-bottom: var(--space-2);
}
.team-card h4 { margin-bottom: 0.2em; }
.team-card p { font-size: 0.875rem; color: var(--c-muted); }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-3);
}
.info-table th,
.info-table td {
  padding: 0.85em 1em;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9375rem;
}
.info-table th {
  width: 9rem;
  font-weight: 600;
  color: var(--c-fg);
  background: var(--c-bg-alt);
  white-space: nowrap;
}
.info-table td { color: var(--c-muted); }

.milestone-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-3);
}
.milestone-item {
  display: flex;
  gap: var(--space-3);
  padding-left: var(--space-3);
  border-left: 3px solid var(--c-accent);
}
.milestone-year {
  font-weight: 700;
  color: var(--c-accent);
  min-width: 7rem;
  font-size: 0.9rem;
}
.milestone-item p {
  color: var(--c-muted);
  margin: 0;
  line-height: 1.7;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.trust-item {
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
}
.trust-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-2);
  background: linear-gradient(135deg, #1d4e89 0%, #6db3f2 100%);
  border-radius: var(--radius-md);
}
.trust-item h4 {
  margin: var(--space-2) 0 var(--space-1) 0;
  font-size: 1rem;
}
.trust-item p {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.6;
}

.legal-prose h2 {
  font-size: 1.25rem;
  margin-top: var(--space-4);
  margin-bottom: var(--space-1);
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--c-accent);
  display: inline-block;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p {
  color: var(--c-muted);
  line-height: 1.8;
}
.legal-prose ul {
  list-style: disc;
  padding-left: 1.5em;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: var(--space-2);
}
.legal-prose li { margin-bottom: 0.35em; }
.legal-meta {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--c-border);
}

@media (min-width: 641px) and (max-width: 1024px) {
  .about-block { grid-template-columns: 1fr; gap: var(--space-3); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .about-block { grid-template-columns: 1fr; gap: var(--space-3); }
  .team-grid { grid-template-columns: 1fr; }
  .trust-items { grid-template-columns: 1fr; }
  .trust-item { text-align: left; }
  .trust-icon { margin: 0 0 var(--space-2) 0; }
  .info-table th { width: auto; }
}


.cookie-banner-content > p { color: #878e97 !important; }
.cookie-banner-content a { color: #878e97 !important; }
.cookie-modal-footer > a { color: #596e89 !important; }
.intro-body > p { color: #596e89 !important; }
.section--alt .section-label { color: #416b91 !important; }
.step > h3 { color: #6b6d6f !important; }
.step > p { color: #6b6d6f !important; }
.case-stat-desc { color: #596e89 !important; }
.testimonial-card > p { color: #6b6d6f !important; }
.faq-answer > a { color: #596e89 !important; }
.contact-row-label { color: #596e89 !important; }


/* wh-elem-contrast */
/* Auto: element text failed 4.5:1 against its resolved background. */
.site-footer .footer-copy { color: #839bb3 !important; }
.cookie-banner .cookie-banner-title { color: #878e97 !important; }
.cookie-banner-content > p { color: #878e97 !important; }
.cookie-banner-content a { color: #878e97 !important; }
.cookie-modal .cookie-modal-description { color: #596e89 !important; }
.cookie-option .cookie-label { color: #c3c6cb !important; }
.cookie-option .cookie-desc { color: #b7c0cd !important; }
.cookie-modal .cookie-modal-footer { color: #596e89 !important; }
.cookie-modal-footer > a { color: #596e89 !important; }
.legal-meta { color: #596e89 !important; }
.section-label { color: #47749d !important; }
.intro-body > p { color: #596e89 !important; }
.section--alt .section-label { color: #416b91 !important; }
.step > h3 { color: #6b6d6f !important; }
.step > p { color: #6b6d6f !important; }
.case-stat-desc { color: #596e89 !important; }
.testimonial-card > p { color: #6b6d6f !important; }
.testimonial-card .author-name { color: #6b6d6f !important; }
.testimonial-card .author-role { color: #5c758e !important; }
.faq-answer > a { color: #596e89 !important; }
.contact-row-label { color: #596e89 !important; }
