:root {
  --black: #050506;
  --ink: #101114;
  --soft: #f4f3ef;
  --muted: #686f78;
  --red: #e30613;
  --white: #ffffff;
  --line: rgba(16, 17, 20, 0.12);
  --shadow: 0 28px 84px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family:
    Manrope, "Inter Tight", "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), 1180px);
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.78);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  top: 10px;
}

.brand img {
  width: 166px;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.34));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 12px 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding-right: 17px;
  padding-left: 17px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, #ff111f, #a90810);
  box-shadow: 0 16px 34px rgba(227, 6, 19, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - 1180px) / 2)) 30px;
  color: var(--white);
  background: var(--black);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.04) brightness(1.04);
}

.hero-shade {
  background:
    radial-gradient(ellipse at 18% 48%, rgba(0, 0, 0, 0.34), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(5, 6, 8, 0.42) 38%, rgba(0, 0, 0, 0.12) 72%, rgba(0, 0, 0, 0.03) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.54) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-top: auto;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #ff1d28;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 6vw, 5.7rem);
  font-weight: 820;
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 820;
  line-height: 1;
}

.hero-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-proof article {
  min-height: 148px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof article:last-child {
  border-right: 0;
}

.hero-proof span,
.product-grid span,
.fleet-list span {
  display: block;
  margin-bottom: 12px;
  color: #ff1d28;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-proof strong {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.hero-proof p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff111f, #a90810);
  box-shadow: 0 18px 40px rgba(227, 6, 19, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.intro,
.fleet {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(48px, 7vw, 96px);
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
}

.intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f7f5f1;
}

.intro::before,
.intro::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.intro::before {
  z-index: -2;
  background: url("public/images/akotek-intro-factory-bg.jpg") center 58% / cover no-repeat;
  filter: blur(12px) saturate(0.88) contrast(1.04) brightness(1.02);
  opacity: 0.84;
  transform: scale(1.06);
}

.intro::after {
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(227, 6, 19, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(247, 245, 241, 0.9) 0%, rgba(247, 245, 241, 0.62) 45%, rgba(247, 245, 241, 0.38) 100%),
    linear-gradient(180deg, rgba(247, 245, 241, 0.96) 0%, rgba(247, 245, 241, 0.34) 50%, rgba(247, 245, 241, 0.88) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 -1px 0 rgba(16, 17, 20, 0.04) inset;
}

.intro > * {
  position: relative;
  z-index: 1;
}

.intro h2 {
  max-width: 760px;
  transition:
    transform 260ms ease,
    text-shadow 260ms ease;
}

.intro-copy p,
.fleet-heading > p {
  color: #4d535c;
  font-size: 1.04rem;
  line-height: 1.72;
}

.intro-copy p {
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.operation-badges,
.proof-grid {
  grid-column: 1 / -1;
}

.operation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -36px;
}

.operation-badges span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    0 12px 30px rgba(16, 17, 20, 0.055),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  color: #333840;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

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

.proof-grid article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.74);
  box-shadow:
    0 22px 58px rgba(16, 17, 20, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.proof-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(227, 6, 19, 0.85), rgba(227, 6, 19, 0.04));
  content: "";
  transition: height 260ms ease, opacity 260ms ease;
}

.proof-grid article::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(227, 6, 19, 0.14), transparent 30%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.3) 46%, transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18%);
  transition:
    opacity 260ms ease,
    transform 360ms ease;
  content: "";
}

