:root {
  --blue-900: #06395f;
  --blue-800: #075487;
  --blue-700: #0874b4;
  --blue-600: #0b87cf;
  --red-600: #e53935;
  --red-700: #bd262c;
  --ink: #142233;
  --muted: #5b6a7c;
  --line: #dbe4ee;
  --surface: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 57, 95, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--blue-900);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 228, 238, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 38px;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 11px 6px 4px;
  border: 5px solid var(--red-600);
  border-top: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 31px;
  left: 6px;
  top: 2px;
  border-left: 5px solid var(--red-600);
  border-top: 5px solid var(--red-600);
  transform: rotate(45deg);
  transform-origin: center;
}

.brand-word {
  display: grid;
  gap: 0;
}

.brand-name {
  color: var(--blue-700);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-services {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: #33485f;
}

.nav-links a:hover {
  color: var(--blue-700);
}

.header-call {
  display: grid;
  gap: 1px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-800);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 116, 180, 0.18);
}

.header-call span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 15px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--blue-900);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06);
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 38, 64, 0.92), rgba(4, 38, 64, 0.68) 42%, rgba(4, 38, 64, 0.18) 72%),
    linear-gradient(0deg, rgba(4, 38, 64, 0.4), rgba(4, 38, 64, 0.16));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 70px 0 110px;
}

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

.hero .eyebrow {
  color: #ff6c62;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 625px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 900;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(229, 57, 53, 0.26);
}

.btn-primary:hover {
  background: var(--red-700);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: var(--white);
  color: var(--blue-800);
}

.hero-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-strip span {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-900);
  font-weight: 900;
  text-align: center;
  border-right: 1px solid var(--line);
}

.hero-strip span:last-child {
  border-right: 0;
}

.quick-actions {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-actions a {
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(20, 34, 51, 0.08);
}

.quick-actions strong,
.quick-actions span {
  display: block;
}

.quick-actions strong {
  margin-bottom: 7px;
  color: var(--blue-800);
  font-size: 18px;
}

.quick-actions span {
  color: var(--muted);
}

.section,
.split-section,
.contact-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 90px 0 0;
}

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

h2 {
  color: var(--blue-900);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

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

.service-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
  font-size: 20px;
}

.service-card:nth-child(even) .service-icon {
  background: var(--red-600);
}

.service-card h3,
.special-grid h3 {
  color: var(--blue-900);
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p,
.special-grid p,
.split-copy p,
.proof-panel p {
  color: var(--muted);
}

.split-section {
  margin-top: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 30px;
  align-items: stretch;
}

.split-copy {
  padding: 54px;
  border-radius: 8px;
  background: var(--blue-900);
  color: var(--white);
}

.split-copy h2 {
  color: var(--white);
}

.split-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

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

.proof-panel {
  display: grid;
  align-content: center;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 135, 207, 0.08), rgba(229, 57, 53, 0.08)),
    var(--surface);
  border: 1px solid var(--line);
}

.panel-label {
  color: var(--red-600);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.proof-panel strong {
  color: var(--blue-800);
  font-size: clamp(68px, 10vw, 112px);
  line-height: 0.95;
  font-weight: 900;
}

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

.special-grid article {
  min-height: 210px;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
}

.special-grid article:nth-child(2) {
  background: linear-gradient(135deg, var(--red-700), var(--red-600));
}

.special-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
  font-weight: 900;
}

.special-grid h3,
.special-grid p {
  color: var(--white);
}

.special-grid p {
  opacity: 0.82;
}

.contact-band {
  margin-top: 90px;
  margin-bottom: 50px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 57, 95, 0.96), rgba(8, 116, 180, 0.9)),
    var(--blue-800);
}

.contact-band h2 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 10px;
}

.contact-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 30px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-900);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav-links,
  .header-call {
    display: none;
  }

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

  .mobile-menu {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 16px 16px;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 14px;
    border-radius: 8px;
    background: var(--surface);
    font-weight: 800;
  }

  .mobile-menu .mobile-call {
    color: var(--white);
    background: var(--red-600);
    text-align: center;
  }

  .quick-actions,
  .service-grid,
  .special-grid,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    gap: 16px;
  }

  .split-copy {
    padding: 34px;
  }

  .contact-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: calc(100% - 24px);
    height: 70px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 32px;
  }

  .brand-name {
    font-size: 21px;
  }

  .brand-services {
    max-width: 190px;
    font-size: 9px;
  }

  .hero {
    min-height: calc(100vh - 70px);
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 38, 64, 0.94), rgba(4, 38, 64, 0.62) 72%, rgba(4, 38, 64, 0.18)),
      linear-gradient(90deg, rgba(4, 38, 64, 0.86), rgba(4, 38, 64, 0.24));
  }

  .hero-content {
    width: calc(100% - 24px);
    padding: 48px 0 128px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-copy {
    font-size: 18px;
  }

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

  .hero-strip {
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: 0;
  }

  .hero-strip span {
    padding: 11px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-actions,
  .service-grid,
  .special-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .quick-actions,
  .section,
  .split-section,
  .contact-band {
    width: calc(100% - 24px);
  }

  .section {
    padding-top: 68px;
  }

  .split-section,
  .contact-band {
    margin-top: 68px;
  }

  .split-copy,
  .proof-panel,
  .contact-band {
    padding: 26px;
  }
}
