:root {
  --red: #e21d2f;
  --red-dark: #b70d1c;
  --ink: #111317;
  --asphalt: #242830;
  --steel: #535a66;
  --muted: #68707d;
  --line: #dfe3e8;
  --mist: #f2f4f7;
  --white: #fff;
  --amber: #ffb000;
  --green: #14a85a;
  --shadow-sm: 0 8px 28px rgba(17, 19, 23, 0.09);
  --shadow-lg: 0 28px 70px rgba(8, 10, 14, 0.2);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 10px;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.65rem);
}

h3 {
  font-size: 1.35rem;
}

::selection {
  background: var(--amber);
  color: var(--ink);
}

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

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.topline {
  position: relative;
  z-index: 30;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topline__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.topline__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.topline__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d879;
  box-shadow: 0 0 0 5px rgba(52, 216, 121, 0.12);
}

.topline__area {
  margin-right: auto;
}

.topline a {
  color: var(--white);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 25;
  top: 0;
  min-height: 86px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 19, 23, 0.08);
  transition: box-shadow var(--transition), min-height var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.admin-bar .site-header {
  top: 32px;
}

.header__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-branding {
  width: 274px;
  flex: 0 0 274px;
}

.brand-link,
.site-branding .custom-logo-link {
  display: block;
  text-decoration: none;
}

.site-branding img,
.site-branding .custom-logo {
  width: 100%;
  max-width: 274px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  margin-left: auto;
}

.primary-menu,
.primary-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu a {
  display: block;
  padding: 14px 10px;
  color: #292d34;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition);
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: var(--red);
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 8px 15px;
  background: var(--red);
  color: var(--white);
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(226, 29, 47, 0.24);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.header-call:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.header-call svg {
  width: 24px;
  fill: currentColor;
}

.header-call small {
  display: block;
  margin-bottom: 2px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__media,
.hero__media picture,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.97) 0%, rgba(8, 10, 14, 0.86) 38%, rgba(8, 10, 14, 0.34) 72%, rgba(8, 10, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 10, 14, 0.6) 0%, transparent 45%);
}

.hero__road {
  position: absolute;
  right: -130px;
  bottom: -85px;
  width: 58%;
  height: 190px;
  transform: rotate(-8deg);
  background: rgba(17, 19, 23, 0.72);
  border-top: 4px solid var(--amber);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__road::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 18%;
  width: 60%;
  height: 5px;
  background: repeating-linear-gradient(90deg, var(--white) 0 58px, transparent 58px 105px);
  opacity: 0.65;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 88px 100px;
}

.hero__copy {
  max-width: 710px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 42px;
  height: 4px;
  background: var(--red);
}

.eyebrow--dark {
  color: var(--red-dark);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: var(--white);
  text-wrap: balance;
}

.hero h1::after {
  content: ".";
  color: var(--red);
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

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

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

.button small {
  display: block;
  margin-bottom: 3px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  opacity: 0.78;
}

.button--xl {
  min-height: 65px;
  min-width: 235px;
  padding: 11px 21px;
  font-size: 1.05rem;
}

.button--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(226, 29, 47, 0.28);
}

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

.button--whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 15px 35px rgba(20, 168, 90, 0.23);
}

.button--whatsapp:hover {
  background: #0c8c49;
}

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

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

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

.button--outline-white {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.button--outline-white:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--red-dark);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust svg {
  width: 20px;
  fill: var(--amber);
}

