:root {
  --navy: #050b18;
  --blue: #05aef0;
  --orange: #ff5b00;
  --white: #fff;
  --ink: #111827;
  --muted: #657082;
  --soft: #f4f6f8;
  --line: #e2e7ec;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.utility {
  background: #030711;
  color: #dbe4ef;
  font-size: 12px;
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.utility a {
  font-weight: 800;
  color: #fff;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 24, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  max-width:180px;height:auto;display:block;object-fit:contain;
  display: block;
}
.links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.links a:hover {
  color: var(--blue);
}
.pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--orange);
}
.menu {
  display: none;
}
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050b18;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/hero-truck2.jpeg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 5, 13, 0.96) 0%,
    rgba(1, 5, 13, 0.85) 45%,
    rgba(1, 5, 13, 0.35) 72%,
    rgba(1, 5, 13, 0.2) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.65fr;
  gap: 60px;
  align-items: center;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 800;
  font-size: 12px;
}
.kicker.dark {
  color: var(--orange);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(60px, 8vw, 104px);
  max-width: 760px;
  color: #fff;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(42px, 5vw, 70px);
}
.sub {
  font-size: 19px;
  line-height: 1.7;
  color: #d9e2ec;
  max-width: 680px;
}
.hero-actions,
.cta-actions,
.review-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 15px 23px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.primary {
  background: linear-gradient(135deg, var(--orange), #ff7a00);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 91, 0, 0.25);
}
.ghost {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.outline {
  background: #fff;
  border: 1px solid var(--line);
}
.white {
  background: #fff;
  color: var(--navy);
}
.full {
  width: 100%;
}
.badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badges span {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.quick-card {
  background: rgba(4, 9, 20, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 32px;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.quick-card h2 {
  font-size: 44px;
  margin-bottom: 10px;
}
.quick-card p {
  color: #cbd5e1;
  line-height: 1.7;
}
.rating {
  color: #ffbb00;
  letter-spacing: 2px;
}
.rating strong {
  color: #fff;
  margin-left: 8px;
}
.review-link {
  display: block;
  text-align: center;
  color: var(--blue);
  font-weight: 800;
  margin-top: 16px;
  font-size: 13px;
}
.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-grid div:last-child {
  border-right: 0;
}
.trust b,
.trust span {
  display: block;
}
.trust span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.section {
  padding: 100px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.section-head h2 {
  margin-bottom: 0;
}
.section-head > p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  transition: 0.2s;
}
.service-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(10, 20, 35, 0.12);
  border-color: #cfd6de;
}
.service-grid span {
  color: var(--orange);
  font-family: "Barlow Condensed";
  font-size: 34px;
  font-weight: 800;
}
.service-grid h3 {
  font-size: 21px;
  margin: 8px 0;
}
.service-grid p {
  color: var(--muted);
  line-height: 1.7;
}
.dark-band {
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(0, 174, 240, 0.18),
      transparent 28%
    ),
    var(--navy);
  color: #fff;
  padding: 100px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.lead {
  font-size: 18px;
  line-height: 1.8;
  color: #cbd5e1;
}
.points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.points div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 22px;
}
.points b,
.points span {
  display: block;
}
.points span {
  color: #aeb9c7;
  font-size: 13px;
  margin-top: 6px;
}
.work {
  background: #f7f8fa;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}
.gallery figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.35s;
}
.gallery figure:hover img {
  transform: scale(1.045);
}
.gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(3, 8, 18, 0.78);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}
.offer-section {
  background: linear-gradient(135deg, #060c1b, #0b1a33);
  color: #fff;
  padding: 100px 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: center;
}
.offer-copy h2 {
  font-size: 76px;
}
.offer-copy > p {
  color: #d2dbe6;
  line-height: 1.8;
}
.coupon-row {
  display: flex;
  gap: 16px;
  margin: 28px 0;
}
.coupon-row div {
  border: 1px dashed var(--orange);
  border-radius: 16px;
  padding: 18px 24px;
}
.coupon-row strong,
.coupon-row span {
  display: block;
}
.coupon-row strong {
  font-family: "Barlow Condensed";
  font-size: 44px;
  color: var(--orange);
}
.offer-copy small {
  display: block;
  color: #8793a4;
  margin-bottom: 25px;
}
.flyer {
  width: min(100%, 430px);
  justify-self: center;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.review-grid span {
  color: #ffb000;
  letter-spacing: 2px;
}
.review-grid p {
  line-height: 1.8;
  color: #404b59;
}
.cta {
  padding: 75px 0;
  background: linear-gradient(90deg, var(--orange), #ff7f00);
  color: #fff;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cta h2 {
  margin-bottom: 8px;
}
.cta p {
  margin-bottom: 0;
}
footer {
  background: #030711;
  color: #b6c0cd;
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}
.footer-grid img {
  width: 260px;
}
.footer-grid b {
  display: block;
  color: #fff;
  margin-bottom: 12px;
}
.footer-grid a,
.footer-grid p {
  display: block;
  line-height: 1.8;
}
.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  padding: 14px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  font-weight: 800;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(1, 4, 10, 0.7);
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
}
.modal.open {
  display: flex;
}
.chat {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.chat-top {
  background: var(--navy);
  color: #fff;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-top b,
.chat-top span {
  display: block;
}
.chat-top span {
  font-size: 12px;
  color: #5fe08a;
}
.close {
  border: 0;
  background: none;
  color: #fff;
  font-size: 30px;
}
.chat-body {
  padding: 20px;
  max-height: 78vh;
  overflow: auto;
}
.bubble {
  background: var(--soft);
  padding: 13px 15px;
  border-radius: 14px;
  font-size: 14px;
}
.chat form {
  display: grid;
  gap: 12px;
}
.chat label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}
.chat input,
.chat select,
.chat textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.check {
  grid-template-columns: auto 1fr !important;
  align-items: center;
}
.check input {
  width: auto;
}
.chat small {
  color: var(--muted);
  text-align: center;
}
.done {
  text-align: center;
  padding: 20px;
}
@media (max-width: 900px) {
  .links {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    background: #071020;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .links.open {
    display: flex;
  }
  .menu {
    display: block;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 9px;
    padding: 8px 12px;
  }
  .hero-grid,
  .split,
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 110px 0 80px;
  }
  .quick-card {
    max-width: 600px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery figure.wide {
    grid-column: span 2;
  }
  .section-head,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .offer-copy h2 {
    font-size: 58px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .wrap {
    width: min(100% - 26px, 1180px);
  }
  .utility-inner {
    font-size: 10px;
    gap: 12px;
  }
  .brand img {
    max-width: 170px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(1, 5, 13, 0.96),
      rgba(1, 5, 13, 0.72)
    );
  }
  .section,
  .dark-band,
  .offer-section {
    padding: 72px 0;
  }
  .service-grid,
  .points,
  .review-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .gallery figure.wide {
    grid-column: auto;
    grid-row: auto;
  }
  .coupon-row {
    flex-direction: column;
  }
  .bottom {
    flex-direction: column;
    gap: 10px;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .chat-fab span {
    display: none;
  }
  .modal {
    padding: 10px;
  }
}
