@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --elite-blue: #0c74be;
  --elite-blue-dark: #173f83;
  --elite-navy: #062f63;
  --elite-line: #d8d8d8;
  --elite-ink: #0c1526;
  --elite-muted: #5f6b7a;
  --elite-field: #f4f9ff;
  --elite-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--elite-ink);
  background: var(--elite-white);
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

.site-shell {
  min-height: 100vh;
  background: #fff;
}

.elite-header {
  position: relative;
  z-index: 20;
  background: var(--elite-blue);
  color: #fff;
}

.elite-header-inner {
  width: min(1300px, calc(100% - 120px));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.elite-logo {
  width: 116px;
  min-width: 116px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-weight: 600;
}

.logo-emblem {
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Bebas Neue", Arial, sans-serif;
  font-size: 27px;
}

.logo-main {
  margin-top: 6px;
  font-size: 27px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.logo-sub {
  margin-top: 5px;
  font-size: 7px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.elite-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.elite-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #fff;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.elite-nav a:hover,
.elite-nav a:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}

.elite-nav .has-children::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.8px solid #fff;
  border-bottom: 1.8px solid #fff;
  transform: rotate(45deg) translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-phone {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.elite-button,
.header-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  background: var(--elite-blue);
  color: #fff;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.elite-button:hover,
.outline-button:hover,
.header-button:hover {
  transform: translateY(-1px);
}

.header-button {
  min-width: 184px;
  min-height: 49px;
  background: #fff;
  color: var(--elite-blue);
}

.outline-button {
  background: var(--elite-blue-dark);
}

.menu-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-toggle span {
  top: 20px;
}

.mobile-toggle::before {
  top: 12px;
}

.mobile-toggle::after {
  bottom: 12px;
}

.menu-checkbox:checked ~ .elite-header-inner .mobile-toggle span {
  opacity: 0;
}

.menu-checkbox:checked ~ .elite-header-inner .mobile-toggle::before {
  transform: translateY(8px) rotate(45deg);
}

.menu-checkbox:checked ~ .elite-header-inner .mobile-toggle::after {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.home-hero {
  min-height: 846px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 24px 160px;
  position: relative;
  overflow: hidden;
  background: #061a2e;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--hero-image);
  background-position: center 70%;
  background-size: cover;
  opacity: 0.72;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 52% 46%, rgba(12, 116, 190, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(6, 18, 32, 0.82) 0%, rgba(6, 18, 32, 0.58) 48%, rgba(6, 18, 32, 0.78) 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  text-align: center;
}

.display-title {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(52, 52, 52, 0.45), 0 5px 20px rgba(0, 0, 0, 0.16);
}

.home-kicker {
  margin: 24px auto 0;
  max-width: 760px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.35), 0 1px 6px rgba(0, 0, 0, 0.28);
}

.home-hero .elite-button {
  margin-top: 50px;
}

.section {
  padding: 76px 0;
  background: #fff;
}

.section.compact {
  padding: 54px 0;
}

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

.section.pale {
  background: #f5f8fb;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
}

.split.reverse .copy {
  order: 2;
}

.split.reverse .media {
  order: 1;
}

.copy h2,
.section-heading h2,
.detail-content h2,
.detail-content h3 {
  margin: 0 0 18px;
  color: var(--elite-blue);
  font-size: 38px;
  line-height: 1.16;
  font-weight: 800;
}

.copy h3 {
  margin: 0 0 14px;
  color: var(--elite-navy);
  font-size: 26px;
  line-height: 1.2;
}

.copy p,
.detail-content p,
.detail-content li {
  margin: 0 0 18px;
  color: #121b2c;
  font-size: 17px;
  line-height: 1.6;
}

.blue .copy h2,
.blue .copy h3,
.blue .copy p,
.blue .section-heading h2,
.blue .section-heading p {
  color: #fff;
}

.media img,
.row-card img,
.image-card img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  border-radius: 8px;
}

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

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

.section-heading h2 {
  margin-bottom: 12px;
}

.section-heading p {
  margin: 0;
  color: #2a3442;
  font-size: 18px;
  line-height: 1.62;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
}

.metric {
  min-height: 98px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  text-align: center;
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.feature {
  padding: 34px 28px;
  border-top: 4px solid var(--elite-blue);
  background: #fff;
  box-shadow: 0 18px 48px rgba(13, 44, 78, 0.1);
}

.feature h3,
.taxonomy-card h3,
.row-card h2 {
  margin: 0 0 12px;
  color: var(--elite-blue);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
}

.feature p,
.taxonomy-card p,
.row-card p {
  margin: 0;
  color: #192335;
  font-size: 16px;
  line-height: 1.62;
}

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

.taxonomy-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #e6edf5;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.taxonomy-card:hover,
.taxonomy-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(13, 44, 78, 0.12);
}

.taxonomy-card img {
  width: 100%;
  height: 132px;
  margin: 0 0 18px;
  object-fit: cover;
  border-radius: 8px;
}

.taxonomy-card .card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--elite-blue-dark);
  font-weight: 800;
}

.masthead {
  min-height: 278px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)), var(--masthead-image);
  background-position: center;
  background-size: cover;
  text-align: center;
}

