/* LJM Building and Plant - construction plant hire
   Charcoal / navy base + high-vis orange accents (not Jack PT full-amber). */

:root {
  --void: #070b10;
  --ink: #0b1118;
  --panel: #121a24;
  --panel-2: #182231;
  --plate: #1e2a38;
  --navy: #0f1a2a;
  --steel: #8fa0b3;
  --chrome: #c9d4e0;
  --chrome-hot: #eef3f8;
  --muted: #7d8b9a;
  --line: rgba(201, 212, 224, 0.12);
  --line-strong: rgba(201, 212, 224, 0.26);
  --hi: #ff6a00;
  --hi-hot: #ff8533;
  --hi-deep: #d45500;
  --hi-soft: rgba(255, 106, 0, 0.14);
  --ok: #4f9d72;
  --danger: #d15a4a;
  --radius: 6px;
  --header-h: 4.65rem;
  --sticky-cta-h: 3.75rem;
  --wrap: 70rem;
  --font-display: "Teko", "Arial Narrow", Impact, sans-serif;
  --font-body: "Barlow", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  --metal-btn: linear-gradient(180deg, #ff9a4a 0%, var(--hi) 45%, var(--hi-deep) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.1rem);
}

@media (max-width: 720px) {
  html {
    scroll-padding-bottom: calc(var(--sticky-cta-h) + 0.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--chrome);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(var(--sticky-cta-h) + 0.5rem);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--hi-hot);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffd0a8;
}

:focus-visible {
  outline: 2px solid var(--hi);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 300;
  background: var(--plate);
  color: var(--chrome-hot);
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

/* Top strip - fully centered */
.top-strip {
  background: linear-gradient(180deg, #152033, #0f1724);
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.86rem;
  color: var(--steel);
}

.top-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.85rem;
  padding: 0.48rem 0;
  text-align: center;
}

.top-strip a {
  color: var(--chrome-hot);
  font-weight: 700;
  text-decoration: none;
}

.top-strip a:hover {
  color: var(--hi-hot);
}

.top-strip-sep {
  color: var(--muted);
  opacity: 0.55;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 16, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-bottom-color: var(--line-strong);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  color: inherit;
}

.brand img {
  height: 3.35rem;
  width: 3.35rem;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: #0a0c0f;
}

.menu-toggle {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--chrome);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
}

.menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: linear-gradient(180deg, #152033, #0e1520);
  border-bottom: 1px solid var(--line-strong);
  padding: 0.75rem 1rem 1rem;
}

.menu.is-open {
  display: block;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
  font-weight: 700;
  color: var(--chrome);
  border-radius: var(--radius);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.menu a:hover,
.menu a.is-active {
  background: var(--hi-soft);
  color: var(--hi-hot);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.header-phone {
  font-weight: 700;
  text-decoration: none;
  color: var(--chrome-hot);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.header-phone:hover {
  color: var(--hi-hot);
}

@media (min-width: 960px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .menu {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    justify-self: center;
  }

  .menu ul {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
    padding: 0.22rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(18, 26, 36, 0.85);
  }

  .menu a {
    padding: 0.42rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 999px;
  }

  .menu a.is-active {
    background: var(--hi);
    color: #140a00;
  }

  .header-actions {
    display: flex;
    margin-left: 0;
    justify-self: end;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s var(--ease), filter 0.15s var(--ease),
    background 0.15s var(--ease), border-color 0.15s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn-hi {
  background: var(--metal-btn);
  color: #140a00;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.28);
}

.btn-hi:hover {
  color: #140a00;
}

.btn-ghost {
  background: transparent;
  color: var(--chrome-hot);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--hi);
  color: var(--hi-hot);
  background: var(--hi-soft);
}

.btn-wa {
  background: #1f8f4e;
  color: #fff;
  border-color: #2aa85c;
}

.btn-wa:hover {
  color: #fff;
  filter: brightness(1.08);
}

.btn-lg {
  padding: 0.88rem 1.3rem;
  font-size: 0.92rem;
}

/* Hero - copy + image sit as a tight centred pair */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  min-height: min(68vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(7, 11, 16, 0.92) 0%,
      rgba(7, 11, 16, 0.82) 42%,
      rgba(7, 11, 16, 0.72) 100%
    ),
    url("assets/hero-bg.jpg") center / cover no-repeat;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem 0 2.75rem;
  align-items: center;
  justify-items: stretch;
  width: min(100% - 2rem, 62rem);
  margin-inline: auto;
  min-width: 0;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.75rem 2rem;
    padding: 3.25rem 0 3.5rem;
  }
}

.hero-copy {
  min-width: 0;
  max-width: none;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hi-hot);
  margin: 0 0 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: var(--hi);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.95rem;
  color: var(--chrome-hot);
  max-width: 100%;
}

.hero h1 .h1-line {
  display: block;
}

.hero h1 .h1-accent {
  color: var(--steel);
  font-weight: 500;
}

.hero-lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  color: var(--steel);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}

.mt-actions {
  justify-content: center;
}

.hero-price {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 480px) {
  .hero-price {
    grid-template-columns: 1fr 1fr;
  }
}

.price-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: rgba(18, 26, 36, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.price-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hi);
}

