:root {
  --ink: #11151c;
  --muted: #68717d;
  --paper: #f4f6f8;
  --line: #dfe5ea;
  --hot: #ff5a1f;
  --gold: #ffcb45;
  --green: #25d366;
  --blue: #135dd8;
  --charcoal: #0a1017;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

a {
  text-decoration: none;
}

.side-rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 30;
  width: 74px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--white);
  background: var(--charcoal);
  writing-mode: vertical-rl;
}

.side-rail a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 8px;
  writing-mode: horizontal-tb;
}

.side-rail span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 25;
  padding: 18px 0;
  background: rgba(244, 246, 248, 0.86);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(17, 21, 28, 0.08);
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1.5rem;
}

.logo-mark {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 8px;
}

.logo-mark svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.logo-window,
.logo-wheel {
  fill: var(--white);
}

.logo-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
}

.nav-links {
  display: flex;
  gap: 10px;
}

.nav-links a {
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 900;
}

.nav-links a:hover {
  color: var(--hot);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-text {
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.btn {
  border-radius: 8px;
  font-weight: 900;
}

.btn-hot {
  color: var(--white);
  border: 0;
  background: linear-gradient(135deg, var(--hot), #ff8b2d);
  box-shadow: 0 18px 34px rgba(255, 90, 31, 0.28);
}

.btn-hot:hover,
.btn-hot:focus {
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.btn-ghost-dark {
  color: var(--ink);
  border: 1px solid var(--ink);
}

.dispatch-hero {
  position: relative;
  padding: 34px 0 70px;
}

.dispatch-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 38%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 203, 69, 0.28), transparent 36%), linear-gradient(135deg, #141c24, #081018);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  grid-template-areas:
    "copy visual"
    "quote quote";
  gap: 26px;
}

.hero-copy-panel {
  grid-area: copy;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 40px;
  color: var(--white);
}

.kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy-panel h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
}

.hero-copy-panel p {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.75;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 900;
}

.hero-visual {
  grid-area: visual;
  position: relative;
  min-height: 580px;
  padding-top: 44px;
}

.main-visual {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.dispatch-card,
.time-card {
  position: absolute;
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 21, 28, 0.18);
}

.dispatch-card {
  left: -38px;
  bottom: 80px;
  max-width: 250px;
}

.dispatch-card strong,
.time-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
}

.dispatch-card span,
.time-card span {
  color: var(--muted);
  font-weight: 700;
}

.time-card {
  right: 22px;
  top: 86px;
  text-align: center;
}

.time-card strong {
  color: var(--hot);
  font-size: 3.5rem;
  line-height: 1;
}

.quote-dock {
  grid-area: quote;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 22px;
  align-items: center;
  margin-top: -18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(17, 21, 28, 0.11);
}

.quote-label {
  color: var(--hot);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-dock h2 {
  margin: 6px 0 0;
  font-weight: 900;
}

.quote-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr auto;
  gap: 12px;
}

.form-control,
.form-select {
  min-height: 52px;
  border-color: var(--line);
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--hot);
  box-shadow: 0 0 0 0.25rem rgba(255, 90, 31, 0.16);
}

.form-status {
  grid-column: 2 / -1;
  color: var(--blue);
  font-weight: 900;
}

.service-lane,
.dispatch-section,
.final-cta {
  padding: 92px 0;
}

.lane-head {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.lane-head h2,
.dispatch-copy h2,
.final-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
}

.service-board {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.service-tile {
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 24px 54px rgba(17, 21, 28, 0.12);
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.35s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10, 16, 23, 0.9));
}

.service-tile:hover img {
  transform: scale(1.05);
}

.service-tile div {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--white);
}

.service-tile span {
  color: var(--gold);
  font-weight: 900;
}

.service-tile h3 {
  margin-top: 10px;
  font-size: 1.65rem;
  font-weight: 900;
}

.service-tile p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.dispatch-section {
  background: var(--white);
}

.dispatch-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}

.dispatch-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.check-grid span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px;
  background: var(--paper);
  border-radius: 8px;
  font-weight: 900;
}

.check-grid i {
  color: var(--hot);
}

.dispatch-image-stack {
  position: relative;
  min-height: 560px;
}

.stack-large {
  width: 78%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 21, 28, 0.18);
}

.stack-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  height: 270px;
  object-fit: cover;
  border: 12px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(17, 21, 28, 0.16);
}

.coverage-strip {
  color: var(--white);
  background: var(--charcoal);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.coverage-grid div {
  padding: 34px;
  background: var(--charcoal);
}

.coverage-grid span {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.coverage-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--hot), #c42f12);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(255, 90, 31, 0.22);
}

.final-card p {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--charcoal);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: grid;
  gap: 12px;
}

.floating-actions a {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  font-size: 1.35rem;
}

.float-call {
  background: var(--blue);
}

.float-whatsapp {
  background: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (min-width: 1200px) {
  body {
    padding-left: 74px;
  }
}

@media (max-width: 1199.98px) {
  .hero-grid,
  .dispatch-layout,
  .final-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "quote";
  }

  .hero-copy-panel,
  .hero-visual {
    min-height: auto;
  }

  .quote-dock {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

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

  .form-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  .nav-shell {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .nav-shell.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 12px;
    background: var(--paper);
    border-radius: 8px;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    margin-left: auto;
  }

  .service-board,
  .coverage-grid,
  .lane-head {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 420px;
  }

  .dispatch-image-stack {
    min-height: auto;
  }

  .stack-large,
  .stack-small {
    position: static;
    width: 100%;
    height: 360px;
    border: 0;
  }

  .stack-small {
    margin-top: 16px;
  }
}

@media (max-width: 575.98px) {
  .top-nav {
    padding: 10px 0;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-copy-panel {
    padding-top: 34px;
  }

  .hero-copy-panel h1 {
    font-size: 2.9rem;
  }

  .main-visual {
    height: 360px;
  }

  .dispatch-card {
    left: 12px;
    bottom: 20px;
  }

  .time-card {
    right: 12px;
    top: 64px;
  }

  .quote-fields,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .service-lane,
  .dispatch-section,
  .final-cta {
    padding: 70px 0;
  }

  .final-card {
    padding: 28px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }
}
