:root {
  --navy: #10233d;
  --navy-dark: #0a1626;
  --blue: #1e4d8c;
  --gold: #c9a04c;
  --gold-light: #e8cf94;
  --ink: #1c2530;
  --ink-soft: #5b6675;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --border: #e3e8ee;
  --radius: 12px;
  --max: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; }

h1, h2, h3 { font-weight: 800; line-height: 1.15; margin: 0 0 16px; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; margin-bottom: 10px; }
p { margin: 0 0 16px; color: var(--ink-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}

.section-sub { max-width: 620px; }

a { color: var(--blue); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img { display: block; }

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-desktop a:hover { color: var(--blue); }

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 8px 24px 16px;
}
.nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }
.nav-mobile .nav-cta {
  text-align: center;
  margin-top: 8px;
  border-bottom: none;
}

/* Hero */
.hero {
  background: radial-gradient(1200px 500px at 15% -10%, #16305230, transparent),
              linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 100px 0 90px;
}
.hero-inner { max-width: 780px; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--gold-light); }
.hero-sub { color: #c7d2e0; font-size: 1.1rem; max-width: 620px; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; }
.btn-block { width: 100%; text-align: center; }

/* Strip */
.strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0;
}
.strip-item { display: flex; flex-direction: column; text-align: center; }
.strip-item strong { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.strip-item span { font-size: 0.8rem; color: var(--ink-soft); }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

.grid { display: grid; gap: 24px; margin-top: 40px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: 0 12px 30px rgba(16,35,61,0.08); transform: translateY(-2px); }
.card-icon { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.card-highlight { background: var(--navy); border-color: var(--navy); }
.card-highlight h3, .card-highlight { color: #fff; }
.card-highlight p { color: #c7d2e0; }
.card-highlight .card-icon { color: var(--gold-light); }

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ink);
  border-top: 1px solid var(--border);
}
.check-list li:first-child { border-top: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.stats { display: grid; gap: 20px; }
.stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.stat strong { font-size: 2rem; color: var(--navy); font-weight: 800; }
.stat span { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.hp-field { position: absolute; left: -9999px; }
.form-note { margin: 14px 0 0; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form-note.success { color: #1b7d4a; }
.form-note.error { color: #b3392c; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #9fb0c6; padding: 28px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-inner a { color: #c7d2e0; text-decoration: none; }
.footer-inner a:hover { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .strip-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}

@media (max-width: 640px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 60px; }
}
