@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:wght@600;700;800&display=swap");

:root {
  --ink: #14181f;
  --muted: #5b6675;
  --navy: #1b2a4a;
  --navy-dark: #111c33;
  --steel: #3b6ea5;
  --teal: #2f9e8f;
  --amber: #d98a3d;
  --paper: #fbfcfe;
  --mist: #eef2f8;
  --line: #d8e0ec;
  --white: #ffffff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a { color: var(--steel); font-weight: 600; text-decoration: none; }
a:hover { color: var(--teal); }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: Fraunces, Georgia, serif; line-height: 1.15; letter-spacing: -0.01em; }

.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(251, 252, 254, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand .mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  color: #fff; font-family: Fraunces, serif; font-weight: 800; font-size: 18px;
}
.brand strong { display: block; font-size: 16px; letter-spacing: 0.04em; }
.brand span span { color: var(--muted); font-size: 12px; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--ink); font-size: 15px; }
.nav-links a.cta {
  background: var(--navy); color: #fff; padding: 9px 16px; border-radius: 8px;
}
.nav-links a.cta:hover { background: var(--steel); color: #fff; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--mist), var(--paper)); padding: 76px 0 64px; }
.hero-inner { max-width: 760px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; font-weight: 700; color: var(--steel); margin-bottom: 14px;
}
.hero h1 { font-size: clamp(32px, 5vw, 50px); margin: 0 0 18px; }
.hero p { font-size: 19px; color: var(--muted); margin: 0 0 28px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-block; background: var(--navy); color: #fff;
  padding: 13px 24px; border-radius: 9px; font-weight: 700; font-size: 16px;
  border: 2px solid var(--navy);
}
.btn:hover { background: var(--steel); border-color: var(--steel); color: #fff; }
.btn.secondary { background: transparent; color: var(--navy); }
.btn.secondary:hover { background: var(--navy); color: #fff; }

/* Sections */
section { padding: 56px 0; }
section.tint { background: var(--mist); }
.section-lead { font-size: 18px; color: var(--muted); max-width: 720px; }
.review-note { margin-top: 18px; }
.byline {
  color: var(--steel);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 18px;
}
h2 { font-size: clamp(26px, 3.6vw, 36px); margin: 0 0 14px; }
h3 { font-size: 20px; margin: 0 0 8px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 28px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px;
}
.card .label {
  display: inline-block; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px; font-weight: 700; color: var(--teal); margin-bottom: 10px;
}
.card p { color: var(--muted); margin: 0; }

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.source-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  font-size: 14px;
}

.steps { counter-reset: step; display: grid; gap: 18px; margin-top: 28px; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 24px 22px 70px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 22px; top: 22px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-family: Fraunces, serif;
}

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 600; font-size: 14px; }
input, select, textarea {
  font: inherit; padding: 11px 13px; border: 1px solid var(--line);
  border-radius: 9px; background: var(--white); color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--steel); border-color: var(--steel); }
textarea { min-height: 110px; resize: vertical; }
#lead-form-status { margin-top: 14px; font-weight: 600; }
#lead-form-status[data-state="error"] { color: #b5402f; }
#lead-form-status[data-state="ok"] { color: var(--teal); }

/* Footer */
.site-footer {
  background: var(--navy-dark); color: #c6d2e6; padding: 40px 0; margin-top: 40px;
  font-size: 14px;
}
.site-footer a { color: #fff; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; }
.disclaimer { color: #8fa1bf; font-size: 12.5px; max-width: 640px; margin-top: 14px; line-height: 1.6; }
