:root {
  --navy-950: #06111d;
  --navy-900: #081727;
  --navy-850: #0b1d30;
  --navy-800: #0d243a;
  --navy-700: #153b5c;
  --gold: #d4af37;
  --gold-strong: #e1bb43;
  --gold-pale: #f4e8bd;
  --safety: #f2ea00;
  --ink: #132131;
  --muted: #5d6975;
  --line: #dce2e8;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(5, 17, 29, 0.14);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--safety);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--safety);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 92px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(13, 36, 58, 0.1);
  transition: height 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  height: 78px;
  box-shadow: 0 12px 34px rgba(6, 17, 29, 0.12);
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 21%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--safety));
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease;
}

.scrolled .brand img {
  width: 51px;
  height: 51px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.065em;
}

.brand-copy small {
  margin-top: 7px;
  color: #a87912;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.main-nav > a {
  position: relative;
  color: #213243;
  font-size: 0.91rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:hover {
  color: var(--navy-700);
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  padding: 12px 18px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(8, 23, 39, 0.17);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: var(--navy-700);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--navy-900);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 865px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.hero-image,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 54%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 14, 24, 0.98) 0%, rgba(5, 18, 31, 0.93) 40%, rgba(6, 18, 30, 0.52) 68%, rgba(6, 17, 29, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 17, 29, 0.75), transparent 42%);
}

.hero-grid {
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 92px;
  right: 0;
  width: min(38vw, 520px);
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--gold) 42%, var(--safety));
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 865px;
  padding-top: 170px;
  padding-bottom: 172px;
  gap: 44px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--gold-pale);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--safety));
  transform: skewX(-25deg);
}

.eyebrow.dark {
  color: #8a6412;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.1rem, 6.1vw, 5.9rem);
  font-weight: 900;
  letter-spacing: -0.058em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-strong);
  font-style: normal;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #d5dce3;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 21px;
  height: 21px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(120deg, var(--gold), #f1d263 62%, var(--safety));
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.22);
}

.button-primary:hover {
  background: linear-gradient(120deg, #e7c652, #f5da74 62%, #fff848);
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(9px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
}

.credential-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 294px;
  padding: 18px;
  margin-bottom: 8px;
  background: rgba(6, 17, 29, 0.76);
  border: 1px solid rgba(225, 187, 67, 0.58);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.credential-mark {
  display: grid;
  flex: none;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-strong);
  background: rgba(212, 175, 55, 0.12);
  border-radius: 50%;
}

.credential-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-card > span:last-child {
  display: grid;
  line-height: 1.35;
}

.credential-card small {
  color: #b7c1ca;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-card strong {
  margin: 2px 0;
  color: #fff;
  font-size: 1rem;
}

.credential-card span span {
  color: var(--gold-pale);
  font-size: 0.77rem;
}

.trust-bar {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(6, 17, 29, 0.93);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

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

.trust-grid > div {
  display: grid;
  min-height: 112px;
  padding: 24px 28px;
  align-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

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

.trust-grid strong {
  color: var(--gold-strong);
  font-size: 1.03rem;
  letter-spacing: 0.02em;
}

.trust-grid span {
  margin-top: 2px;
  color: #bdc6ce;
  font-size: 0.83rem;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}

.section-heading > .eyebrow {
  margin-top: 12px;
}

.section-heading h2,
.fleet-copy h2,
.about h2,
.contact h2,
.technology h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 710px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.services {
  position: relative;
  background: var(--soft);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 4vw;
  width: 170px;
  height: 11px;
  background: linear-gradient(90deg, var(--gold), var(--safety));
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

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

.service-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(6, 17, 29, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -52px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(13, 36, 58, 0.035);
  transform: rotate(45deg);
}

.service-card.featured {
  color: #fff;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.service-card.featured::after {
  border-color: rgba(212, 175, 55, 0.1);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: #9ca7b2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.featured .service-number {
  color: var(--gold-pale);
}

.icon-box {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--navy-800);
  background: #eff2f5;
  border-radius: 12px;
}

.featured .icon-box {
  color: var(--gold-strong);
  background: rgba(212, 175, 55, 0.12);
}

.icon-box svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card.featured h3 {
  color: #fff;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: #c4cdd5;
}

.service-card ul {
  display: grid;
  gap: 8px;
  padding: 20px 0 0;
  margin: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-card.featured ul {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: #465564;
  font-size: 0.88rem;
}

.service-card.featured li {
  color: #d4dbe1;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--gold);
}

.technology {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.technology::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 80% 24%, rgba(212, 175, 55, 0.32), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.technology .container {
  position: relative;
  z-index: 1;
}

.technology-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.technology-intro > p {
  margin: 0 0 6px;
  color: #b9c3cc;
  font-size: 1.05rem;
}

.technology-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 20px;
}

.tech-panel {
  display: grid;
  align-content: stretch;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.tech-panel article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-panel article:last-child {
  border-bottom: 0;
}

.tech-panel article > span {
  color: var(--gold-strong);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.tech-panel h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 1.04rem;
}

.tech-panel p {
  margin: 0;
  color: #aeb9c3;
  font-size: 0.9rem;
}

.operations-image {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.operations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.operations-image::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(5, 15, 26, 0.94), transparent);
}

.operations-image figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: grid;
}

.operations-image figcaption span {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.operations-image figcaption strong {
  margin-top: 5px;
  color: #fff;
  font-size: 1.28rem;
}

.fleet {
  background: #fff;
}

.fleet-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.fleet-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e8ebee;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fleet-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 42%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--safety));
}

.fleet-image img {
  width: 100%;
  aspect-ratio: 900 / 435;
  object-fit: cover;
}

.image-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(6, 17, 29, 0.9);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 16px;
  margin-top: 30px;
}

