:root {
  --navy-950: #07111a;
  --navy-900: #0b1824;
  --navy-850: #102130;
  --navy-800: #162b3b;
  --slate-700: #405462;
  --slate-600: #5c6f7b;
  --slate-300: #c8d2d8;
  --slate-200: #dfe6ea;
  --slate-100: #edf2f4;
  --cream: #f7f6f1;
  --white: #fff;
  --orange: #f15a24;
  --orange-dark: #d94713;
  --orange-light: #ff7b43;
  --yellow: #ffd45b;
  --green: #1fa463;
  --green-dark: #13824c;
  --shadow-sm: 0 8px 24px rgb(7 17 26 / 8%);
  --shadow-md: 0 20px 60px rgb(7 17 26 / 14%);
  --shadow-lg: 0 30px 90px rgb(0 0 0 / 25%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy-900);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
.button,
.eyebrow {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", sans-serif;
  letter-spacing: .015em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.7vw, 4.35rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.sr-only,
.visually-hidden-file {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy-900);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--orange-light);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgb(241 90 36 / 25%);
}

.button--primary:hover {
  background: var(--orange-dark);
}

.button--whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgb(31 164 99 / 20%);
}

.button--whatsapp:hover {
  background: var(--green-dark);
}

.button--dark {
  background: var(--navy-900);
  color: var(--white);
}

.button--dark:hover {
  background: var(--navy-800);
}

.button--outline-light {
  border-color: rgb(255 255 255 / 40%);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.button--small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: .78rem;
}

.button--full {
  width: 100%;
}