.proof-grid small {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.proof-grid p {
  margin-bottom: 0;
  color: #5e646d;
  line-height: 1.62;
}

@media (hover: hover) {
  .intro h2:hover {
    text-shadow: 0 20px 48px rgba(16, 17, 20, 0.14);
    transform: translateX(6px);
  }

  .intro-copy p:hover {
    color: #252a31;
    transform: translateX(6px);
  }

  .operation-badges span:hover {
    border-color: rgba(227, 6, 19, 0.32);
    color: var(--white);
    background:
      linear-gradient(135deg, rgba(255, 17, 31, 0.95), rgba(169, 8, 16, 0.9)),
      rgba(227, 6, 19, 0.9);
    box-shadow:
      0 18px 38px rgba(227, 6, 19, 0.2),
      0 1px 0 rgba(255, 255, 255, 0.24) inset;
    transform: translateY(-3px);
  }

  .proof-grid article:hover {
    border-color: rgba(227, 6, 19, 0.22);
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
      rgba(255, 255, 255, 0.78);
    box-shadow:
      0 30px 76px rgba(16, 17, 20, 0.13),
      0 20px 46px rgba(227, 6, 19, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-8px);
  }

  .proof-grid article:hover::before {
    height: 4px;
    opacity: 1;
  }

  .proof-grid article:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
}

.showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  overflow: hidden;
  padding: 90px max(24px, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: #07090c;
}

.showcase::before,
.showcase::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.showcase::before {
  z-index: -2;
  background: url("public/images/akotek-showcase-blur-bg.jpg") center 58% / cover no-repeat;
  filter: blur(10px) saturate(0.98) contrast(1.06) brightness(0.94);
  opacity: 0.96;
  transform: scale(1.045);
}

.showcase::after {
  z-index: -1;
  background:
    radial-gradient(circle at 14% 30%, rgba(227, 6, 19, 0.2), transparent 30%),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.42) 0%, rgba(7, 9, 12, 0.58) 46%, rgba(5, 5, 6, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.78) 0%, rgba(8, 10, 13, 0.42) 48%, rgba(5, 5, 6, 0.92) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 -1px 0 rgba(255, 255, 255, 0.05) inset;
}

.showcase > * {
  position: relative;
  z-index: 1;
}

.phone-panel {
  position: relative;
  width: clamp(292px, 24vw, 360px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background: #050506;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 58px rgba(227, 6, 19, 0.08),
    inset 0 0 0 7px rgba(0, 0, 0, 0.82);
}

.youtube-frame {
  position: absolute;
  inset: 7px;
  overflow: hidden;
  border-radius: 30px;
  background: #050506;
}

.youtube-frame iframe,
.youtube-poster {
  width: 100%;
  height: 100%;
}

.youtube-frame iframe {
  display: block;
  border: 0;
}

.youtube-poster {
  object-fit: contain;
  background: #050506;
}

.youtube-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 46%),
    rgba(227, 6, 19, 0.9);
  box-shadow:
    0 18px 42px rgba(227, 6, 19, 0.28),
    0 16px 44px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.youtube-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--white);
}

.phone-label {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 8, 8, 0.62);
  font-size: 0.68rem;
  font-weight: 900;
}

.youtube-panel.is-loaded .youtube-poster,
.youtube-panel.is-loaded .youtube-play,
.youtube-panel.is-loaded .phone-label {
  display: none;
}

.showcase-copy > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.product-grid article,
.fleet-list article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.product-grid article {
  position: relative;
  min-height: 118px;
  overflow: hidden;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(10, 12, 16, 0.58);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.product-grid article::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 29, 40, 0.9), rgba(255, 29, 40, 0.08));
  content: "";
}

.product-grid h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.product-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}

.fleet {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 104px;
  background: #f7f5f1;
}

.fleet::before,
.fleet::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

.fleet::before {
  opacity: 0.88;
  background: url("public/images/akotek-fleet-section-bg.jpg") center 58% / cover no-repeat;
  filter: blur(11px) saturate(0.88) contrast(1.04) brightness(1.04);
  transform: scale(1.055);
}

.fleet::after {
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.86), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(227, 6, 19, 0.1), transparent 28%),
    linear-gradient(90deg, rgba(247, 245, 241, 0.9) 0%, rgba(247, 245, 241, 0.58) 45%, rgba(247, 245, 241, 0.34) 100%),
    linear-gradient(180deg, rgba(247, 245, 241, 0.96) 0%, rgba(247, 245, 241, 0.28) 50%, rgba(247, 245, 241, 0.88) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 -1px 0 rgba(16, 17, 20, 0.04) inset;
}

.fleet-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 6vw, 82px);
  align-items: end;
  margin-bottom: 28px;
}

