:root {
  --navy: #0b2d5c;
  --navy-2: #073a73;
  --red: #e53935;
  --red-dark: #c62828;
  --ink: #172033;
  --muted: #657083;
  --line: #dfe5ee;
  --soft: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(11, 45, 92, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px 36px;
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, min-height 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  background: rgba(11, 45, 92, 0.98);
  box-shadow: 0 14px 32px rgba(8, 31, 61, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-text strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0;
}

.brand-text span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  font-size: 0.88rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: #ffd7d7;
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(229, 57, 53, 0.24);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

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

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1605745341112-85968b19335b?auto=format&fit=crop&w=2200&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 24, 48, 0.9) 0%, rgba(11, 45, 92, 0.72) 44%, rgba(11, 45, 92, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 45, 92, 0.55), transparent 40%);
}

.hero-content {
  position: relative;
  padding-top: 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb5b3;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 5.75rem);
  font-weight: 800;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
}

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

.stats-band {
  background: var(--navy);
  color: var(--white);
}

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

.stats-grid div {
  padding: 34px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-grid strong {
  display: block;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: 72px;
  align-items: start;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.section-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy p,
.network-layout p,
.quotation-layout p,
.footer p,
.news-card p,
.service-card p {
  margin: 0;
}

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

.section-heading.compact {
  max-width: 660px;
}

.service-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(11, 45, 92, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card {
  padding: 32px;
}

.service-card:hover,
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 57, 53, 0.45);
  box-shadow: var(--shadow);
}

.service-card svg {
  width: 42px;
  height: 42px;
  color: var(--red);
  stroke-width: 1.8;
}

.service-card h3 {
  margin-top: 24px;
  color: var(--navy);
  font-size: 1.2rem;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.client-logo-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.client-logo-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.network-section {
  padding: 104px 0;
  background: var(--navy);
  color: var(--white);
}

.network-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.network-layout h2 {
  color: var(--white);
}

.network-layout p {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: #ffcfce;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
}

.map-panel {
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #0e376d;
  background-size: 44px 44px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 28px 70px rgba(0, 0, 0, 0.18);
}

.map-panel svg {
  width: 100%;
  height: auto;
}

.map-land {
  fill: rgba(255, 255, 255, 0.18);
}

.route {
  fill: none;
  stroke: #ff6b5f;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: dash 8s linear infinite;
}

.hub {
  fill: var(--white);
  stroke: var(--red);
  stroke-width: 5;
}

@keyframes dash {
  to {
    stroke-dashoffset: -160;
  }
}

.quotation-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.quotation-layout p {
  margin-top: 18px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.newsletter input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8e6;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.quote-form textarea {
  resize: vertical;
  min-height: 118px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.newsletter input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0b5f37;
  background: #e7f7ef;
}

.form-status.is-error {
  color: #9b1c1c;
  background: #fde8e8;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.choose-grid div {
  min-height: 156px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  text-align: center;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.choose-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 57, 53, 0.5);
}

.choose-grid svg {
  width: 42px;
  height: 42px;
  color: var(--red);
  stroke-width: 1.8;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card div {
  padding: 24px;
}

.news-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.news-card p {
  margin-top: 12px;
  color: var(--muted);
}

.career-cta {
  background-image:
    linear-gradient(90deg, rgba(11, 45, 92, 0.92), rgba(11, 45, 92, 0.72)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 74px 0;
}

.career-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.career-inner h2 {
  max-width: 760px;
  color: var(--white);
}

.footer {
  background: #071b36;
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.8fr 0.8fr 1.05fr;
  gap: 34px;
}

.footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  transition: color 0.2s ease;
}

.footer a:not(.brand):hover {
  color: #ffb5b3;
}

.footer-brand p {
  margin-top: 18px;
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.socials svg {
  width: 18px;
  height: 18px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 8px;
  margin-top: 16px;
}

.newsletter button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 14px 22px;
  }

  .main-nav {
    gap: 12px;
    font-size: 0.8rem;
  }

  .header-cta {
    padding: 0 16px;
  }

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

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

@media (max-width: 900px) {
  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px 14px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .stats-grid,
  .service-grid,
  .news-grid,
  .quotation-layout,
  .network-layout,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr 1fr;
  }

  .quotation-layout,
  .network-layout,
  .split {
    gap: 34px;
  }

  .career-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-header {
    min-height: 70px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .section {
    padding: 72px 0;
  }

  .stats-grid,
  .service-grid,
  .news-grid,
  .quotation-layout,
  .network-layout,
  .split,
  .quote-form,
  .choose-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    padding: 24px 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-grid div:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .client-logo-panel {
    overflow-x: auto;
  }

  .client-logo-panel img {
    min-width: 760px;
  }

  .quote-form {
    padding: 20px;
  }

  .map-panel {
    padding: 12px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
