@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap");

:root {
  --navy: #172554;
  --navy-2: #0b1635;
  --gray: #64748b;
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --slate: #0f172a;
  --muted: #475569;
  --line: #dbe5ef;
  --soft: #f4f8fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  color: var(--slate);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

p,
li,
span,
strong,
label {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}

.logo-brand {
  align-self: stretch;
  min-width: 330px;
  padding: 9px 0;
}

.logo-brand img {
  width: clamp(300px, 25vw, 340px);
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--cyan);
  clip-path: polygon(50% 0%, 92% 16%, 84% 78%, 50% 100%, 16% 78%, 8% 16%);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
}

.brand-name {
  display: block;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-tagline {
  display: block;
  color: var(--gray);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 9px;
  color: #24324a;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: #eaf7fb;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  background: #eaf7fb;
  border-color: #b9eef6;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 15, 36, 0.98) 0%, rgba(23, 37, 84, 0.9) 40%, rgba(23, 37, 84, 0.42) 67%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 15, 36, 0.4), rgba(7, 15, 36, 0.06) 42%),
    url("assets/box-truck-las-vegas-hero.png") center right / cover no-repeat;
}

.hero-inner {
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 96px 0 126px;
}

.hero-copy {
  width: min(650px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #cffafe;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  background: var(--cyan);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: #dbeafe;
  font-size: 1.18rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

.button.primary {
  color: #062a35;
  background: var(--cyan);
}

.button.primary:hover {
  background: #22d3ee;
}

.button.secondary {
  color: var(--white);
  background: rgba(15, 23, 42, 0.34);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(15, 23, 42, 0.52);
  border-color: var(--cyan);
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(6, 22, 49, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-item {
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.trust-item span {
  display: block;
  color: #bfdbfe;
  font-size: 0.82rem;
}

.section {
  padding: 86px 0;
}

.section.soft {
  background: var(--soft);
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head h2,
.page-hero h1 {
  color: var(--navy);
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}

.section-head p,
.page-hero p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  min-height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.card h3 {
  color: var(--navy);
  font-size: 1.15rem;
}

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

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--navy);
  background: #e6f9fc;
  border: 1px solid #b9eef6;
  border-radius: 7px;
}

.icon svg {
  width: 23px;
  height: 23px;
}

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

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

.callout h2 {
  font-size: 2.25rem;
}

.callout p {
  color: #dbeafe;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  color: var(--navy);
  background: #e6f9fc;
  border-radius: 50%;
  content: "\2713";
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.callout .check-list li {
  color: #e0f2fe;
}

.callout .check-list li::before {
  color: #05313d;
  background: var(--cyan);
}

.notice {
  padding: 18px 20px;
  color: #334155;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  font-size: 0.94rem;
}

.page-hero {
  padding: 82px 0 64px;
  background: linear-gradient(135deg, #eef9fc 0%, #ffffff 54%, #f5f7fb 100%);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.list-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.list-row strong {
  color: var(--navy);
  font-family: "Montserrat", Arial, sans-serif;
}

.list-row span {
  max-width: 720px;
  color: var(--muted);
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.hidden {
  display: none;
}

label {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(6, 182, 212, 0.18);
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  color: var(--navy);
  font-size: 1.08rem;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer {
  color: #dbeafe;
  background: var(--navy-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
}

.footer h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer p,
.footer a {
  color: #bfdbfe;
}

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

.footer ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93c5fd;
  font-size: 0.86rem;
}

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    top: 92px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

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

  .nav-links a {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .logo-brand {
    min-width: 260px;
  }

  .logo-brand img {
    width: 260px;
    height: 68px;
  }

  .hero-strip-inner,
  .grid.three,
  .grid.two,
  .split,
  .footer-inner,
  .quote-panel {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    gap: 28px;
  }

}

@media (max-width: 700px) {
  .nav {
    width: min(100% - 28px, 1180px);
    min-height: 78px;
    gap: 12px;
  }

  .nav-links {
    top: 78px;
    right: 14px;
    left: 14px;
  }

  .brand {
    min-width: 0;
  }

  .logo-brand {
    min-width: 0;
    padding: 8px 0;
  }

  .logo-brand img {
    width: min(220px, calc(100vw - 88px));
    height: 56px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(7, 15, 36, 0.98) 0%, rgba(23, 37, 84, 0.93) 58%, rgba(15, 23, 42, 0.76) 100%),
      linear-gradient(90deg, rgba(7, 15, 36, 0.65), rgba(23, 37, 84, 0.25)),
      url("assets/box-truck-las-vegas-hero.png") 63% center / cover no-repeat;
  }

  .hero-inner {
    align-items: flex-start;
    min-height: auto;
    padding: 50px 0 40px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  .eyebrow::before {
    width: 30px;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
  }

  .hero-strip {
    position: static;
  }

  .hero-strip-inner,
  .grid.three,
  .grid.two,
  .split,
  .footer-inner,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-strip-inner {
    width: 100%;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 13px 20px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 56px 0;
  }

  .wrap,
  .hero-inner,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .page-hero {
    padding: 46px 0 42px;
  }

  .section-head {
    display: block;
  }

  .section-head .button {
    margin-top: 22px;
  }

  .card,
  .callout {
    padding: 22px;
  }

  .callout h2 {
    font-size: 1.8rem;
  }

  .list-row {
    display: block;
  }

  .list-row span {
    display: block;
    margin-top: 8px;
  }

  input,
  select,
  textarea {
    font-size: 1rem;
  }

  .quote-panel {
    gap: 18px;
  }

  .footer-bottom .wrap {
    display: block;
  }
}

@media (max-width: 420px) {
  .nav {
    width: min(100% - 20px, 1180px);
  }

  .logo-brand img {
    width: min(205px, calc(100vw - 82px));
    height: 52px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .wrap,
  .hero-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }
}