.fleet-heading h2 {
  max-width: 690px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 4.1vw, 4rem);
  line-height: 1.02;
  transition:
    transform 260ms ease,
    text-shadow 260ms ease;
}

.fleet-heading > p {
  max-width: 540px;
  margin-bottom: 7px;
  color: #4f5660;
  font-size: clamp(0.98rem, 1vw, 1.06rem);
  line-height: 1.64;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.fleet-layout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: 18px;
  align-items: stretch;
}

.fleet-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.08), rgba(16, 17, 20, 0.02)),
    url("public/images/akotek-fleet-yard.png") 44% center / cover no-repeat;
  box-shadow:
    0 34px 74px rgba(16, 17, 20, 0.16),
    0 22px 66px rgba(227, 6, 19, 0.12),
    0 0 0 1px rgba(227, 6, 19, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.74) inset;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease;
}

.fleet-media::before,
.fleet-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.fleet-media::before {
  z-index: 1;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 17, 31, 0.28), transparent 26%),
    linear-gradient(110deg, rgba(227, 6, 19, 0.2) 0%, rgba(227, 6, 19, 0.05) 28%, transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 34%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), transparent 28%);
  mix-blend-mode: multiply;
}

.fleet-media::after {
  z-index: 2;
  inset: auto 22px 22px 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 17, 31, 0.94), rgba(255, 255, 255, 0.5), transparent);
  box-shadow: 0 0 28px rgba(227, 6, 19, 0.38);
}

.fleet-video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 44% center;
}

.fleet-media-overlay {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.34), rgba(5, 5, 6, 0.46)),
    rgba(5, 5, 6, 0.5);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(227, 6, 19, 0.2);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.fleet-list {
  display: grid;
  gap: 10px;
}

.fleet-list article {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 124px;
  overflow: hidden;
  padding: 20px 22px 20px 26px;
  border-color: rgba(16, 17, 20, 0.1);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.045), transparent 36%),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(16, 17, 20, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.fleet-list article::before {
  position: absolute;
  top: 19px;
  bottom: 19px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(227, 6, 19, 0.9), rgba(227, 6, 19, 0.06));
  content: "";
  transition:
    width 260ms ease,
    opacity 260ms ease;
}

.fleet-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.35;
}

.fleet-list p {
  margin-bottom: 0;
  color: #6a7078;
  font-size: 0.92rem;
  line-height: 1.48;
}

@media (hover: hover) {
  .fleet-heading h2:hover {
    text-shadow: 0 20px 48px rgba(16, 17, 20, 0.14);
    transform: translateX(6px);
  }

  .fleet-heading > p:hover {
    color: #252a31;
    transform: translateX(6px);
  }

  .fleet-media:hover {
    border-color: rgba(227, 6, 19, 0.22);
    box-shadow:
      0 38px 88px rgba(16, 17, 20, 0.18),
      0 28px 74px rgba(227, 6, 19, 0.18),
      0 0 0 1px rgba(227, 6, 19, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.78) inset;
    transform: translateY(-6px);
  }

  .fleet-list article:hover {
    border-color: rgba(227, 6, 19, 0.18);
    background:
      linear-gradient(90deg, rgba(227, 6, 19, 0.08), transparent 42%),
      rgba(255, 255, 255, 0.84);
    box-shadow:
      0 24px 58px rgba(16, 17, 20, 0.12),
      0 16px 36px rgba(227, 6, 19, 0.08);
    transform: translateX(8px);
  }

  .fleet-list article:hover::before {
    width: 4px;
    opacity: 1;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 420px;
}

.gallery article {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: end;
  isolation: isolate;
  overflow: hidden;
  padding: 30px;
  color: var(--white);
  background: #050506;
  transition:
    transform 300ms ease,
    box-shadow 300ms ease;
}

.gallery article::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 18% 22%, rgba(227, 6, 19, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent 32%, rgba(0, 0, 0, 0.9)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 62%);
  box-shadow: inset 0 -2px 0 rgba(227, 6, 19, 0.22);
  pointer-events: none;
  transition:
    background 300ms ease,
    box-shadow 300ms ease;
  content: "";
}

