:root {
  --ink: #132026;
  --navy: #21343b;
  --muted: #62727a;
  --line: #d8dfdc;
  --surface: #f6f5f0;
  --panel: #ffffff;
  --green: #1f9d84;
  --green-deep: #11705f;
  --amber: #d89a32;
  --soft-green: #e8f3ef;
  --soft-amber: #fbf1df;
  --radius: 8px;
  --shadow: 0 22px 50px rgba(19, 32, 38, 0.12);
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px 6vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.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;
}

.brand-vehicle {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 0;
  width: 276px;
  max-width: 52vw;
  padding: 0 0 9px;
  animation: trailer-roll-in 1650ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-vehicle::before {
  position: absolute;
  left: 18px;
  right: 8px;
  bottom: 4px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, #c8d3cf 18%, #c8d3cf 82%, transparent);
  border-radius: 999px;
}

.brand:hover .brand-vehicle {
  animation: trailer-drive-left 950ms ease-in-out both;
}

.truck-cab {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 39px;
  margin-right: -1px;
  background: var(--green-deep);
  border: 3px solid #ffffff;
  border-right: 0;
  border-radius: 14px 4px 4px 14px;
  box-shadow: 0 8px 18px rgba(19, 32, 38, 0.12);
}

.truck-cab::before {
  position: absolute;
  left: -10px;
  top: 11px;
  width: 13px;
  height: 19px;
  content: "";
  background: var(--green-deep);
  border-radius: 12px 0 0 12px;
}

.truck-cab::after {
  position: absolute;
  left: 9px;
  top: 9px;
  width: 13px;
  height: 10px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border-radius: 3px;
}

.truck-cab span {
  position: absolute;
  left: -8px;
  bottom: 6px;
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.truck-trailer {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 214px;
  max-width: calc(52vw - 42px);
  height: 58px;
  padding: 5px 9px;
  background: #ffffff;
  border: 2px solid #d8dfdc;
  border-left: 5px solid var(--green);
  border-radius: 4px 12px 12px 4px;
  box-shadow: 0 8px 18px rgba(19, 32, 38, 0.1);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.truck-wheel {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 14px;
  height: 14px;
  background: var(--navy);
  border: 3px solid #ffffff;
  border-radius: 50%;
  animation: wheel-spin 1650ms linear both;
}

.wheel-left {
  left: 38px;
}

.wheel-right {
  right: 32px;
}

@keyframes trailer-roll-in {
  0% {
    opacity: 0;
    transform: translateX(54px);
  }

  70% {
    opacity: 1;
    transform: translateX(-7px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes trailer-drive-left {
  0% {
    transform: translateX(22px);
  }

  70% {
    transform: translateX(-6px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes wheel-spin {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(-2turn);
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: 56px;
  align-items: center;
  padding: 82px 6vw 38px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 52%, rgba(232, 243, 239, 0.72) 52%, rgba(232, 243, 239, 0.72) 100%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: #45575f;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: var(--green-deep);
  box-shadow: 0 12px 28px rgba(17, 112, 95, 0.22);
}

.button.primary:hover {
  background: #0d5f51;
}

.button.secondary {
  color: var(--navy);
  background: #ffffff;
  border-color: var(--line);
}

.hero-bullets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  min-height: 78px;
  padding: 14px 15px 14px 40px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  position: relative;
}

.hero-bullets li::before {
  position: absolute;
  left: 15px;
  top: 17px;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 157, 132, 0.14);
}

.control-board {
  justify-self: end;
  width: min(100%, 500px);
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.board-header span,
.board-kpis span,
.board-kpis small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-header strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.3rem;
}

.board-header p {
  align-self: start;
  margin: 0;
  padding: 7px 10px;
  color: var(--green-deep);
  background: var(--soft-green);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.board-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.board-kpis article {
  min-height: 118px;
  padding: 15px;
  background: #f9faf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.board-kpis strong {
  display: block;
  margin: 16px 0 6px;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.route-card {
  padding: 18px;
  margin-bottom: 16px;
  background: var(--navy);
  border-radius: var(--radius);
}

.route-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 3px 6px 22px;
}

.route-line::before {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  height: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.24);
}

.route-line span {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  background: var(--amber);
  border: 4px solid #ffffff;
  border-radius: 50%;
}

.route-line span:nth-child(2) {
  background: var(--green);
}

.route-line span:nth-child(3) {
  background: #ffffff;
}

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

.route-steps p {
  margin: 0;
}

.route-steps strong,
.route-steps span {
  display: block;
}

.route-steps strong {
  color: #ffffff;
  font-size: 0.86rem;
}

.route-steps span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
}

.board-table {
  display: grid;
  gap: 8px;
}

.board-table div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  background: #f9faf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.board-table span,
.board-table strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.board-table span {
  font-weight: 700;
}

.board-table strong {
  color: var(--green-deep);
  font-weight: 900;
}

.credibility-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.credibility-strip span {
  display: grid;
  place-items: center;
  min-height: 76px;
  color: var(--navy);
  border-right: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.credibility-strip span:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding: 86px 6vw;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 720px;
}

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

.service-card {
  min-height: 252px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 18px;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card.emphasized {
  background: var(--soft-green);
  border-color: rgba(31, 157, 132, 0.28);
}

.service-card.wide {
  grid-column: span 2;
  min-height: 252px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--green-deep);
  background: #edf4f1;
  border-radius: var(--radius);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-section {
  background: var(--navy);
}

.capability-section .eyebrow,
.capability-section h2 {
  color: #ffffff;
}

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

.capability-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.capability-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
}

.capability-grid h3 {
  color: #ffffff;
}

.capability-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.process-copy {
  max-width: 620px;
}

.process-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  min-height: 116px;
  padding: 22px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.process-list article:last-child {
  border-bottom: 0;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green-deep);
  background: var(--soft-green);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
}

.automotive-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 46px;
  align-items: start;
}

.automotive-copy {
  max-width: 760px;
}

.check-panel {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(19, 32, 38, 0.06);
}

.check-panel h3 {
  margin-bottom: 18px;
}

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

.check-panel li {
  position: relative;
  padding-left: 30px;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 700;
}

.check-panel li::before {
  position: absolute;
  left: 0;
  top: 0.28em;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "\2713";
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.66fr);
  gap: 48px;
  padding: 88px 6vw;
  color: #ffffff;
  background: var(--navy);
}

.contact-section .eyebrow,
.contact-section h2 {
  color: #ffffff;
}

.contact-section p,
.contact-lines a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy {
  max-width: 680px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: #ffffff;
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f9faf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 157, 132, 0.14);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 6vw;
  background: #10181b;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer a {
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  color: #ffffff;
  background: #25d366;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(16, 24, 27, 0.26);
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(16, 24, 27, 0.32);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

@media (max-width: 1060px) {
  .hero,
  .process-section,
  .automotive-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    background: #ffffff;
  }

  .control-board {
    justify-self: start;
  }

  .services-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
    padding: 12px 5vw;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 5vw 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .brand-vehicle {
    width: 238px;
    max-width: 62vw;
  }

  .truck-trailer {
    width: 178px;
    max-width: calc(62vw - 42px);
  }

  .hero {
    gap: 34px;
    padding: 56px 5vw 34px;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-bullets,
  .board-kpis,
  .route-steps,
  .credibility-strip,
  .services-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .credibility-strip {
    padding: 0 5vw;
  }

  .credibility-strip span {
    min-height: 56px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .credibility-strip span:last-child {
    border-bottom: 0;
  }

  .service-card,
  .service-card.wide,
  .capability-grid article {
    min-height: auto;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .section,
  .contact-section {
    padding: 66px 5vw;
  }
}

@media (max-width: 480px) {
  .brand-vehicle {
    width: 208px;
    max-width: 64vw;
  }

  .truck-cab {
    width: 38px;
    height: 35px;
  }

  .truck-trailer {
    width: 156px;
    max-width: calc(64vw - 38px);
    height: 52px;
    padding: 5px 7px;
  }

  h1 {
    font-size: 2.42rem;
  }

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

  .control-board,
  .contact-form {
    padding: 18px;
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-vehicle,
  .brand:hover .brand-vehicle,
  .truck-wheel {
    animation: none;
  }
}