.price-chip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-chip-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--chrome-hot);
  line-height: 1;
}

.price-chip-value span {
  font-size: 0.95rem;
  color: var(--steel);
  margin-left: 0.15rem;
}

.hero-media {
  min-width: 0;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
  justify-self: center;
}

@media (min-width: 900px) {
  .hero-media {
    max-width: none;
    margin-inline: 0;
    justify-self: stretch;
  }
}

.hero-media-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  width: 100%;
}

.hero-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: var(--hi);
  color: #140a00;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: 3px;
  z-index: 2;
}

/* Trust strip - three equal centered tiles */
.trust-strip {
  background: linear-gradient(180deg, #152033, #101826);
  border-block: 1px solid var(--line-strong);
  color: var(--chrome);
}

.trust-strip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
  padding: 1.1rem 0;
  margin-inline: auto;
  text-align: center;
}

.trust-item {
  flex: 1 1 14rem;
  max-width: 22rem;
  min-width: min(100%, 14rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.9rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}

.trust-mark {
  display: block;
  width: 1.75rem;
  height: 3px;
  border-radius: 2px;
  background: var(--hi);
  flex-shrink: 0;
}

.trust-text {
  display: block;
  width: 100%;
  text-align: center;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .trust-strip-row {
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .trust-item {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }
}

/* Sections */
.section {
  padding: 3.6rem 0;
  position: relative;
}

.section-head {
  max-width: 46rem;
  margin: 0 auto 1.85rem;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 0.6rem;
  color: var(--chrome-hot);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-plate {
  background: linear-gradient(180deg, #0d1420 0%, #0a1018 100%);
  border-block: 1px solid var(--line);
}

.split-heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--chrome-hot);
  font-weight: 600;
  line-height: 1;
}

/* Package offer - premium */
.offer-band {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  padding: 1.6rem;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.12), transparent 42%),
    linear-gradient(165deg, #1c2a3c 0%, #101826 100%);
  border: 1px solid rgba(255, 106, 0, 0.35);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.offer-band-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.65rem;
  padding: 0.28rem 0.6rem;
  border-radius: 3px;
  background: var(--hi);
  color: #140a00;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 820px) {
  .offer-band {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 1.9rem 2rem;
  }
}

.offer-copy {
  min-width: 0;
  padding-right: 0.5rem;
}

.offer-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
  line-height: 1;
  color: var(--chrome-hot);
  font-weight: 600;
}

.offer-band p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.offer-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.offer-list li {
  padding-left: 1.15rem;
  position: relative;
  font-weight: 600;
  color: var(--chrome);
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--hi);
  border-radius: 1px;
}

.offer-price-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 106, 0, 0.4);
  background: linear-gradient(180deg, #243447, #121a26);
  min-height: 11rem;
}

.offer-price {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 4.3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--hi-hot);
  text-align: center;
}

.offer-price span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.45rem;
  font-weight: 700;
  color: var(--steel);
  font-family: var(--font-body);
}

.offer-price-note {
  margin: 0.85rem 0 0 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted) !important;
  font-weight: 600;
}

/* Fleet strip */
.fleet-strip {
  display: grid;
  gap: 0.75rem;
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .fleet-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

@media (min-width: 1100px) {
  .fleet-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.fleet-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.4);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 7.5rem;
  object-fit: cover;
  object-position: center;
  background: #0a1018;
}

@media (min-width: 720px) {
  .fleet-card img {
    max-height: 8.5rem;
  }
}

.fleet-card .body {
  padding: 0.7rem 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
}

.fleet-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--chrome-hot);
  font-weight: 600;
}

.fleet-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.fleet-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 7.5rem;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 8px,
      transparent 8px,
      transparent 16px
    ),
    linear-gradient(165deg, #1a2636, #0c121a);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  padding: 0.5rem;
}

@media (min-width: 720px) {
  .fleet-placeholder {
    max-height: 8.5rem;
  }
}

.fleet-placeholder-icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px dashed var(--line-strong);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--steel);
}

.fleet-placeholder-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fleet-card-placeholder {
  border-style: dashed;
  opacity: 0.95;
}

.fleet-card-placeholder:hover {
  border-color: var(--line-strong);
  transform: none;
}