.signal-strip {
  position: relative;
  z-index: 3;
  background: var(--red);
  color: var(--white);
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-strip__grid > div {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 19px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.signal-strip__grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.signal-strip strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.signal-strip span {
  margin-top: 2px;
  font-size: 0.78rem;
  opacity: 0.78;
}

.section {
  padding-block: clamp(78px, 9vw, 126px);
}

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

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.faq-intro h2,
.areas-copy h2,
.process-copy h2 {
  margin-bottom: 0;
}

.section-heading p,
.faq-intro > p,
.areas-copy > p,
.process-copy > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center h2 {
  margin-bottom: 18px;
}

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

.service-card {
  position: relative;
  min-height: 340px;
  padding: 34px 31px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(17, 19, 23, 0.02);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--red);
  transition: width var(--transition);
}

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

.service-card:hover::after {
  width: 100%;
}

.service-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.service-card--featured h3,
.service-card--featured a {
  color: var(--white);
}

.service-card__number {
  position: absolute;
  top: 18px;
  right: 23px;
  color: rgba(17, 19, 23, 0.08);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.08);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 40px;
  background: rgba(226, 29, 47, 0.09);
  border-radius: 7px;
  color: var(--red);
}

.service-card--featured .service-card__icon {
  background: var(--red);
  color: var(--white);
}

.service-card__icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card a {
  margin-top: auto;
  color: var(--red-dark);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.service-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform var(--transition);
}

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

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

.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -14%;
  width: 54%;
  height: 100%;
  transform: skewX(-13deg);
  background: linear-gradient(145deg, rgba(226, 29, 47, 0.18), transparent 62%);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 95px;
  align-items: center;
}

.process-copy h2 {
  color: var(--white);
}

.process-copy > p {
  margin: 24px 0 26px;
  color: rgba(255, 255, 255, 0.66);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
  font-size: 1.4rem;
}

.text-link--dark {
  color: var(--ink);
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 23px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-steps > li > span {
  color: var(--red);
  font-size: 2.05rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.process-steps h3 {
  margin-bottom: 7px;
  color: var(--white);
}

.process-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.fleet {
  background: var(--mist);
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 285px);
  gap: 18px;
}

.fleet-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--asphalt);
  border-radius: var(--radius);
}

.fleet-card--large {
  grid-row: 1 / span 2;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.fleet-card--large img {
  object-position: center 26%;
}

.fleet-card:hover img {
  transform: scale(1.035);
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(transparent, rgba(9, 11, 15, 0.9));
}

.fleet-card figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 21px;
  left: 25px;
  color: var(--white);
}

.fleet-card figcaption span {
  display: block;
  margin-bottom: 2px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.fleet-card figcaption strong {
  font-size: 1.25rem;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.2fr);
  gap: 100px;
  align-items: center;
}

