:root {
  --ink: #090914;
  --ink-soft: #171620;
  --muted: #8d8d9a;
  --muted-strong: #666674;
  --orange: #ff5a00;
  --orange-dark: #d84c00;
  --cream: #f3f8f8;
  --paper: #ffffff;
  --line: #d8dce2;
  --pale-orange: #fff0eb;
  --shadow: 0 22px 60px rgba(17, 16, 21, 0.12);
  --radius: 2px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

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

button {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--orange);
  color: white;
  padding: 0.75rem 1rem;
  transform: translateY(-120%);
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(1rem, 7vw, 9rem);
  background: #121016;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand,
.nav-links,
.header-actions,
.header-phone,
.lang-switch,
.cta-row,
.form-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--orange);
  color: white;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-name {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.18rem;
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(0.92rem, 1.25vw, 1.15rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--orange);
}

.nav-links {
  gap: clamp(1rem, 2.2vw, 2rem);
  justify-content: center;
}

.nav-links a,
.header-phone,
.lang-option,
.lang-switch span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.nav-links a {
  font-size: 0.96rem;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.header-phone:hover {
  color: white;
}

.header-actions {
  justify-content: flex-end;
  gap: 1.1rem;
}

.header-phone {
  gap: 0.45rem;
  white-space: nowrap;
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.lang-switch {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 0.64rem;
}

.lang-option {
  min-height: 36px;
  border: 0;
  background: transparent;
  padding: 0 0.24rem;
  text-transform: uppercase;
}

.lang-option.is-active {
  color: white;
}

.nav-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.nav-cta {
  min-width: 192px;
  padding: 0 1.35rem;
  background: var(--orange);
  color: white;
}

.nav-cta:hover,
.primary-cta:hover {
  background: var(--orange-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  align-items: end;
  padding: 9.2rem clamp(1rem, 7vw, 9rem) 5.5rem;
  background: #121016;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 22, 0.96) 0%, rgba(18, 16, 22, 0.82) 42%, rgba(18, 16, 22, 0.36) 72%, rgba(18, 16, 22, 0.74) 100%),
    linear-gradient(180deg, rgba(18, 16, 22, 0.1), rgba(18, 16, 22, 0.88)),
    url("./assets/mota-diaz-truck.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 910px;
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  width: fit-content;
  margin: 0;
  color: var(--orange);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.line-label::before,
.line-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.line-label.left::after {
  display: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Lexend", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-top: 0.9rem;
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 650px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.cta-row,
.form-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.primary-cta,
.secondary-cta {
  gap: 0.55rem;
  padding: 0.95rem 1.25rem;
}

.primary-cta {
  background: var(--orange);
  color: white;
}

.primary-cta svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.secondary-cta {
  background: white;
  color: var(--ink);
}

.secondary-cta:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.steps-section,
.fleet-section,
.reviews-section,
.quote-section {
  padding: clamp(5.5rem, 9vw, 8.5rem) clamp(1rem, 7vw, 9rem);
}

.steps-section {
  background: #eaf1f1;
}

.section-heading {
  max-width: 930px;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.section-heading h2,
.fleet-copy h2,
.quote-copy h2 {
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
}

.section-heading h2 strong,
.fleet-copy h2 strong,
.quote-copy h2 strong {
  display: inline;
  color: var(--orange);
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  border: 1px solid #d0d4dc;
  background: var(--paper);
  padding: clamp(1.35rem, 2.3vw, 2rem);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.icon-tile {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  background: var(--pale-orange);
  color: var(--orange);
}

.icon-tile svg {
  width: 27px;
  height: 27px;
}

.step-number {
  position: absolute;
  top: 0.85rem;
  right: 1.15rem;
  color: rgba(255, 90, 0, 0.09);
  font-family: "Lexend", Arial, sans-serif;
  font-size: clamp(4rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
}

.step-card h3 {
  position: relative;
  margin-top: 2.15rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.5vw, 1.48rem);
  font-weight: 900;
}

.step-card p,
.fleet-copy p,
.quote-copy p,
.review-card p {
  color: var(--muted);
  font-weight: 650;
}

.step-card p {
  position: relative;
  max-width: 24ch;
  margin: 0.72rem 0 0;
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  align-items: center;
  background: #f3f8f8;
}

.fleet-copy h2 strong,
.quote-copy h2 strong {
  display: block;
}

.fleet-copy p {
  max-width: 580px;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.fleet-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.fleet-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fleet-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fleet-facts article {
  padding: 1.25rem;
  border-top: 1px solid var(--line);
}

.fleet-facts article + article {
  border-left: 1px solid var(--line);
}

.fleet-facts strong,
.fleet-facts span {
  display: block;
}

.fleet-facts strong {
  color: var(--ink);
  font-family: "Lexend", Arial, sans-serif;
  font-weight: 900;
}

.fleet-facts span {
  margin-top: 0.35rem;
  color: var(--muted-strong);
  font-weight: 650;
}

.reviews-section {
  background: white;
}

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

.review-card {
  border: 1px solid var(--line);
  background: #fbfdfd;
  padding: clamp(1.25rem, 2vw, 1.7rem);
}

.stars {
  display: block;
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.review-card p {
  margin: 1.2rem 0;
}

.review-card strong {
  color: var(--ink);
  font-family: "Lexend", Arial, sans-serif;
  font-size: 0.92rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(24rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  background: #eaf1f1;
}

.quote-copy {
  position: sticky;
  top: 6.2rem;
}

.contact-lines {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.contact-lines a {
  color: var(--orange);
  font-weight: 900;
}

.quote-form {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.5vw, 1.8rem);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.42rem;
  margin-bottom: 0.92rem;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd3dc;
  border-radius: 0;
  background: #fbfdfd;
  color: var(--ink);
  outline: none;
  padding: 0.82rem 0.9rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 90, 0, 0.34);
  outline-offset: 3px;
}

.form-actions button {
  flex: 1 1 12rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: none;
  width: 54px;
  height: 54px;
  place-items: center;
  background: #21b35b;
  color: white;
  box-shadow: 0 14px 30px rgba(16, 132, 69, 0.3);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.mobile-action-bar {
  position: fixed;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 60;
  display: none;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  gap: 0.55rem;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 16, 22, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.mobile-action {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-family: "Lexend", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-action.primary {
  border-color: var(--orange);
  background: var(--orange);
}

.mobile-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.mobile-action.primary svg {
  fill: currentColor;
  stroke: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 7vw, 9rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #121016;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: white;
  font-weight: 800;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: clamp(1rem, 4vw, 3rem);
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .nav-cta {
    min-width: 154px;
    padding-inline: 1rem;
  }

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

  .fleet-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 5.2rem;
  }

  .site-header {
    min-height: 70px;
  }

  .header-phone span,
  .nav-cta {
    display: none;
  }

  .header-phone {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero {
    min-height: 760px;
    padding: 8.2rem clamp(1rem, 4vw, 2rem) 5.4rem;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(18, 16, 22, 0.96) 0%, rgba(18, 16, 22, 0.82) 48%, rgba(18, 16, 22, 0.28) 80%, rgba(18, 16, 22, 0.72) 100%),
      linear-gradient(180deg, rgba(18, 16, 22, 0.18), rgba(18, 16, 22, 0.9)),
      url("./assets/mota-diaz-truck.png") 58% center / cover no-repeat;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(3.7rem, 10vw, 6.4rem);
  }

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

  .steps-section,
  .fleet-section,
  .reviews-section,
  .quote-section {
    padding-inline: clamp(1rem, 4vw, 2.2rem);
  }

  .section-heading h2,
  .fleet-copy h2,
  .quote-copy h2 {
    font-size: clamp(2.25rem, 7vw, 4.6rem);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    display: grid;
    grid-template-columns: minmax(7rem, 0.25fr) 1fr;
    gap: 0.8rem 1.25rem;
    align-items: start;
  }

  .review-card p {
    margin: 0;
  }

  .review-card strong {
    grid-column: 2;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
    padding-bottom: 5.35rem;
  }

  .site-header {
    min-height: 64px;
    padding: 0 0.75rem;
  }

  .brand-name {
    display: grid;
    gap: 0.12rem;
    font-size: 0.86rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .brand-name strong {
    font-size: 0.62rem;
  }

  .header-actions {
    gap: 0.42rem;
  }

  .header-phone {
    width: 36px;
    height: 36px;
  }

  .lang-switch {
    min-height: 34px;
    padding: 0 0.5rem;
  }

  .lang-option {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
    padding: 6.25rem 0.9rem 5.9rem;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(18, 16, 22, 0.66) 0%, rgba(18, 16, 22, 0.58) 30%, rgba(18, 16, 22, 0.96) 77%, #121016 100%),
      linear-gradient(90deg, rgba(18, 16, 22, 0.78), rgba(18, 16, 22, 0.18) 62%, rgba(18, 16, 22, 0.86)),
      url("./assets/mota-diaz-truck.png") 62% top / cover no-repeat;
  }

  .hero-content {
    max-width: 32rem;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.25rem);
    line-height: 0.93;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .secondary-cta {
    width: 100%;
    word-break: break-word;
  }

  .steps-section,
  .fleet-section,
  .reviews-section,
  .quote-section {
    padding: 4.2rem 0.9rem;
  }

  .line-label::before,
  .line-label::after {
    width: 28px;
  }

  .steps-grid,
  .reviews-grid,
  .field-row,
  .fleet-facts {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 236px;
    padding: 1.25rem;
  }

  .fleet-panel img {
    aspect-ratio: 4 / 3;
  }

  .fleet-facts article + article {
    border-left: 0;
  }

  .floating-whatsapp {
    display: none;
  }

  .quote-form {
    padding: 0.85rem;
  }

  input,
  select,
  textarea {
    min-height: 56px;
    font-size: 16px;
  }

  .form-actions {
    display: grid;
  }

  .form-actions button,
  .form-actions .secondary-cta {
    width: 100%;
  }

  .mobile-action-bar {
    right: 0.55rem;
    bottom: 0.55rem;
    left: 0.55rem;
    grid-template-columns: 1fr 0.86fr 1fr;
    gap: 0.42rem;
    padding: 0.42rem;
  }

  .mobile-action {
    min-height: 52px;
    padding: 0 0.28rem;
    font-size: 0.68rem;
  }

  .mobile-action svg {
    width: 17px;
    height: 17px;
  }

  .footer {
    padding-bottom: 6.2rem;
  }
}

@media (max-width: 420px) {
  .brand-name strong {
    display: none;
  }

  .cta-row {
    display: grid;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .mobile-action {
    gap: 0.24rem;
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
