/* Claim Settlements: Class Action — legal document pages
   Gispro Deelnemingen B.V. */

:root {
  --text: #161616;
  --muted: #666666;
  --accent: #161616;
  --border: #e0e0e0;
  --bg: #ffffff;
  --note-bg: #f3f3f3;
  --max-width: 760px;

  --header-bg: #111111;
  --footer-bg: #111111;
  --footer-heading: #8a8a8a;
  --footer-muted: #b0b0b0;
  --footer-link: #f0f0f0;
  --footer-border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Page top spacing (no header on any page — nav lives in the footer only) */
main.page {
  padding-top: 40px;
}

.brand {
  font-weight: bold;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}

/* ---------- Header (logo + nav, index.html only) ---------- */

.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.logo-word {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo-light {
  font-weight: 500;
  opacity: 0.65;
}

.site-header + main.page {
  padding-top: 0;
}

#how-it-works,
#faq {
  scroll-margin-top: 76px;
}

/* Typography */
h1 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--text);
}

h2 {
  font-size: 21px;
  color: var(--accent);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  color: var(--text);
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

li {
  margin-bottom: 6px;
}

strong {
  font-weight: bold;
}

/* Effective date + plain-English summary */
.page > p:first-of-type {
  color: var(--muted);
  font-size: 14px;
}

/* Drafting notes: [ASSUMPTION ...] / [FLAG ...] / [NOTE ...] paragraphs */
em {
  font-style: italic;
  color: var(--muted);
}

p:has(> em:only-child) {
  background: var(--note-bg);
  border-left: 3px solid var(--accent);
  padding: 10px 14px;
  border-radius: 2px;
  font-size: 14px;
}

p:has(> em:only-child) em {
  color: var(--text);
}

/* Footer (the only navigation on any page) — dark band, PendingMoney-style */
.site-footer {
  margin-top: 60px;
  background: var(--footer-bg);
  color: var(--footer-muted);
  padding: 40px 0 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand-block {
  max-width: 320px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
}

.footer-brand .logo-icon {
  flex-shrink: 0;
}

.footer-tagline {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--footer-muted);
}

.footer-col-heading {
  color: var(--footer-heading);
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  color: var(--footer-link);
  text-decoration: none;
  font-size: 13px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--footer-border);
  margin: 32px 0 18px;
}

.footer-legal {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--footer-muted);
}

.footer-legal a {
  color: var(--footer-muted);
}

.footer-company {
  opacity: 0.85;
}

@media (max-width: 480px) {
  .footer-grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 19px;
  }
  body {
    font-size: 15px;
  }
}

/* ---------- Landing page (index.html) ---------- */

.hero {
  text-align: center;
  padding: 30px 0 20px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 14px;
}

.hero .tagline {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 22px;
}

.hero .trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 8px;
}

.cta-button:hover {
  opacity: 0.92;
}

.section-title {
  text-align: center;
  font-size: 22px;
  color: var(--text);
  margin: 30px 0 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.step {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px 16px 20px;
  text-align: center;
}

.step .num {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--note-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 16px;
  color: var(--text);
}

.step-icon svg {
  width: 26px;
  height: 26px;
}

.step h3 {
  margin: 0 0 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 16px;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.step-cta {
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 10px;
}

.category-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}

.category-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.category-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.category-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin-bottom: 10px;
}

.trust-item h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.trust-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 24px 0 0;
}

.badge {
  font-size: 12px;
  color: var(--accent);
  background: var(--note-bg);
  border-radius: 20px;
  padding: 5px 12px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "+";
  color: var(--accent);
  font-weight: bold;
  margin-right: 10px;
}

.faq-item[open] summary::before {
  content: "\2212";
}

.faq-item p {
  margin: 10px 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: var(--note-bg);
  border-radius: 14px;
  padding: 40px 24px;
  margin: 20px 0 10px;
}

.final-cta h2 {
  border-top: none;
  margin: 0 0 10px;
  padding-top: 0;
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .category-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