.masthead h1 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 76px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.masthead .underline,
.contact-hero .underline {
  width: 86px;
  height: 4px;
  margin: 20px auto 0;
  background: var(--elite-blue);
}

.row-list {
  display: grid;
  gap: 72px;
}

.row-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.row-card:nth-child(even) {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
}

.row-card:nth-child(even) .row-copy {
  order: 2;
}

.row-card:nth-child(even) .row-media {
  order: 1;
}

.row-card h2 {
  font-size: 38px;
}

.row-card .elite-button {
  margin-top: 28px;
  background: var(--elite-blue-dark);
}

.detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 58px;
  align-items: start;
}

.detail-content {
  max-width: 760px;
}

.detail-content h2 {
  margin-top: 34px;
}

.detail-content h2:first-child {
  margin-top: 0;
}

.detail-content ul {
  margin: 0 0 24px 20px;
  padding: 0;
}

.detail-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 18px;
}

.side-box {
  padding: 24px;
  background: #f5f8fb;
  border-left: 4px solid var(--elite-blue);
}

.side-box h3 {
  margin: 0 0 10px;
  color: var(--elite-blue-dark);
  font-size: 22px;
  line-height: 1.2;
}

.side-box p {
  margin: 0 0 14px;
  color: #182236;
  font-size: 15px;
}

.side-box a {
  color: var(--elite-blue);
  font-weight: 800;
}

.contact-hero {
  padding: 90px 0 44px;
  text-align: center;
}

