:root {
  --blue:   #1a3eda;
  --blue-d: #1229a8;
  --blue-l: #e8eeff;
  --ink:    #0d0d0d;
  --soft:   #4a4a4a;
  --mute:   #767676;
  --rule:   #e4e8f0;
  --white:  #ffffff;
  --card-r: 14px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--white); color: var(--ink); line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--rule);
  padding: 0 48px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; height: 68px;
}
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  white-space: nowrap; flex-shrink: 0;
}
.logo small {
  display: block; font-family: Arial, sans-serif;
  font-size: 10.5px; font-weight: 400; color: var(--mute); letter-spacing: .03em; margin-top: 1px;
}
nav { display: flex; gap: 4px; align-items: center; }
nav a {
  font-size: 14px; font-weight: 700; color: var(--ink);
  padding: 6px 14px; border-radius: 999px; transition: background .15s;
}
nav a:hover, nav a.active { background: var(--ink); color: var(--white); }
.header-cta { flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block; font-size: 14.5px; font-weight: 700;
  padding: 12px 26px; border-radius: 999px; cursor: pointer;
  font-family: inherit; border: 2px solid transparent; transition: all .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-d); border-color: var(--blue-d); }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-sm { font-size: 13px; padding: 9px 20px; }

/* ── Layout ── */
.wrap { max-width: 960px; margin: 0 auto; padding: 0 48px; }

/* ── Hero ── */
.hero { padding: 80px 0 72px; border-bottom: 1px solid var(--rule); }
.hero-label {
  display: inline-block; background: var(--blue-l); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 999px; margin-bottom: 28px;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink); max-width: 680px; margin-bottom: 24px;
}
.hero p.sub {
  font-size: 1rem; color: var(--soft); max-width: 440px;
  line-height: 1.7; margin-bottom: 36px;
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section headings ── */
.section { padding: 72px 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 12px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem; font-weight: 700; line-height: 1.2;
  color: var(--ink); border-left: 3px solid var(--blue);
  padding-left: 16px; margin-bottom: 32px;
}
h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
p { color: var(--soft); margin-bottom: 12px; }
p.body-lead { font-size: 1.05rem; color: var(--ink); max-width: 560px; margin-bottom: 24px; }

/* ── Check list ── */
ul.check { list-style: none; padding: 0; }
ul.check li {
  padding: 10px 0 10px 26px; position: relative;
  border-bottom: 1px solid var(--rule); color: var(--ink); font-size: .95rem;
}
ul.check li:last-child { border-bottom: 0; }
ul.check li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ── Testimonial cards ── */
.testi-group { margin-bottom: 48px; }
.testi-group-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mute);
  margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--rule);
}
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--card-r); padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.testi-card .quote-mark {
  font-family: Georgia, serif; font-size: 2.5rem; line-height: 1;
  color: var(--blue); margin-bottom: 10px; display: block;
}
.testi-card p {
  font-style: italic; font-size: .93rem; line-height: 1.65;
  color: var(--soft); margin-bottom: 16px;
}
.testi-card .author { font-size: 13px; font-weight: 700; color: var(--ink); font-style: normal; }

/* ── Info band ── */
.info-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rule); border-radius: 12px; overflow: hidden; margin: 28px 0;
}
.info-band .cell {
  padding: 20px 18px; border-right: 1px solid var(--rule); background: #fafbff;
}
.info-band .cell:last-child { border-right: 0; }
.info-band .val { font-weight: 700; font-size: .95rem; color: var(--blue); }
.info-band .key { font-size: 11px; color: var(--mute); margin-top: 3px; }

/* ── Feature grid ── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.feature-item { padding: 24px; border: 1px solid var(--rule); border-radius: 12px; }
.feature-item h3 { color: var(--blue); margin-bottom: 6px; }
.feature-item p { font-size: .9rem; margin: 0; }

/* ── CTA bar ── */
.cta-bar {
  background: var(--blue-l); border-radius: 16px;
  padding: 48px; text-align: center; margin-top: 48px;
}
.cta-bar h2 { border-left: 0; padding-left: 0; font-size: 1.6rem; margin-bottom: 12px; }
.cta-bar p { font-size: 1rem; margin-bottom: 28px; }

/* ── Citation ── */
.citation-block {
  border-left: 3px solid var(--blue); padding: 24px 28px;
  background: var(--blue-l); border-radius: 0 12px 12px 0; margin: 32px 0;
}
.citation-block blockquote {
  font-family: Georgia, serif; font-size: 1.15rem; font-style: italic;
  color: var(--blue); line-height: 1.5; margin-bottom: 10px;
}
.citation-block p { font-size: .92rem; color: var(--soft); margin: 0; }

/* ── Row list ── */
.row-list { border-top: 1px solid var(--rule); }
.row-item {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.row-item h3 { margin: 0 0 4px; }
.row-item p { font-size: 13px; margin: 0; }
.row-item a.arrow { font-size: 13px; font-weight: 700; color: var(--blue); white-space: nowrap; flex-shrink: 0; }
.row-item a.arrow:hover { text-decoration: underline; }

/* ── Tags ── */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag {
  background: var(--blue-l); color: var(--blue);
  font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px;
}

/* ── Form ── */
.form-wrap { max-width: 560px; }
form label { display: block; font-size: 13px; font-weight: 700; margin: 18px 0 5px; color: var(--ink); }
form input, form textarea, form select {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--rule);
  border-radius: 8px; font-family: inherit; font-size: 15px;
  color: var(--ink); background: var(--white); transition: border-color .15s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--blue); }
form textarea { height: 120px; resize: vertical; }
form button[type=submit] { margin-top: 24px; border: 2px solid var(--blue); cursor: pointer; font-family: inherit; }

/* ── Breadcrumb ── */
.bc { font-size: 12px; color: var(--mute); padding: 18px 0; display: flex; gap: 6px; }
.bc a { color: var(--blue); font-weight: 600; }

/* ── Footer ── */
footer {
  background: #f9fafc; border-top: 1px solid var(--rule);
  padding: 56px 48px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
footer h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
footer a, footer p { font-size: 13px; color: var(--soft); display: block; margin-bottom: 8px; }
footer a:hover { color: var(--blue); }
.footer-bar {
  background: #f9fafc; border-top: 1px solid var(--rule);
  padding: 14px 48px; display: flex; justify-content: space-between;
  font-size: 12px; color: var(--mute);
}

/* ── Nav toggle ── */
button.toggle { display: none; background: none; border: 1.5px solid var(--rule); border-radius: 6px; padding: 6px 14px; cursor: pointer; font-size: 13px; font-weight: 700; }

/* ── Mobile ── */
@media (max-width: 700px) {
  header { padding: 0 20px; }
  .wrap { padding: 0 20px; }
  h2 { font-size: 1.5rem; }
  .hero { padding: 48px 0; }
  .hero h1 { font-size: 2.1rem; }
  .card-grid, .feature-grid, .info-band { grid-template-columns: 1fr; }
  .info-band .cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .row-item { flex-direction: column; align-items: flex-start; }
  footer { grid-template-columns: 1fr 1fr; padding: 32px 20px; }
  .footer-bar { padding: 12px 20px; flex-direction: column; gap: 4px; }
  nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 16px 20px; border-bottom: 1px solid var(--rule); gap: 6px; z-index: 99; }
  nav.open { display: flex; }
  button.toggle { display: block; }
  .cta-bar { padding: 32px 20px; }
}
