:root {
  --primary: #4a8bd4;
  --primary-dark: #2f6fb4;
  --accent: #80c6f5;
  --flag-green: #138a36;
  --flag-white: #f3f3f3;
  --flag-red: #c92a2a;
  --neutral-100: #f5f7fa;
  --neutral-200: #e1e6ed;
  --neutral-700: #2f3a47;
  --neutral-900: #121820;
  --text: #3b4652;
  --text-light: #69788a;
  --max-width: 1120px;
  --shadow-soft: 0 20px 40px rgba(18, 24, 32, 0.08);
  --transition: all 0.3s ease;
}

/* nav height is set dynamically via JS */
:root {
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  margin: 0 0 0.5rem;
  color: var(--neutral-900);
}

p {
  margin: 0 0 1rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--neutral-100);
}

.privacy-page .section {
  padding: 1.25rem 0;
}

.privacy-page .section + .section {
  padding-top: 0.5rem;
}

.privacy-page .section:last-of-type {
  padding-bottom: 1.25rem;
}

.privacy-page p {
  margin-bottom: 0.6rem;
}

.privacy-page h2 {
  margin-bottom: 0.45rem;
}

.privacy-page main ul {
  list-style: disc;
  margin: 0.25rem 0 0.5rem 1rem;
  padding: 0;
  color: var(--text-light);
}

.privacy-page main p + ul {
  margin-top: 0.15rem;
}

.privacy-page main li + li {
  margin-top: 0.14rem;
}

.section h2 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 48rem;
}

/* Layout */

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.one-column .mog-copy {
  width: 100%;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Header & nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #1a2940, #24456f);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(5, 9, 20, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.logo-link img {
  height: 44px;
  width: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-block: 0.25rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 0;
}

/* Hero */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2940, #24456f);
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1), transparent 55%),
    radial-gradient(circle at 100% 20%, rgba(255, 255, 255, 0.08), transparent 55%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: 3rem;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.flag-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.flag-icon {
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  width: 36px;
  height: 10px;
}

.flag-icon span {
  flex: 1;
}

.flag-icon .green {
  background: var(--flag-green);
}

.flag-icon .white {
  background: var(--flag-white);
}

.flag-icon .red {
  background: var(--flag-red);
}

.hero h1 {
  font-size: clamp(2.1rem, 2.4vw + 1.6rem, 2.8rem);
  color: #ffffff;
  max-width: 20ch;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin: 0;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.4rem;
}


.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 700 / 442;
  justify-self: end;
  transform: translateY(36px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(5, 9, 20, 0.7);
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(5, 9, 20, 0.45);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* Cards, highlight, fleet */

.highlight-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--neutral-200);
}

.highlight-card h3 {
  font-size: 1.1rem;
}

.highlight-card ul {
  margin-top: 0.75rem;
}

.highlight-card li {
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
}

.highlight-card li + li {
  margin-top: 0.35rem;
}

.highlight-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.highlight-list {
  list-style: disc;
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.highlight-list li + li {
  margin-top: 0.35rem;
}

.card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 8px 20px rgba(18, 24, 32, 0.06);
  border: 1px solid var(--neutral-200);
}

.card h3 {
  font-size: 1.05rem;
}

.card p {
  font-size: 0.94rem;
  color: var(--text-light);
}

.fleet-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fleet-gallery figure {
  margin: 0;
}

.fleet-gallery img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.mog-copy {
  width: min(100%, 520px);
}

.mog-visual {
  width: min(100%, 520px);
  margin-left: auto;
}

.mog-visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  margin-left: auto;
}

.mog-card {
  width: min(100%, 520px);
  background: #ffffff;
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: stretch;
}

/* Form */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.1rem;
}

.form-intro {
  grid-column: 1 / -1;
  margin: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.candidate-only,
.partnership-only {
  display: none;
}

.js-enabled .candidate-only.active,
.js-enabled .partnership-only.active {
  display: block;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.required-mark {
  color: var(--primary);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--neutral-200);
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(74, 139, 212, 0.15);
}

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

.form-privacy {
  display: flex;
}

.form-privacy label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.form-privacy input {
  width: auto;
  margin: 0;
}

.form-status {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-status.success {
  color: var(--flag-green);
}

.form-status.error {
  color: var(--flag-red);
}

.file-list {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.file-list ul {
  margin: 0.25rem 0 0;
  padding-left: 1.2rem;
}

.file-list li + li {
  margin-top: 0.2rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
  color: var(--text);
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 600;
}

/* Footer */

.site-footer {
  background: var(--neutral-900);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 64px;
  margin-bottom: 0.75rem;
  border-radius: 8px;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer ul li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer a {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Utility */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: #ffffff;
  color: var(--neutral-900);
  padding: 0.65rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--neutral-200);
  z-index: 200;
  transition: left 0.2s ease;
}

.skip-link:focus-visible {
  left: 0.75rem;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-color: transparent;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.25rem;
  }

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

  .footer-content {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  :root {
    --nav-height: 64px;
  }

  html {
    scroll-padding-top: 52px;
  }

  .header-inner {
    padding-block: 0.75rem;
  }

  .main-nav ul {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background: #1a2940;
    padding: 0.75rem 1.25rem 1.1rem;
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(5, 10, 25, 0.75);
    flex-direction: column;
    align-items: flex-start;
    min-width: 210px;
    transform-origin: top right;
  }

  .js-enabled .main-nav ul {
    transform: scaleY(0.8);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  .js-enabled .main-nav ul[aria-expanded="true"] {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .js-enabled .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

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

  .hero-visual {
    order: -1;
    transform: none;
    margin-bottom: 1.25rem;
  }

  .hero-visual img {
    max-width: 320px;
    margin-inline: auto;
  }

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

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

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

  .section {
    padding: 3.25rem 0;
  }

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

  .footer-content {
    grid-template-columns: minmax(0, 1fr);
  }
}
.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  margin: 0.35rem 0 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(74, 139, 212, 0.1);
}
