:root {
  --navy: #061735;
  --navy-2: #0b2a5b;
  --ink: #071126;
  --text: #3d4d63;
  --muted: #6d7888;
  --orange: #ff7417;
  --orange-dark: #ea5f0b;
  --cream: #fff2e8;
  --line: #dce3ec;
  --soft: #f5f8fc;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 23, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.container {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 98px;
  padding: 0 32px;
  color: var(--white);
  background: rgba(6, 23, 53, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 20px 20px 20px 8px;
  color: #050b18;
  background: var(--orange);
  font-size: 23px;
  font-weight: 900;
}

.brand strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 5px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.header-call {
  padding: 0 28px;
  color: #050b18;
  background: var(--orange);
  font-size: 19px;
}

.header-call:hover,
.button-primary:hover {
  background: var(--orange-dark);
}

.button {
  padding: 0 28px;
  min-height: 70px;
  font-size: 18px;
}

.button-primary {
  color: #050b18;
  background: var(--orange);
}

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

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-dark:hover {
  background: var(--navy-2);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

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

.hero-media {
  background-image: url("assets/hero-tow-truck.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 11, 27, 0.96) 0%, rgba(6, 23, 53, 0.82) 38%, rgba(255, 116, 23, 0.22) 100%),
    linear-gradient(0deg, rgba(3, 11, 27, 0.38), rgba(3, 11, 27, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 98px);
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 70px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 116, 23, 0.55);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(255, 116, 23, 0.12);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--orange);
  background: var(--cream);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 950;
}

h1 span,
h2 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 820px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(21px, 2.2vw, 30px);
}

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

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--white);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 62px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 950;
}

.section-heading p,
.split-copy p,
.industries-copy,
.contact-copy p {
  color: var(--text);
  font-size: clamp(19px, 2vw, 25px);
}

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

.feature-card,
.service-card {
  position: relative;
  min-height: 260px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 102px;
  height: 102px;
  border-bottom-left-radius: 96px;
  background: var(--cream);
}

.feature-card > svg,
.service-card > svg {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 18px;
  color: var(--white);
  background: var(--navy-2);
  stroke-width: 2.2;
}

.feature-card h3,
.service-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 950;
  line-height: 1.25;
}

.feature-card p,
.service-card p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 20px;
}

.split-section,
.service-area {
  background: linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.split-image {
  position: relative;
  min-width: 0;
}

.split-image img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.image-badge {
  position: absolute;
  right: -30px;
  bottom: -30px;
  display: grid;
  place-items: center;
  width: 160px;
  height: 116px;
  border-radius: 28px;
  color: var(--white);
  background: var(--navy-2);
  box-shadow: var(--shadow);
  text-align: center;
  text-transform: uppercase;
}

.image-badge strong {
  color: var(--orange);
  font-size: 40px;
  line-height: 0.9;
}

.image-badge span {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 3px;
}

.split-copy h2 {
  max-width: 700px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 30px;
  margin: 36px 0 40px;
}

.check-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 800;
}

.check-list svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex: 0 0 auto;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 58px;
}

.row-heading h2 {
  margin-bottom: 0;
}

.row-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

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

.service-card {
  min-height: 282px;
}

.service-card > svg {
  color: var(--orange);
  background: var(--cream);
}

.industries {
  color: var(--white);
  background: var(--navy-2);
  text-align: center;
}

.industries .eyebrow {
  margin-inline: auto;
}

.industries h2 {
  max-width: 820px;
  margin-inline: auto;
}

.industries-copy {
  max-width: 940px;
  margin: 0 auto 66px;
  color: rgba(255, 255, 255, 0.83);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  text-align: left;
}

.industry-grid span {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(3, 11, 27, 0.45);
  font-size: 18px;
  font-weight: 900;
}

.industry-grid svg {
  color: var(--orange);
  flex: 0 0 auto;
}

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

.area-grid span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--navy);
  font-size: 21px;
  font-weight: 950;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--text);
  font-size: 18px;
}

.contact {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 23, 53, 0.98), rgba(11, 42, 91, 0.96)),
    url("assets/hero-tow-truck.png") center / cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.contact-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-methods a,
.contact-methods span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-methods svg {
  color: var(--orange);
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--white);
  background: rgba(3, 11, 27, 0.35);
  padding: 0 16px;
  outline: 0;
}

.contact-form textarea {
  min-height: 142px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 116, 23, 0.18);
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer {
  color: var(--white);
  background: #030b1b;
  padding: 34px 0;
}

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

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-links a {
  overflow-wrap: anywhere;
}

svg {
  width: 1.1em;
  height: 1.1em;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

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

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    width: 100%;
    justify-self: stretch;
    padding-bottom: 20px;
  }

  .site-header.nav-open .site-nav a {
    justify-content: center;
  }

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

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-badge {
    right: 22px;
    bottom: 22px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1420px);
  }

  .site-header {
    min-height: 82px;
    padding: 0 16px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
    letter-spacing: 4px;
  }

  .hero,
  .hero-content {
    min-height: calc(100vh - 82px);
  }

  .hero-content {
    padding-block: 34px 52px;
  }

  h1 {
    font-size: clamp(46px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-copy,
  .section-heading p,
  .split-copy p,
  .industries-copy,
  .contact-copy p {
    font-size: 19px;
  }

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

  .section {
    padding: 70px 0;
  }

  .feature-grid,
  .service-grid,
  .industry-grid,
  .area-grid,
  .check-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card {
    min-height: auto;
    padding: 28px;
    border-radius: 24px;
  }

  .row-heading {
    display: block;
  }

  .row-heading a {
    margin-top: 18px;
  }

  .split-image img {
    border-radius: 24px;
  }

  .image-badge {
    width: 132px;
    height: 94px;
    border-radius: 22px;
  }

  .image-badge strong {
    font-size: 32px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-links {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 10px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    letter-spacing: 3px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 12px;
    letter-spacing: 3px;
  }
}