.areas-copy > p {
  margin: 24px 0 29px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-list a {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 18px 21px;
  background: var(--mist);
  border-left: 4px solid transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.area-list a:hover {
  transform: translateX(4px);
  border-color: var(--red);
  background: #e9ecf1;
}

.area-list a b {
  color: var(--red);
  font-size: 1.2rem;
}

.area-list__primary {
  grid-column: 1 / -1;
  min-height: 102px !important;
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto auto;
  background: var(--ink) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
}

.area-list__primary span {
  align-self: end;
  font-size: 1.15rem;
}

.area-list__primary small {
  align-self: start;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.76rem;
  font-weight: 600;
}

.area-list__primary b {
  grid-row: 1 / span 2;
  grid-column: 2;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 95px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p {
  margin: 23px 0 25px;
}

.faq-list {
  border-top: 1px solid #cfd4db;
}

.faq-list details {
  border-bottom: 1px solid #cfd4db;
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 20px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
  transition: transform var(--transition);
}

.faq-list summary span::after {
  content: "";
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 54px 24px 0;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 72px;
  background: var(--red);
  color: var(--white);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 55px solid rgba(255, 255, 255, 0.07);
  transform: rotate(45deg);
}

.final-cta::before {
  top: -240px;
  left: 3%;
}

.final-cta::after {
  right: 5%;
  bottom: -260px;
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .eyebrow > span {
  background: var(--white);
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding-top: 80px;
  background: #0b0d10;
  color: rgba(255, 255, 255, 0.63);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
  gap: 58px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 280px;
  max-height: 62px;
  margin-bottom: 23px;
  padding: 8px;
  background: var(--white);
  border-radius: 7px;
}

.footer-brand p {
  max-width: 390px;
  margin-bottom: 18px;
}

.footer-phone {
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer h2 {
  margin-bottom: 23px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-menu,
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li,
.footer-links li {
  margin-bottom: 9px;
}

.footer-menu a,
.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-menu a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact li {
  margin-bottom: 17px;
}

.footer-contact strong,
.footer-contact span {
  display: block;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.87);
  font-size: 0.82rem;
}

.footer-contact span {
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--amber);
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.mobile-actions {
  display: none;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 84px;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 14, 0.98), rgba(8, 10, 14, 0.75) 56%, rgba(8, 10, 14, 0.32)),
    var(--page-hero-image, none) center 55% / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -95px;
  width: 44%;
  height: 150px;
  transform: rotate(-7deg);
  background: var(--red);
  opacity: 0.88;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.page-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero__lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
}

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

.service-detail {
  background: var(--white);
}

.service-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 85px;
  align-items: start;
}

.service-detail__content h2 {
  margin-bottom: 23px;
}

.service-detail__content > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.landing-editor-content {
  margin-block: 28px;
  color: var(--muted);
}

.landing-editor-content h2,
.landing-editor-content h3 {
  margin-top: 1.5em;
  color: var(--ink);
}

.local-note {
  margin: 35px 0;
  padding: 27px 28px;
  background: var(--mist);
  border-left: 5px solid var(--red);
}

.local-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}

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

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

.check-list li {
  position: relative;
  padding: 16px 17px 16px 47px;
  background: var(--mist);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 17px;
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 900;
}

.service-sidebar {
  position: sticky;
  top: 125px;
}

.sidebar-call {
  padding: 31px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.sidebar-call small {
  display: block;
  margin-bottom: 9px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.sidebar-call h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.75rem;
}

.sidebar-call p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.sidebar-call .button {
  width: 100%;
  margin-top: 9px;
}

.sidebar-meta {
  margin-top: 15px;
  padding: 22px 24px;
  background: var(--mist);
  border-radius: var(--radius);
}

.sidebar-meta p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.sidebar-meta p:last-child {
  border: 0;
}

.sidebar-meta strong {
  color: var(--ink);
}

.related-areas {
  background: var(--mist);
}

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

.related-grid a {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.related-grid a:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

.related-grid a span {
  align-self: flex-end;
  color: var(--red);
  font-size: 1.25rem;
}

.content-page {
  background: var(--white);
}

.content-card {
  max-width: 850px;
  margin-inline: auto;
  color: var(--steel);
  font-size: 1.05rem;
}

.content-card h2,
.content-card h3,
.content-card h4 {
  margin-top: 1.7em;
  color: var(--ink);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card a {
  color: var(--red-dark);
  font-weight: 700;
}

.content-card ul,
.content-card ol {
  padding-left: 1.25em;
}

.content-card li {
  margin: 0.5em 0;
}

.content-cta {
  max-width: 850px;
  margin: 45px auto 0;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--ink);
  border-left: 6px solid var(--red);
  color: var(--white);
}

.content-cta h2 {
  margin: 0 0 5px;
  color: var(--white);
  font-size: 1.5rem;
}

.content-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.post-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.post-card h2 {
  font-size: 1.45rem;
}

.post-card h2 a {
  text-decoration: none;
}

.post-card time {
  display: block;
  margin-bottom: 12px;
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.pagination {
  margin-top: 40px;
}

.not-found {
  min-height: 58vh;
  display: grid;
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: rgba(226, 29, 47, 0.13);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 950;
  line-height: 0.8;
}

.not-found h1 {
  margin: -0.25em 0 18px;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.not-found p {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .header__inner {
    gap: 18px;
  }

  .site-branding {
    width: 235px;
    flex-basis: 235px;
  }

  .primary-menu a {
    padding-inline: 7px;
    font-size: 0.84rem;
  }

  .header-call {
    padding-inline: 12px;
  }

  .header-call span {
    display: none;
  }

  .service-detail__layout,
  .areas-layout,
  .faq-layout {
    gap: 55px;
  }

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

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

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .topline__area {
    display: none;
  }

  .topline__status {
    margin-right: auto;
  }

  .header__inner {
    min-height: 76px;
  }

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

  .site-branding {
    width: min(230px, 68vw);
    flex-basis: auto;
    margin-right: auto;
  }

  .header-call {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 50;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px 16px 120px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    background: var(--white);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .admin-bar .primary-nav {
    top: 144px;
  }

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

  .primary-menu {
    width: min(100%, 760px);
    margin-inline: auto;
    display: block;
  }

  .primary-menu a {
    padding: 17px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(8, 10, 14, 0.96), rgba(8, 10, 14, 0.68)), linear-gradient(0deg, rgba(8, 10, 14, 0.7), transparent 50%);
  }

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

  .signal-strip__grid > div:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .signal-strip__grid > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section-heading--split,
  .process-layout,
  .areas-layout,
  .faq-layout,
  .service-detail__layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 22px;
  }

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

  .process-layout,
  .areas-layout,
  .faq-layout,
  .service-detail__layout {
    gap: 50px;
  }

  .faq-intro,
  .service-sidebar {
    position: static;
  }

  .fleet-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 440px 250px;
  }

  .fleet-card--large {
    grid-row: auto;
    grid-column: 1 / -1;
  }

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

  .final-cta__actions {
    align-items: flex-start;
  }

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

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

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

  .mobile-actions {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    height: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -10px 30px rgba(8, 10, 14, 0.2);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
  }

  .mobile-actions svg {
    width: 24px;
    fill: currentColor;
  }

  .mobile-actions__call {
    background: var(--red);
  }

  .mobile-actions__whatsapp {
    background: var(--green);
  }

  .site-footer {
    padding-bottom: 68px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 26px);
  }

  body {
    font-size: 16px;
  }

  .topline {
    font-size: 0.68rem;
  }

  .topline__inner {
    min-height: 34px;
    gap: 10px;
  }

  .topline a {
    font-size: 0.74rem;
  }

  .header__inner,
  .site-header {
    min-height: 72px;
  }

  .site-branding img,
  .site-branding .custom-logo {
    max-height: 52px;
  }

  .primary-nav {
    top: 106px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .primary-nav {
    top: 152px;
  }

  .hero {
    min-height: 665px;
    align-items: end;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(8, 10, 14, 0.99) 0%, rgba(8, 10, 14, 0.9) 54%, rgba(8, 10, 14, 0.35) 100%);
  }

  .hero__inner {
    padding-block: 180px 52px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .page-hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .button--xl {
    min-width: 0;
    width: 100%;
    padding-inline: 12px;
    font-size: 0.89rem;
  }

  .button--xl svg {
    width: 23px;
  }

  .hero__trust {
    display: grid;
    gap: 8px;
    margin-top: 22px;
  }

  .signal-strip__grid > div {
    min-height: 82px;
    padding: 14px 12px;
  }

  .signal-strip strong {
    font-size: 0.92rem;
  }

  .signal-strip span {
    font-size: 0.68rem;
  }

  .section {
    padding-block: 72px;
  }

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

  .service-grid,
  .area-list,
  .related-grid,
  .posts-grid {
    grid-template-columns: 1fr;
  }

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

  .fleet-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 410px 265px 265px;
  }

  .fleet-card--large {
    grid-column: auto;
  }

  .area-list__primary {
    grid-column: auto;
  }

  .process-steps li {
    grid-template-columns: 56px 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-block: 64px;
  }

  .page-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .page-hero__lead {
    font-size: 1rem;
  }

  .content-cta {
    display: block;
  }

  .content-cta .button {
    width: 100%;
    margin-top: 22px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom p + p {
    margin-top: 8px;
  }
}

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