﻿:root {
  --black: #050505;
  --black-2: #0b0b10;
  --panel: #111118;
  --panel-2: #171720;
  --white: #ffffff;
  --muted: #b9b7c3;
  --soft: #7d788d;
  --purple: #7304c2;
  --purple-2: #a100ff;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  background: var(--white);
  color: var(--black);
  padding: 12px 16px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 5, 5, 0.94);
}

.brand {
  width: min(210px, 48vw);
}

.brand img {
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--purple-2);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--purple), #3b075f);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(115, 4, 194, 0.28);
}

.menu-toggle {
  display: none;
}

.section-dark {
  background:
    radial-gradient(circle at 78% 10%, rgba(115, 4, 194, 0.34), transparent 34%),
    linear-gradient(180deg, #070707 0%, #101016 100%);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/images/trucks-equipment/f350-bucket-truck-01.jpg") 52% center/cover;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.66) 42%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.12) 52%);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(280px, 390px);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  width: min(1440px, calc(100% - 36px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: clamp(82px, 14vh, 160px) 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple-2);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.45rem, 8.8vw, 8.25rem);
  line-height: 0.87;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  line-height: 1.05;
}

.lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  color: var(--white);
  font-weight: 950;
  isolation: isolate;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, var(--purple-2), var(--purple));
  transition: opacity 180ms ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--purple);
  box-shadow: 0 20px 52px rgba(115, 4, 194, 0.36);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.btn-light {
  background: var(--white);
  color: var(--black);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-proof span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 16, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--purple-2);
  box-shadow: 0 0 0 8px rgba(161, 0, 255, 0.14), 0 0 34px rgba(161, 0, 255, 0.9);
}

.hero-panel p {
  margin: 0 0 10px;
  color: var(--purple-2);
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  line-height: 1.3;
}

.hero-panel a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--white);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--purple-2);
  text-underline-offset: 6px;
}

.credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
}

.cred-item {
  min-height: 290px;
  padding: clamp(24px, 3.5vw, 42px);
  border-right: 1px solid var(--line);
}

.cred-item span,
.service-card span {
  color: var(--purple-2);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.cred-item h2 {
  margin-top: 54px;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
}

.cred-item p,
.section-heading p,
.service-card p,
.split-copy p,
.check-list,
.testimonial-grid p,
.about-copy p,
.contact-copy p,
.form-note,
.footer-brand p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(64px, 9vw, 132px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: clamp(34px, 5vw, 58px);
}

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

.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -44% 26%;
  height: 220px;
  background: radial-gradient(circle, rgba(115, 4, 194, 0.36), transparent 70%);
  transition: transform 220ms ease;
}

.service-card:hover::after {
  transform: translateY(-28px);
}

.service-card h3 {
  margin-top: 20px;
  text-transform: uppercase;
}

.service-card p {
  margin-bottom: 28px;
}

.service-card a {
  margin-top: auto;
  color: var(--white);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--purple-2);
  text-underline-offset: 6px;
}

.emergency-card {
  border-color: rgba(161, 0, 255, 0.52);
  background:
    linear-gradient(145deg, rgba(115, 4, 194, 0.34), rgba(255, 255, 255, 0.03)),
    var(--panel);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
}

.split-media {
  min-height: 640px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.split-copy {
  max-width: 720px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 14px;
  background: var(--purple);
}

.text-link {
  color: var(--white);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-color: var(--purple-2);
  text-underline-offset: 7px;
}

.credential-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 26px;
}

.credential-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(115, 4, 194, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.credential-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(145deg, rgba(115, 4, 194, 0.24), transparent 48%),
    rgba(255, 255, 255, 0.065);
}

.credential-preview {
  display: block;
  padding: 12px;
  background: rgba(0, 0, 0, 0.32);
  border-bottom: 1px solid var(--line);
}

.credential-preview img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: #f7f4ef;
  filter: saturate(0.96) contrast(1.04);
}

.credential-preview-pdf {
  aspect-ratio: 16 / 11;
  min-height: 0;
}

.credential-preview-pdf object {
  width: 100%;
  height: 100%;
  border: 0;
  background: #f7f4ef;
}

.credential-card > div:not(.proof-panel) {
  padding: 16px;
}

