/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Tokens ── */
:root {
  --blue-dark:  #0f3460;
  --blue-mid:   #1a56a0;
  --blue-light: #2a7de1;
  --blue-pale:  #e8f1fd;
  --white:      #ffffff;
  --bg:         #f4f8ff;
  --text-main:  #1a1f36;
  --text-muted: #5a6478;
  --border:     #dce6f7;
  --radius:     12px;
  --shadow:     0 2px 12px rgba(15,52,96,0.08);
  --green:      #16a34a;
}

body {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--blue-dark); color: #fff;
  padding: 8px 16px; border-radius: 0 0 var(--radius) var(--radius);
  font-size: 14px; text-decoration: none; z-index: 999; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Header ── */
.site-header {
  background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 22px; font-weight: 700; color: var(--blue-dark); letter-spacing: -0.5px; text-decoration: none; }
.logo span { color: var(--blue-light); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: var(--text-muted); padding: 6px 14px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--blue-pale); color: var(--blue-light); }

/* ── Container ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Breadcrumb ── */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { list-style: none; display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--blue-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] { color: var(--text-main); font-weight: 500; }

/* ── Page hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  color: var(--white); text-align: center; padding: 52px 24px 44px;
}
.page-hero h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
.page-hero p  { font-size: 14px; opacity: 0.75; }

/* ── Legal section ── */
.legal-section { padding: 48px 0 72px; }
.legal-inner   { max-width: 780px; margin: 0 auto; }

.legal-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px 48px; box-shadow: var(--shadow);
}

/* Intro highlight box */
.legal-intro {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--blue-pale); border: 1px solid var(--blue-light);
  border-radius: var(--radius); padding: 18px 20px; margin-bottom: 36px;
}
.legal-intro i  { font-size: 22px; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.legal-intro p  { font-size: 15px; color: var(--text-main); line-height: 1.6; }
.legal-intro strong { color: var(--blue-dark); }

/* Headings */
.legal-card h2 {
  font-size: 18px; font-weight: 700; color: var(--blue-dark);
  margin: 32px 0 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card h3 { font-size: 15px; font-weight: 600; color: var(--text-main); margin: 18px 0 8px; }

/* Body text */
.legal-card p  { font-size: 15px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.75; }
.legal-card p strong { color: var(--text-main); }
.legal-card a  { color: var(--blue-light); }
.legal-card a:hover { text-decoration: underline; }

/* Lists */
.legal-card ul {
  margin: 0 0 14px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.legal-card ul li { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── Footer ── */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.7); padding: 48px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; padding-bottom: 40px;
}
.footer-brand { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.5px; }
.footer-text  { font-size: 14px; line-height: 1.6; max-width: 220px; }
.footer-heading {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; }
.footer-meta  { font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }

/* ── Responsive ── */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .legal-card { padding: 28px 20px; } }
@media (max-width: 540px) { .nav-links { display: none; } .footer-grid { grid-template-columns: 1fr; } }