.emergency-bar {
  position: relative;
  z-index: 40;
  background: var(--orange);
  color: var(--white);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.emergency-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.emergency-bar__inner > span {
  display: inline-flex;
  align-items: center;
}

.emergency-bar a:hover {
  text-decoration: underline;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border: 2px solid rgb(255 255 255 / 70%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgb(255 255 255 / 18%);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgb(11 24 36 / 8%);
  background: rgb(247 246 241 / 94%);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  display: block;
  flex: 0 0 auto;
  width: 210px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.main-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav__version {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgb(51 89 112 / 45%), transparent 30%),
    linear-gradient(120deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.hero::before {
  position: absolute;
  width: 410px;
  height: 410px;
  border: 85px solid rgb(255 255 255 / 2.8%);
  border-radius: 50%;
  content: "";
  right: -100px;
  top: -180px;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: 10px;
  padding-top: 60px;
  padding-bottom: 90px;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero h1 span {
  color: var(--orange-light);
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: #d3dde3;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  display: flex;
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid rgb(255 255 255 / 13%);
}

.hero__proof > div {
  display: flex;
  max-width: 165px;
  flex: 1 1 0;
  flex-direction: column;
  padding: 22px 24px 0 0;
}

.hero__proof > div + div {
  padding-left: 24px;
  border-left: 1px solid rgb(255 255 255 / 13%);
}

.hero__proof strong {
  color: var(--white);
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: 1.85rem;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__proof span {
  margin-top: 6px;
  color: #aebbc3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 570px;
}

.truck-illustration {
  position: absolute;
  z-index: 2;
  top: 105px;
  right: -85px;
  width: 700px;
  filter: drop-shadow(0 25px 30px rgb(0 0 0 / 35%));
}

.availability-card,
.route-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-md);
  background: rgb(7 17 26 / 85%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.availability-card {
  top: 70px;
  left: 34px;
  padding: 14px 18px;
}

.availability-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
}

.availability-card__icon svg,
.route-badge svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.availability-card span:last-child,
.route-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.availability-card small,
.route-badge small {
  color: #aebbc3;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.availability-card strong,
.route-badge strong {
  font-size: .9rem;
}

.route-badge {
  right: 5px;
  bottom: 65px;
  padding: 14px 18px;
}

.route-badge > svg {
  fill: var(--orange-light);
}

.hero__road {
  position: absolute;
  z-index: 1;
  bottom: -20px;
  left: 45%;
  display: flex;
  width: 70%;
  height: 130px;
  align-items: center;
  gap: 45px;
  padding-left: 8%;
  background: #111b22;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  transform: skewX(-8deg);
}

.hero__road span {
  width: 86px;
  height: 8px;
  flex: 0 0 auto;
  background: rgb(255 255 255 / 50%);
  transform: skewX(8deg);
}

.quick-actions {
  position: relative;
  z-index: 5;
  margin-top: -18px;
}

.quick-actions__grid {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  grid-template-columns: repeat(4, 1fr);
}

.quick-actions__grid > a {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  transition: background .2s ease;
}

.quick-actions__grid > a + a {
  border-left: 1px solid var(--slate-200);
}

.quick-actions__grid > a:hover {
  background: var(--slate-100);
}

.quick-actions__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgb(241 90 36 / 10%);
}

.quick-actions__icon--green {
  background: rgb(31 164 99 / 10%);
}

.quick-actions__icon svg {
  width: 21px;
  height: 21px;
  fill: var(--orange);
}

.quick-actions__icon--green svg {
  fill: var(--green);
}

.quick-actions__grid > a > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.quick-actions__grid strong {
  font-size: .88rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.quick-actions__grid small {
  margin-top: 4px;
  color: var(--slate-600);
  font-size: .76rem;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.15fr .85fr;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 475px;
  margin-bottom: 5px;
  color: var(--slate-600);
  font-size: 1.05rem;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 34px 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card--featured {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.service-card--featured::after {
  position: absolute;
  right: -55px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border: 32px solid rgb(255 255 255 / 4%);
  border-radius: 50%;
  content: "";
}

.service-card__number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--slate-300);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.service-card--featured .service-card__number {
  color: rgb(255 255 255 / 35%);
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 12px;
  background: rgb(241 90 36 / 10%);
}

.service-card--featured .service-card__icon {
  background: var(--orange);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--orange);
}

.service-card--featured .service-card__icon svg {
  fill: var(--white);
}

.service-card h3 {
  min-height: 52px;
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--slate-600);
  font-size: .91rem;
  line-height: 1.6;
}

.service-card--featured p {
  color: #b9c5cc;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--orange-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-card a span {
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.emergency-section {
  position: relative;
  overflow: hidden;
  background: var(--orange-dark);
  color: var(--white);
}

.emergency-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(0 0 0 / 15%) 25%, transparent 25%) -32px 0/64px 64px,
    linear-gradient(225deg, rgb(0 0 0 / 15%) 25%, transparent 25%) -32px 0/64px 64px;
  opacity: .2;
  content: "";
}

.emergency-section__inner {
  position: relative;
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1fr 1fr;
}

.emergency-section__content h2 {
  max-width: 600px;
}

.emergency-section__content > p:not(.eyebrow) {
  max-width: 560px;
  color: rgb(255 255 255 / 82%);
  font-size: 1.08rem;
}

.emergency-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.emergency-section .button--primary {
  background: var(--navy-900);
  box-shadow: none;
}

.response-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.response-steps li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.response-steps li:first-child {
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.response-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 50%;
  font-family: Impact, sans-serif;
  font-size: 1.05rem;
}

.response-steps div {
  display: flex;
  flex-direction: column;
}

.response-steps strong {
  font-size: .94rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.response-steps small {
  margin-top: 2px;
  color: rgb(255 255 255 / 72%);
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: .92fr 1.08fr;
}

.about__visual {
  position: relative;
  padding: 24px 0 0 32px;
}

.workshop-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.workshop-panel svg {
  width: 100%;
}

.workshop-panel p {
  margin: 0;
  padding: 14px 18px;
  background: var(--navy-900);
  color: #b9c5cc;
  font-size: .73rem;
  line-height: 1.45;
}

.experience-badge {
  position: absolute;
  z-index: 2;
  top: -28px;
  left: -4px;
  display: flex;
  width: 145px;
  height: 145px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  text-align: center;
}

.experience-badge strong {
  font-family: Impact, sans-serif;
  font-size: 3.2rem;
  line-height: .9;
}

.experience-badge span {
  margin-top: 7px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.about__lead {
  color: var(--navy-800);
  font-size: 1.2rem;
  font-weight: 600;
}

.about__content > p:not(.eyebrow):not(.about__lead) {
  color: var(--slate-600);
}

.benefits {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0;
}

.benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgb(241 90 36 / 11%);
  color: var(--orange-dark);
  font-size: .8rem;
  font-weight: 900;
}

.benefits div div {
  display: flex;
  flex-direction: column;
}

.benefits strong {
  font-size: .83rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.benefits small {
  margin-top: 3px;
  color: var(--slate-600);
  font-size: .79rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.request-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 30%, rgb(56 95 117 / 35%), transparent 30%),
    var(--navy-900);
  color: var(--white);
}

.request-section::before {
  position: absolute;
  width: 520px;
  height: 520px;
  border: 80px solid rgb(255 255 255 / 2.5%);
  border-radius: 50%;
  content: "";
  bottom: -300px;
  left: -170px;
}

.request-section__grid {
  position: relative;
  display: grid;
  align-items: start;
  gap: 85px;
  grid-template-columns: .7fr 1.3fr;
}

.request-section__intro {
  position: sticky;
  top: 125px;
}

.request-section__intro > p:not(.eyebrow) {
  color: #b9c5cc;
  font-size: 1.05rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 5%);
}

.contact-card > img {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card > div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.contact-card small {
  color: #9eabb3;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-card strong {
  margin: 2px 0;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--orange-light);
  font-size: .89rem;
  font-weight: 800;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}

.privacy-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: var(--green);
}

.privacy-note p {
  margin: 0;
  color: #9eabb3;
  font-size: .76rem;
  line-height: 1.5;
}

.request-form {
  padding: 42px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--navy-900);
}

.form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
}

.form-header span:not(.form-step) {
  color: var(--orange-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-header h3 {
  margin: 4px 0 0;
  font-size: 1.75rem;
}

.form-step {
  padding: 6px 10px;
  border-radius: 99px;
  background: var(--slate-100);
  color: var(--slate-600);
  font-size: .65rem;
  font-weight: 700;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  gap: 19px;
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
}

.field--full {
  grid-column: 1 / -1;
}

.request-form > .field--full {
  margin-bottom: 19px;
}

.field label {
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.field label span {
  color: var(--slate-600);
  font-weight: 500;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: #fbfcfc;
  color: var(--navy-900);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select {
  height: 49px;
  padding: 0 13px;
}

.field textarea {
  min-height: 122px;
  padding: 12px 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8b9aa3;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgb(241 90 36 / 10%);
}

.file-drop {
  display: flex !important;
  min-height: 92px;
  align-items: center;
  gap: 15px;
  margin-bottom: 0 !important;
  padding: 17px;
  border: 1px dashed #9eacb4;
  border-radius: var(--radius-sm);
  background: var(--slate-100);
  cursor: pointer;
  text-transform: none !important;
  transition: border-color .2s ease, background .2s ease;
}

.file-drop:hover {
  border-color: var(--orange);
  background: rgb(241 90 36 / 5%);
}

.file-drop svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: var(--orange);
}

.file-drop span {
  display: flex;
  flex-direction: column;
}

.file-drop strong {
  color: var(--navy-900);
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.file-drop small {
  margin-top: 3px;
  color: var(--slate-600);
  font-size: .73rem;
  font-weight: 500;
  line-height: 1.4;
}

.selected-files {
  min-height: 0;
  margin: 7px 0 0;
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  color: var(--slate-600);
  cursor: pointer;
  font-size: .75rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--orange);
}

.form-disclaimer {
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: .69rem;
  line-height: 1.45;
  text-align: center;
}

.service-area {
  background: var(--slate-100);
}

.map-grid {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  grid-template-columns: 1.35fr .65fr;
}

.map-frame {
  min-height: 530px;
  background: var(--slate-200);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
  filter: saturate(.8) contrast(1.05);
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 40px;
}

.location-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.location-card__icon svg {
  width: 27px;
  height: 27px;
  fill: var(--white);
}

.location-card h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.location-card > p:not(.eyebrow) {
  color: var(--slate-600);
}

.location-details {
  margin: 16px 0 28px;
}

.location-details > div {
  display: flex;
  flex-direction: column;
  padding: 13px 0;
  border-top: 1px solid var(--slate-200);
}

.location-details span {
  color: var(--slate-600);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.location-details strong {
  margin-top: 2px;
  font-size: .84rem;
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: .7fr 1.3fr;
}

.faq__intro {
  position: sticky;
  top: 125px;
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--slate-600);
}

.accordion details {
  border-bottom: 1px solid var(--slate-200);
}

.accordion details:first-child {
  border-top: 1px solid var(--slate-200);
}

.accordion summary {
  position: relative;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 54px 20px 0;
  cursor: pointer;
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.35;
  list-style: none;
  text-transform: uppercase;
}

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

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--orange);
  content: "";
  right: 8px;
}

.accordion summary span::after {
  right: 0;
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details > div {
  padding: 0 60px 23px 0;
}

.accordion details p {
  margin: 0;
  color: var(--slate-600);
  font-size: .93rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: var(--navy-900);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  right: -80px;
  bottom: -160px;
  width: 410px;
  height: 410px;
  border: 72px solid rgb(255 255 255 / 3%);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #aebbc3;
}

.final-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding-top: 70px;
  background: var(--navy-950);
  color: #aebbc3;
}

.footer-grid {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  padding-bottom: 55px;
}

.brand--footer {
  color: var(--white);
  width: fit-content;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--white);
}

.footer-brand > p {
  max-width: 370px;
  margin: 20px 0 0;
  font-size: .84rem;
}

.footer-brand .owner {
  color: #7f919c;
  font-size: .72rem;
}

.footer-grid h3 {
  margin: 7px 0 19px;
  color: var(--white);
  font-size: .84rem;
  letter-spacing: .08em;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
}

.footer-grid > div:not(.footer-brand) a {
  margin-bottom: 10px;
  font-size: .78rem;
  line-height: 1.45;
}

.footer-grid a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: .68rem;
}

