:root {
  --navy: #12233f;
  --navy-2: #1a3157;
  --green: #2b7a62;
  --green-dark: #1f5d4a;
  --cream: #f6f3ec;
  --white: #ffffff;
  --ink: #1c2533;
  --muted: #5f6b7a;
  --line: #dfe4ea;
  --danger: #a12626;
  --shadow: 0 16px 40px rgba(18, 35, 63, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--green-dark); }
a:hover { text-decoration-thickness: 2px; }
img { max-width: 100%; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--navy); text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--navy); color: var(--white); font-size: 14px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a { color: var(--navy); text-decoration: none; font-weight: 650; font-size: 14px; }
.button, button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.button:hover, button:hover { transform: translateY(-1px); }
.button-primary, button { background: var(--green); color: var(--white); box-shadow: 0 8px 22px rgba(43,122,98,.24); }
.button-primary:hover, button:hover { background: var(--green-dark); }
.button-secondary { background: var(--white); color: var(--navy); border: 1px solid var(--line); }
.hero {
  padding: 94px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(43,122,98,.18), transparent 33%),
    linear-gradient(135deg, #f8fafc 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.eyebrow { color: var(--green-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; margin-bottom: 14px; }
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 68px); letter-spacing: -.045em; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.035em; }
h3 { font-size: 21px; }
.lead { font-size: 20px; color: var(--muted); max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-line { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 30px; color: var(--muted); font-size: 14px; }
.trust-line span::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 7px; }
.hero-card { background: var(--navy); color: var(--white); padding: 34px; border-radius: 26px; box-shadow: var(--shadow); }
.hero-card h2, .hero-card h3 { color: var(--white); }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }
.hero-card li { margin: 10px 0; }
.section { padding: 82px 0; }
.section-alt { background: #f7f9fb; }
.section-intro { max-width: 720px; margin-bottom: 38px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 10px 26px rgba(18,35,63,.06); }
.card p { color: var(--muted); margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.check-list li { position: relative; padding-left: 30px; margin: 12px 0; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.contact-section { background: var(--navy); color: var(--white); }
.contact-section h2, .contact-section h3 { color: var(--white); }
.contact-copy p { color: #d9e1ec; }
.contact-panel { background: var(--white); color: var(--ink); border-radius: 24px; padding: 30px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 14px; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(43,122,98,.18); border-color: var(--green); }
textarea { min-height: 128px; resize: vertical; }
.checkbox-row { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; margin: 14px 0; }
.checkbox-row input { margin-top: 5px; width: 18px; height: 18px; }
.checkbox-row label { font-weight: 500; color: var(--ink); font-size: 13px; line-height: 1.5; }
.disclosure { font-size: 12px; color: var(--muted); margin-top: 14px; }
.form-status { min-height: 24px; margin: 10px 0; font-weight: 700; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--green-dark); }
.hidden-field { position: absolute !important; left: -9999px !important; }
.site-footer { background: #0d192c; color: #cbd4df; padding: 34px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
.site-footer a { color: #e8edf3; }
.site-footer h3 { color: var(--white); font-size: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 20px; font-size: 13px; }
.legal { padding: 70px 0; }
.legal article { max-width: 840px; }
.legal h1 { font-size: clamp(38px, 5vw, 56px); }
.legal h2 { font-size: 26px; margin-top: 38px; }
.legal h3 { margin-top: 28px; }
.legal p, .legal li { color: #394557; }
.notice { border-left: 4px solid var(--green); background: #eef8f4; padding: 16px 18px; border-radius: 8px; }
.muted { color: var(--muted); }

@media (max-width: 860px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 70px; }
  .hero-grid, .two-col, .grid-3, .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  .nav-wrap { min-height: 64px; }
  .brand span:last-child { font-size: 15px; }
  .hero, .section, .legal { padding: 58px 0; }
  .hero-card, .contact-panel { padding: 22px; }
  .button { width: 100%; }
}
