:root {
  --bg: #090d14;
  --panel: #101722;
  --panel-2: #e9edf4;
  --text: #f7f8fb;
  --muted: #aab4c2;
  --ink: #101722;
  --red: #df111b;
  --red-dark: #ad0c15;
  --blue: #12376a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  padding-bottom: env(safe-area-inset-bottom);
}

body::selection {
  background: var(--red);
  color: var(--text);
}

a {
  color: inherit;
}

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

.section-pad {
  padding: clamp(72px, 9vw, 132px) 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - clamp(36px, 5vw, 64px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-truck.webp");
  background-size: cover;
  background-position: 65% center;
  transform: scale(1.03);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 9, 14, 0.92) 0%, rgba(6, 9, 14, 0.7) 35%, rgba(6, 9, 14, 0.22) 72%),
    linear-gradient(180deg, rgba(6, 9, 14, 0.1) 0%, rgba(6, 9, 14, 0.75) 100%);
}

.hero::after {
  z-index: -1;
  background: radial-gradient(circle at 74% 52%, rgba(223, 17, 27, 0.18), transparent 27%);
  mix-blend-mode: screen;
}

.hero__content {
  padding: 72px 0 52px;
}

.brand-mark {
  width: min(360px, 68vw);
  height: auto;
  margin-bottom: clamp(46px, 7vw, 82px);
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.48));
}

.eyebrow {
  margin: 0 0 16px;
  color: #d7deea;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4.2rem, 11vw, 8.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__sub {
  max-width: 580px;
  margin: 26px 0 34px;
  color: #e4e9f2;
  font-size: clamp(1.2rem, 2.2vw, 1.62rem);
  font-weight: 700;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 206px;
  padding: 16px 26px;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button--primary {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 80px rgba(223, 17, 27, 0.3);
}

.button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.quick-contact {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: 18px;
  vertical-align: middle;
}

.quick-contact p {
  margin: 0;
  color: #d6deea;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.quick-contact--center {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 22px 0 0;
}

.phone-link {
  display: inline-flex;
  margin: 0;
  color: #f4f7fb;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.phone-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.phone-link--center {
  margin: 22px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.trust {
  background:
    linear-gradient(180deg, #090d14 0%, #101722 100%),
    var(--panel);
  border-top: 1px solid rgba(223, 17, 27, 0.42);
}

h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.trust-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: #e8edf5;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
}

.trust-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.benefits {
  background: var(--panel-2);
  color: var(--ink);
}

.benefits .eyebrow {
  color: var(--blue);
}

.section-head {
  max-width: 740px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 23, 34, 0.16);
  border: 1px solid rgba(16, 23, 34, 0.16);
}

.benefit {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
  background: #f7f9fc;
}

.benefit__line {
  display: block;
  width: 54px;
  height: 4px;
  margin-bottom: 30px;
  background: var(--red);
}

.benefit h3 {
  margin: 0 0 16px;
  font-size: clamp(1.32rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.benefit p {
  margin: 0;
  color: #4d5968;
  font-size: 1rem;
  line-height: 1.55;
}

.reality {
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.96), rgba(9, 13, 20, 0.76)),
    url("assets/hero-truck.webp") center 54% / cover fixed;
}

.contact-strip {
  padding: clamp(54px, 7vw, 92px) 0;
  background: #f7f9fc;
  color: var(--ink);
  border-top: 1px solid rgba(16, 23, 34, 0.12);
}

.contact-strip .eyebrow {
  color: var(--blue);
}

.contact-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.38fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.contact-strip h2 {
  max-width: 780px;
}

address {
  margin: 0;
  color: #45505f;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
}

.reality p {
  margin: 0;
  max-width: 980px;
  font-size: clamp(3.45rem, 9vw, 9rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reality p:nth-child(2) {
  color: #d8dee8;
}

.reality p:nth-child(3) {
  color: var(--red);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(16, 55, 106, 0.26), transparent 42%),
    #0b1018;
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta img {
  width: min(330px, 70vw);
  height: auto;
  margin-bottom: clamp(34px, 5vw, 58px);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.42));
}

.final-cta h2 {
  max-width: 880px;
  margin-bottom: 34px;
}

.site-footer {
  padding: 24px 0 86px;
  background: #080c12;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #aab4c2;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 940px) {
  .split,
  .benefit-grid,
  .contact-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__bg {
    background-position: 62% center;
  }
}

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

  .section-pad {
    padding: 66px 0;
  }

  .hero {
    min-height: calc(100svh - 38px);
    align-items: end;
  }

  .hero__bg {
    background-position: 68% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 9, 14, 0.28) 0%, rgba(6, 9, 14, 0.84) 48%, rgba(6, 9, 14, 0.96) 100%),
      linear-gradient(90deg, rgba(6, 9, 14, 0.62), rgba(6, 9, 14, 0.18));
  }

  .hero__content {
    padding: 28px 0 36px;
  }

  .brand-mark {
    width: min(270px, 75vw);
    margin-bottom: 42px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.8rem);
  }

  .hero__sub {
    margin: 20px 0 26px;
  }

  .button {
    width: 100%;
    min-height: 62px;
    padding-inline: 18px;
  }

  .quick-contact {
    width: 100%;
    display: grid;
    justify-items: center;
    gap: 10px;
    margin: 18px 0 0;
    text-align: center;
  }

  .phone-link {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

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

  .benefit {
    min-height: 214px;
  }

  .reality {
    background-attachment: scroll;
  }

  .reality p {
    font-size: clamp(3rem, 17vw, 5.5rem);
  }

  .final-cta {
    padding-bottom: 94px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 20;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(9, 13, 20, 0.94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-action-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mobile-action-bar a:last-child {
    background: var(--red);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero__bg {
    transform: none;
  }
}
