:root {
  --navy: #071a33;
  --navy-2: #0d294a;
  --steel: #5d6978;
  --line: #d8dee7;
  --panel: #f4f6f9;
  --white: #ffffff;
  --red: #c33135;
  --red-dark: #9f262a;
  --ink: #111827;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

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

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

.site-header {
  background: var(--navy);
  color: var(--white);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  box-shadow: 0 14px 40px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(150px, 18vw, 230px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-2);
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  content: "";
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-login,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-login {
  border: 1px solid rgba(7, 26, 51, 0.22);
  background: var(--white);
  color: var(--navy);
}

.nav-cta {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(195, 49, 53, 0.25);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 160px max(24px, calc((100vw - 1180px) / 2)) 40px;
  overflow: hidden;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.94) 0%, rgba(7, 26, 51, 0.78) 32%, rgba(7, 26, 51, 0.34) 68%, rgba(7, 26, 51, 0.46) 100%),
    linear-gradient(0deg, rgba(7, 26, 51, 0.9) 0%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #f2a4a7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6.2vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(195, 49, 53, 0.28);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.tertiary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-self: end;
  width: min(620px, 100%);
  margin: 52px 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
}

.hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1;
}

.hero-panel span {
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.4;
}

.trust-band {
  background: var(--red);
  color: var(--white);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.impact-copy h2,
.finance-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

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

.access-section {
  border-bottom: 1px solid var(--line);
}

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

.access-card {
  display: grid;
  align-content: start;
  min-height: 420px;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 26, 51, 0.1);
}

.access-card.internal {
  border: 1px solid rgba(7, 26, 51, 0.14);
  background: var(--white);
}

.access-card.prospect {
  background: var(--navy);
  color: var(--white);
}

.access-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 44px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(195, 49, 53, 0.12);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.access-card.prospect span {
  background: rgba(255, 255, 255, 0.12);
  color: #f2a4a7;
}

.access-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.access-card.prospect h3 {
  color: var(--white);
}

.access-card p,
.access-card li {
  color: var(--steel);
  line-height: 1.65;
}

.access-card.prospect p,
.access-card.prospect li {
  color: rgba(255, 255, 255, 0.78);
}

.access-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 28px;
  padding-left: 20px;
}

.access-card .button {
  align-self: end;
  width: fit-content;
}

.solution-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 26, 51, 0.06);
}

.solution-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
}

.solution-card h3,
.unit-card h3,
.process-line h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.25rem;
}

.solution-card p,
.impact-copy p,
.unit-card span,
.process-line p,
.finance-copy p,
.option-panel li,
.contact-copy p,
.footer p {
  color: var(--steel);
  line-height: 1.68;
}

.impact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: center;
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--panel);
}

.impact-copy p {
  max-width: 720px;
  margin-top: 24px;
  font-size: 1.05rem;
}

.impact-metrics {
  display: grid;
  gap: 12px;
}

.impact-metrics div {
  padding: 24px;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.07);
}

.impact-metrics strong,
.impact-metrics span {
  display: block;
}

.impact-metrics strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.impact-metrics span {
  color: var(--steel);
  line-height: 1.55;
}

.fleet-strip {
  overflow: hidden;
  background: var(--navy);
}

.fleet-strip img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
}

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

.unit-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 26, 51, 0.08);
}

.unit-card.featured {
  grid-column: span 2;
}

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

.unit-card.featured img {
  height: 360px;
}

.unit-card div {
  padding: 22px;
}

.unit-card p {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.unit-card span {
  display: block;
  font-size: 0.94rem;
}

.finance {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.finance-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.finance-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 48% center;
}

.finance-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 22px;
}

.option {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
}

.option.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.option-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--panel);
}

.option-panel h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.45rem;
}

.option-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.process {
  border-top: 1px solid var(--line);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.process-line article {
  min-height: 245px;
  padding: 26px;
  background: var(--white);
}

.process-line span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 52px;
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(7, 26, 51, 0.9), rgba(7, 26, 51, 0.9)),
    url("assets/low-boy.png") center/cover;
  color: var(--white);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.contact-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-login {
  width: fit-content;
  background: var(--white);
  color: var(--navy);
}

.contact-login.ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfe;
  color: var(--navy);
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 110px;
  padding: 12px;
}

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

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer img {
  width: 190px;
}

.footer p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer a {
  color: var(--red);
  font-weight: 900;
}

.portal-body {
  background: var(--panel);
}

.portal-header {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.08);
}

.portal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.portal-nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.portal-nav-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.prospect-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.prospect-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 74px 0 42px;
}

.prospect-copy {
  padding: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.prospect-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
}

.prospect-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.prospect-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.prospect-badges span {
  padding: 9px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.prospect-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.12);
}

.prospect-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: 48% center;
}

.prospect-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--line);
}

.prospect-workflow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px;
  background: var(--white);
}

.prospect-workflow strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}

.prospect-workflow span {
  color: var(--steel);
  font-weight: 750;
  line-height: 1.45;
}

.prospect-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 42px 0 80px;
}

.prospect-form-section h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.prospect-form-section p {
  color: var(--steel);
  line-height: 1.68;
}

.prospect-form {
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.12);
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
    place-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .nav-links.open a {
    padding: 14px 4px;
    border-top: 1px solid var(--line);
  }

  .nav-links.open + .nav-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .nav-login,
  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 880px;
  }

  .hero-panel,
  .access-grid,
  .solution-grid,
  .inventory-grid,
  .process-line,
  .finance,
  .impact,
  .contact,
  .prospect-hero,
  .prospect-workflow,
  .prospect-form-section,
  .section-heading,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin-left: 0;
  }

  .unit-card.featured {
    grid-column: span 1;
  }

  .finance-media img {
    height: 420px;
  }

  .prospect-image img {
    height: 390px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand img {
    width: 152px;
  }

  .hero {
    min-height: 820px;
    padding: 132px 16px 28px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 26, 51, 0.96), rgba(7, 26, 51, 0.7)),
      linear-gradient(0deg, rgba(7, 26, 51, 0.95), transparent 44%);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

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

  .section {
    width: calc(100% - 28px);
    padding: 68px 0;
  }

  .impact,
  .contact {
    padding: 68px 14px;
  }

  .solution-card,
  .process-line article {
    min-height: auto;
  }

  .solution-card span,
  .process-line span {
    margin-bottom: 30px;
  }

  .unit-card img,
  .unit-card.featured img {
    height: 245px;
  }

  .finance-media img {
    height: 330px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .portal-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-nav-actions,
  .portal-nav-actions a {
    width: 100%;
  }

  .prospect-page {
    width: calc(100% - 28px);
  }

  .prospect-hero {
    padding: 34px 0 28px;
  }

  .prospect-copy {
    padding: 28px 20px;
  }

  .prospect-image img {
    height: 280px;
  }

  .prospect-workflow article {
    grid-template-columns: 1fr;
  }

  .access-card {
    min-height: auto;
    padding: 24px;
  }

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

  .button {
    width: 100%;
  }
}
