:root {
  --navy: #1B2A4A;
  --slate: #475569;
  --teal: #0F766E;
  --teal-dark: #115E59;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --line: #E2E8F0;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--slate);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

h1, h2, h3 { font-family: "DM Serif Display", Georgia, serif; color: var(--navy); line-height: 1.2; font-weight: 400; }
h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
p + p { margin-top: 0.8rem; }
a { color: var(--teal); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.site-header { border-bottom: 1px solid var(--line); background: var(--bg); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; padding-bottom: 1rem; flex-wrap: wrap; }
.wordmark { font-family: "DM Serif Display", Georgia, serif; font-size: 1.2rem; color: var(--navy); text-decoration: none; }
.site-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-nav a { color: var(--slate); text-decoration: none; font-size: 0.95rem; }
.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--navy); }

.hero { background: var(--bg-alt); padding: 4.5rem 0 4rem; }
.hero .container { max-width: 820px; }
.hero p.lead { font-size: 1.2rem; margin-top: 1rem; }
.hero .cta-row { margin-top: 2rem; }

.cta-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn { display: inline-block; padding: 0.8rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 1rem; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { border: 2px solid var(--navy); color: var(--navy); }

section { padding: 3.5rem 0; }
section.alt { background: var(--bg-alt); }

.grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-extra { margin-top: 1.5rem; }
.card { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 1.5rem; }
.card .step-num { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 0.75rem; }

.price-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th { background: var(--bg-alt); color: var(--navy); font-family: "DM Sans", sans-serif; font-weight: 600; }
.price-table tr:last-child td { border-bottom: 0; }
.price { font-size: 1.15rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.link-note { margin-top: 1rem; }

ul.checks { list-style: none; padding: 0; margin-top: 1rem; }
ul.checks li { padding-left: 1.6rem; position: relative; margin-top: 0.55rem; }
ul.checks li::before { content: "\2713"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-item h3 { margin-bottom: 0.5rem; }

.notice { border-left: 4px solid var(--teal); background: var(--bg-alt); padding: 1rem 1.25rem; margin-top: 1.5rem; border-radius: 0 8px 8px 0; }

.site-footer { background: var(--navy); color: #CBD5E1; margin-top: 2rem; padding: 2.5rem 0; font-size: 0.9rem; }
.site-footer a { color: #99F6E4; }
.site-footer p + p { margin-top: 0.6rem; }

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .hero { padding: 3rem 0 2.5rem; }
}