.equipment-list span {
  position: relative;
  padding: 12px 12px 12px 30px;
  color: #314252;
  background: var(--soft);
  border: 1px solid #e3e7eb;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 700;
}

.equipment-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.about {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-900);
}

.about::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -260px;
  width: 700px;
  height: 700px;
  border: 120px solid rgba(212, 175, 55, 0.045);
  border-radius: 50%;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 670px;
  color: #b9c3cc;
}

.about-copy .about-lead {
  margin: 27px 0 0;
  color: #f1f3f5;
  font-size: 1.2rem;
  line-height: 1.7;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.sector-list span {
  padding: 8px 13px;
  color: var(--gold-pale);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.about-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 43% 0 0;
  background: linear-gradient(0deg, rgba(6, 17, 29, 0.96), transparent);
}

.about-note {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 26px;
  left: 27px;
  display: grid;
}

.about-note strong {
  color: #fff;
  font-size: 1.85rem;
  line-height: 1.05;
}

.about-note span {
  margin-top: 9px;
  color: var(--gold-pale);
  font-size: 0.85rem;
}

.process {
  position: relative;
  z-index: 1;
  margin-top: 110px;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.process-heading .eyebrow {
  margin-top: 10px;
}

.process-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-grid li {
  min-height: 245px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.035);
  border-top: 3px solid rgba(212, 175, 55, 0.25);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.process-grid li:first-child {
  border-radius: 12px 0 0 12px;
}

.process-grid li:last-child {
  border-right: 0;
  border-radius: 0 12px 12px 0;
}

.process-grid li:hover {
  background: rgba(255, 255, 255, 0.065);
  border-top-color: var(--gold);
}

.process-grid li > span {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.process-grid h3 {
  margin: 35px 0 9px;
  color: #fff;
  font-size: 1.13rem;
}

.process-grid p {
  margin: 0;
  color: #aeb9c2;
  font-size: 0.9rem;
}

.contact {
  color: #fff;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(55px, 8vw, 105px);
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: #b5c0ca;
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 38px;
  font-style: normal;
}

.contact-details a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  transition: background 180ms ease, border-color 180ms ease;
}

.contact-details a:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-strong);
  background: rgba(212, 175, 55, 0.1);
  border-radius: 9px;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-details a > span:last-child {
  display: grid;
  min-width: 0;
}

.contact-details small {
  color: #83909d;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details strong {
  overflow-wrap: anywhere;
  color: #eef1f4;
  font-size: 0.91rem;
}

.contact-form {
  padding: clamp(27px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.form-heading {
  display: grid;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: #946f16;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 3px;
  color: var(--navy-900);
  font-size: 1.38rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  color: #3a4855;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f8fa;
  border: 1px solid #d7dee5;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.contact-form textarea::placeholder {
  color: #89949e;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note,
.form-status {
  margin: 11px 0 0;
  color: #74808a;
  font-size: 0.76rem;
  text-align: center;
}

.form-status:not(:empty) {
  color: #446412;
  font-weight: 750;
}

.site-footer {
  color: #9eabb6;
  background: #030a11;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 55px;
}

.brand.inverse .brand-copy strong {
  color: #fff;
}

.brand.inverse img {
  padding: 5px;
  background: #fff;
  border-radius: 50%;
}

.footer-brand p {
  max-width: 440px;
  margin: 21px 0 0;
  color: #8996a2;
}

.footer-title {
  display: block;
  margin: 9px 0 18px;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--gold-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.75rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: #1f9d55;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  background: #168448;
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 17px;
  }

  .main-nav > a {
    font-size: 0.85rem;
  }

  .credential-card {
    display: none;
  }

  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading > .eyebrow,
  .process-heading .eyebrow {
    margin-top: 0;
  }

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

  .technology-intro {
    gap: 50px;
  }

  .technology-layout {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .fleet-layout {
    grid-template-columns: 1fr;
  }

  .fleet-image {
    max-width: 850px;
  }

  .about-layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
  }

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

  .process-grid li:nth-child(2) {
    border-right: 0;
    border-radius: 0 12px 0 0;
  }

  .process-grid li:nth-child(3) {
    border-radius: 0 0 0 12px;
  }

  .process-grid li:last-child {
    border-radius: 0 0 12px 0;
  }

  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
  }
}

@media (max-width: 840px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .site-header,
  .site-header.scrolled {
    height: 78px;
  }

  .brand img,
  .scrolled .brand img {
    width: 50px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: #fff;
    background: var(--navy-900);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.25);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > a {
    padding: 18px 3px;
    color: #e7ebef;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    margin-top: 20px;
    color: var(--navy-950);
    background: var(--gold-strong);
    border: 0;
    text-align: center;
  }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero::before {
    top: 78px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 14, 24, 0.98), rgba(5, 18, 31, 0.84) 72%, rgba(5, 18, 31, 0.55));
  }

  .hero-inner {
    align-items: center;
    padding-top: 140px;
    padding-bottom: 178px;
  }

  .trust-grid > div {
    min-height: 92px;
    padding: 18px 16px;
  }

  .trust-grid strong {
    font-size: 0.92rem;
  }

  .trust-grid span {
    font-size: 0.73rem;
  }

  .section {
    padding: 88px 0;
  }

  .technology-intro,
  .technology-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .technology-intro {
    gap: 22px;
  }

  .operations-image {
    min-height: 480px;
  }

  .about-visual {
    max-width: 600px;
    min-height: 630px;
  }

  .contact-layout {
    gap: 60px;
  }

  .footer-main {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 26px);
  }

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

  .brand {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    font-size: 0.54rem;
    letter-spacing: 0.2em;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    min-height: 720px;
    padding-top: 126px;
    padding-bottom: 70px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 14, 24, 0.98), rgba(5, 18, 31, 0.82)),
      linear-gradient(0deg, rgba(6, 17, 29, 0.9), transparent);
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .trust-bar {
    position: relative;
  }

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

  .trust-grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .fleet-copy h2,
  .about h2,
  .contact h2,
  .technology h2 {
    font-size: clamp(2.08rem, 11vw, 3rem);
  }

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

  .service-card {
    min-height: auto;
  }

  .technology-intro {
    margin-bottom: 35px;
  }

  .tech-panel article {
    padding: 22px 18px;
  }

  .operations-image {
    min-height: 390px;
  }

  .operations-image figcaption {
    right: 20px;
    bottom: 19px;
    left: 20px;
  }

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

  .about-visual {
    min-height: 500px;
  }

  .process {
    margin-top: 75px;
    padding-top: 60px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:nth-child(2),
  .process-grid li:nth-child(3),
  .process-grid li:last-child {
    min-height: auto;
    border-right: 0;
    border-radius: 0;
  }

  .process-grid li:first-child {
    border-radius: 12px 12px 0 0;
  }

  .process-grid li:last-child {
    border-radius: 0 0 12px 12px;
  }

  .process-grid h3 {
    margin-top: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-details a {
    padding-inline: 0;
  }

  .contact-form {
    padding: 25px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 58px;
  }

  .footer-main > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 53px;
    height: 53px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
