:root {
  --navy: #0b2f63;
  --navy-2: #123f82;
  --red: #d81f2a;
  --text: #112033;
  --muted: #5f6f82;
  --line: #dfe7f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(11, 47, 99, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
  display: block;
}

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

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.topbar-inner,
.nav,
.topbar-links,
.hero-actions,
.contact-strip,
.trust-items,
.footer-grid,
.contact-cards {
  display: flex;
  align-items: center;
}

.topbar-inner {
  justify-content: space-between;
  min-height: 48px;
  gap: 1rem;
}

.topbar a {
  color: white;
}

.topbar-links {
  gap: 1rem;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 32, 51, 0.06);
}

.nav {
  justify-content: space-between;
  min-height: 120px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.brand img {
  width: min(100%, 460px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  font-size: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn-sm {
  padding: 0.8rem 1rem;
}

.hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(216, 31, 42, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(11, 47, 99, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-grid,
.contact-grid,
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 47, 99, 0.08);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1,
.section h2 {
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  max-width: 12ch;
}

.hero-logo {
  width: min(100%, 620px);
  height: auto;
  margin: 0 0 1.5rem;
}


.lead,
.section-heading p,
.card p,
.step p,
.quote-card p,
.site-footer p,
.contact-section p,
.faq-list p {
  color: var(--muted);
}

.hero-actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1rem;
}

.contact-strip {
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.hero-card {
  display: grid;
  gap: 1rem;
}

.stat-card,
.card,
.step,
.quote-card,
.contact-form,
.contact-card,
.mini-card {
  background: var(--white);
  border: 1px solid rgba(17, 32, 51, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.75rem;
}

.stat-card h3,
.card h3,
.step h3,
.quote-card strong,
.contact-card strong {
  margin-top: 0;
  color: var(--navy);
}

.stat-card ul,
.checklist {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.mini-card {
  padding: 1rem 1.25rem;
}

.mini-card span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-bar {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-items {
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--navy);
}

.section {
  padding: 5rem 0;
}

.section.alt {
  background: var(--bg);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-heading.left {
  text-align: left;
  margin-left: 0;
}

.cards.three-up,
.steps,
.faq-list {
  display: grid;
  gap: 1.25rem;
}

.cards.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.step,
.quote-card,
.contact-form {
  padding: 1.5rem;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(216, 31, 42, 0.1);
  color: var(--red);
  font-weight: 800;
  margin-bottom: 1rem;
}

.quote-card {
  background: linear-gradient(180deg, var(--navy), #082247);
  color: white;
}

.quote-card p,
.quote-card strong {
  color: white;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  gap: 1rem;
  flex-direction: column;
  align-items: stretch;
  margin-top: 2rem;
}

.contact-card {
  padding: 1.1rem 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(11, 47, 99, 0.16);
  border-color: var(--navy);
}

.form-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.site-footer {
  background: #0b1730;
  color: rgba(255, 255, 255, 0.9);
  padding-top: 3.5rem;
}

.footer-grid {
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-grid > div {
  display: grid;
  gap: 0.7rem;
}

.footer-brand {
  color: white;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.site-footer a,
.site-footer h4,
.site-footer strong {
  color: white;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2rem;
  padding: 1.25rem 0 2rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  background: var(--bg);
}

.page-content {
  padding: 1rem 0 4rem;
}

.page-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .split,
  .cards.three-up,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 1rem;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.6rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: none;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .trust-items {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .nav {
    min-height: 92px;
  }

  .brand img {
    width: min(100%, 320px);
    max-height: 72px;
  }

  .hero-logo {
    width: min(100%, 420px);
  }
}
