:root {
  --ink: #070a12;
  --ink-soft: #172033;
  --muted: #657085;
  --line: rgba(11, 18, 32, 0.12);
  --paper: #ffffff;
  --mist: #f4f7fb;
  --blue: #0477ff;
  --cyan: #00c7d9;
  --green: #63d60f;
  --yellow: #ffd12a;
  --orange: #ff7426;
  --pink: #f02f88;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(7, 10, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  background: var(--paper);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(1160px, calc(100% - 28px));
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 10, 18, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  color: #fff;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-action,
.btn,
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 10, 18, 0.2);
}

.btn.primary:hover {
  background: #151b2a;
}

.header-action,
.whatsapp-float {
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.header-action:hover,
.whatsapp-float:hover {
  background: #1ebe5d;
}

.btn.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.btn.secondary.light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 18, 0.96) 0%, rgba(7, 10, 18, 0.72) 47%, rgba(7, 10, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 10, 18, 0.92), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 190px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gradient-text {
  width: fit-content;
  background: linear-gradient(105deg, var(--blue), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.choice-panel {
  display: grid;
  max-width: 880px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  position: relative;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, background 180ms ease;
}

.choice-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--pink), var(--yellow));
  opacity: 0.86;
}

.choice-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
}

.choice-kicker,
.choice-card strong,
.choice-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.choice-kicker {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.choice-card strong {
  max-width: 290px;
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.1;
}

.choice-card small {
  max-width: 290px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.intro-band {
  background: var(--ink);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 7px;
  font-size: 1.45rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.64);
}

.section {
  padding: 108px 0;
}

.split-grid,
.fleet-grid,
.trust-grid,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.section-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.feature-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-stack {
  position: relative;
}

.main-photo {
  width: 100%;
  aspect-ratio: 0.92;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(7, 10, 18, 0.76);
  color: #fff;
  backdrop-filter: blur(18px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.dark-section {
  background:
    linear-gradient(145deg, rgba(4, 119, 255, 0.28), transparent 34%),
    linear-gradient(320deg, rgba(240, 47, 136, 0.26), transparent 36%),
    var(--ink);
  color: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.service-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--yellow);
  font-weight: 800;
}

.service-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.fleet-section {
  background: var(--mist);
}

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

.fleet-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.fleet-gallery img {
  width: 100%;
  min-height: 250px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(7, 10, 18, 0.12);
}

.fleet-gallery img:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.trust-grid {
  align-items: start;
}

.trust-items {
  display: grid;
  gap: 12px;
}

.trust-items article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.trust-items p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  padding: 90px 0;
  background: var(--ink);
}

.contact-card {
  padding: 46px;
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(4, 119, 255, 0.44), transparent 35%),
    linear-gradient(280deg, rgba(255, 209, 42, 0.34), transparent 33%),
    #101828;
  color: #fff;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.contact-actions .btn.primary {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.contact-actions .btn.primary:hover {
  background: #1ebe5d;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  background: #05070c;
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer-brand {
  color: #fff;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 20px;
  bottom: 20px;
  width: 56px;
  min-height: 56px;
  padding: 0;
  border-radius: 50%;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-open .site-nav {
    position: fixed;
    top: 86px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 16px;
    border-radius: 8px;
    background: rgba(7, 10, 18, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    padding: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .choice-panel,
  .stats-grid,
  .split-grid,
  .fleet-grid,
  .trust-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    border-left: 0;
  }

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

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

  .footer-grid {
    justify-items: start;
  }
}

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

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 10, 18, 0.94), rgba(7, 10, 18, 0.5)),
      linear-gradient(0deg, rgba(7, 10, 18, 0.94), transparent 46%);
  }

  .hero-content {
    padding: 140px 0 42px;
  }

  h1 {
    max-width: 340px;
    font-size: 2.18rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.3rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 1rem;
  }

  .choice-card {
    min-height: 170px;
    padding: 22px;
  }

  .section {
    padding: 74px 0;
  }

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

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

  .service-card span {
    margin-bottom: 30px;
  }

  .fleet-gallery img,
  .fleet-gallery img:first-child {
    min-height: 260px;
  }

  .contact-card {
    padding: 28px;
  }

  .btn {
    width: 100%;
  }

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