:root {
  --navy: #071626;
  --navy-2: #0b2944;
  --navy-3: #103755;
  --olive: #4b552c;
  --steel: #eef3f6;
  --gold: #cba13a;
  --gold-2: #e0c15f;
  --gold-soft: #f4e5b5;
  --ink: #101d2b;
  --muted: #657386;
  --line: #dce3ea;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 22, 38, 0.18);
  --shadow-soft: 0 14px 40px rgba(7, 22, 38, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 22, 38, 0.97);
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(7, 22, 38, 0.18);
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand img {
  width: 64px;
  height: 50px;
  object-fit: contain;
  background: var(--white);
  border-radius: 3px;
  padding: 3px;
}

.brand strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.mobile-toggle {
  border: 0;
  color: #dce5ee;
  background: transparent;
  font: 700 13px/1 Arial, Helvetica, sans-serif;
  border-radius: 4px;
  padding: 12px 13px;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-2);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7, 22, 38, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), #f0d983);
}

.nav-links a.nav-cta {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), #f0d983);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.btn-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 22, 38, 0.22);
}

.btn:focus-visible,
.nav-cta:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(224, 193, 95, 0.45);
  outline-offset: 2px;
}

.mobile-toggle {
  display: none;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 38, 0.98) 0%, rgba(7, 22, 38, 0.9) 43%, rgba(7, 22, 38, 0.32) 100%),
    linear-gradient(180deg, rgba(7, 22, 38, 0.08), rgba(7, 22, 38, 0.28));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: calc(50% - 8px);
  top: 86px;
  bottom: 86px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(224, 193, 95, 0.78), transparent);
  z-index: 2;
}

.hero-img {
  position: absolute;
  inset: 0 0 0 45%;
  width: 55%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.08) brightness(1.08);
  transform: scale(1.015);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 88px;
}

.hero-card {
  max-width: 560px;
  padding: 8px 0;
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin: 24px 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin-bottom: 18px;
  text-wrap: balance;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 610px;
  color: #d8e2ec;
  font-size: 18px;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 52px;
}

.proof-item {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(11, 41, 68, 0.92), rgba(16, 55, 85, 0.76));
  padding: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.proof-item strong {
  display: block;
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1;
}

.proof-item span {
  color: #dbe4ed;
  font-size: 13px;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 94px 0;
  background: var(--white);
}

.section-alt {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef3f6 100%);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 22, 38, 0.98), rgba(11, 41, 68, 0.98)),
    var(--navy);
  overflow: hidden;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(203, 161, 58, 0.14), transparent 34%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

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

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 29, 43, 0.1);
}

.section-head p {
  max-width: 500px;
  color: var(--muted);
}

.section-dark .section-head p {
  color: #cbd7e3;
}

.section-dark .section-head {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.service-card,
.credential-row {
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16, 29, 43, 0.07);
}

.service-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.card:hover,
.credential-row:hover,
.notice:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(7, 22, 38, 0.16);
  border-color: rgba(203, 161, 58, 0.32);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.08) brightness(1.04);
}

.service-card div {
  padding: 28px;
  border-top: 4px solid var(--gold);
}

.service-card h3,
.card h3 {
  margin-bottom: 12px;
}

.service-card ul,
.card ul,
.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-card li,
.card li {
  position: relative;
  padding-left: 18px;
  margin: 9px 0;
  color: var(--muted);
}

.service-card li::before,
.card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dark-card {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(11, 41, 68, 0.98), rgba(7, 22, 38, 0.98));
  border-color: rgba(224, 193, 95, 0.24);
  border-top: 5px solid var(--gold);
}

.dark-card p,
.dark-card li {
  color: #d7e1eb;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.split-img {
  width: 100%;
  min-height: 460px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(1.14) contrast(1.08) brightness(1.05);
}

.process {
  counter-reset: step;
}

.process-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-row b {
  color: var(--gold-2);
}

.process-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 19px;
}

.process-row span {
  color: #c8d5e1;
}

.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  min-height: 430px;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(1.14) contrast(1.08) brightness(0.94);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 38, 0.92), rgba(7, 22, 38, 0.5)),
    linear-gradient(180deg, rgba(7, 22, 38, 0.12), rgba(7, 22, 38, 0.42));
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.page-hero-box {
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 6px;
  background: rgba(7, 22, 38, 0.78);
  border: 1px solid rgba(224, 193, 95, 0.24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.credential-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  margin-bottom: 16px;
  border-left: 5px solid var(--gold);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.credential-row span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.credential-row strong {
  display: block;
  font-size: 22px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-panel,
.form-panel {
  border-radius: 6px;
  padding: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 29, 43, 0.08);
}

.contact-panel h2,
.form-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #cfd8e2;
  border-radius: 4px;
  padding: 14px 13px;
  color: var(--ink);
  background: #fbfdff;
  font: 15px/1.3 Arial, Helvetica, sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(203, 161, 58, 0.14);
}

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

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: #d7e1eb;
  background:
    linear-gradient(180deg, #081a2c 0%, #04101d 100%);
  border-top: 5px solid var(--gold);
}

.footer-main {
  padding: 64px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  width: 152px;
  padding: 9px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col p,
.footer-col li,
.footer-col a {
  color: #c5d2de;
  font-size: 14px;
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #030c16;
}

.footer-bottom .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold-2);
  font-weight: 800;
}

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

.notice {
  border-left: 4px solid var(--gold);
  padding: 20px 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: 0 6px 6px 0;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--navy);
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero-img {
    inset: 0;
    width: 100%;
    opacity: 0.4;
  }

  .hero::before {
    background: rgba(7, 22, 38, 0.88);
  }

  .hero::after {
    display: none;
  }

  .proof-strip,
  .grid-3,
  .grid-4,
  .footer-grid,
  .split,
  .contact-grid,
  .seo-list {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: block;
  }

  .form-row {
    display: block;
  }

  .footer-bottom .footer-inner {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 12px;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .section {
    padding: 72px 0;
  }

  .proof-strip {
    margin-top: 32px;
  }

  .page-hero-box,
  .contact-panel,
  .form-panel {
    padding: 22px;
  }

  .credential-row {
    grid-template-columns: 1fr;
  }
}
