:root {
  --navy: #111b63;
  --navy-900: #07103f;
  --navy-800: #0c1450;
  --yellow: #f9dc17;
  --yellow-600: #e2bf00;
  --green: #46a735;
  --ink: #182033;
  --muted: #5f6778;
  --line: #dde3ef;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --soft-blue: #eef3ff;
  --shadow: 0 18px 42px rgba(7, 16, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(249, 220, 23, 0.72);
  outline-offset: 3px;
}

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

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 64px;
  height: 64px;
  display: inline-grid;
  align-items: center;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid rgba(17, 27, 99, 0.12);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(7, 16, 63, 0.16);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 82px;
  max-width: none;
  height: auto;
  transform: translateY(-8px);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

.primary-nav a {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 2px;
  border-bottom: 3px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav a[aria-current="page"] {
  border-color: var(--yellow);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.header-cta,
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(226, 191, 0, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: var(--surface);
  border-color: var(--navy);
}

.btn-light {
  color: var(--surface);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.82);
}

.header-cta:hover,
.header-cta:focus,
.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(7, 16, 63, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 4px 0;
  background: var(--navy);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(17, 27, 99, 0.97) 0%, rgba(12, 20, 80, 0.97) 54%, rgba(255, 255, 255, 1) 54%, rgba(244, 247, 251, 1) 100%);
  color: var(--surface);
  padding: 70px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 4px;
  background: var(--yellow);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.hero h1 {
  color: var(--surface);
}

.hero-lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.logo-stage {
  width: min(100%, 360px);
  aspect-ratio: 1;
  background: var(--surface);
  border: 2px solid rgba(17, 27, 99, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 0;
  overflow: hidden;
  justify-self: center;
}

.logo-stage img {
  display: block;
  width: 124%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  transform: translate(-9.5%, -32px);
}

.visual-panel {
  border-left: 6px solid var(--yellow);
  border-radius: 8px;
  background: var(--navy);
  color: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow);
}

.visual-panel p {
  margin-bottom: 10px;
  color: var(--yellow);
  font-weight: 900;
}

.visual-panel ul {
  margin: 0;
  padding-left: 18px;
}

.trust-band {
  background: var(--yellow);
  color: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid div {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.22);
}

.trust-grid span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid a,
.trust-grid strong {
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.section {
  padding: 84px 0;
}

.section-header {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

.section-header.compact {
  margin-bottom: 0;
}

.section-header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.feature-panel,
.service-summary,
.detail-grid article,
.contact-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-top: 6px solid var(--yellow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 27, 99, 0.3);
  box-shadow: 0 24px 54px rgba(7, 16, 63, 0.16);
}

.service-card p {
  color: var(--muted);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900;
}

.check-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.text-link {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.split-section {
  background: var(--soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: center;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.process-list span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.process-list p,
.detail-grid p,
.feature-panel p,
.service-summary p {
  color: var(--muted);
  margin-bottom: 0;
}

.proof-section {
  background: var(--navy);
  color: var(--surface);
}

.proof-section h2,
.proof-section h3 {
  color: var(--surface);
}

.proof-section .eyebrow {
  color: var(--yellow);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-grid div {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.value-grid strong {
  display: block;
  color: var(--yellow);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.value-grid p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 42px;
  align-items: start;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-card {
  padding: 20px;
  margin-top: 0;
  border-left: 6px solid var(--yellow);
  box-shadow: 0 12px 28px rgba(7, 16, 63, 0.08);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--navy);
  font-size: 1.24rem;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.lead-form {
  padding: 32px;
  border-top: 6px solid var(--yellow);
  box-shadow: 0 22px 52px rgba(7, 16, 63, 0.14);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-intro {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-intro span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-intro h3 {
  margin-bottom: 7px;
  font-size: 1.55rem;
}

.form-intro p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-row {
  margin-bottom: 18px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd4e4;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(249, 220, 23, 0.44);
  border-color: var(--navy);
}

.form-submit {
  width: 100%;
  border: 0;
}

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

.form-note a {
  color: var(--navy);
  font-weight: 900;
}

.page-hero {
  padding: 82px 0;
  background:
    linear-gradient(110deg, rgba(17, 27, 99, 0.96) 0%, rgba(12, 20, 80, 0.96) 58%, rgba(249, 220, 23, 0.96) 58%, rgba(249, 220, 23, 0.96) 100%);
  color: var(--surface);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
}

.page-hero h1 {
  color: var(--surface);
  font-size: 3.35rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  color: var(--yellow);
}

.service-summary {
  padding: 26px;
  color: var(--ink);
  border-top: 6px solid var(--green);
}

.service-summary h2 {
  font-size: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.detail-grid article,
.feature-panel {
  padding: 24px;
}

.feature-panel {
  border-left: 6px solid var(--yellow);
}

.cta-strip {
  background: var(--navy);
  color: var(--surface);
  padding: 54px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-strip h2 {
  color: var(--surface);
  font-size: 2.15rem;
  margin-bottom: 0;
}

.cta-strip .eyebrow {
  color: var(--yellow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.thanks-page a:not(.btn) {
  color: var(--yellow);
  font-weight: 900;
}

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 120px;
  max-width: none;
  transform: translate(-11px, -13px);
}

.footer-mark {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.mobile-contact-bar {
  display: none;
}

.site-footer h2 {
  color: var(--surface);
  font-size: 1rem;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
  margin: 8px 0;
  overflow-wrap: anywhere;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

@media (max-width: 1040px) {
  .nav-shell {
    gap: 14px;
  }

  .header-cta {
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .primary-nav {
    gap: 12px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero {
    background: var(--navy);
  }

  .hero-grid,
  .page-hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 480px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .service-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    background: var(--navy);
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(100% - 32px, 1140px);
  }

  .nav-shell {
    min-height: 74px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .brand img {
    width: 74px;
    height: auto;
    transform: translateY(-8px);
  }

  .brand {
    width: 58px;
    height: 58px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-nav {
    display: none;
    width: 100%;
    order: 4;
    margin: 0;
    padding: 10px 0 18px;
    border-top: 1px solid var(--line);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    display: block;
    padding: 12px 0;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 58px 0;
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .trust-grid,
  .service-grid,
  .split-grid,
  .value-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    min-height: 82px;
  }

  .section {
    padding: 62px 0;
  }

  .section-header.compact {
    margin-bottom: 28px;
  }

  .hero-visual {
    display: none;
  }

  .cta-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 64px;
    padding: 8px 12px;
    gap: 8px;
    background: var(--navy-900);
    box-shadow: 0 -10px 30px rgba(7, 16, 63, 0.24);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: var(--yellow);
    color: var(--navy);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact-bar a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    color: var(--surface);
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn,
  .header-cta {
    width: 100%;
  }

  .hero-lede,
  .page-hero p,
  .section-header p:not(.eyebrow) {
    font-size: 1rem;
  }

  h1,
  .page-hero h1 {
    font-size: 2.2rem;
  }

  h2,
  .cta-strip h2 {
    font-size: 1.78rem;
  }

  .service-card,
  .lead-form,
  .feature-panel,
  .service-summary,
  .detail-grid article {
    padding: 22px;
  }

  .form-row.two-col,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
