:root {
  --ink: #101418;
  --muted: #59636e;
  --line: #dfe4ea;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --dark: #07111d;
  --brand: #00677d;
  --brand-strong: #004e5f;
  --accent: #50d9fe;
  --shadow: 0 20px 45px rgba(7, 17, 29, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px max(16px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 228, 234, 0.85);
  backdrop-filter: blur(16px);
}

.brand img {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

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

.site-nav a:hover,
.site-nav a.active {
  color: var(--brand-strong);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
}

.nav-cta {
  padding: 0 18px;
  color: #fff !important;
  background: var(--dark);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

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

.hero-media::after {
  content: "";
  background: linear-gradient(90deg, rgba(7, 17, 29, 0.94), rgba(7, 17, 29, 0.62), rgba(7, 17, 29, 0.2));
}

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

.hero-content {
  position: relative;
  padding: 110px 0 80px;
}

.hero h1,
.page-hero h1,
.section h2,
.cta-panel h2 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

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

.hero .eyebrow,
.cta-panel .eyebrow {
  color: var(--accent);
}

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

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font-size: 0.96rem;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.section {
  padding: 82px 0;
}

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

.page-hero {
  padding: 120px 0 70px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.section h2,
.cta-panel h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.feature-card,
.vehicle-card,
.contact-list article,
.contact-form,
.values-grid article,
.vehicle-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card {
  padding: 26px;
}

.feature-card h3,
.vehicle-body h2,
.contact-list h2,
.contact-form h2 {
  margin: 0 0 10px;
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.2;
}

.feature-card p,
.vehicle-card p,
.contact-list p,
.footer-grid p,
.values-grid p,
.vehicle-strip p,
.feature-list p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.rounded-image {
  width: 100%;
  height: min(460px, 58vw);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-strong);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.vehicle-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.vehicle-strip article {
  overflow: hidden;
}

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

.vehicle-strip h3,
.vehicle-strip p {
  padding: 0 18px;
}

.vehicle-strip h3 {
  margin: 18px 0 4px;
}

.vehicle-strip p {
  margin-bottom: 18px;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-list h3 {
  margin: 0 0 6px;
  font-family: Montserrat, Inter, sans-serif;
  line-height: 1.2;
}

.button.dark-outline {
  color: var(--dark);
  border: 1px solid var(--dark);
  background: transparent;
}

.cta-section {
  padding: 40px 0 82px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.values-grid article {
  padding: 32px;
}

.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  font-weight: 800;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 10px 16px;
  font: inherit;
  cursor: pointer;
}

.filter-chip.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

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

.vehicle-card {
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(7, 17, 29, 0.06);
}

.vehicle-card[hidden] {
  display: none;
}

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

.vehicle-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--brand-strong);
  background: #e7faff;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
}

.vehicle-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.vehicle-meta a {
  padding: 9px 14px;
  color: #fff;
  background: var(--dark);
  border-radius: var(--radius);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-list article,
.contact-form {
  padding: 26px;
}

.contact-list a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand-strong);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--dark);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 1fr;
  gap: 34px;
}

.footer-logo {
  max-height: 44px;
  width: auto;
  margin-bottom: 18px;
  padding: 8px 10px;
  background: #fff;
  border-radius: var(--radius);
}

.footer-grid h3 {
  margin: 0 0 14px;
  color: #fff;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

.copyright {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 600px;
  }

  .feature-grid,
  .fleet-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-strip,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 62px 0;
  }

  .page-hero {
    padding-top: 96px;
  }

  .hero-content {
    padding-top: 88px;
  }

  .actions,
  .button,
  .vehicle-meta {
    width: 100%;
  }

  .actions .button,
  .contact-form .button {
    width: 100%;
  }

  .vehicle-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel {
    padding: 28px;
  }
}