.footer-bottom p {
  margin: 0;
}

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

.noscript-note {
  position: fixed;
  z-index: 100;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--yellow);
  color: var(--navy-900);
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
}

.legal-page {
  min-height: 55vh;
  padding: 80px 0 110px;
  background: var(--white);
}

.legal-page__inner {
  max-width: 820px;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.legal-page h2 {
  margin-top: 45px;
  font-size: 1.65rem;
}

.legal-page p,
.legal-page li {
  color: var(--slate-600);
}

.legal-page .updated {
  margin-bottom: 40px;
  color: var(--orange-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-page a {
  color: var(--orange-dark);
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }

  .hero__inner {
    grid-template-columns: 1.12fr .88fr;
  }

  .truck-illustration {
    right: -150px;
  }

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

  .service-card {
    min-height: 300px;
  }

  .about__grid,
  .request-section__grid,
  .faq__grid {
    gap: 60px;
  }

  .map-grid {
    grid-template-columns: 1.1fr .9fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 85px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 120px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    max-height: calc(100vh - 120px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 20px 30px;
    overflow-y: auto;
    background: var(--cream);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--slate-200);
  }

  .main-nav__version {
    display: block;
    padding: 18px 4px 0;
    color: var(--theme-muted);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .06em;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero__inner {
    min-height: 840px;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__visual {
    min-height: 350px;
  }

  .truck-illustration {
    top: -45px;
    right: -15px;
    width: min(700px, 100%);
  }

  .availability-card {
    top: -8px;
    left: 20px;
  }

  .route-badge {
    right: 15px;
    bottom: 28px;
  }

  .hero__road {
    left: 12%;
    width: 110%;
  }

  .quick-actions__grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-actions__grid > a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--slate-200);
  }

  .quick-actions__grid > a:nth-child(4) {
    border-top: 1px solid var(--slate-200);
  }

  .section-heading {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .emergency-section__inner,
  .about__grid,
  .request-section__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .about__visual {
    width: min(600px, 100%);
    margin: 0 auto;
  }

  .request-section__intro,
  .faq__intro {
    position: static;
  }

  .request-section__intro {
    max-width: 650px;
  }

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

  .map-frame,
  .map-frame iframe {
    min-height: 430px;
  }

  .location-card {
    padding: 40px;
  }

  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 3;
  }
}

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

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 70px 0;
  }

  .emergency-bar__inner {
    justify-content: center;
  }

  .emergency-bar__inner > span {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand__logo {
    width: 174px;
    height: auto;
  }

  .main-nav {
    top: 112px;
    max-height: calc(100vh - 112px);
  }

  .hero {
    min-height: 850px;
  }

  .hero__inner {
    min-height: 850px;
    padding-top: 54px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.2vw, 3.45rem);
    line-height: .93;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    margin-top: 32px;
  }

  .hero__proof > div {
    padding-right: 12px;
  }

  .hero__proof > div + div {
    padding-left: 12px;
  }

  .hero__proof strong {
    font-size: 1.38rem;
  }

  .hero__proof span {
    font-size: .6rem;
  }

  .hero__visual {
    min-height: 280px;
  }

  .truck-illustration {
    top: -10px;
    right: -35px;
    width: 470px;
    max-width: none;
  }

  .availability-card {
    top: 0;
    left: 0;
    padding: 10px 12px;
  }

  .availability-card__icon {
    width: 36px;
    height: 36px;
  }

  .availability-card strong,
  .route-badge strong {
    font-size: .75rem;
  }

  .route-badge {
    right: 0;
    bottom: 10px;
    padding: 10px 12px;
  }

  .hero__road {
    bottom: -35px;
    height: 100px;
  }

  .quick-actions {
    margin-top: 0;
  }

  .quick-actions__grid {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .quick-actions__grid > a {
    min-height: 91px;
    padding: 16px 14px;
  }

  .quick-actions__icon {
    width: 38px;
    height: 38px;
  }

  .quick-actions__grid strong {
    font-size: .76rem;
  }

  .quick-actions__grid small {
    font-size: .66rem;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-card h3 {
    min-height: auto;
  }

  .emergency-section__buttons {
    flex-direction: column;
  }

  .emergency-section__buttons .button {
    width: 100%;
  }

  .about__grid {
    gap: 50px;
  }

  .about__visual {
    padding-left: 15px;
  }

  .experience-badge {
    top: -20px;
    width: 118px;
    height: 118px;
    border-width: 6px;
  }

  .experience-badge strong {
    font-size: 2.5rem;
  }

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

  .request-section__grid {
    gap: 40px;
  }

  .request-form {
    padding: 24px 18px;
    border-radius: var(--radius-md);
  }

  .form-header {
    flex-direction: column;
    gap: 10px;
  }

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

  .field:not(.field--full) {
    grid-column: 1 / -1;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 350px;
  }

  .location-card {
    padding: 34px 24px;
  }

  .faq__grid {
    gap: 45px;
  }

  .accordion summary {
    min-height: 76px;
    padding-right: 44px;
    font-size: .84rem;
  }

  .accordion details > div {
    padding-right: 20px;
  }

  .final-cta {
    padding: 58px 0;
  }

  .final-cta__actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta__actions .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    min-height: 90px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 64px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    box-shadow: 0 -8px 25px rgb(0 0 0 / 18%);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-family: Impact, "Arial Narrow Bold", sans-serif;
    font-size: .84rem;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .mobile-action-bar a:last-child {
    background: var(--green);
  }

  .mobile-action-bar svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
  }

  .legal-page {
    padding-top: 60px;
  }
}

/* Search-focused service pages */
.service-detail-page {
  background: var(--theme-bg, #f7f9fb);
  color: var(--theme-text, var(--navy-900));
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background:
    radial-gradient(circle at 82% 20%, rgb(241 90 36 / 24%), transparent 30%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
  color: #fff;
}

.service-hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

.service-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgb(255 255 255 / 72%);
  font-size: .76rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: #fff;
}

.breadcrumbs a:hover {
  color: var(--orange-light);
}

.service-hero h1 {
  max-width: 820px;
  margin: 0 0 24px;
  color: #fff;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.service-hero h1 span {
  color: var(--orange-light);
}

.service-hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-summary {
  padding: 30px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 24px;
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 24px 70px rgb(0 0 0 / 22%);
  backdrop-filter: blur(10px);
}

.service-summary h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.service-summary ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-summary li {
  display: grid;
  align-items: start;
  gap: 10px;
  grid-template-columns: 22px 1fr;
  color: rgb(255 255 255 / 84%);
  font-size: .88rem;
  line-height: 1.55;
}

.service-summary li::before {
  color: var(--orange-light);
  content: "check_circle";
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  font-variation-settings: "FILL" 1;
}

.service-detail {
  padding: 92px 0;
}

.service-detail__grid {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
}

.service-copy {
  max-width: 790px;
}

.service-copy h2,
.service-topics h2,
.service-process h2 {
  margin: 0 0 20px;
  color: var(--theme-text, var(--navy-900));
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -.045em;
  line-height: 1.1;
}

.service-copy h3 {
  margin: 38px 0 12px;
  color: var(--theme-text, var(--navy-900));
  font-size: 1.16rem;
}

.service-copy p,
.service-copy li,
.service-topics__intro,
.service-process p {
  color: var(--theme-muted, #5c6f7b);
  line-height: 1.78;
}

.service-copy ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.service-contact-card {
  position: sticky;
  top: 130px;
  padding: 30px;
  border-radius: 22px;
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 22px 56px rgb(5 22 37 / 24%);
}

.service-contact-card .eyebrow {
  color: var(--orange-light);
}

.service-contact-card h2 {
  margin: 10px 0 14px;
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -.035em;
}

.service-contact-card p {
  color: rgb(255 255 255 / 72%);
  font-size: .9rem;
  line-height: 1.65;
}

.service-contact-card .button {
  width: 100%;
  margin-top: 10px;
}

.service-contact-card__details {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgb(255 255 255 / 13%);
}

.service-contact-card__details span {
  color: rgb(255 255 255 / 58%);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-contact-card__details strong,
.service-contact-card__details a {
  color: #fff;
  font-size: .86rem;
}

.service-topics {
  padding: 88px 0;
  background: var(--theme-surface-alt, #f0f3f5);
}

.service-topics__intro {
  max-width: 720px;
  margin: -8px 0 34px;
}

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

.service-topic-card {
  padding: 28px;
  border: 1px solid var(--theme-border, #d9e1e6);
  border-radius: 18px;
  background: var(--theme-surface, #fff);
  box-shadow: var(--theme-shadow, 0 18px 48px rgb(5 22 37 / 11%));
}

.service-topic-card .material-symbols-outlined {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 13px;
  background: rgb(241 90 36 / 12%);
  color: var(--orange);
  font-variation-settings: "FILL" 1;
}

.service-topic-card h3 {
  margin: 0 0 10px;
  color: var(--theme-text, var(--navy-900));
  font-size: 1.05rem;
}

.service-topic-card p {
  margin: 0;
  color: var(--theme-muted, #5c6f7b);
  font-size: .88rem;
  line-height: 1.68;
}

.service-process {
  padding: 90px 0;
}

.service-process__steps {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  counter-reset: service-step;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-process__steps article {
  padding: 25px;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 16px 16px;
  background: var(--theme-surface, #fff);
  box-shadow: var(--theme-shadow, 0 18px 48px rgb(5 22 37 / 11%));
  counter-increment: service-step;
}

.service-process__steps article::before {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  content: "0" counter(service-step);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.service-process__steps h3 {
  margin: 0 0 8px;
  color: var(--theme-text, var(--navy-900));
  font-size: .98rem;
}

.service-process__steps p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.65;
}

.service-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-page-cta {
  padding: 66px 0;
  background: var(--orange);
  color: #fff;
}

.service-page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.service-page-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -.045em;
}

.service-page-cta p {
  max-width: 700px;
  margin: 0;
  color: rgb(255 255 255 / 82%);
}

@media (max-width: 980px) {
  .service-hero__grid,
  .service-detail__grid {
    grid-template-columns: 1fr;
  }

  .service-summary {
    max-width: 650px;
  }

  .service-contact-card {
    position: static;
  }

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

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

@media (max-width: 620px) {
  .service-hero {
    padding: 62px 0;
  }

  .service-hero__grid {
    gap: 36px;
  }

  .service-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .service-hero__actions .button,
  .service-page-links .button {
    width: 100%;
  }

  .service-detail,
  .service-topics,
  .service-process {
    padding: 68px 0;
  }

  .service-topics__grid,
  .service-process__steps {
    grid-template-columns: 1fr;
  }

  .service-page-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }
}

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

/* v1.1 visual uplift based on the supplied premium roadside concept */

body {
  background: #f7f9fb;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.button,
.eyebrow {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

h2 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
}

h3 {
  font-weight: 800;
  letter-spacing: -.015em;
}

.material-symbols-outlined {
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.site-header {
  background: rgb(247 249 251 / 95%);
  border-bottom-color: rgb(5 22 37 / 10%);
}

.header-inner {
  min-height: 78px;
}

.main-nav {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}

.button {
  min-height: 54px;
  border-radius: 12px;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .01em;
}

.button .material-symbols-outlined {
  font-size: 21px;
}

.hero {
  position: relative;
  min-height: 780px;
  isolation: isolate;
  background: var(--navy-950);
}

.hero::before,
.hero__grid-overlay,
.hero__road {
  display: none;
}

.hero__image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.08);
}

.hero__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(5 22 37 / 97%) 0%, rgb(5 22 37 / 91%) 38%, rgb(5 22 37 / 54%) 70%, rgb(5 22 37 / 68%) 100%),
    linear-gradient(0deg, rgb(5 22 37 / 88%) 0%, transparent 48%);
}

.hero__inner {
  display: flex;
  min-height: 780px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 112px;
}

.hero__content {
  max-width: 690px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  padding: 7px 13px;
  border: 1px solid rgb(254 106 52 / 42%);
  border-radius: 999px;
  background: rgb(254 106 52 / 10%);
  color: #ff855a;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero__badge .status-dot {
  width: 7px;
  height: 7px;
  margin: 0;
  border: 0;
  background: var(--orange-light);
  box-shadow: 0 0 0 5px rgb(241 90 36 / 15%);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 25px;
  color: var(--white);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.8rem, 6.5vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .94;
}

.hero h1 span {
  color: #ff6a34;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #e0e6eb;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.button--hero-secondary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

.button--hero-secondary:hover {
  background: #edf1f4;
}

.hero__proof {
  display: grid;
  max-width: 610px;
  gap: 12px;
  margin-top: 38px;
  border: 0;
  grid-template-columns: repeat(3, 1fr);
}

.hero__proof > div {
  max-width: none;
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 14px;
  background: rgb(5 22 37 / 55%);
  backdrop-filter: blur(9px);
}

.hero__proof > div + div {
  padding-left: 16px;
  border-left: 1px solid rgb(255 255 255 / 13%);
}

.hero__proof strong {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

.hero__proof span {
  color: #c9d1d7;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: .65rem;
}

.hero__image-note {
  margin: 16px 0 0;
  color: rgb(255 255 255 / 50%);
  font-size: .66rem;
}

.quick-actions {
  margin-top: -50px;
}

.quick-actions__grid {
  gap: 16px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.quick-actions__grid > a {
  min-height: 122px;
  padding: 24px;
  border: 1px solid #dfe3e7;
  border-radius: 20px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 16px 42px rgb(5 22 37 / 10%);
  backdrop-filter: blur(10px);
}

.quick-actions__grid > a + a,
.quick-actions__grid > a:nth-child(3),
.quick-actions__grid > a:nth-child(4) {
  border: 1px solid #dfe3e7;
}

.quick-actions__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.quick-actions__icon .material-symbols-outlined {
  color: var(--orange);
  font-size: 25px;
}

.quick-actions__icon--green .material-symbols-outlined {
  color: var(--green);
}

.quick-actions__grid strong {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: .8rem;
  font-weight: 800;
}

.quick-actions__grid small {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.section-heading > p,
.service-card p,
.about__content > p,
.request-section__intro > p,
.location-card,
.accordion details p {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.services {
  background: #f7f9fb;
}

.services-grid {
  gap: 18px;
}

.service-card {
  min-height: 325px;
  padding: 32px 28px;
  border-color: #dce2e6;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgb(5 22 37 / 4%);
}

.service-card:hover {
  border-color: #d4dade;
  box-shadow: 0 20px 48px rgb(5 22 37 / 11%);
}

.service-card--featured {
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
}

.service-card__icon .material-symbols-outlined {
  color: var(--orange);
  font-size: 28px;
}

.service-card--featured .service-card__icon .material-symbols-outlined {
  color: var(--white);
  font-variation-settings: "FILL" 1;
}

.service-card h3 {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
}

.service-card a {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.service-card a .material-symbols-outlined,
.text-link .material-symbols-outlined {
  font-size: 19px;
}

.emergency-section__content h2 {
  letter-spacing: -.04em;
}

.response-steps li > span {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-weight: 800;
}

.about__visual {
  padding: 0;
}

.trust-showcase {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgb(241 90 36 / 20%), transparent 38%),
    var(--navy-900);
  box-shadow: 0 24px 60px rgb(5 22 37 / 18%);
  color: var(--white);
}

.trust-showcase__photo {
  display: block;
  width: 100%;
  height: 330px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  object-fit: cover;
  object-position: 50% 42%;
}

.trust-showcase__content {
  position: relative;
  padding: 38px 46px 46px;
}

.trust-showcase .experience-badge {
  position: absolute;
  top: -72px;
  right: 34px;
  left: auto;
  width: 126px;
  height: 126px;
  margin: 0;
  border: 4px solid var(--orange);
  background: rgb(5 22 37 / 86%);
  box-shadow: 0 16px 38px rgb(0 0 0 / 24%);
  backdrop-filter: blur(8px);
}

.trust-showcase .eyebrow {
  padding-right: 145px;
}

.trust-showcase h3 {
  max-width: 390px;
  margin-bottom: 26px;
  font-size: 1.8rem;
  line-height: 1.25;
}

.trust-showcase__list {
  display: grid;
  gap: 11px;
}

.trust-showcase__list > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 15px;
  border: 1px solid rgb(255 255 255 / 9%);
  border-radius: 13px;
  background: rgb(255 255 255 / 5%);
  color: #d7dfe4;
  font-size: .86rem;
}

.trust-showcase__list .material-symbols-outlined {
  color: var(--orange-light);
  font-size: 21px;
  font-variation-settings: "FILL" 1;
}

.trust-showcase__note {
  margin: 25px 0 0;
  color: rgb(255 255 255 / 50%);
  font-size: .68rem;
}

.trust-showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
}

.trust-showcase__tags li {
  padding: 7px 10px;
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 999px;
  background: rgb(255 255 255 / 6%);
  color: #d7dfe4;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.25;
}

.about__lead {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.check {
  font-size: 16px;
}

.request-section {
  background:
    radial-gradient(circle at 12% 30%, rgb(56 95 117 / 32%), transparent 30%),
    var(--navy-900);
}

.request-form {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 28px;
}

.form-header {
  margin: 0;
  padding: 29px 38px;
  border: 0;
  background: var(--orange-dark);
  color: var(--white);
}

.form-header span:not(.form-step) {
  color: rgb(255 255 255 / 72%);
}

.form-header h3 {
  color: var(--white);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

.form-step {
  background: rgb(255 255 255 / 15%);
  color: var(--white);
}

.request-form__body {
  padding: 34px 38px 40px;
}

.request-form__body > .field--full {
  margin-bottom: 19px;
}

.field input,
.field select {
  height: 54px;
}

.field input,
.field select,
.field textarea {
  border-color: #ccd5db;
  border-radius: 12px;
  background: #f2f4f6;
}

.field label {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.file-drop {
  min-height: 98px;
  border-radius: 12px;
  background: #f2f4f6;
}

.file-drop > .material-symbols-outlined {
  color: var(--orange);
  font-size: 31px;
}

.privacy-note > .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 23px;
}

.map-grid {
  border-radius: 28px;
}

.location-card__icon {
  border-radius: 14px;
}

.location-card__icon .material-symbols-outlined {
  color: var(--white);
  font-size: 28px;
  font-variation-settings: "FILL" 1;
}

.accordion summary {
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}

.final-cta h2 {
  letter-spacing: -.04em;
}

.mobile-action-bar .material-symbols-outlined {
  font-size: 20px;
}

@media (max-width: 860px) {
  .hero,
  .hero__inner {
    min-height: 820px;
  }

  .hero__inner {
    padding-top: 70px;
    padding-bottom: 110px;
  }

  .hero__content {
    max-width: 650px;
  }

  .quick-actions__grid {
    gap: 14px;
  }

  .about__grid {
    gap: 55px;
  }

  .trust-showcase {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 82px;
  }

  .emergency-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
    max-height: calc(100vh - 72px);
  }

  .hero,
  .hero__inner {
    min-height: 790px;
  }

  .hero__image {
    object-position: 56% center;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgb(5 22 37 / 98%) 0%, rgb(5 22 37 / 85%) 52%, rgb(5 22 37 / 48%) 100%),
      linear-gradient(90deg, rgb(5 22 37 / 82%), rgb(5 22 37 / 34%));
  }

  .hero__inner {
    padding-top: 48px;
    padding-bottom: 92px;
  }

  .hero__badge {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: .63rem;
    letter-spacing: .07em;
  }

  .hero h1 {
    max-width: 360px;
    margin-bottom: 24px;
    font-size: clamp(2.7rem, 12.4vw, 3.05rem);
    letter-spacing: -.055em;
    line-height: 1.03;
  }

  .hero__lead {
    font-size: .98rem;
    line-height: 1.65;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .button {
    min-height: 56px;
  }

  .hero__proof {
    gap: 8px;
    margin-top: 32px;
  }

  .hero__proof > div,
  .hero__proof > div + div {
    padding: 13px 10px;
  }

  .hero__proof strong {
    font-size: 1.15rem;
  }

  .hero__proof span {
    font-size: .54rem;
  }

  .hero__image-note {
    margin-top: 12px;
    font-size: .58rem;
  }

  .quick-actions {
    margin-top: -34px;
  }

  .quick-actions__grid {
    width: min(calc(100% - 28px), var(--container));
    gap: 12px;
    margin-inline: auto;
  }

  .quick-actions__grid > a {
    min-height: 126px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
  }

  .quick-actions__grid > a + a,
  .quick-actions__grid > a:nth-child(3),
  .quick-actions__grid > a:nth-child(4) {
    border: 1px solid #dfe3e7;
  }

  .quick-actions__grid > a > span:last-child {
    min-width: 0;
  }

  .quick-actions__grid strong {
    font-size: .72rem;
  }

  .quick-actions__grid small {
    font-size: .64rem;
  }

  .section {
    padding: 76px 0;
  }

  .service-card {
    padding: 27px 24px;
    border-radius: 20px;
  }

  .trust-showcase {
    padding: 0;
    border-radius: 24px;
  }

  .trust-showcase__photo {
    height: 300px;
  }

  .trust-showcase__content {
    padding: 78px 24px 34px;
  }

  .trust-showcase .experience-badge {
    top: -60px;
    right: 18px;
    width: 108px;
    height: 108px;
  }

  .trust-showcase .experience-badge strong {
    font-size: 2.7rem;
  }

  .trust-showcase .eyebrow {
    padding-right: 0;
  }

  .trust-showcase h3 {
    font-size: 1.45rem;
  }

  .trust-showcase__tags {
    gap: 7px;
  }

  .trust-showcase__tags li {
    padding: 7px 9px;
    font-size: .63rem;
  }

  .request-form {
    order: 1;
    padding: 0;
    border-radius: 24px;
  }

  .request-section__intro {
    order: 2;
  }

  .form-header {
    padding: 25px 22px;
  }

  .request-form__body {
    padding: 25px 18px 28px;
  }

  .mobile-action-bar {
    height: 74px;
    gap: 8px;
    padding: 8px;
    border: 0;
    border-radius: 20px 20px 0 0;
    background: rgb(247 249 251 / 96%);
    box-shadow: 0 -12px 34px rgb(5 22 37 / 18%);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    border-radius: 13px;
    font-family: Montserrat, "Segoe UI", Arial, sans-serif;
    font-size: .74rem;
  }

  .mobile-action-bar a:last-child {
    border: 1px solid #dbe2e6;
    background: var(--white);
    color: var(--green-dark);
  }
}