.fleet-note {
  margin: 0.9rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--hi-soft);
  color: var(--hi-hot);
  padding: 0.22rem 0.45rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 106, 0, 0.3);
  margin-bottom: 0.4rem;
}

.tag-muted {
  background: rgba(201, 212, 224, 0.08);
  color: var(--steel);
  border-color: var(--line);
}

/* Steps / cards */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: linear-gradient(165deg, #1a2636, #111925);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--hi);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--chrome-hot);
  font-weight: 600;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.media-split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .media-split {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
}

.media-frame {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--panel);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rate table */
.rate-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
  font-size: 0.96rem;
}

.rate-table th,
.rate-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.rate-table thead th {
  background: linear-gradient(180deg, #243447, #172231);
  color: var(--chrome-hot);
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom-color: rgba(255, 106, 0, 0.35);
}

.rate-table tbody tr:last-child td,
.rate-table tbody tr:last-child th {
  border-bottom: 0;
}

.rate-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.rate-table tbody th {
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  color: var(--chrome);
}

.rate-machine {
  display: block;
  color: var(--chrome-hot);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.rate-spec {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.rate-table td {
  color: var(--chrome-hot);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.rate-table td:not(:first-child),
.rate-table thead th:not(:first-child) {
  text-align: right;
}

.rate-note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.rate-note strong {
  color: var(--chrome);
}

/* Area chips */
.area-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .area-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.area-map {
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 106, 0, 0.12), transparent 45%),
    linear-gradient(165deg, #1a2636, #0e1520);
  min-height: 14rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.area-map strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chrome-hot);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.area-map p {
  margin: 0;
  color: var(--muted);
  max-width: 22rem;
}

.area-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.area-points li {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  font-weight: 600;
  color: var(--chrome);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.1rem;
  font-weight: 700;
  color: var(--chrome-hot);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--hi);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.contact-panel {
  background: linear-gradient(165deg, #1a2636, #111925);
  border-radius: 10px;
  padding: 1.45rem;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.7rem;
  color: var(--chrome-hot);
  font-weight: 600;
}

.contact-panel p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list a {
  color: var(--chrome-hot);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-list a:hover {
  color: var(--hi-hot);
}

.contact-list span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.12rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.form-card {
  background: linear-gradient(165deg, #1a2636, #111925);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.3rem;
  color: var(--chrome-hot);
  font-weight: 600;
}

.form-card > p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.field {
  margin-bottom: 0.9rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--chrome);
}

.field .hint,
.date-range .hint {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.35);
  color: var(--chrome-hot);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid var(--hi);
  outline-offset: 1px;
  border-color: var(--hi);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--steel) 50%),
    linear-gradient(135deg, var(--steel) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.field-row {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.date-range {
  margin: 0 0 0.9rem;
  padding: 0.95rem 1rem 0.35rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.date-range legend {
  padding: 0 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--chrome);
}

.date-range .field {
  margin-bottom: 0.75rem;
}

.field input[type="date"] {
  color-scheme: dark;
  min-height: 2.75rem;
  cursor: pointer;
}

.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.85;
  filter: invert(0.85);
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  color: #f0a090;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.3rem;
}

.form-note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, #152033, #0e1520 50%, #1a2636);
  color: var(--chrome);
  padding: 2.85rem 0;
  border-block: 1px solid var(--line-strong);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 0.35rem;
  line-height: 1;
  color: var(--chrome-hot);
  font-weight: 600;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
}

@media (max-width: 720px) {
  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.4rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(7, 11, 16, 0.96);
    border-top: 1px solid var(--line-strong);
    backdrop-filter: blur(10px);
  }

  .sticky-cta .btn {
    padding: 0.7rem 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
  }
}

/* Footer */
.site-footer {
  background: #05080c;
  color: var(--muted);
  padding: 2.4rem 0 1.4rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.site-footer h2,
.site-footer h3 {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--chrome-hot);
  margin: 0 0 0.6rem;
  font-weight: 600;
}

.site-footer h2 {
  font-size: 1.6rem;
}

.site-footer h3 {
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0 0 0.7rem;
}

.site-footer a {
  color: var(--chrome);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: var(--hi-hot);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(1rem + var(--sticky-cta-h, 0px));
  transform: translateX(-50%);
  z-index: 300;
  background: var(--panel);
  color: var(--chrome-hot);
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--hi);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: min(92vw, 28rem);
  font-weight: 600;
}

@media (min-width: 721px) {
  .toast {
    bottom: 1.25rem;
  }
}

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fleet-card:hover {
    transform: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-actions {
  margin-top: 1.4rem;
  margin-bottom: 0;
}

.section .mt-actions {
  justify-content: center;
}

.media-split .mt-actions,
.offer-copy .hero-actions {
  justify-content: flex-start;
}
