:root {
  --bg: #f8f9fa;
  --card: #ffffff;
  --text: #233;
  --muted: #556;
  --brand: #1f3d2b;
  --accent: #4caf50;
  --border: rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--brand);
  color: #fff;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px; /* 👈 controls spacing between items */
}

/* FORCE header/nav links to stay white (normal + visited + focus + active) */
.site-header a,
.site-header a:visited,
.site-header a:hover,
.site-header a:active,
.site-header a:focus {
  color: #fff;
}

/* Keep your hover background behavior */
.site-header .nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}
/* Layout */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px;
}

/* Hero */
.hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 24px;
  margin-top: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: center;
}

.kicker {
  display: inline-block;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  color: var(--brand);
  background: rgba(76, 175, 80, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
}

h1 {
  margin: 12px 0 10px 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #122;
}

.sub {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 18px 0;
  max-width: 62ch;
}

/* Buttons */
.btn {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  color: #fff;
}

.btn.dark {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn.light {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cta-row.center {
  justify-content: center;
}

.top-gap {
  margin-top: 16px;
}

/* Right-side hero card */
.hero-card {
  background: linear-gradient(180deg, rgba(31, 61, 43, 0.06), rgba(31, 61, 43, 0.02));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.hero-card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.hero-card p {
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #244;
  font-weight: 700;
}

.quick-link {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.quick-link a {
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
}

.quick-link a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  margin-top: 22px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.section h2 {
  margin: 0 0 10px 0;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.section.center {
  text-align: center;
}

.muted {
  margin: 0;
  color: var(--muted);
  max-width: 90ch;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.card a {
  font-weight: 800;
  color: var(--brand);
  text-decoration: none;
}

.card a:hover {
  text-decoration: underline;
}

.list {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

/* Trustbar */
.trustbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.trustitem {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 700;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

/* Footer */
.site-footer {
  margin-top: 24px;
  padding: 24px;
  text-align: center;
  color: #fff;
  background: var(--brand);
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.footer-links a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.fineprint {
  margin-top: 8px;
  opacity: 0.9;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: 30px; }
}