:root {
  --navy: #072c63;
  --navy-2: #0b376f;
  --ink: #0d1728;
  --ink-soft: #2f3c52;
  --paper: #f5f7fb;
  --white: #ffffff;
  --accent-strong: #9fcbff;
  --shadow: 0 20px 50px rgba(3, 17, 41, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.75; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; }

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 44, 99, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 104px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.brand-logo {
  width: 140px;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  flex-shrink: 0;
}
.brand-name {
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .88rem;
}
.brand-tag {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255,255,255,.88);
}
.site-nav a:hover { color: var(--white); }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.16);
  background: transparent;
  color: white;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 14px 22px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
}
.btn-outline-navy {
  color: var(--navy);
  border: 1px solid #bdd3f6;
  background: transparent;
}
.btn-sm { padding: 11px 16px; }

.hero {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 72px 0 52px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: start;
}
.eyebrow,
.section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .73rem;
}
.eyebrow {
  color: var(--accent-strong);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  max-width: 11ch;
}
.hero-copy {
  max-width: 700px;
  color: rgba(255,255,255,.85);
  font-size: 1.08rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 32px;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mini-card,
.hero-panel,
.panel-card,
.service-card,
.trust-card,
.why-card {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.mini-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 18px;
}
.mini-card p { margin: 8px 0 0; color: rgba(255,255,255,.78); }

.hero-panel {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px;
}
.hero-panel h2 { font-size: 1.25rem; }
.hero-panel ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.85); }
.hero-panel li { margin: 10px 0; }
.fit-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}
.fit-box span { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .75rem; color: var(--accent-strong); }
.fit-box p { margin: 10px 0 0; color: rgba(255,255,255,.84); }

.section { padding: 76px 0; }
.section-dark { background: var(--paper); }
.section-accent {
  background: linear-gradient(140deg, #082958, #123f7a);
  color: white;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}
.section-title.light, .light { color: white; }
.section-copy { color: var(--ink-soft); max-width: 760px; }
.section-copy.light { color: rgba(255,255,255,.8); }

.split-grid,
.contact-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.panel-card,
.service-card,
.trust-card {
  background: white;
  border: 1px solid #e7edf6;
  padding: 28px;
}
.panel-card h2 { font-size: 2rem; }
.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.check-list li {
  padding-left: 28px;
  position: relative;
  margin: 12px 0;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-weight: 800;
}
.service-card h3,
.why-card h3 { font-size: 1.2rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.trust-strip { padding-top: 0; }
.why-cards {
  display: grid;
  gap: 18px;
}
.why-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  padding: 24px;
}
.why-card p { color: rgba(255,255,255,.82); }

.cta-band {
  background: linear-gradient(180deg, #f5f9ff, #ebf3ff);
}
.cta-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  background: white;
  border-radius: 34px;
  padding: 34px;
  border: 1px solid #dbe7f7;
  box-shadow: var(--shadow);
}
.cta-wrap h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 14ch; }
.cta-wrap p { max-width: 52ch; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn-outline { color: var(--navy); border-color: #bdd3f6; }

.calendly-embed {
  min-width: 320px;
  height: 700px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}
.contact-list a {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--paper);
  border: 1px solid #e4ebf5;
  font-weight: 600;
}
.small-note {
  background: var(--paper);
  border: 1px solid #e4ebf5;
  border-radius: 20px;
  padding: 18px;
}
.small-note ul { margin: 12px 0 0; padding-left: 18px; }

.contact-form {
  display: grid;
  gap: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
input, textarea {
  width: 100%;
  font: inherit;
  border-radius: 16px;
  border: 1px solid #d9e3f0;
  padding: 14px 15px;
  background: white;
}
textarea { resize: vertical; }
.form-help {
  margin: 0;
  color: #54637b;
  font-size: .92rem;
}

.site-footer {
  background: #081a36;
  color: rgba(255,255,255,.84);
  padding: 22px 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a:hover { color: white; }

.legal-page { background: white; }
.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 16px 80px;
}
.legal-wrap h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal-wrap h2 { margin-top: 30px; font-size: 1.3rem; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); }

@media (max-width: 960px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .why-grid,
  .cards-grid,
  .trust-grid,
  .cta-wrap,
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero h1, .section-title, .cta-wrap h2 { max-width: none; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px 20px;
    background: #0a316d;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .site-nav.open { display: flex; }
  .mini-grid { grid-template-columns: 1fr; }
  .brand { align-items: flex-start; }
  .brand-logo { width: 110px; }
}
