:root {
  --navy: #0b1b2b;
  --navy-2: #15354f;
  --gold: #c7a139;
  --gold-light: #f1dc91;
  --cream: #f6f3ea;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #64717d;
  --line: #dfe5e9;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 1.45rem; font-weight: 800; letter-spacing: -.04em; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .9rem; font-weight: 700; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: #8b6812; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 22px; border-radius: 999px; background: linear-gradient(135deg,#b88816,#e2bf58); color: #111; text-decoration: none; font-weight: 800; box-shadow: 0 12px 30px rgba(199,161,57,.2); }
.button.secondary { background: var(--navy); color: white; box-shadow: none; }
.hero { background: radial-gradient(circle at 85% 20%,rgba(199,161,57,.22),transparent 28%),linear-gradient(135deg,var(--navy),var(--navy-2)); color: white; padding: 92px 0 82px; }
.breadcrumbs { margin: 0 0 24px; color: #d7dce1; font-size: .86rem; }
.breadcrumbs a { color: var(--gold-light); }
.eyebrow { color: var(--gold-light); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 900px; margin: 14px 0 22px; font-size: clamp(2.5rem,6vw,4.7rem); line-height: 1.02; letter-spacing: -.06em; }
.hero p { max-width: 760px; margin: 0 0 30px; color: #e6eaed; font-size: clamp(1rem,1.5vw,1.22rem); }
.proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.proof span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 7px 12px; background: rgba(255,255,255,.08); font-size: .82rem; }
.section { padding: 76px 0; }
.section.white { background: white; }
.section h2 { max-width: 820px; margin: 0 0 18px; color: var(--navy); font-size: clamp(2rem,4vw,3.25rem); line-height: 1.1; letter-spacing: -.045em; }
.lead { max-width: 780px; color: var(--muted); font-size: 1.08rem; }
.grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; margin-top: 34px; }
.grid.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: 0 14px 36px rgba(11,27,43,.06); }
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }
.number { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 16px; border-radius: 50%; background: #f4e7b9; color: #74550b; font-weight: 800; }
.checklist { padding: 0; list-style: none; columns: 2; column-gap: 36px; }
.checklist li { break-inside: avoid; margin: 0 0 14px; padding-left: 28px; position: relative; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: #8b6812; font-weight: 900; }
.faq { max-width: 880px; }
.faq details { margin-bottom: 12px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq details p { color: var(--muted); }
.related a { display: block; color: var(--navy); font-weight: 800; text-decoration: none; }
.related a:hover { color: #8b6812; }
.cta { padding: 44px; border-radius: 28px; background: linear-gradient(135deg,var(--navy),var(--navy-2)); color: white; }
.cta h2 { color: white; }
.cta p { max-width: 680px; color: #e6eaed; }
footer { padding: 48px 0; background: #071522; color: #cbd3d9; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
footer h3 { margin-top: 0; color: white; }
footer a { color: #d8dee3; }
.footer-links { display: grid; gap: 8px; }
.copyright { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
@media (max-width: 800px) {
  .nav-links a:not(.button) { display: none; }
  .grid, .grid.two, .footer-grid { grid-template-columns: 1fr; }
  .checklist { columns: 1; }
  .hero { padding: 66px 0 58px; }
  .section { padding: 58px 0; }
  .cta { padding: 30px 24px; }
}
