:root {
  --navy: #1b344d;
  --navy-2: #223f5b;
  --charcoal: #314253;
  --steel: #426f8f;
  --steel-light: #d7e2ea;
  --gold: #b99852;
  --gold-dark: #856934;
  --white: #ffffff;
  --off-white: #f6f8fa;
  --line: #dce3e9;
  --shadow: 0 18px 45px rgba(22, 34, 49, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(22, 34, 49, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 290px;
  min-width: 290px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  color: #4e5b67;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.88rem;
  white-space: nowrap;
}

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

.button-gold:hover {
  background: #c8aa66;
}

.button-outline {
  border-color: rgba(22, 34, 49, 0.32);
  color: var(--navy);
}

.button-outline:hover {
  border-color: var(--navy);
  background: rgba(22, 34, 49, 0.05);
}

.button-dark {
  margin-top: 14px;
  background: var(--navy);
  color: var(--white);
}

.hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 250, 0.94)),
    repeating-linear-gradient(90deg, rgba(22, 34, 49, 0.028) 0 1px, transparent 1px 33px);
  color: var(--navy);
}

.hero-grid {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding: 82px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 6vw, 4.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.85rem);
  font-weight: 800;
}

h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #4f5d69;
  font-size: 1.11rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.operations-visual {
  width: 100%;
}

.visual-kicker,
.visual-caption {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-kicker {
  margin-bottom: 12px;
}

.visual-caption {
  margin-top: 14px;
  color: #596775;
  letter-spacing: 0.04em;
  text-transform: none;
}

.visual-panel {
  border: 1px solid rgba(22, 34, 49, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 245, 249, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.visual-panel svg {
  display: block;
  width: 100%;
  min-height: 340px;
}

.visual-panel rect {
  fill: rgba(255, 255, 255, 0.72);
  stroke: rgba(66, 111, 143, 0.24);
}

.grid-line {
  fill: none;
  stroke: rgba(66, 111, 143, 0.14);
  stroke-width: 1.2;
}

.ridge,
.route {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ridge {
  stroke-width: 5;
}

.route {
  stroke: rgba(66, 111, 143, 0.72);
  stroke-dasharray: 6 8;
  stroke-width: 2.4;
}

.shield {
  fill: rgba(22, 34, 49, 0.94);
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 3;
}

.shield-line,
.status-card path {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.node {
  fill: var(--white);
  stroke: var(--steel);
  stroke-width: 4;
}

.status-card rect {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(66, 111, 143, 0.28);
}

.status-card path {
  stroke-width: 3;
}

.section {
  padding: 86px 0;
}

.services-section,
.contact-section {
  background: var(--white);
}

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

.section-heading p:not(.eyebrow),
.capability-grid p,
.contact-grid p {
  color: #52606d;
  font-size: 1.03rem;
}

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

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

.service-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--steel);
  background: linear-gradient(180deg, #ffffff, #fbfcfd);
  padding: 26px;
  box-shadow: 0 10px 26px rgba(22, 34, 49, 0.06);
}

.card-icon {
  display: inline-flex;
  width: 44px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-left: 4px solid var(--gold);
  background: #edf4f8;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: #596573;
}

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

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

.why-panel {
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  background:
    linear-gradient(90deg, rgba(66, 111, 143, 0.08), rgba(255, 255, 255, 0)),
    var(--white);
  color: var(--navy);
  padding: 34px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #3d4955;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.13em;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(185, 154, 85, 0.8);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 0.31em;
  width: 5px;
  height: 10px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.capability-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f8fafc, #ffffff),
    repeating-linear-gradient(90deg, rgba(22, 34, 49, 0.025) 0 1px, transparent 1px 32px);
}

.capability-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  align-items: start;
  gap: 52px;
}

.statement-card,
.contact-form {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.statement-card {
  padding: 28px;
}

.statement-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.small-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  box-shadow: inset 0 0 0 2px var(--white);
}

.small-mark svg {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.small-mark svg {
  width: 26px;
  height: 26px;
}

.statement-header strong,
.statement-header span {
  display: block;
}

.statement-header span {
  color: var(--steel);
  font-size: 0.9rem;
  font-weight: 700;
}

.statement-list {
  margin: 0;
}

.statement-list div {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.statement-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.statement-list dt {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statement-list dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.statement-list a,
.email-link {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd3da;
  background: #ffffff;
  color: var(--charcoal);
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(185, 154, 85, 0.24);
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

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

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 0;
  }

  .brand {
    width: 270px;
    min-width: 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 2px;
  }

  .hero-grid,
  .split-grid,
  .capability-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 40px;
    padding: 70px 0;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    gap: 14px;
  }

  .brand {
    width: min(275px, 76vw);
  }

  .button-small {
    width: 100%;
  }

  .header-inner > .button-small {
    order: 3;
  }

  .main-nav {
    order: 2;
    gap: 18px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-grid {
    padding: 52px 0;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .visual-panel svg {
    min-height: 260px;
  }

  .section {
    padding: 62px 0;
  }

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

  .card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .why-panel,
  .statement-card,
  .contact-form {
    padding: 22px;
  }

  .statement-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
  }
}
