:root {
  --ink: #0d1b2a;
  --muted: #5f6b7a;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dbe3ee;
  --accent: #b88a2e;
  --accent-dark: #8d681f;
  --navy: #0b2447;
  --navy-2: #123a6d;
  --shadow: 0 20px 60px rgba(9, 31, 63, .12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219,227,238,.85);
}
.nav-wrap { min-height: 78px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand { display:inline-flex; align-items:center; gap:12px; font-weight:800; }
.brand-mark {
  width: 38px; height: 38px; display:grid; place-items:center;
  border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#fff; font-family:"Libre Baskerville", serif; font-size:20px;
  box-shadow: 0 8px 24px rgba(11,36,71,.2);
}
.brand-text { font-size: 15px; letter-spacing: -.01em; }
.nav { display:flex; align-items:center; gap:26px; font-size:14px; font-weight:600; }
.nav a:not(.btn):hover { color: var(--accent-dark); }
.menu-toggle { display:none; border:0; background:transparent; font-size:28px; }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  min-height: 48px; padding: 0 22px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color:#fff; font-weight:700; border:1px solid transparent; cursor:pointer;
  box-shadow: 0 10px 24px rgba(11,36,71,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform:translateY(-1px); box-shadow:0 14px 28px rgba(11,36,71,.24); }
.btn-small { min-height: 40px; padding:0 16px; }
.btn-secondary { background:#fff; color:var(--navy); border-color:var(--line); box-shadow:none; }
.btn-light { background:#fff; color:var(--navy); width:100%; }

.hero {
  position:relative; overflow:hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 92px 0 76px;
}
.hero-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap:72px; align-items:center; position:relative; z-index:2; }
.hero-copy h1, .section-heading h2, .split h2, .contact-grid h2 {
  font-family:"Libre Baskerville", Georgia, serif;
  letter-spacing:-.035em; line-height:1.12;
}
.hero-copy h1 { font-size:clamp(44px, 6vw, 76px); margin:16px 0 22px; max-width:900px; }
.hero-lead { font-size:19px; color:var(--muted); max-width:720px; }
.eyebrow { color:var(--accent-dark); font-weight:800; font-size:12px; letter-spacing:.14em; text-transform:uppercase; }
.eyebrow.light { color:#e7c778; }
.hero-actions { display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.trust-row { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:42px; }
.trust-row div { padding:14px 0; border-top:1px solid var(--line); }
.trust-row strong { display:block; font-size:14px; }
.trust-row span { color:var(--muted); font-size:12px; }
.hero-card {
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px;
  box-shadow:var(--shadow);
}
.card-label { display:inline-block; background:#eef3fa; color:var(--navy); border-radius:999px; padding:7px 11px; font-size:12px; font-weight:700; }
.hero-card h2 { font-size:30px; margin:18px 0 20px; }
.check-list { list-style:none; margin:0 0 22px; padding:0; }
.check-list li { padding:10px 0 10px 30px; position:relative; border-bottom:1px solid #edf1f6; }
.check-list li:before { content:"✓"; position:absolute; left:0; color:var(--accent-dark); font-weight:900; }
.text-link { color:var(--navy); font-weight:800; }
.hero-orb { position:absolute; border-radius:50%; filter:blur(1px); opacity:.25; }
.hero-orb-one { width:360px; height:360px; background:#c7d9f5; top:-180px; right:8%; }
.hero-orb-two { width:220px; height:220px; background:#f3dba5; bottom:-120px; left:4%; }

.disclaimer-strip { background:#fff8e8; border-top:1px solid #f0ddb5; border-bottom:1px solid #f0ddb5; padding:16px 0; color:#654c16; font-size:13px; }
.section { padding:88px 0; }
.section-muted { background:var(--soft); }
.section-dark { background:linear-gradient(135deg, #081b34 0%, #0e315b 100%); color:#fff; }
.section-heading { max-width:760px; margin-bottom:42px; }
.section-heading.compact { max-width:640px; }
.section-heading h2, .split h2, .contact-grid h2 { font-size:clamp(34px, 4vw, 50px); margin:12px 0 14px; }
.section-heading p, .split > div:first-child p, .contact-grid > div:first-child p { color:var(--muted); font-size:17px; }
.section-dark .contact-grid > div:first-child p { color:#c9d7e8; }
.cards.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card { border:1px solid var(--line); border-radius:18px; padding:28px; background:#fff; }
.service-card .icon { font-size:12px; font-weight:800; color:var(--accent-dark); letter-spacing:.1em; }
.service-card h3 { font-size:21px; margin:18px 0 10px; }
.service-card p { color:var(--muted); margin:0; }

.timeline { display:grid; gap:16px; }
.step { display:grid; grid-template-columns:58px 1fr; gap:20px; align-items:start; background:#fff; border:1px solid var(--line); border-radius:16px; padding:22px; }
.step > span { width:42px; height:42px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:#fff; font-weight:800; }
.step h3 { margin:2px 0 5px; }
.step p { margin:0; color:var(--muted); }

.split { display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:start; }
.feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.feature { border:1px solid var(--line); border-radius:16px; padding:22px; }
.feature h3 { margin:0 0 7px; font-size:18px; }
.feature p { margin:0; color:var(--muted); font-size:14px; }

.contact-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:62px; align-items:start; }
.contact-note { margin-top:28px; padding:18px 0; border-top:1px solid rgba(255,255,255,.18); display:flex; flex-direction:column; gap:5px; }
.contact-note a { color:#fff; font-weight:800; }
.contact-form { background:#fff; color:var(--ink); border-radius:20px; padding:28px; box-shadow:0 30px 80px rgba(0,0,0,.24); }
.field-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
label { display:block; font-size:13px; font-weight:700; margin-bottom:14px; }
input, select, textarea { width:100%; margin-top:7px; border:1px solid var(--line); border-radius:10px; padding:12px 13px; font:inherit; background:#fff; }
input:focus, select:focus, textarea:focus { outline:2px solid #c5d8ef; border-color:#9ab7db; }
.form-status { margin:12px 0 0; font-size:13px; color:var(--muted); }

.faq-wrap { max-width:860px; }
details { border-top:1px solid var(--line); padding:19px 0; }
details:last-child { border-bottom:1px solid var(--line); }
summary { cursor:pointer; font-weight:800; font-size:17px; }
details p { color:var(--muted); }

.footer { background:#071629; color:#cdd8e7; padding:52px 0 28px; }
.footer-grid { display:flex; justify-content:space-between; gap:30px; }
.footer-brand { color:#fff; }
.footer-grid p { max-width:460px; }
.footer-links { display:flex; gap:20px; flex-wrap:wrap; align-content:start; }
.legal { margin-top:34px; padding-top:22px; border-top:1px solid rgba(255,255,255,.14); font-size:12px; color:#9fb0c4; }

@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns:1fr; gap:38px; }
  .cards.three-col { grid-template-columns:1fr; }
  .nav { display:none; position:absolute; top:78px; left:20px; right:20px; background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
}
@media (max-width: 620px) {
  .container { width:min(100% - 26px, 1180px); }
  .hero { padding:64px 0 56px; }
  .hero-copy h1 { font-size:42px; }
  .trust-row, .feature-grid, .field-grid { grid-template-columns:1fr; }
  .section { padding:66px 0; }
  .brand-text { font-size:13px; }
  .footer-grid { flex-direction:column; }
}
