
:root {
  --blue: #0B3C7D;
  --blue-700: #123B78;
  --light: #F5F7FA;
  --muted: #5C6B7A;
  --shadow: 0 12px 30px rgba(0,0,0,.10);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0f172a; }
a { color: var(--blue); }
.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { position: sticky; top:0; z-index:50; background: var(--blue); color:#fff; box-shadow: var(--shadow); }
.site-header .container { display:flex; align-items:center; justify-content: space-between; padding: 14px 0; }
.brand { display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none; font-weight:700; }
.site-nav a { color:#fff; text-decoration:none; margin-left: 18px; font-weight:600; opacity:.95; }
.site-nav a:hover { opacity:1; text-decoration: underline; }
.nav-toggle { display:none; background:transparent; border:0; font-size:1.6rem; color:#fff; }

.hero { background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%); border-bottom:1px solid #e5e7eb; }
.hero .container { padding: 56px 0 28px; }
.hero h1 { font-size: clamp(26px, 3.4vw, 40px); line-height:1.2; margin:0 0 12px; color: var(--blue-700); }
.lede { font-size: clamp(16px, 2.2vw, 20px); color: var(--muted); max-width: 900px; }
.badges { display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:16px 0 0; list-style:none; }
.badges li { background:#fff; border:1px solid #e5e7eb; border-radius:999px; padding:8px 14px; box-shadow: var(--shadow); }

.cards { background:#fff; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; padding: 28px 0 36px; }
.card { background:#fff; border:1px solid #e5e7eb; border-radius:12px; padding:18px; box-shadow: var(--shadow); }
.card h3 { margin-top:0; color: var(--blue-700);}
.card ul, .card ol { margin-top: 10px; padding-left: 18px; }
.button { display:inline-block; background: var(--blue); color:#fff; padding:10px 16px; border-radius:8px; text-decoration:none; font-weight:700; margin-top:10px; }
.button:hover { filter: brightness(1.05); }

.notice { background: var(--light); border-top:1px solid #e5e7eb; border-bottom:1px solid #e5e7eb; }
.notice p { margin:0; padding: 18px 0; font-size: 14px; color:#334155; }

.page-hero .container { padding: 40px 0 10px; }
.page-hero h1 { margin: 0 0 6px; color: var(--blue-700);}
.page-hero .lede { color: var(--muted); }

.pricing { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; margin: 20px 0; }
.price-card { border:1px solid #e5e7eb; border-radius:12px; padding:18px; background:#fff; box-shadow: var(--shadow); }
.price { font-size: 28px; font-weight:700; color: var(--blue-700); }
.price span { font-size: 14px; color: var(--muted); font-weight:600; }
.fineprint { color: var(--muted); font-size: 14px; margin: 8px 0 18px; }
.cta { text-align:center; margin-bottom: 24px; }

.contact-grid { display:grid; grid-template-columns: 1.2fr 1fr; gap:24px; margin: 18px 0 40px; }
.contact-form label { display:block; font-weight:600; margin: 8px 0 4px; }
.contact-form input, .contact-form textarea { width:100%; padding:10px; border:1px solid #d1d5db; border-radius:8px; font:inherit; }
.contact-form .button { width:100%; }
.form-disclaimer { font-size: 12px; color: var(--muted); margin-top:8px; }

.policy h3 { color: var(--blue-700); }

.site-footer { background:#0f172a; color:#e2e8f0; margin-top: 20px; }
.site-footer .container { padding: 18px 0; font-size: 14px; }
.site-footer a{ color:#93c5fd; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-header .container { padding: 10px 0; }
  .nav-toggle { display:block; }
  .site-nav { display:none; flex-direction: column; gap:10px; padding:12px 0; }
  .site-nav a { margin: 0 0 6px 0; }
  .site-nav.open { display:flex; }
}