.credential-card h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.credential-card p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.55;
}

.credential-card a:not(.credential-preview) {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--purple);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.credential-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.gallery {
  background: #08080c;
}

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

.comparison-grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.comparison-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.comparison-copy {
  display: grid;
  align-content: center;
  padding: clamp(22px, 3vw, 34px);
}

.comparison-copy h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.65rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.comparison-copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.comparison-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.comparison-pair figure {
  position: relative;
  min-height: 500px;
  margin: 0;
  overflow: hidden;
  background: #08080c;
}

.comparison-pair img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 400ms ease, filter 400ms ease;
}

.comparison-pair figure:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.08);
}

.comparison-pair span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 9px 12px;
  background: rgba(5, 5, 5, 0.86);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.gallery-card {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-card:hover img {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.1);
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.94), transparent);
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  font-size: 1.24rem;
  text-transform: uppercase;
}

.gallery-card span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

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

blockquote {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.proof-card {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.proof-card span {
  display: block;
  color: var(--purple-2);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.proof-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.reviews-panel-shell {
  width: min(1120px, 100%);
  min-height: 360px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(115, 4, 194, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.reviews-panel-shell-large {
  width: min(1240px, 100%);
  min-height: 520px;
}

.reviews-page-link {
  display: table;
  margin: 28px auto 0;
}

.reviews-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.7)),
    url("/assets/images/trucks-equipment/f350-bucket-truck-01.jpg") center / cover;
  opacity: 0.72;
}

.thank-you-hero::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    url("/assets/images/trucks-equipment/f350-bucket-truck-01.jpg") center / cover;
  opacity: 0.76;
}

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

.thank-you-card {
  min-height: 360px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.thank-you-card span {
  display: block;
  color: var(--purple-2);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.thank-you-card h2 {
  margin: 48px 0 16px;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
}

.thank-you-card p {
  color: var(--muted);
  line-height: 1.7;
}

blockquote p {
  margin-top: 0;
  font-size: 1.12rem;
}

cite {
  color: var(--purple-2);
  font-style: normal;
  font-weight: 950;
}

.emergency-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, var(--purple), #30004f 68%, var(--black));
}

.emergency-banner h2 {
  max-width: 1000px;
}

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

.area-grid a {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
  font-weight: 950;
}

.area-grid a:hover {
  border-color: rgba(161, 0, 255, 0.62);
  background: #15101c;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 98px);
}

.about-copy p:first-child {
  margin-top: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 560px);
  gap: clamp(34px, 7vw, 98px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 16%, rgba(115, 4, 194, 0.24), transparent 36%),
    #08080c;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--white);
  font-weight: 950;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--white);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--purple-2);
  outline-offset: 2px;
}

select option {
  color: var(--black);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.jobber-request-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 0%, rgba(115, 4, 194, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.34);
  box-shadow: var(--shadow);
}

.jobber-request-card .status-dot {
  margin-bottom: 0;
}

.jobber-request-card h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.jobber-request-card .check-list {
  margin: 4px 0;
}

.jobber-request-card .btn {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
  padding: 54px clamp(18px, 4vw, 56px) 90px;
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-brand img {
  width: 210px;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-size: 0.84rem;
  color: var(--purple-2);
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.4;
}

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

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 0.88rem;
}

.mobile-call {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(115, 4, 194, 0.22), transparent 45%),
    rgba(5, 5, 5, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.75rem;
}

.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 12vw, 160px) clamp(18px, 4vw, 56px) clamp(58px, 8vw, 96px);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.42)),
    var(--service-image, url("/assets/images/trucks-equipment/f350-bucket-truck-01.jpg")) center/cover;
  opacity: 0.9;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.legal-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.74)),
    url("/assets/images/trucks-equipment/f350-bucket-truck-01.jpg") center / cover;
  opacity: 0.62;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(0deg, var(--black), transparent);
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(120px, 16vw, 180px) clamp(18px, 4vw, 56px) clamp(62px, 8vw, 96px);
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(3.05rem, 7.4vw, 7rem);
}

