:root {
  --navy: #02275b;
  --navy-2: #061d3f;
  --yellow: #fabf00;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dde3ea;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --dark: #0b0e13;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

.topbar {
  background: #f7f8fa;
  border-bottom: 1px solid var(--line);
  color: #17223a;
  font-size: 13px;
}

.topbar .wrap,
.header-inner,
.section-inner,
.footer-inner,
.footer-bottom {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar .wrap {
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 38px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(2, 39, 91, 0.09);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: -3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #243044;
}

.site-nav a {
  padding: 26px 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  background: var(--navy);
  color: #f7f7f7;
  font-weight: 800;
  cursor: pointer;
}

.quote-button:hover,
.button:hover {
  background: #001a43;
}

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

.button.ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 39, 91, 0.94) 0%, rgba(2, 39, 91, 0.78) 43%, rgba(2, 39, 91, 0.2) 100%),
    var(--hero-image) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -110px;
  width: 46vw;
  height: 230px;
  background: var(--yellow);
  transform: skewX(-24deg);
}

.hero .section-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
  padding: 78px 0 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 3px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero p {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: -54px;
  position: relative;
  z-index: 3;
  box-shadow: 0 18px 45px rgba(4, 21, 47, 0.16);
}

.stat {
  min-height: 112px;
  background: #fff;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

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

.section.dark {
  background: var(--dark);
  color: #fff;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.section-title {
  margin-bottom: 24px;
}

.section-title .label {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.section-title h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
}

.dark .section-title h2 {
  color: #fff;
}

.lead {
  color: #3f4c5d;
  font-size: 18px;
}

.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.image-stack {
  position: relative;
  min-height: 430px;
}

.image-stack img {
  width: 82%;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(4, 21, 47, 0.2);
}

.image-stack .small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 220px;
  border: 12px solid #fff;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  background: var(--yellow);
  clip-path: polygon(14% 48%, 40% 75%, 88% 18%, 100% 31%, 41% 100%, 0 58%);
}

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

.service-card {
  position: relative;
  min-height: 278px;
  padding: 30px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  top: -24px;
  right: 18px;
  color: rgba(255, 255, 255, 0.11);
  font-size: 120px;
  line-height: 1;
  font-weight: 900;
}

.service-card h3 {
  position: relative;
  margin-top: 72px;
  font-size: 26px;
}

.service-card p {
  position: relative;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.service-card a {
  position: relative;
  display: inline-flex;
  margin-top: 22px;
  color: var(--yellow);
  font-weight: 900;
}

.service-card:nth-child(even) {
  background: #111;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.tile {
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
}

.tile img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.tile-body {
  padding: 26px;
}

.tile h3 {
  color: var(--navy);
  font-size: 24px;
}

.tile p {
  margin-top: 12px;
  color: var(--muted);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.process li {
  list-style: none;
  padding: 24px;
  background: #fff;
  border-left: 5px solid var(--yellow);
  color: var(--muted);
}

.process li::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
}

.cta-band {
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.cta-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: #fff;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  padding: 18px 22px;
  border: 0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item p {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open p {
  display: block;
}

.quote-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  padding: 44px;
  background: #fff;
  border: 1px solid var(--line);
}

.quote-panel form {
  display: grid;
  gap: 14px;
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.quote-panel textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-left: 18px;
  border-left: 4px solid var(--yellow);
}

.site-footer {
  background: #05070b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.95fr 0.95fr;
  gap: 44px;
  padding: 76px 0 54px;
}

.footer-inner h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 20px;
}

.footer-inner ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer-inner a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
}

.li-counter {
  display: inline-flex;
  flex: 0 0 auto;
}

.crumbs {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.content-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.content-box {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.content-box h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.doc-grid span {
  padding: 16px;
  background: #fff;
  border-left: 4px solid var(--yellow);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 84px;
    display: none;
    padding: 16px 20px;
    background: #fff;
    box-shadow: 0 20px 45px rgba(4, 21, 47, 0.14);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .header-inner .quote-button {
    display: none;
  }

  .split,
  .quote-panel,
  .content-columns,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .tiles,
  .process,
  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .topbar .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .topbar span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
  }

  .brand > span:last-child {
    min-width: 0;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: 560px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding: 54px 0 100px;
    max-width: calc(100vw - 40px);
  }

  .hero p {
    font-size: 16px;
  }

  h1 {
    font-size: 34px;
  }

  .eyebrow {
    max-width: 100%;
    flex-wrap: wrap;
    font-size: 11px;
    line-height: 1.35;
  }

  .hero-stats,
  .service-grid,
  .tiles,
  .process,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .image-stack {
    min-height: 320px;
  }

  .image-stack img {
    width: 100%;
    height: 260px;
  }

  .image-stack .small {
    display: none;
  }

  .quote-panel {
    padding: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