.contact-hero h1 {
  margin: 0;
  color: var(--elite-blue-dark);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-hero .underline {
  background: #c9c9c9;
}

.contact-hero h2 {
  margin: 44px auto 0;
  max-width: 650px;
  color: var(--elite-blue);
  font-size: 34px;
  line-height: 1.04;
  font-weight: 800;
}

.contact-hero h2 span {
  color: var(--elite-navy);
}

.contact-hero p {
  max-width: 720px;
  margin: 38px auto 0;
  color: #0f1726;
  font-size: 17px;
  line-height: 1.45;
}

.contact-grid {
  width: min(1000px, calc(100% - 96px));
  margin: 0 auto 86px;
  padding: 34px;
  border: 1px solid #d8e7f4;
  border-top: 6px solid var(--elite-blue);
  background:
    linear-gradient(135deg, rgba(12, 116, 190, 0.06), rgba(255, 255, 255, 0) 46%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(6, 47, 99, 0.13);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #1c2738;
  font-size: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.field-label {
  display: block;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 48px;
  border: 1px solid var(--elite-blue);
  background: var(--elite-field);
  color: #172033;
  font-family: "Poppins", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 6px;
  outline: 0;
}

.field select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--elite-blue-dark) 50%),
    linear-gradient(135deg, var(--elite-blue-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 21px,
    calc(100% - 16px) 21px;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--elite-blue-dark);
  box-shadow: 0 0 0 4px rgba(12, 116, 190, 0.13);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.required {
  color: #c10000;
  margin-left: 1px;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 12px;
}

.footer {
  background: #061a2e;
  color: #fff;
  padding: 58px 0 34px;
}

.footer-intro {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-intro h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 0.98;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-intro p {
  max-width: 820px;
}

.footer-map {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  margin: 30px 0 36px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.footer-rule {
  height: 1px;
  margin: 0 0 34px;
  background: rgba(255, 255, 255, 0.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-logo {
  color: #fff;
}

.footer-logo .logo-emblem {
  margin-left: 0;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.footer p,
.footer a {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact-heading {
  margin-top: 22px !important;
}

.footer-bottom {
  margin-top: 34px;
  text-align: center;
  font-style: italic;
  font-size: 14px;
}

.fade-in {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .elite-header-inner {
    width: min(100%, calc(100% - 44px));
  }

  .elite-nav,
  .header-phone,
  .header-button {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-panel {
    display: block;
    position: fixed;
    inset: 118px 0 auto;
    z-index: 18;
    max-height: calc(100vh - 118px);
    overflow: auto;
    background: var(--elite-blue);
    padding: 14px 24px 34px;
    transform: translateY(-120%);
    transition: transform 0.24s ease;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.18);
  }

  .menu-checkbox:checked ~ .mobile-panel {
    transform: translateY(0);
  }

  .mobile-panel a {
    display: block;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-weight: 800;
  }

  .split,
  .split.reverse,
  .row-card,
  .row-card:nth-child(even),
  .detail-wrap {
    grid-template-columns: 1fr;
  }

  .split.reverse .copy,
  .split.reverse .media,
  .row-card:nth-child(even) .row-copy,
  .row-card:nth-child(even) .row-media {
    order: initial;
  }

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

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .elite-header-inner {
    min-height: 104px;
    width: calc(100% - 36px);
  }

  .elite-logo {
    width: 106px;
    min-width: 106px;
  }

  .logo-emblem {
    width: 46px;
    height: 46px;
    font-size: 23px;
  }

  .logo-main {
    font-size: 24px;
  }

  .mobile-panel {
    inset: 104px 0 auto;
    max-height: calc(100vh - 104px);
  }

  .home-hero {
    min-height: 730px;
    padding: 138px 22px 120px;
  }

  .display-title {
    font-size: 52px;
  }

  .home-kicker {
    font-size: 16px;
  }

  .home-hero .elite-button {
    margin-top: 44px;
  }

  .container,
  .contact-grid {
    width: calc(100% - 44px);
  }

  .section {
    padding: 58px 0;
  }

  .copy h2,
  .section-heading h2,
  .row-card h2 {
    font-size: 31px;
  }

  .copy p,
  .detail-content p,
  .detail-content li {
    font-size: 16px;
  }

  .metric-row,
  .feature-grid,
  .taxonomy-grid,
  .footer-grid,
  .footer-intro,
  .contact-form,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    width: calc(100% - 32px);
    padding: 24px 18px;
  }

  .footer-map iframe {
    height: 180px;
  }

  .metric {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
  }

  .metric:first-child {
    border-top: 0;
  }

  .media img,
  .row-card img,
  .image-card img {
    height: 252px;
  }

  .masthead {
    min-height: 250px;
  }

  .masthead h1 {
    font-size: 58px;
  }

  .contact-hero {
    padding-top: 66px;
  }

  .contact-hero h1 {
    font-size: 58px;
  }

  .contact-hero h2 {
    font-size: 29px;
  }
}