.gallery article::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--image) var(--position, center) / cover no-repeat;
  filter: saturate(0.92) contrast(1.02) brightness(0.94);
  transform: scale(1);
  transition:
    filter 420ms ease,
    transform 520ms ease;
  content: "";
}

.gallery-brand {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  width: 118px;
  opacity: 0.82;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.gallery span,
.gallery p {
  position: relative;
  z-index: 2;
}

.gallery span {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 900;
  transition:
    color 240ms ease,
    transform 280ms ease,
    text-shadow 280ms ease;
}

.gallery p {
  max-width: 260px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  transition:
    color 240ms ease,
    transform 280ms ease;
}

@media (hover: hover) {
  .gallery article:hover {
    z-index: 2;
    box-shadow:
      0 24px 68px rgba(0, 0, 0, 0.28),
      0 20px 56px rgba(227, 6, 19, 0.14);
  }

  .gallery article:hover::after {
    filter: saturate(1.02) contrast(1.07) brightness(1);
    transform: scale(1.065);
  }

  .gallery article:hover::before {
    background:
      radial-gradient(circle at 18% 22%, rgba(227, 6, 19, 0.28), transparent 36%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 30%, rgba(0, 0, 0, 0.88)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 64%);
    box-shadow:
      inset 0 -3px 0 rgba(255, 29, 40, 0.48),
      inset 0 0 88px rgba(227, 6, 19, 0.08);
  }

  .gallery article:hover .gallery-brand {
    opacity: 0.98;
    filter:
      drop-shadow(0 12px 24px rgba(0, 0, 0, 0.48))
      drop-shadow(0 0 20px rgba(227, 6, 19, 0.16));
    transform: translateY(-3px);
  }

  .gallery article:hover span {
    color: var(--white);
    text-shadow: 0 16px 38px rgba(227, 6, 19, 0.2);
    transform: translateY(-5px);
  }

  .gallery article:hover p {
    color: rgba(255, 255, 255, 0.84);
    transform: translateY(-4px);
  }
}

.site-footer {
  position: relative;
  display: grid;
  min-height: auto;
  overflow: hidden;
  gap: 24px;
  padding: 70px max(24px, calc((100vw - 1280px) / 2)) 70px;
  color: rgba(255, 255, 255, 0.68);
  background:
    radial-gradient(circle at 82% 10%, rgba(227, 6, 19, 0.14), transparent 30%),
    linear-gradient(180deg, #08090b 0%, #050506 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.026), transparent),
    radial-gradient(circle at 18% 82%, rgba(255, 255, 255, 0.035), transparent 28%);
  opacity: 0.74;
  pointer-events: none;
  content: "";
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-hero,
.footer-info,
.footer-nav {
  display: grid;
  width: min(100%, 1280px);
  margin-inline: auto;
}

.footer-hero {
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-brand img,
.site-footer img {
  width: 218px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
}

.footer-brand p {
  max-width: 320px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.footer-line {
  position: relative;
  justify-self: end;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  font-weight: 720;
  line-height: 1.05;
  text-align: right;
  transition:
    color 220ms ease,
    text-shadow 220ms ease,
    transform 260ms ease;
}

.footer-line::before {
  position: absolute;
  top: -18px;
  right: 0;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff1d28);
  content: "";
}

.footer-info span {
  display: block;
  margin-bottom: 9px;
  color: #ff1d28;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-info {
  grid-template-columns: minmax(340px, 1.45fr) minmax(190px, 0.75fr) minmax(280px, 1.04fr) minmax(230px, 0.86fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-info article {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 16px;
  min-height: 118px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.footer-info article:last-child {
  border-right: 0;
}

.footer-info article::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 29, 40, 0.9), rgba(255, 29, 40, 0));
  opacity: 0;
  content: "";
  transition: opacity 220ms ease;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.36);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-info a,
.footer-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.55;
}

.footer-info-main {
  display: block;
}

.footer-location-note {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 760;
}

.footer-mini-action {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-mini-action::after {
  margin-left: 7px;
  color: #ff1d28;
  content: "↗";
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.footer-nav {
  grid-template-columns: repeat(3, minmax(150px, 220px));
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
  padding-top: 10px;
}

.footer-nav > div {
  display: grid;
  gap: 12px;
}

.site-footer strong {
  color: var(--white);
  font-size: 0.9rem;
}

.site-footer a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

.site-footer a:hover {
  color: var(--white);
}

@media (hover: hover) {
  .footer-info article:hover,
  .footer-line:hover,
  .footer-nav a:hover {
    transform: translateY(-2px);
  }

  .footer-line:hover {
    color: var(--white);
    text-shadow: 0 22px 52px rgba(227, 6, 19, 0.18);
  }

  .footer-info article {
    transition:
      transform 220ms ease,
      background 220ms ease,
      box-shadow 220ms ease;
  }

  .footer-info article:hover {
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  }

  .footer-info article:hover::before {
    opacity: 1;
  }

  .footer-info article:hover .footer-icon {
    color: rgba(255, 29, 40, 0.82);
    transform: translateY(-2px);
  }

  .footer-mini-action:hover {
    color: #ff1d28;
  }

  .footer-mini-action:hover::after {
    transform: translate(3px, -1px);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    padding: 14px;
    border-radius: 8px;
    background: rgba(5, 5, 6, 0.97);
    opacity: 0;
    pointer-events: none;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .intro,
  .showcase,
  .fleet,
  .fleet-heading,
  .fleet-layout,
  .hero-proof,
  .proof-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 36px;
  }

  .hero-proof article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-proof article:last-child {
    border-bottom: 0;
  }

  .operation-badges,
  .proof-grid {
    margin-top: 0;
  }

  .fleet {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .fleet::before {
    width: 100%;
    height: 100%;
    opacity: 0.46;
    filter: blur(14px) saturate(0.84) contrast(1.02) brightness(1.08);
  }

  .fleet-heading {
    gap: 18px;
    margin-bottom: 24px;
  }

  .fleet-heading h2 {
    max-width: 720px;
    font-size: clamp(2.35rem, 6vw, 3.25rem);
  }

  .phone-panel {
    order: 2;
  }

  .showcase::before {
    opacity: 0.74;
    filter: blur(12px) saturate(0.92) contrast(1.04) brightness(0.84);
  }

  .showcase::after {
    background:
      radial-gradient(circle at 24% 16%, rgba(227, 6, 19, 0.16), transparent 34%),
      linear-gradient(180deg, rgba(5, 5, 6, 0.82) 0%, rgba(7, 9, 12, 0.72) 48%, rgba(5, 5, 6, 0.92) 100%);
  }

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

  .gallery article {
    min-height: 240px;
  }

  .site-footer {
    min-height: auto;
  }

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

  .footer-hero {
    gap: 34px;
  }

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

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .footer-info article:nth-child(2) {
    border-right: 0;
  }

  .footer-info article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-line {
    justify-self: start;
    text-align: left;
  }

  .footer-line::before {
    right: auto;
    left: 0;
    background: linear-gradient(90deg, #ff1d28, transparent);
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 60px;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.3rem);
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 2.9rem);
  }

  .intro,
  .showcase,
  .fleet {
    padding: 72px 18px;
  }

  .hero-proof article,
  .proof-grid article,
  .product-grid article,
  .fleet-list article {
    padding: 20px;
  }

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

  .fleet-media {
    min-height: 300px;
  }

  .fleet::before {
    inset: 36px -20% auto auto;
    width: 130%;
    height: 38%;
    opacity: 0.14;
    filter: blur(16px) saturate(0.86) brightness(1.1);
  }

  .fleet-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .fleet-list article {
    min-height: auto;
  }

  .site-footer {
    padding: 60px 18px 70px;
  }

  .footer-hero,
  .footer-info,
  .footer-nav {
    width: 100%;
  }

  .footer-brand img,
  .site-footer img {
    width: 190px;
  }

  .footer-line {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

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

  .footer-info article {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-info article:first-child {
    border-top: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
