/* Shared layout for public product / use-case pages. */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
.wrap { max-width: 720px; margin: 0 auto; padding: 2rem 1.25rem 4rem; }
header {
  background: var(--navy);
  color: #fff;
  padding: 2rem 1.25rem;
}
header h1 { margin: 0 0 0.35rem; font-size: 1.55rem; font-weight: 700; }
header p { margin: 0; opacity: 0.92; font-size: 0.98rem; max-width: 36rem; }
.card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  margin-top: -1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
h2 {
  font-size: 1.1rem;
  margin: 2rem 0 0.6rem;
  color: var(--navy);
  border-bottom: 2px solid rgba(42,157,148,.35);
  padding-bottom: 0.35rem;
}
h2:first-of-type { margin-top: 0; }
p, li { color: var(--muted); }
a { color: var(--accent); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }
.cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  background: var(--navy);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}
.cta:hover { opacity: 0.92; }
nav.top { margin-top: 1.25rem; font-size: 0.9rem; }
nav.top a { color: rgba(255,255,255,.95); }
nav.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid #e6eaee;
  font-size: 0.9rem;
}
.muted { font-size: 0.875rem; color: var(--muted); margin-top: 2rem; }
table.qa,
table.subprocessors {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1rem;
  font-size: 0.95rem;
}
table.qa th,
table.qa td,
table.subprocessors th,
table.subprocessors td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 0.65rem 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
table.qa th,
table.subprocessors th {
  color: var(--navy);
  font-weight: 650;
}
table.qa th { width: 34%; }
table.qa td,
table.subprocessors td { color: var(--muted); }
