:root {
  --navy: #0b1f3a;
  --navy-2: #12345a;
  --orange: #f28c28;
  --blue: #2d8cff;
  --light: #f5f7fa;
  --line: #dce3ec;
  --text: #172033;
  --muted: #526174;
  --white: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: var(--navy-2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: var(--navy);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

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

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.16);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand,
.top-nav a {
  color: var(--white);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy);
  font-weight: 800;
}

.top-nav {
  display: none;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #174167 68%, #1c5a89 100%);
  color: var(--white);
  padding: 2.25rem 0;
}

.hero.compact {
  padding: 2rem 0 2.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #c8e1ff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.05;
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.15;
}

h3 {
  margin: 1.25rem 0 0.4rem;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 760px;
  color: #eef6ff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
}

.button.primary {
  background: var(--orange);
  color: var(--navy);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.notice,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero .notice {
  color: #cbd8e8;
  max-width: 720px;
}

.lead-card,
.info-panel {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(6, 21, 42, 0.2);
}

.lead-card h2 {
  font-size: 1.35rem;
}

.lead-form {
  display: grid;
  gap: 0.85rem;
}

.trap-field {
  display: none;
}

.field {
  display: grid;
  gap: 0.3rem;
}

.field label {
  font-weight: 700;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.78rem;
  font: inherit;
}

textarea {
  min-height: 105px;
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  color: var(--navy-2);
  font-weight: 700;
}

.section {
  padding: 2.35rem 0;
}

.section.muted {
  background: var(--light);
}

.two-col {
  display: grid;
  gap: 1.25rem;
}

.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  border-left: 4px solid var(--blue);
  background: var(--light);
  padding: 0.75rem 0.85rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.steps {
  padding-left: 1.2rem;
}

.steps li {
  margin-bottom: 0.65rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.link-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  text-decoration: none;
  font-weight: 700;
}

.link-card:hover,
.button:hover {
  filter: brightness(0.97);
}

.faq-wrap details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0.85rem 1rem;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 800;
}

.breadcrumbs {
  font-size: 0.86rem;
  margin-bottom: 1rem;
  color: #d9e8f7;
}

.breadcrumbs a {
  color: #f2f7ff;
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.site-footer {
  background: #071626;
  color: #dce7f5;
  padding: 2rem 0 5.5rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-grid a {
  display: block;
  color: #dce7f5;
  margin-bottom: 0.5rem;
}

.support-content {
  max-width: 850px;
}

.support-content ul {
  padding-left: 1.2rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  z-index: 50;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  min-height: 56px;
  display: grid;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
}

.sticky-call {
  background: var(--navy);
  color: var(--white);
}

.sticky-request {
  background: var(--orange);
  color: var(--navy);
}

@media (min-width: 760px) {
  .top-nav {
    display: flex;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
    align-items: start;
  }

  .two-col {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  }

  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}