.legal-hero .lead {
  max-width: 760px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

.service-detail-hero h1 {
  max-width: 1060px;
  font-size: clamp(3.05rem, 7.4vw, 7.1rem);
}

.service-detail-hero .lead {
  max-width: 800px;
}

.service-quick {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 6vw, 72px);
  background: var(--line);
}

.service-quick span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px;
  background: rgba(10, 10, 16, 0.84);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-quick strong {
  color: var(--white);
  font-size: 1rem;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.legal-section {
  background:
    linear-gradient(180deg, rgba(115, 4, 194, 0.08), transparent 30%),
    #0a0a0f;
}

.legal-document {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.legal-document h2 {
  margin: clamp(28px, 4vw, 42px) 0 12px;
  color: var(--white);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.legal-document p,
.legal-document li,
.legal-document address {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.76;
  font-style: normal;
}

.legal-document p {
  margin: 0 0 18px;
}

.legal-document ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 20px;
}

.legal-document li::marker {
  color: var(--purple-2);
}

.legal-document a {
  color: var(--white);
  border-bottom: 1px solid var(--purple-2);
}

.legal-date {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white) !important;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-panel {
  display: grid;
  gap: 34px;
}

.content-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.content-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.content-block h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.content-block p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.service-image-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.service-image-row figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.service-image-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(0.94) contrast(1.04);
}

.service-image-row figcaption {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  line-height: 1.45;
}

.service-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 0%, rgba(115, 4, 194, 0.28), transparent 42%),
    var(--panel);
  box-shadow: var(--shadow);
}

.sidebar-card h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.sidebar-card p {
  color: var(--muted);
  line-height: 1.6;
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 14px;
}

.related-links {
  display: grid;
  gap: 8px;
}

.related-links a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.related-links a:hover {
  border-color: rgba(161, 0, 255, 0.62);
  color: var(--white);
}

.service-cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(48px, 7vw, 82px);
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, var(--purple), #2b0346 72%, #070707);
}

.service-cta-strip h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.service-cta-strip p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.faq-item h3 {
  font-size: 1.12rem;
}

.faq-item p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    position: fixed;
    inset: 86px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    transform: translateY(-120%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 48px;
    min-height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
  }

  .menu-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .hero-grid,
  .split,
  .about-grid,
  .contact,
  .service-content {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .credibility,
  .credential-badges,
  .service-grid,
  .gallery-grid,
  .comparison-card,
  .testimonial-grid,
  .thank-you-grid,
  .area-grid,
  .service-image-row,
  .service-quick,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
  }

  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto;
    padding: 10px 16px;
  }

  .brand {
    width: 176px;
  }

  .nav-call {
    display: none;
  }

  .site-nav {
    top: 74px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background-image: url("/assets/images/trucks-equipment/f350-bucket-truck-01.jpg");
    background-position: 44% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 58%, rgba(5, 5, 5, 0.34) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.14) 54%);
  }

  .hero-grid {
    min-height: 760px;
    padding-top: 92px;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

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

  .credibility,
  .credential-badges,
  .service-grid,
  .gallery-grid,
  .comparison-card,
  .comparison-pair,
  .testimonial-grid,
  .thank-you-grid,
  .area-grid,
  .service-image-row,
  .service-quick,
  .service-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-cta-strip {
    grid-template-columns: 1fr;
  }

  h1,
  h2,
  h3,
  p,
  .comparison-copy h3,
  .gallery-card strong,
  .service-card h3,
  .content-block h2,
  .service-cta-strip h2 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .comparison-copy {
    padding: 24px 20px;
  }

  .comparison-copy h3 {
    font-size: clamp(1.55rem, 8.5vw, 2.25rem);
    line-height: 1.05;
  }

  .cred-item,
  .service-card {
    min-height: auto;
  }

  .split-media,
  .split-media img,
  .gallery-card,
  .gallery-card img,
  .comparison-pair figure,
  .comparison-pair img {
    min-height: 390px;
  }

  .emergency-banner {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.45);
  }

  .mobile-call a {
    display: grid;
    min-height: 64px;
    place-items: center;
    color: var(--white);
    font-weight: 950;
  }

  .mobile-call a:first-child {
    background: var(--purple);
  }

  .mobile-call a:last-child {
    background: #151515;
  }

  .cookie-banner {
    right: 10px;
    bottom: 76px;
    left: 10px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
