:root {
  --ink: #061727;
  --muted: #6f7c88;
  --paper: #ffffff;
  --soft: #eef3f6;
  --line: #cbd7df;
  --accent: #f5821f;
  --accent-dark: #d86c12;
  --blue: #17496f;
  --navy: #031422;
  --silver: #b7c3cd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #f8fbfc;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(3, 20, 34, 0.98);
  border-bottom: 1px solid rgba(183, 195, 205, 0.28);
  box-shadow: 0 10px 30px rgba(3, 20, 34, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  width: 210px;
  height: 86px;
  overflow: hidden;
  flex: 0 0 auto;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid rgba(183, 195, 205, 0.26);
  background: var(--navy);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.26);
}

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

.site-nav a {
  color: var(--silver);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  color: #ffffff;
}

.header-call,
.button,
.menu-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid var(--blue);
  cursor: pointer;
}

.header-call,
.button.ghost,
.menu-toggle {
  color: #ffffff;
  border-color: rgba(183, 195, 205, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  color: #ffffff;
  border-color: var(--accent);
  background: var(--accent);
}

.button.ghost {
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus,
.header-call:hover,
.header-call:focus {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-content {
  position: relative;
  max-width: 820px;
  align-self: center;
  padding: clamp(56px, 9vw, 118px) clamp(18px, 5vw, 64px);
  background: linear-gradient(90deg, rgba(3, 20, 34, 0.9), rgba(3, 20, 34, 0.6), rgba(3, 20, 34, 0));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.dark .eyebrow,
.image-band .eyebrow,
.cta .eyebrow {
  color: var(--accent);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-content p,
.page-title p,
.cta p {
  max-width: 660px;
  font-size: 19px;
}

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

.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 44px);
  padding: 22px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(183, 195, 205, 0.3);
  background: #e9f0f4;
}

.trust-row img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  background: #ffffff;
}

.trust-row p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.section,
.page-title,
.cta {
  padding: clamp(54px, 7vw, 98px) clamp(18px, 5vw, 64px);
}

.page-title {
  background: linear-gradient(135deg, #eaf1f5 0%, #ffffff 100%);
}

.page-title.dark,
.cta {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy) 0%, #082338 62%, #123d5e 100%);
}

.page-title.dark p,
.cta p {
  color: #d8e0e5;
}

.intro-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

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

.highlight-list span,
.card,
.service-list article,
.notice,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(3, 20, 34, 0.06);
}

.highlight-list span {
  padding: 16px;
  font-weight: 900;
  text-align: center;
}

.cards-section {
  background: #eef3f6;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.card,
.service-list article,
.notice,
.contact-card,
.contact-form {
  padding: 26px;
}

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

.image-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 64px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy) 0%, #0b2b43 100%);
}

.image-band img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.image-band p {
  color: #d8e0e5;
}

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

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.notice {
  border-color: rgba(245, 130, 31, 0.5);
  background: #fff3e7;
}

.badge-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.badge-panel img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #c9d2d8;
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(245, 130, 31, 0.18);
}

.contact-form button {
  width: fit-content;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: #ffffff;
  background: var(--navy);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    padding-top: 12px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
    border-top: 1px solid rgba(183, 195, 205, 0.25);
  }

  .header-call {
    order: 3;
  }

  .intro-grid,
  .two-column,
  .contact-grid,
  .image-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .brand {
    width: 164px;
    height: 68px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .header-call,
  .menu-toggle,
  .button,
  .contact-form button {
    width: 100%;
  }

  .hero {
    min-height: 560px;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

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