:root {
  --navy: #161313;
  --navy2: #241818;
  --accent: #d9363e;
  --accent-light: #ff686f;
  --warm: #ffb36b;
  --ink: #211719;
  --muted: #716367;
  --line: #e7dcde;
  --pale: #faf4f4;
  --white: #fff;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(70, 20, 25, 0.13);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.6;
  background: #fff;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  background: #fff;
  padding: 12px;
  z-index: 999;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  height: 110px;
  background: #fff;
  border-bottom: 1px solid #e9dfe1;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 200px;
}
.brand-logo {
  display: block;
  width: 200px;
  height: 100px;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
}
nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #38282b;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  padding: 15px 23px;
  color: #fff;
  background: linear-gradient(135deg, #b9252d, #ed4b53);
  font: 700 14px/1.2 inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(217, 54, 62, 0.25);
  transition:
    0.2s transform,
    0.2s box-shadow;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(217, 54, 62, 0.38);
}
.button-small {
  padding: 12px 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 28%, #5a2025 0, transparent 35%),
    linear-gradient(135deg, #161313, #251719);
  padding: 106px 0 94px;
}
.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(229, 94, 101, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 94, 101, 0.075) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to right, transparent, #000 18%, #000);
}
.hero-grid,
.split-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 76px;
  align-items: center;
}
.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: #c62d35;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
}
.eyebrow {
  display: inline-block;
  color: #ffb3b7;
  background: rgba(217, 54, 62, 0.12);
  border: 1px solid rgba(240, 92, 99, 0.32);
  border-radius: 999px;
  padding: 8px 14px;
}
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: #ff686f;
  font-style: normal;
}
.lead {
  font-size: 18px;
  color: #b8c4d7;
  max-width: 700px;
}
.hero .lead {
  margin: 26px 0 30px;
}
.pale-section .lead {

  color: var(--ink);

}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.hero-checks {
  display: flex;
  gap: 23px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  color: #c9d4e3;
  font-size: 13px;
  font-weight: 700;
}
.hero-checks li:before {
  content: '✓';
  color: var(--warm);
  border: 1px solid var(--warm);
  border-radius: 50%;
  margin-right: 8px;
  padding: 0 3px;
}
.service-console,
.status-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(246, 164, 168, 0.22);
  border-radius: 24px;
  padding: 25px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.08);
}
.console-head,
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.09em;
}
.console-head i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 12px var(--warm);
}
.console-head b,
.panel-head b {
  color: #ff747b;
}
.route-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  margin-top: 22px;
  background: linear-gradient(to right, var(--warm), var(--accent)) center/100% 3px no-repeat;
}
.route-line span {
  width: 13px;
  height: 13px;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 54, 62, 0.16);
}
.route-labels {
  display: flex;
  justify-content: space-between;
  color: #8796ab;
  font-size: 10px;
}
.console-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 26px 0 15px;
}
.console-cards article {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(25, 8, 10, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 15px;
}
.icon,
.card-icon {
  color: #ff747b;
  font-size: 22px;
}
.console-cards strong,
.console-cards small {
  display: block;
}
.console-cards strong {
  font-size: 12px;
}
.console-cards small {
  color: #8f9db0;
  font-size: 10px;
}
.console-note {
  margin: 0;
  padding: 15px 17px;
  border-radius: 12px;
  background: rgba(217, 54, 62, 0.17);
  font-size: 11px;
}
.console-note strong,
.console-note span {
  display: block;
}
.console-note span {
  color: #9fb0c8;
  margin-top: 3px;
}
.service-strip {
  background: #120c0d;
  color: #fff;
  padding: 18px 0;
}
.service-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.service-strip i {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
.quick-facts {
  border-bottom: 1px solid var(--line);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts-grid article {
  display: flex;
  gap: 15px;
  padding: 27px 23px;
  border-left: 1px solid var(--line);
}
.facts-grid article:last-child {
  border-right: 1px solid var(--line);
}
.facts-grid article > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}
.facts-grid strong {
  font-size: 14px;
}
.facts-grid p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 3px 0;
}
.section {
  padding: 104px 0;
}
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 44px;
}
.section h2,
.contact-section h2 {
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0;
}
.section-intro > p,
.center-intro > p {
  color: var(--muted);
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    0.25s background,
    0.25s transform;
}
.service-card:hover {
  background: #fff7f7;
  transform: translateY(-3px);
}
.service-card .number {
  position: absolute;
  right: 24px;
  top: 25px;
  color: #a7b1bf;
  font-size: 11px;
}
.card-icon {
  display: flex;
  align-items: center;
  height: 50px;
}
.card-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 21px;
  line-height: 1.2;
  margin: 15px 0 10px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
}
.service-card a,
.text-link {
  position: absolute;
  bottom: 29px;
  color: #bd2830;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.dark-section {
  color: #fff;
  background: linear-gradient(135deg, #171112, #2a191b);
}
.kicker.light {
  color: #ff8d93;
}
.lead.compact {
  margin: 22px 0 25px;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  padding: 0;
  margin: 25px 0 34px;
  list-style: none;
  color: #c2cde0;
  font-size: 14px;
}
.feature-list li:before {
  content: '✓';
  color: var(--warm);
  margin-right: 9px;
}
.status-panel .process-step {
  display: flex;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.process-step i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: rgba(217, 54, 62, 0.2);
  border: 1px solid rgba(235, 86, 94, 0.42);
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
  color: #ffb4b8;
}
.process-step strong,
.process-step span {
  display: block;
}
.process-step strong {
  font-size: 14px;
}
.process-step span {
  font-size: 12px;
  color: #94a4bb;
}
.status-panel > p {
  margin: 22px 0 0;
  padding: 16px;
  background: rgba(217, 54, 62, 0.14);
  border-radius: 12px;
  color: #aebdd2;
  font-size: 12px;
}
.align-center {
  align-items: center;
}
.equipment-visual {
  position: relative;
  height: 330px;
  background: linear-gradient(#fff3f3, #fcf9f9);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.equipment-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trailer {
  position: absolute;
  width: 66%;
  height: 42%;
  left: 8%;
  top: 27%;
  background: linear-gradient(135deg, #fff, #ead9da);
  border: 3px solid #553033;
  border-radius: 8px 5px 5px 8px;
}
.trailer span {
  position: absolute;
  left: 8%;
  top: 30%;
  font-size: 42px;
  font-style: italic;
  font-weight: 900;
  color: #b9252d;
}
.cab {
  position: absolute;
  width: 22%;
  height: 31%;
  right: 5%;
  top: 38%;
  background: linear-gradient(140deg, #ed4b53, #9e1f27);
  border: 3px solid #64171c;
  border-radius: 35px 12px 6px 5px;
  clip-path: polygon(28% 0, 75% 0, 100% 37%, 100% 100%, 0 100%, 0 45%);
}
.wheel {
  position: absolute;
  top: 63%;
  width: 46px;
  height: 46px;
  border: 9px solid #17263b;
  background: #74839a;
  border-radius: 50%;
  z-index: 2;
}
.w1 {
  right: 10%;
}
.w2 {
  left: 17%;
}
.w3 {
  left: 58%;
}
.road {
  position: absolute;
  left: 0;
  right: 0;
  top: 76%;
  height: 4px;
  background: #8fa0b5;
}
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 27px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.mini-grid article {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mini-grid strong,
.mini-grid span {
  display: block;
}
.mini-grid span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}
.pale-section {
  background: var(--pale);
}
.feature-list.dark {
  color: var(--ink);
}
.text-link {
  position: static;
}
.lighting-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 400px;
  overflow: hidden;
  color: #fff;
  background: #191011;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.lighting-panel .glow {
  position: absolute;
  width: 170px;
  height: 170px;
  background: #fff;
  border-radius: 50%;
  filter: blur(4px);
  box-shadow:
    0 0 40px #fff,
    0 0 110px #ed4b53,
    0 0 180px #9e1f27;
}
.lighting-panel span,
.lighting-panel strong,
.lighting-panel p {
  position: relative;
}
.lighting-panel span {
  font-size: 11px;
  letter-spacing: 0.28em;
}
.lighting-panel strong {
  font-size: 70px;
  line-height: 0.6;
  letter-spacing: -0.07em;
  color: #4a181c;
}
.lighting-panel p {
  align-self: end;
  margin: 0 0 28px;
  font-size: 12px;
  color: #98a9c1;
}
.center-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.center-intro .kicker {
  margin-bottom: 16px;
}
.center-intro > p {
  margin-top: 20px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-grid article {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(15, 38, 70, 0.05);
}
.process-grid span {
  color: var(--accent);
  font-weight: 900;
  font-size: 12px;
}
.process-grid p {
  color: var(--muted);
  font-size: 14px;
}
.industries {
  color: #fff;
  background: #241517;
}
.industries h2 {
  max-width: 730px;
  margin-bottom: 42px;
}
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}
.industry-grid article {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.industry-grid span {
  font-size: 10px;
  color: #ff858b;
  letter-spacing: 0.16em;
  font-weight: 900;
}
.industry-grid h3 {
  font-size: 20px;
  max-width: 420px;
  margin: 12px 0;
}
.contact-section {
  padding: 104px 0;
  color: #fff;
  background: radial-gradient(circle at 20% 15%, #682329, transparent 36%), #161011;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}
.contact-section p {
  color: #b3c0d2;
}
.contact-details {
  margin-top: 30px;
  padding: 17px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
}
.contact-details strong,
.contact-details a,
.contact-details .protected-email {
  display: block;
}
.contact-details a,
.contact-details .protected-email {
  width: fit-content;
  margin-top: 4px;
  color: #9aabc1;
}
form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  font-size: 12px;
  font-weight: 800;
  color: #d8e1ee;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
}
select option {
  color: #111;
}
textarea {
  resize: vertical;
}
.form-note {
  font-size: 11px !important;
  margin: 0 !important;
}
footer {
  padding: 56px 0 20px;
  color: #bac6d7;
  background: #0e090a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}
.footer-brand .brand-logo {
  width: 180px;
  height: auto;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-grid p {
  max-width: 420px;
  font-size: 13px;
}
.footer-grid > div > strong {
  color: #fff;
  margin-bottom: 8px;
}
.footer-grid a {
  text-decoration: none;
  font-size: 13px;
}
.copyright {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 11px;
  color: #718096;
}
@media (max-width: 920px) {
  nav {
    position: absolute;
    display: none;
    left: 0;
    right: 0;
    top: 81px;
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }
  nav.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 8px;
    padding: 9px 12px;
    font-weight: 700;
  }
  .header-cta {
    display: none;
  }
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding: 75px 0;
  }
  .section-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .facts-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facts-grid article:nth-child(2) {
    border-right: 1px solid var(--line);
  }
  .service-strip .container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-grid {
    gap: 45px;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 120px;
  }
  .brand {
    min-width: auto;
  }
  .brand-logo {
    width: 200px;
    height: 100px;
  }
  nav {
    top: 71px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-checks {
    flex-direction: column;
    gap: 8px;
  }
  .console-cards,
  .facts-grid,
  .service-grid,
  .mini-grid,
  .process-grid,
  .industry-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid article {
    border-right: 1px solid var(--line);
  }
  .section {
    padding: 75px 0;
  }
  .feature-list,
  .field-row {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 285px;
  }
  .contact-section {
    padding: 75px 0;
  }
  .footer-grid {
    gap: 35px;
  }
  .copyright {
    flex-direction: column;
    gap: 8px;
  }
  .equipment-visual {
    height: 245px;
  }
  .trailer span {
    font-size: 28px;
  }
  .wheel {
    width: 37px;
    height: 37px;
    top: 62%;
  }
  .lighting-panel {
    min-height: 330px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button,
  .service-card {
    transition: none;
  }
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-success {
  color: #9ff0c8 !important;
}
.form-error {
  color: #ffb3b7 !important;
}
