:root {
  --bg: #f4f5f6;
  --bg-2: #ffffff;
  --ink: #111317;
  --muted: #59616b;
  --line: rgba(17, 19, 23, 0.14);
  --panel: rgba(255, 255, 255, 0.9);
  --panel-solid: #ffffff;
  --dark: #08090b;
  --graphite: #1a1d22;
  --metal: #c9ced5;
  --red: #e30613;
  --red-dark: #8d0008;
  --gold: #e30613;
  --green: #16a15f;
  --radius: 8px;
  color-scheme: light;
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: 116px;
  background:
    linear-gradient(120deg, rgba(227, 6, 19, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f3f5 48%, #ffffff 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.speed-line {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(110deg, transparent 0 44%, rgba(8, 9, 11, 0.07) 44.2% 44.5%, transparent 44.8%),
    linear-gradient(110deg, transparent 0 62%, rgba(227, 6, 19, 0.15) 62.2% 62.7%, transparent 63%),
    linear-gradient(rgba(8, 9, 11, 0.035) 1px, transparent 1px);
  background-size: 420px 100%, 610px 100%, 100% 44px;
}

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: var(--dark);
  color: #d9dde2;
  font-size: 13px;
}

.strip-grid {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.strip-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav-shell {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 89;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 34px rgba(8, 9, 11, 0.08);
}

.nav-grid {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 154px;
  height: 58px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262b31;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.nav-links a:hover {
  border-color: var(--line);
  background: rgba(227, 6, 19, 0.08);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.btn-primary {
  color: #fff;
  border-color: rgba(227, 6, 19, 0.28);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 38px rgba(227, 6, 19, 0.22);
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green), #0a7143);
  border-color: rgba(255, 255, 255, 0.08);
}

.btn-review {
  color: #fff;
  border-color: rgba(255, 219, 112, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 219, 112, 0.24), rgba(227, 6, 19, 0.85)),
    #1a1d22;
  box-shadow: 0 18px 38px rgba(227, 6, 19, 0.22);
}

.wa-mark {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  margin-right: 7px;
  border-radius: 999px;
}

.wa-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(227, 6, 19, 0.55);
  background: var(--red);
}

.social-link img {
  display: block;
  width: 18px;
  height: 18px;
}

.social-link span {
  display: none;
}

.social-links-compact .social-link {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.18);
}

.social-links-compact .social-link img {
  width: 14px;
  height: 14px;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--dark);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.94) 0%, rgba(8, 9, 11, 0.7) 46%, rgba(8, 9, 11, 0.08) 100%),
    radial-gradient(circle at 82% 46%, rgba(227, 6, 19, 0.28), transparent 24%),
    radial-gradient(circle at 72% 63%, rgba(255, 255, 255, 0.2), transparent 18%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 32px);
  transform: scale(1.04);
  animation: heroDrive 5.8s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.22) contrast(1.12) brightness(0.76);
  transform: scale(1.02);
  pointer-events: none;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.road-streak,
.road-sweep,
.speed-glow {
  position: absolute;
  display: block;
}

.road-streak {
  left: -28%;
  width: 48%;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.98), rgba(227, 6, 19, 1), transparent);
  box-shadow: 0 0 24px rgba(227, 6, 19, 0.7), 0 0 38px rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: skewX(-18deg);
  animation: speedStreak 1.55s linear infinite;
}

.streak-a {
  top: 29%;
  animation-delay: 0s;
}

.streak-b {
  top: 47%;
  width: 38%;
  height: 4px;
  animation-delay: 0.44s;
  animation-duration: 1.35s;
}

.streak-c {
  top: 64%;
  width: 58%;
  height: 6px;
  animation-delay: 0.9s;
  animation-duration: 1.8s;
}

.road-sweep {
  left: -18%;
  right: -18%;
  bottom: 8%;
  height: 120px;
  background:
    repeating-linear-gradient(104deg, transparent 0 34px, rgba(255, 255, 255, 0.24) 34px 41px, transparent 41px 78px),
    linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.34), transparent);
  transform: skewX(-16deg);
  opacity: 0.86;
  animation: roadRush 0.74s linear infinite;
}

.speed-glow {
  right: -14%;
  bottom: 2%;
  width: 46%;
  height: 38%;
  background:
    radial-gradient(circle at 35% 55%, rgba(227, 6, 19, 0.36), transparent 42%),
    radial-gradient(circle at 60% 45%, rgba(255, 255, 255, 0.16), transparent 48%);
  filter: blur(18px);
  opacity: 0.86;
  animation: glowPulse 2.6s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 230px;
  z-index: 2;
  background: linear-gradient(0deg, #fff, transparent);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 52px;
  height: 5px;
  z-index: 2;
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(227, 6, 19, 0.9) 34px 74px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0.72;
  transform: skewX(-18deg);
  animation: trackMove 1.35s linear infinite;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: center;
  justify-content: start;
  gap: 34px;
  padding: 64px 0;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  letter-spacing: 0;
  text-transform: none;
}

.hero-priority-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 10px 0 24px;
}

.priority-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.priority-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(226, 31, 45, 0.18);
}

.kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(226, 31, 45, 0.18);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-main-logo {
  width: min(462px, 88vw);
  max-width: 100%;
  margin: 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  transform: none;
  filter: none;
}

.hero-main-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
}

.hero-text {
  max-width: 690px;
  color: #f0f2f4;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  margin-bottom: 28px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-band {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, #050607, #1a1d22 48%, #050607),
    var(--dark);
  color: #fff;
  overflow: hidden;
}

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

.trust-item {
  min-height: 154px;
  padding: 24px 20px;
  border-inline: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.035);
  transform: skewX(-8deg);
}

.trust-item strong,
.trust-item span {
  display: block;
  transform: skewX(8deg);
}

.trust-item strong {
  font-size: 20px;
  line-height: 1.05;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.trust-item span {
  color: #b8bec6;
  line-height: 1.48;
  font-size: 14px;
}

.trust-item strong span {
  display: inline;
  color: var(--red);
  transform: none;
  font-style: italic;
}

.section {
  padding: 86px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 32px;
}

.section-head .section-label {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.section-head h2,
.feature-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
}

.section-head p,
.feature-copy p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.drift-video-zone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.54), rgba(8, 9, 11, 0.2) 48%, rgba(8, 9, 11, 0.62)),
    url("./assets/optimized/services/services-bg-pro.webp") center center / 112% auto no-repeat,
    #08090b;
  color: #fff;
  animation: servicesBgDrift 18s ease-in-out infinite alternate;
}

.drift-video-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.68), rgba(8, 9, 11, 0.28) 46%, rgba(8, 9, 11, 0.7)),
    radial-gradient(circle at 82% 20%, rgba(227, 6, 19, 0.28), transparent 30%),
    radial-gradient(circle at 22% 72%, rgba(255, 255, 255, 0.08), transparent 26%);
  animation: servicesLightPulse 5.4s ease-in-out infinite;
  pointer-events: none;
}

.drift-video-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.01), rgba(8, 9, 11, 0.2)),
    linear-gradient(115deg, transparent 0 18%, rgba(227, 6, 19, 0.16) 19%, transparent 26%),
    repeating-linear-gradient(110deg, transparent 0 46px, rgba(255, 255, 255, 0.03) 46px 48px, transparent 48px 94px);
  opacity: 0.34;
  background-size: auto, 220% 100%, auto;
  animation: servicesTrackSweep 9s linear infinite;
  pointer-events: none;
}

.drift-bg-video,
.service-photo-rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.drift-bg-video {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.12) brightness(0.58);
}

.service-photo-rotator {
  overflow: hidden;
  background: transparent;
}

.service-photo-rotator::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 2;
  background:
    radial-gradient(circle at 74% 46%, transparent 0 10%, rgba(227, 6, 19, 0.22) 10.5% 11.2%, transparent 11.8% 18%, rgba(255, 255, 255, 0.08) 18.5% 19%, transparent 19.5%),
    radial-gradient(circle at 20% 28%, rgba(227, 6, 19, 0.16), transparent 24%);
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: servicesHaloSpin 16s linear infinite;
  pointer-events: none;
}

.service-photo-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.12);
  filter: saturate(1.16) contrast(1.08) brightness(0.82);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.service-photo-slide.is-active {
  opacity: 0.34;
  transform: scale(1.02);
  animation: servicesSlideMotion 5.2s ease-in-out infinite alternate;
}

.drift-video-zone > section {
  position: relative;
  z-index: 2;
}

.drift-video-zone .section-head h2,
.drift-video-zone .feature-copy h2,
.drift-video-zone .location-copy h2 {
  color: #fff;
}

.drift-video-zone .section-head p,
.drift-video-zone .feature-copy p,
.drift-video-zone .location-copy p,
.drift-video-zone .feature-list span {
  color: #d7dce2;
}

.service-motion {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 170px minmax(240px, 1fr);
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}

.pit-crew-mascot {
  position: relative;
  width: 164px;
  height: 154px;
  justify-self: start;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 72%, rgba(227, 6, 19, 0.2), transparent 0 30%, transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.pit-crew-mascot::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 13px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
  filter: blur(5px);
}

.crew-head {
  position: absolute;
  left: 37px;
  top: 22px;
  width: 42px;
  height: 38px;
  border-radius: 16px 16px 13px 13px;
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.96) 0 42%, #f4f6f8 42% 58%, #171c22 58% 100%);
  border: 3px solid #050607;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.16);
  animation: crewBob 1.2s ease-in-out infinite;
}

.crew-head::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 13px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111317, #37404a);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.crew-body {
  position: absolute;
  left: 36px;
  top: 58px;
  width: 48px;
  height: 52px;
  border-radius: 14px 14px 11px 11px;
  background:
    linear-gradient(90deg, #e30613 0 43%, #f4f6f8 43% 56%, #101419 56% 100%);
  border: 3px solid #050607;
  transform: rotate(-5deg);
  animation: crewBob 1.2s ease-in-out infinite;
}

.crew-body::after {
  content: "JR";
  position: absolute;
  left: 9px;
  top: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

.crew-arm {
  position: absolute;
  width: 12px;
  height: 48px;
  border-radius: 999px;
  background: #f4f6f8;
  border: 3px solid #050607;
  transform-origin: 50% 6px;
}

.tool-arm {
  left: 78px;
  top: 61px;
  transform: rotate(-55deg);
  animation: wrenchHit 0.72s ease-in-out infinite;
}

.back-arm {
  left: 31px;
  top: 64px;
  height: 42px;
  background: #e30613;
  transform: rotate(28deg);
}

.crew-tool {
  position: absolute;
  left: 102px;
  top: 58px;
  width: 38px;
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #cfd5dc, #59616b);
  border: 2px solid #050607;
  transform: rotate(-12deg);
  transform-origin: left center;
  animation: toolRattle 0.72s ease-in-out infinite;
}

.crew-tool::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 2px;
  width: 13px;
  height: 9px;
  border-radius: 3px;
  background: #111317;
}

.crew-leg {
  position: absolute;
  top: 105px;
  width: 13px;
  height: 36px;
  border-radius: 999px;
  background: #111317;
  border: 2px solid #050607;
}

.left-leg {
  left: 43px;
  transform: rotate(12deg);
}

.right-leg {
  left: 67px;
  transform: rotate(-8deg);
}

.crew-tire {
  position: absolute;
  right: 14px;
  bottom: 25px;
  width: 62px;
  height: 62px;
  border: 10px solid #050607;
  border-radius: 999px;
  background:
    radial-gradient(circle, #f6f8fa 0 12%, #7d8792 13% 21%, transparent 22%),
    repeating-conic-gradient(#e5e9ee 0 9deg, #343a42 9deg 22deg);
  box-shadow: inset -7px -7px 12px rgba(0, 0, 0, 0.28), 0 14px 24px rgba(0, 0, 0, 0.3);
  animation: wheelSpin 0.75s linear infinite;
}

.crew-tire i {
  position: absolute;
  inset: 14px;
  border: 3px solid rgba(8, 9, 11, 0.35);
  border-radius: 999px;
}

.impact-spark {
  position: absolute;
  right: 68px;
  bottom: 69px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffd34f;
  box-shadow: 0 0 14px rgba(255, 211, 79, 0.9);
  opacity: 0;
  animation: sparkBlink 0.72s ease-out infinite;
}

.spark-b {
  right: 58px;
  bottom: 59px;
  animation-delay: 120ms;
}

.hero-tire {
  position: relative;
  width: 150px;
  height: 150px;
  justify-self: start;
  border-radius: 999px;
  background:
    radial-gradient(circle at 31% 22%, rgba(255, 255, 255, 0.22), transparent 0 15%, transparent 16%),
    radial-gradient(circle at 68% 72%, rgba(0, 0, 0, 0.58), transparent 0 28%, transparent 29%),
    repeating-conic-gradient(from 4deg, #020304 0 6deg, #20262d 6deg 10deg, #060708 10deg 18deg),
    radial-gradient(circle, transparent 0 32%, #171c22 33% 45%, #050607 46% 100%);
  box-shadow:
    0 26px 52px rgba(8, 9, 11, 0.24),
    inset -18px -18px 28px rgba(0, 0, 0, 0.58),
    inset 10px 10px 22px rgba(255, 255, 255, 0.06),
    inset 0 0 0 12px #050607,
    inset 0 0 0 24px #242b33,
    inset 0 0 0 29px rgba(255, 255, 255, 0.05);
  animation: tireFloat 3.2s ease-in-out infinite;
}

.hero-tire::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle, #07090b 0 14%, #f4f6f8 15% 19%, #616a74 20% 24%, transparent 25%),
    conic-gradient(from 8deg, #f6f8fa 0 7deg, #313943 7deg 21deg, #d9dee4 21deg 31deg, #5d6671 31deg 43deg, #f7f9fb 43deg 52deg, #333b45 52deg 66deg, #d6dce2 66deg 76deg, #5b6470 76deg 90deg, #f6f8fa 90deg 97deg, #313943 97deg 111deg, #d9dee4 111deg 121deg, #5d6671 121deg 133deg, #f7f9fb 133deg 142deg, #333b45 142deg 156deg, #d6dce2 156deg 166deg, #5b6470 166deg 180deg, #f6f8fa 180deg 187deg, #313943 187deg 201deg, #d9dee4 201deg 211deg, #5d6671 211deg 223deg, #f7f9fb 223deg 232deg, #333b45 232deg 246deg, #d6dce2 246deg 256deg, #5b6470 256deg 270deg, #f6f8fa 270deg 277deg, #313943 277deg 291deg, #d9dee4 291deg 301deg, #5d6671 301deg 313deg, #f7f9fb 313deg 322deg, #333b45 322deg 336deg, #d6dce2 336deg 346deg, #5b6470 346deg 360deg);
  box-shadow:
    inset -8px -8px 15px rgba(0, 0, 0, 0.35),
    inset 6px 6px 12px rgba(255, 255, 255, 0.22),
    inset 0 0 0 8px rgba(8, 9, 11, 0.18),
    0 0 0 7px rgba(255, 255, 255, 0.08);
}

.hero-tire::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -14px;
  height: 16px;
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.24);
  filter: blur(7px);
}

.tire-rim {
  position: absolute;
  inset: 50px;
  border-radius: 999px;
  background: radial-gradient(circle, #111317 0 34%, #f3f5f7 35% 48%, #535c66 49% 100%);
  box-shadow: 0 0 0 4px rgba(8, 9, 11, 0.4);
}

.tire-shine {
  position: absolute;
  inset: 18px 70px 72px 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(3px);
}

.safety-strip {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 161, 95, 0.1), transparent 42%),
    rgba(8, 9, 11, 0.34);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.safety-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #fff, var(--red));
  animation: redLineRun 1.8s linear infinite;
}

.safety-strip div {
  position: relative;
  z-index: 1;
  padding: 22px 18px;
}

.safety-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.safety-strip strong,
.safety-strip span {
  display: block;
}

.safety-strip strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 7px;
}

.safety-strip span {
  color: #cfd5dc;
  line-height: 1.42;
  font-size: 14px;
}

.pit-crew-mascot {
  width: 170px;
  height: 154px;
  background:
    radial-gradient(circle at 76% 58%, rgba(227, 6, 19, 0.22), transparent 0 28%, transparent 64%),
    linear-gradient(145deg, rgba(227, 6, 19, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #161a20;
  border: 1px solid rgba(214, 221, 229, 0.18);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.pit-crew-mascot::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.62), transparent);
}

.pit-crew-mascot::after {
  left: 20px;
  right: 20px;
  bottom: 11px;
  background: rgba(0, 0, 0, 0.42);
}

.pit-cart-body,
.pit-cart-window,
.pit-cart-smile,
.pit-cart-wheel,
.pit-impact-gun,
.pit-service-tire,
.pit-spark {
  position: absolute;
  display: block;
}

.pit-cart-body {
  left: 22px;
  top: 55px;
  width: 82px;
  height: 46px;
  border: 3px solid #050607;
  border-radius: 21px 26px 15px 15px;
  background:
    linear-gradient(90deg, #e30613 0 48%, #f4f6f8 48% 58%, #151a20 58% 100%);
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.18), 0 14px 24px rgba(0, 0, 0, 0.28);
  animation: pitCarBob 1.05s ease-in-out infinite;
}

.pit-cart-body::after {
  content: "JR";
  position: absolute;
  left: 16px;
  top: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.pit-cart-window {
  left: 47px;
  top: 42px;
  width: 34px;
  height: 20px;
  border: 3px solid #050607;
  border-radius: 13px 13px 7px 7px;
  background: linear-gradient(135deg, #2f3a45, #0d1116);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.08);
  animation: pitCarBob 1.05s ease-in-out infinite;
}

.pit-cart-smile {
  left: 80px;
  top: 70px;
  width: 14px;
  height: 7px;
  border-right: 3px solid rgba(255, 255, 255, 0.72);
  border-bottom: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 0 0 12px;
  transform: rotate(16deg);
}

.pit-cart-wheel {
  top: 91px;
  width: 25px;
  height: 25px;
  border: 6px solid #050607;
  border-radius: 999px;
  background: radial-gradient(circle, #f6f8fa 0 18%, #66717d 19% 36%, #11151a 37% 100%);
  animation: wheelSpin 0.7s linear infinite;
}

.wheel-left {
  left: 30px;
}

.wheel-right {
  left: 77px;
}

.pit-service-tire {
  right: 13px;
  bottom: 23px;
  width: 58px;
  height: 58px;
  border: 9px solid #050607;
  border-radius: 999px;
  background:
    radial-gradient(circle, #f6f8fa 0 12%, #7d8792 13% 21%, transparent 22%),
    repeating-conic-gradient(#e5e9ee 0 9deg, #343a42 9deg 22deg);
  box-shadow: inset -7px -7px 12px rgba(0, 0, 0, 0.28), 0 14px 24px rgba(0, 0, 0, 0.3);
  animation: pitWheelWork 0.82s linear infinite;
}

.pit-service-tire i {
  position: absolute;
  inset: 13px;
  border: 3px solid rgba(8, 9, 11, 0.35);
  border-radius: 999px;
}

.pit-impact-gun {
  width: 37px;
  height: 13px;
  border: 2px solid #050607;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7dde4, #5f6974);
  transform-origin: left center;
  animation: impactGunPulse 0.68s ease-in-out infinite;
}

.pit-impact-gun::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 10px;
  height: 19px;
  border: 2px solid #050607;
  border-radius: 3px;
  background: #222a32;
}

.pit-impact-gun::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 2px;
  width: 12px;
  height: 8px;
  border-radius: 3px;
  background: #0b0f13;
}

.gun-left {
  left: 92px;
  top: 62px;
  transform: rotate(10deg);
}

.gun-right {
  left: 88px;
  top: 88px;
  transform: rotate(-14deg);
  animation-delay: 120ms;
}

.pit-spark {
  right: 61px;
  bottom: 64px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffd34f;
  box-shadow: 0 0 14px rgba(255, 211, 79, 0.9);
  opacity: 0;
  animation: sparkBlink 0.68s ease-out infinite;
}

.spark-b {
  right: 50px;
  bottom: 52px;
  animation-delay: 110ms;
}

.spark-c {
  right: 43px;
  bottom: 70px;
  width: 6px;
  height: 6px;
  animation-delay: 220ms;
}

.safety-strip {
  gap: 12px;
  border: 1px solid rgba(214, 221, 229, 0.16);
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #161a20;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.safety-strip::before {
  left: 18px;
  right: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.6), transparent);
  animation: none;
}

.safety-strip div {
  margin: 12px 0;
  padding: 20px 18px 20px 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.safety-strip div:first-child {
  margin-left: 12px;
}

.safety-strip div:last-child {
  margin-right: 12px;
}

.safety-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.safety-strip div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3a45, var(--red-dark));
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.14), 0 0 18px rgba(227, 6, 19, 0.28);
}

.safety-strip strong {
  color: #f4f7fb;
  font-size: 18px;
}

.safety-strip span {
  color: #cbd2da;
}

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

.service-card {
  --service-card-photo: linear-gradient(transparent, transparent);
  --service-card-position: center;
  min-height: 270px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 221, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.42), rgba(8, 9, 11, 0.82)),
    linear-gradient(145deg, rgba(227, 6, 19, 0.14), transparent 42%),
    var(--service-card-photo),
    rgba(8, 9, 11, 0.34);
  background-position: center, center, var(--service-card-position), center;
  background-size: auto, auto, cover, auto;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(5px);
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card--gomas {
  --service-card-photo: url("./assets/optimized/work/work-gomas.webp") center / cover no-repeat;
}

.service-card--montaje {
  --service-card-photo: url("./assets/optimized/work/work-montaje.webp") center / cover no-repeat;
  --service-card-position: center;
}

.service-card--balanceo {
  --service-card-photo: url("./assets/optimized/work/work-balanceo.webp") center / cover no-repeat;
}

.service-card--alineamiento {
  --service-card-photo: url("./assets/optimized/work/work-alineamiento.webp") center / cover no-repeat;
}

.service-card--reparacion-goma {
  --service-card-photo: url("./assets/optimized/work/work-reparacion-goma.webp") center / cover no-repeat;
}

.service-card--frenos {
  --service-card-photo: url("./assets/optimized/work/work-frenos.webp") center / cover no-repeat;
  --service-card-position: center;
}

.service-card--oil-change {
  --service-card-photo: url("./assets/optimized/work/work-oil-change.webp") center / cover no-repeat;
  --service-card-position: center;
}

.service-card--mecanica {
  --service-card-photo: url("./assets/optimized/work/work-mecanica.webp") center / cover no-repeat;
}

.service-card--focos {
  --service-card-photo: url("./assets/optimized/work/work-focos.webp") center / cover no-repeat;
}

.service-card--aro-soldadura {
  --service-card-photo: url("./assets/optimized/work/work-aro-soldadura.webp") center / cover no-repeat;
  --service-card-position: center;
}

.service-card--trucks {
  --service-card-photo: url("./assets/optimized/work/work-trucks.webp") center / cover no-repeat;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(227, 6, 19, 0.08), transparent 30%);
  opacity: 0.34;
  transition: opacity 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.55), transparent);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 6, 19, 0.72);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(227, 6, 19, 0.18);
}

.service-number {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--red), var(--red-dark)),
    #11151a;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 12px 28px rgba(227, 6, 19, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-number:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 26px rgba(227, 6, 19, 0.34);
}

.service-card h3,
.service-card p,
.service-card ul {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  color: #f4f7fb;
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.service-card p {
  color: #d6dce3;
  line-height: 1.52;
  margin-bottom: 0;
}

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

.service-card li {
  position: relative;
  color: #cbd2da;
  line-height: 1.42;
  padding-left: 22px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3a45, var(--red-dark));
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.14), 0 0 18px rgba(227, 6, 19, 0.28);
}

.split-section {
  padding: 38px 0 86px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.photo-stage {
  min-height: 560px;
  display: flex;
  align-items: end;
  border: 1px solid rgba(8, 9, 11, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.14), rgba(5, 6, 7, 0.94)),
    radial-gradient(circle at 70% 20%, rgba(227, 6, 19, 0.28), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 26px),
    linear-gradient(135deg, #111418, #2c3036 48%, #08090b);
  padding: 24px;
}

.photo-stage strong,
.photo-stage span {
  display: block;
}

.photo-stage strong {
  max-width: 360px;
  font-size: 34px;
  line-height: 1;
  color: #fff;
}

.photo-stage span {
  max-width: 380px;
  color: #d7dce2;
  line-height: 1.5;
  margin-top: 9px;
}

.service-process-stage {
  position: relative;
  align-items: stretch;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 26px),
    #161a20;
  border: 1px solid rgba(214, 221, 229, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.service-process-stage::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.62), transparent);
}

.service-process-stage::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 230px;
  height: 230px;
  border: 28px solid rgba(5, 6, 7, 0.72);
  border-radius: 999px;
  background:
    radial-gradient(circle, #f6f8fa 0 11%, #737d88 12% 20%, transparent 21%),
    repeating-conic-gradient(rgba(229, 233, 238, 0.5) 0 9deg, rgba(52, 58, 66, 0.5) 9deg 22deg);
  opacity: 0.62;
}

.about-photo-stage {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.92)),
    radial-gradient(circle at 72% 18%, rgba(227, 6, 19, 0.24), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 26px),
    #161a20;
}

.about-photo-stage::after {
  opacity: 0.24;
}

.shop-photo-placeholder {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.18), rgba(7, 9, 12, 0.84)),
    radial-gradient(circle at 50% 34%, rgba(227, 6, 19, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 20px 54px rgba(0, 0, 0, 0.26);
  padding: 14px;
}

.shop-photo-placeholder img {
  width: 100%;
  height: min(410px, 48vw);
  min-height: 300px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #07090d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.shop-photo-placeholder span {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 9, 12, 0.74);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  padding: 10px 14px;
  backdrop-filter: blur(10px);
}

.process-badge {
  position: relative;
  z-index: 1;
  align-self: start;
  max-width: 360px;
  padding: 12px 14px;
  border: 1px solid rgba(227, 6, 19, 0.38);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.process-steps {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.process-steps div {
  position: relative;
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 16px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.process-steps div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3a45, var(--red-dark));
  box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.14), 0 0 18px rgba(227, 6, 19, 0.28);
  transform: translateY(-50%);
}

.process-steps strong {
  color: rgba(255, 255, 255, 0.28);
  font-size: 34px;
  line-height: 0.9;
}

.process-steps span {
  color: #f4f7fb;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 0;
}

.feature-copy {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(8, 9, 11, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  padding: 34px;
  display: grid;
  align-content: center;
  backdrop-filter: blur(14px);
}

.feature-copy h2 {
  margin-bottom: 18px;
}

.feature-copy p {
  margin-bottom: 24px;
}

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

.feature-list div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: #d7dce2;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 6px;
}

.location-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 20%, rgba(227, 6, 19, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(5, 7, 10, 0.92), rgba(15, 18, 23, 0.84)),
    transparent;
  color: #fff;
}

.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.34)),
    url("./assets/optimized/jr-tires-storefront-full.webp") center / cover;
  opacity: 0.22;
  filter: saturate(0.9) contrast(1.12);
}

.location-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 28px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.4));
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: center;
  min-height: 520px;
  padding: 24px 0;
}

.location-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  color: #fff;
}

.location-copy p {
  max-width: 650px;
  color: #d7dce2;
  line-height: 1.65;
  margin-bottom: 18px;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-bottom: 22px;
}

.location-highlights span {
  display: grid;
  gap: 3px;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.07);
  color: #dce2e8;
  font-size: 13px;
  font-weight: 800;
  padding: 13px 14px;
  backdrop-filter: blur(12px);
}

.location-highlights strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.05;
}

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

.location-card {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 14, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(16px);
}

.map-visual {
  min-height: 315px;
  position: relative;
  overflow: hidden;
  background: #171c23;
}

.location-photo-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.08) brightness(0.82);
  transform: scale(1.01);
}

.map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(6, 8, 11, 0.02), rgba(6, 8, 11, 0.52));
  pointer-events: none;
}

.map-live-badge {
  position: absolute;
  z-index: 3;
  left: 16px;
  top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 11px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
}

.map-visual strong {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 2px;
  width: max-content;
  max-width: calc(100% - 40px);
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  background: rgba(8, 9, 11, 0.9);
  box-shadow: 0 18px 44px rgba(8, 9, 11, 0.24);
}

.map-visual strong span {
  color: #ffb3b9;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-pin {
  display: none;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  background: white;
}

.location-details {
  display: grid;
  grid-template-columns: 1fr;
  padding: 8px;
  gap: 8px;
}

.location-details div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  padding: 15px 16px;
}

.location-details strong {
  color: #fff;
}

.location-details span,
.location-details a {
  color: #cfd6df;
  line-height: 1.45;
}

.location-card-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 8px 8px;
}

.location-card-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.location-card-actions a:first-child {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.proof-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.12), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 26px),
    #11151a;
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.proof-copy {
  border: 1px solid rgba(214, 221, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #161a20;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.proof-copy h2,
.warranty-wrap h2,
.faq-head h2 {
  color: #fff;
}

.proof-copy p,
.warranty-wrap p {
  color: #d5dbe2;
}

.review-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(227, 6, 19, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 16%, rgba(227, 6, 19, 0.28), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.subscribe-mini-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 219, 112, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 219, 112, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.045);
}

.subscribe-mini-card strong {
  color: #fff;
}

.subscribe-mini-card span {
  color: #d5dbe2;
}

.featured-review strong {
  font-size: clamp(56px, 8vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.review-eyebrow {
  width: max-content;
  border: 1px solid rgba(227, 6, 19, 0.36);
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.16);
  color: #ffb6bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 9px;
}

.review-card strong,
.before-after-grid strong,
.warranty-grid strong {
  color: #f4f7fb;
}

.review-card span,
.before-after-grid p,
.warranty-grid span,
.faq-grid p {
  color: #cbd2da;
  line-height: 1.48;
}

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

.before-after-grid article,
.warranty-grid article,
.faq-grid details {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 221, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 44%),
    #161a20;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.before-after-grid article::before,
.warranty-grid article::before,
.faq-grid details::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.58), transparent);
}

.before-after-grid article {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.before-after-grid article::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 22px;
  right: 22px;
  height: 92px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 74% 34%, rgba(227, 6, 19, 0.32), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    rgba(255, 255, 255, 0.04);
}

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

.review-source-grid article {
  min-height: 230px;
  justify-content: space-between;
}

.review-source-grid article::after {
  display: none;
}

.review-source-grid a {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 16px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(227, 6, 19, 0.85);
  padding-bottom: 3px;
}

.review-source-grid a:hover {
  color: #ffb6bc;
}

.before-after-grid span {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-bottom: 12px;
  border: 1px solid rgba(227, 6, 19, 0.36);
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.16);
  color: #ffb6bc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 9px;
}

.before-after-grid strong,
.before-after-grid p {
  position: relative;
  z-index: 1;
}

.warranty-section {
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.08), transparent 54%),
    #0f1318;
  color: #fff;
}

.warranty-wrap {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 24px;
  align-items: start;
  border: 1px solid rgba(214, 221, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.14), transparent 36%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 26px),
    #161a20;
  padding: 32px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.28);
}

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

.warranty-grid article {
  min-height: 150px;
}

.warranty-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.faq-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 6, 19, 0.14), transparent 28%),
    #0b0e12;
  color: #fff;
}

.faq-wrap {
  display: grid;
  gap: 24px;
}

.faq-head {
  max-width: 760px;
}

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

.faq-grid details {
  min-height: 138px;
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  color: #f4f7fb;
  font-weight: 800;
  line-height: 1.24;
}

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

.faq-grid summary::after {
  content: "+";
  float: right;
  color: #ff5d66;
  font-size: 22px;
  line-height: 0.9;
  margin-left: 12px;
}

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

.faq-grid p {
  margin-top: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 26px),
    #161a20;
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.62), transparent);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-section .section-label,
.contact-copy h2 {
  color: #fff;
}

.contact-copy h2 {
  margin-bottom: 16px;
}

.contact-copy p {
  max-width: 690px;
  margin-bottom: 22px;
  color: #d7dce2;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

.assurance-grid div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.055);
  padding: 15px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.assurance-grid strong,
.assurance-grid span {
  display: block;
}

.assurance-grid strong {
  color: #f4f7fb;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.assurance-grid span {
  color: #cbd2da;
  font-size: 14px;
  line-height: 1.42;
}

.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(227, 6, 19, 0.16), transparent 50%),
    rgba(8, 9, 11, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  padding: 24px;
  display: grid;
  gap: 13px;
  backdrop-filter: blur(14px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #f4f7fb;
  font-size: 13px;
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #f7f8f9;
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.review-qr-section {
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.12), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 26px),
    #11151a;
  color: #fff;
}

.review-qr-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(214, 221, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%),
    #161a20;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.review-qr-wrap h2 {
  color: #fff;
}

.review-qr-wrap p {
  color: #d5dbe2;
  max-width: 760px;
}

.review-qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.review-qr-preview {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-qr-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.review-qr-preview img {
  display: block;
  width: 100%;
  max-width: 288px;
  height: auto;
}

.work-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(227, 6, 19, 0.16), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 2px, transparent 2px 26px),
    #0f1318;
  color: #fff;
}

.work-gallery-head h2 {
  color: #fff;
}

.work-gallery-head p {
  color: #d5dbe2;
}

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

.work-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid rgba(214, 221, 229, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.2), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #161a20;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  padding: 22px;
}

.work-card-large {
  justify-content: end;
}

.work-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.56), transparent);
}

.work-card::after {
  display: none;
}

.work-card-media {
  position: relative;
  z-index: 3;
  min-height: 110px;
  display: block;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 72% 34%, rgba(227, 6, 19, 0.3), transparent 30%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.24);
}

.work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.42)),
    radial-gradient(circle at 72% 28%, rgba(227, 6, 19, 0.18), transparent 30%);
  pointer-events: none;
}

.work-card-media img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06) brightness(0.94);
  transform: scale(1.01);
}

.work-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 504px;
  padding: 0;
}

.work-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-card-photo::after {
  display: block;
  inset: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 12, 0.05), rgba(7, 9, 12, 0.86)),
    linear-gradient(135deg, rgba(227, 6, 19, 0.12), transparent 48%);
}

.work-card div,
.work-card span,
.work-card strong,
.work-card p {
  position: relative;
  z-index: 3;
}

.work-card span {
  width: max-content;
  margin-bottom: 12px;
  border: 1px solid rgba(227, 6, 19, 0.36);
  border-radius: 999px;
  background: rgba(227, 6, 19, 0.16);
  color: #ffb6bc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 9px;
}

.work-card strong {
  color: #f4f7fb;
  font-size: 22px;
  line-height: 1.18;
}

.work-card p {
  color: #d5dbe2;
  line-height: 1.48;
  margin: 12px 0 0;
}

.work-card-large div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
}

.work-gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--dark);
  color: #fff;
  padding: 38px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.5fr 0.62fr 0.8fr 1fr;
  gap: 26px;
}

.footer-brand img {
  width: 176px;
  height: 68px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  margin-bottom: 12px;
  background: transparent;
  padding: 0;
}

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

.footer-grid strong {
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
  color: #c8ced6;
  line-height: 1.6;
  margin: 0 0 8px;
}

.footer-grid .social-links {
  margin-bottom: 12px;
}

.footer-grid .social-link {
  width: 100%;
  min-height: 42px;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  border-radius: var(--radius);
  color: #fff;
  margin: 0;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-grid .social-link span {
  display: inline;
  color: #fff;
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.footer-grid .social-links-footer {
  display: grid;
  align-items: stretch;
  gap: 8px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #c8ced6;
  margin-top: 26px;
  padding: 20px 0 88px;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, var(--green), #075f39);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp .wa-mark {
  width: 28px;
  height: 28px;
  margin-right: 9px;
}

.floating-review {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 219, 112, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 219, 112, 0.24), rgba(227, 6, 19, 0.85)),
    #1a1d22;
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.floating-discount {
  position: fixed;
  right: 18px;
  bottom: 138px;
  z-index: 80;
  display: grid;
  gap: 1px;
  min-height: 54px;
  min-width: 112px;
  border: 1px solid rgba(255, 219, 112, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 219, 112, 0.24), rgba(227, 6, 19, 0.92)),
    #171a20;
  color: #fff;
  cursor: pointer;
  font: inherit;
  padding: 8px 15px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 0 6px rgba(227, 6, 19, 0.08);
}

.floating-discount strong {
  font-size: 16px;
  line-height: 1;
}

.floating-discount span {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
}

.qr-modal.is-open {
  display: grid;
}

.qr-modal-open {
  overflow: hidden;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 8, 0.78);
  backdrop-filter: blur(10px);
}

.qr-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  max-height: min(92vh, 980px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(214, 221, 229, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(227, 6, 19, 0.18), transparent 38%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 26px),
    #11151a;
  color: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
  padding: 30px;
}

.qr-modal-copy,
.discount-offer,
.promo-form {
  grid-column: 1;
}

.qr-print-card {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.qr-modal-panel::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), rgba(255, 255, 255, 0.62), transparent);
}

.qr-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.qr-modal-copy h2 {
  color: #fff;
  max-width: 560px;
}

.qr-modal-copy p {
  max-width: 610px;
  color: #d5dbe2;
}

.discount-offer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 219, 112, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 219, 112, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(227, 6, 19, 0.32), rgba(255, 255, 255, 0.06) 48%, rgba(8, 9, 11, 0.1)),
    rgba(255, 255, 255, 0.07);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(0, 0, 0, 0.24);
}

.discount-badge {
  display: grid;
  place-items: center;
  width: 88px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffdb70, #e30613 64%, #89010a);
  color: #fff;
  box-shadow: 0 14px 34px rgba(227, 6, 19, 0.32);
  transform: rotate(-3deg);
}

.discount-badge strong {
  font-size: 34px;
  line-height: 0.9;
}

.discount-badge span {
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.08em;
}

.discount-offer h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
  margin: 0 0 7px;
}

.discount-offer p:not(.section-label) {
  color: #e7ecf2;
  line-height: 1.45;
  margin: 0;
}

.discount-timer {
  display: grid;
  justify-items: center;
  min-width: 126px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(3, 5, 8, 0.52);
  padding: 12px 13px;
}

.discount-timer span {
  color: #ffced2;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.discount-timer strong {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.discount-offer.is-expired {
  border-color: rgba(255, 255, 255, 0.18);
  filter: grayscale(0.22);
}

.promo-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 219, 112, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 219, 112, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.055);
  padding: 20px;
}

.promo-form h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
}

.promo-form p {
  color: #d5dbe2;
  line-height: 1.45;
  margin: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.promo-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.promo-fields label:first-child {
  grid-column: 1 / -1;
}

.promo-fields label,
.subscribe-consent {
  display: grid;
  gap: 7px;
  color: #dfe5ec;
  font-size: 13px;
  font-weight: 800;
}

.promo-fields input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(7, 9, 12, 0.56);
  color: #fff;
  font: inherit;
  padding: 0 12px;
}

.subscribe-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
  line-height: 1.35;
}

.subscribe-consent input {
  margin-top: 3px;
}

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

.qr-print-card {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.qr-print-card img {
  display: block;
  width: 100%;
  max-width: 308px;
  height: auto;
}

.qr-modal-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.qr-toast {
  grid-column: 1 / -1;
  display: none;
  width: max-content;
  max-width: 100%;
  border: 1px solid rgba(255, 219, 112, 0.38);
  border-radius: 999px;
  background: rgba(255, 219, 112, 0.14);
  color: #fff;
  font-weight: 800;
  padding: 9px 13px;
}

.qr-toast.is-visible {
  display: block;
}

.legal-page {
  min-height: 100vh;
  padding-top: 78px;
}

.legal-page .nav-shell {
  top: 0;
}

.legal-main {
  padding: 72px 0;
}

.legal-card {
  max-width: 900px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  padding: 32px;
}

.legal-card h1 {
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  color: var(--ink);
}

.legal-card h2 {
  margin-top: 28px;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.delay-1 {
  transition-delay: 110ms;
}

.delay-2 {
  transition-delay: 210ms;
}

.delay-3 {
  transition-delay: 310ms;
}

@keyframes heroDrive {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
    filter: saturate(1.03) contrast(1.02);
  }
  to {
    transform: scale(1.1) translate3d(-28px, -5px, 0);
    filter: saturate(1.16) contrast(1.1);
  }
}

@keyframes speedStreak {
  0% {
    transform: translate3d(0, 0, 0) skewX(-18deg);
    opacity: 0;
  }
  10% {
    opacity: 0.88;
  }
  70% {
    opacity: 0.62;
  }
  100% {
    transform: translate3d(310%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}

@keyframes roadRush {
  to {
    background-position: -118px 0, 0 0;
  }
}

@keyframes glowPulse {
  from {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.46;
  }
  to {
    transform: translate3d(-18px, -8px, 0) scale(1.08);
    opacity: 0.82;
  }
}

@keyframes wheelTravel {
  0% {
    left: -90px;
  }
  100% {
    left: calc(100% + 90px);
  }
}

@keyframes wheelSpin {
  to {
    rotate: 360deg;
  }
}

@keyframes trackMove {
  to {
    background-position: -148px 0;
  }
}

@keyframes redLineRun {
  0% {
    transform: translateX(-45%);
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(45%);
    opacity: 0.25;
  }
}

@keyframes tireFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
    filter: drop-shadow(0 0 0 rgba(8, 9, 11, 0));
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
    filter: drop-shadow(0 18px 20px rgba(8, 9, 11, 0.22));
  }
}

@keyframes crewBob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -3px;
  }
}

@keyframes wrenchHit {
  0%,
  100% {
    transform: rotate(-48deg);
  }
  50% {
    transform: rotate(-70deg);
  }
}

@keyframes toolRattle {
  0%,
  100% {
    transform: rotate(-8deg) translateX(0);
  }
  50% {
    transform: rotate(-18deg) translateX(4px);
  }
}

@keyframes pitCarBob {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -3px;
  }
}

@keyframes impactGunPulse {
  0%,
  100% {
    translate: 0 0;
    filter: drop-shadow(0 0 0 rgba(227, 6, 19, 0));
  }
  50% {
    translate: 5px 0;
    filter: drop-shadow(0 0 10px rgba(227, 6, 19, 0.32));
  }
}

@keyframes pitWheelWork {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes sparkBlink {
  0%,
  100% {
    transform: scale(0.4);
    opacity: 0;
  }
  46% {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes servicesBgDrift {
  0% {
    background-position: center center, 48% 50%;
    background-size: auto, 112% auto;
  }
  100% {
    background-position: center center, 56% 48%;
    background-size: auto, 120% auto;
  }
}

@keyframes servicesLightPulse {
  0%,
  100% {
    filter: saturate(1) brightness(1);
    opacity: 1;
  }
  50% {
    filter: saturate(1.18) brightness(1.12);
    opacity: 0.86;
  }
}

@keyframes servicesTrackSweep {
  from {
    background-position: center, -80% 0, 0 0;
  }
  to {
    background-position: center, 160% 0, 96px 0;
  }
}

@keyframes servicesHaloSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(8deg) scale(1.04);
  }
  to {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes servicesSlideMotion {
  from {
    background-position: 48% 50%;
    transform: scale(1.04);
  }
  to {
    background-position: 54% 48%;
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .drift-video-zone,
  .drift-video-zone::before,
  .drift-video-zone::after,
  .service-photo-rotator::before,
  .service-photo-slide.is-active {
    animation: none;
  }
}

@media (max-width: 980px) {
  .drift-video-zone {
    background:
      linear-gradient(180deg, rgba(8, 9, 11, 0.58), rgba(8, 9, 11, 0.76)),
      url("./assets/optimized/services/services-bg-pro.webp") center center / auto 100% no-repeat,
      #08090b;
  }

  .service-photo-rotator::before {
    inset: -10%;
    opacity: 0.36;
  }

  .service-photo-slide {
    background-position: center center;
    background-size: cover;
  }

  body {
    padding-top: 116px;
  }

  .nav-grid {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 117px 12px auto;
    display: none;
    justify-self: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(8, 9, 11, 0.16);
    padding: 10px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .location-grid,
  .proof-grid,
  .warranty-wrap,
  .review-qr-wrap,
  .section-head {
    grid-template-columns: 1fr;
  }

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

  .pit-crew-mascot,
  .hero-tire {
    justify-self: center;
  }

  .section-head .section-label {
    margin-bottom: -8px;
  }

  .trust-grid,
  .service-grid,
  .before-after-grid,
  .work-gallery-grid,
  .warranty-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card-large {
    grid-column: span 2;
  }

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

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

  .location-copy {
    min-height: auto;
    padding: 8px 0 0;
  }

  .location-card {
    align-self: stretch;
  }
}

@media (max-width: 620px) {
  .service-photo-slide {
    background-size: cover;
  }

  .service-photo-slide.is-active {
    opacity: 0.24;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-top: 68px;
  }

  .container {
    width: min(100% - 22px, 1180px);
  }

  .top-strip {
    display: none;
  }

  .nav-shell {
    top: 0;
  }

  .nav-grid {
    min-height: 68px;
  }

  .brand img {
    width: 86px;
    height: 42px;
    padding: 4px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    inset: 68px 11px auto;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    bottom: 24px;
    opacity: 0.42;
  }

  .hero-grid {
    padding: 34px 0 42px;
  }

  .hero-priority-pills {
    display: grid;
    gap: 8px;
    margin: 8px 0 18px;
  }

  .priority-pill {
    width: 100%;
    justify-content: flex-start;
    min-height: 38px;
    padding: 8px 11px;
    font-size: 12px;
    line-height: 1.2;
  }

  .road-sweep {
    bottom: 4%;
    height: 56px;
    opacity: 0.45;
  }

  .road-streak {
    width: 72%;
    opacity: 0;
  }

  .streak-b {
    display: none;
  }

  .speed-glow {
    width: 75%;
    height: 28%;
    opacity: 0.42;
  }

  .hero-main-logo {
    width: min(300px, 84vw);
    margin-bottom: 14px;
  }

  .hero-main-logo img {
    width: 100%;
    height: auto;
    padding: 0;
  }

  .service-motion {
    gap: 12px;
  }

  .pit-crew-mascot {
    width: 148px;
    height: 140px;
  }

  .hero-tire {
    width: 104px;
    height: 104px;
  }

  .hero-tire::before {
    inset: 16px;
  }

  .tire-rim {
    inset: 35px;
  }

  .safety-strip {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
    padding: 12px;
  }

  .safety-strip div,
  .safety-strip div:first-child,
  .safety-strip div:last-child {
    margin: 0;
  }

  .safety-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  h1 {
    font-size: 46px;
    line-height: 1;
  }

  .hero-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 20px;
  }

  .btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-actions,
  .contact-actions,
  .location-actions,
  .review-qr-actions,
  .work-gallery-actions {
    display: grid;
  }

  .location-copy h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .location-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .location-highlights,
  .location-card-actions {
    grid-template-columns: 1fr;
  }

  .location-highlights span {
    min-height: 58px;
  }

  .map-visual {
    min-height: 230px;
  }

  .location-photo-visual img {
    object-position: center center;
  }

  .location-details {
    padding: 7px;
  }

  .trust-grid,
  .service-grid,
  .feature-list,
  .assurance-grid,
  .before-after-grid,
  .work-gallery-grid,
  .warranty-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .work-card-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .service-card,
  .work-card {
    min-height: auto;
    padding: 18px;
  }

  .service-card h3,
  .work-card strong {
    font-size: 20px;
  }

  .work-card-media {
    min-height: 118px;
    margin-bottom: 14px;
  }

  .feature-copy,
  .proof-copy,
  .warranty-wrap,
  .review-qr-wrap,
  .quote-form,
  .legal-card {
    padding: 20px;
  }

  .photo-stage {
    min-height: 390px;
  }

  .service-process-stage {
    min-height: 420px;
  }

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

  .process-steps div {
    min-height: 82px;
  }

  .floating-whatsapp {
    right: 11px;
    bottom: 11px;
    min-height: 50px;
    padding: 0 14px;
  }

  .floating-review {
    right: 11px;
    bottom: 73px;
  }

  .floating-discount {
    right: 11px;
    bottom: 124px;
    min-height: 48px;
    min-width: 96px;
    padding: 7px 12px;
  }

  .floating-discount strong {
    font-size: 14px;
  }

  .floating-discount span {
    font-size: 10px;
  }

  .qr-modal {
    padding: 10px;
  }

  .qr-modal-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .qr-modal-copy,
  .discount-offer,
  .promo-form,
  .qr-print-card {
    grid-column: auto;
    grid-row: auto;
  }

  .discount-offer {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    padding: 16px;
  }

  .discount-badge {
    width: 76px;
  }

  .discount-offer h3 {
    font-size: 21px;
  }

  .discount-timer {
    justify-items: start;
    min-width: 0;
  }

  .qr-print-card img {
    max-width: 280px;
  }

  .qr-modal-actions {
    display: grid;
  }
}


/* JR visitor-flow corrections, September 2026. Preserve the original red/metal identity. */
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid #ffce66; outline-offset: 4px; }
.nav-shell :focus-visible, .legal-card :focus-visible { outline-color: #9c0010; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 300; padding: 12px 18px; background: #fff; color: #111; }
.skip-link:focus { top: 10px; }
.hero-grid { padding: 54px 0 66px; }
.hero-copy { max-width: 760px; }
.hero-main-logo { width: min(350px, 70vw); margin-bottom: 18px; }
.hero-location { color: #fff; margin: 0 0 12px; }
.hero h1 { max-width: 760px; margin: 0 0 20px; color: #fff; font-size: clamp(32px, 4.3vw, 58px); line-height: 1.08; letter-spacing: -0.025em; text-wrap: balance; text-transform: none; }
.hero-text { max-width: 650px; margin: 0 0 24px; font-size: 19px; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.hero-call { color: #fff; display: inline-flex; align-items: center; min-height: 44px; text-decoration: underline; text-underline-offset: 4px; }
.video-toggle { display: inline-flex; align-items: center; min-height: 44px; margin-top: 18px; padding: 10px 14px; border: 1px solid #ffffff66; border-radius: 8px; background: #08090bcc; color: #fff; cursor: pointer; font: inherit; font-size: 13px; }
.btn-whatsapp { color: #fff; background: #087842; }
.form-note { font-size: 14px; line-height: 1.55; }
.form-note a { text-decoration: underline; text-underline-offset: 3px; }
.form-status { margin: 0; font-size: 15px; line-height: 1.5; }
.form-status:empty { display: none; }
.form-status[data-state] { padding: 12px; border-radius: 8px; border: 1px solid #81909e; background: #111820; color: #fff; }
.form-status[data-state="error"] { border-color: #fcb6b6; background: #431b22; }
.form-status[data-state="success"] { border-color: #91d3b3; background: #123b29; }
button:disabled { opacity: 0.65; cursor: default; transform: none; }
.quote-form input, .quote-form textarea, .quote-form select, .promo-fields input { font-size: 16px; }
.quote-form input, .quote-form select, .promo-fields input { min-height: 46px; }
.quote-form .form-note { color: #d5dbe2; }
.promo-card .form-note { margin-top: 16px; }
.promo-dialog { width: min(600px, calc(100% - 28px)); max-height: calc(100dvh - 32px); margin: auto; padding: 28px; border: 1px solid #ffffff40; border-radius: 18px; background: linear-gradient(145deg, #38151b, #11151a 50%); color: #fff; box-shadow: 0 24px 80px #0009; overflow: auto; overscroll-behavior: contain; }
.promo-dialog::backdrop { background: #030508c9; backdrop-filter: blur(5px); }
.promo-dialog .qr-modal-copy { padding-right: 28px; }
.promo-dialog h2 { font-size: clamp(25px, 3vw, 32px); line-height: 1.15; margin: 0 0 12px; }
.promo-dialog .section-label { color: #ffbac1; }
.promo-dialog .qr-modal-copy p { margin-top: 0; }
.promo-dialog .promo-form { padding: 0; border: 0; background: none; }
.promo-dialog .qr-modal-close { width: 44px; height: 44px; }
.promo-dialog .subscribe-consent { font-size: 14px; font-weight: 400; line-height: 1.5; }
.promo-dialog .subscribe-consent input { width: 20px; height: 20px; accent-color: #c60011; }
body.promo-open { overflow: hidden; }
.site-footer { padding-bottom: 100px; }
.service-card, .work-card { content-visibility: auto; contain-intrinsic-size: auto 330px; }
.legal-page .nav-links { display: flex; position: static; flex-wrap: wrap; }
.legal-page .nav-grid { grid-template-columns: auto 1fr; }
.legal-page .nav-cta { display: none; }

@media (max-width: 980px) {
  .legal-page { padding-top: 130px; }
  .legal-page .nav-grid { grid-template-columns: 1fr; gap: 0; padding-block: 8px; }
  .legal-page .nav-links { justify-self: start; padding: 0; border: 0; box-shadow: none; gap: 4px; }
  .legal-page .nav-links a { padding-inline: 8px; }
}
@media (max-width: 640px) {
  .hero-grid { padding: 30px 0 36px; }
  .hero-main-logo { width: min(240px, 70vw); }
  .hero-location { font-size: 12px; }
  .hero-text { font-size: 16px; line-height: 1.55; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .hero-call { grid-column: 1 / -1; }
  .hero-actions .btn { min-height: 48px; padding: 8px; }
  body:not(.legal-page) { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .floating-whatsapp { left: 0; right: 0; bottom: 0; width: 100%; min-height: 60px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); border-radius: 0; background: #087842; box-shadow: 0 -5px 20px #0004; }
  body.promo-open .floating-whatsapp, body.menu-open .floating-whatsapp { visibility: hidden; }
  html { scroll-padding-bottom: 76px; }
  .promo-dialog { padding: 22px 18px; max-height: calc(100dvh - 24px); }
  .promo-dialog .promo-fields { grid-template-columns: 1fr; }
  .promo-dialog .qr-modal-copy { padding-right: 26px; }
  .promo-dialog .qr-modal-close { right: 6px; top: 6px; }
  .site-footer { padding-bottom: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Preserve the original video-overlay and pit-cart effects requested by the owner. */
  *:not(.hero-motion, .hero-motion *, .pit-crew-mascot, .pit-crew-mascot *),
  *:not(.hero-motion, .hero-motion *, .pit-crew-mascot, .pit-crew-mascot *)::before,
  *:not(.hero-motion, .hero-motion *, .pit-crew-mascot, .pit-crew-mascot *)::after { animation: none !important; }
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media print {
  .nav-shell, .top-strip, .floating-whatsapp, .promo-dialog, .video-toggle { display: none !important; }
  body { padding: 0; }
  .reveal { opacity: 1; transform: none; }
}

/* Compact review invitation and independent promotion. */
#confianza .proof-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; align-items: start; }
#confianza .reviews-panel { display: grid; grid-template-columns: minmax(0, 1fr) 200px; gap: 36px; align-items: center; padding: 30px 32px; }
#confianza .reviews-copy { min-width: 0; }
#confianza .section-label { margin: 0 0 10px; }
#confianza .reviews-copy h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; }
#confianza .reviews-copy > p:not(.section-label) { max-width: 65ch; margin: 0; }
.reviews-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 14px; }
#confianza .btn { white-space: normal; text-align: center; }
#confianza #review-instructions { font-size: .84rem; line-height: 1.6; color: #b9c1cb; }
.reviews-qr-details { min-width: 0; padding-left: 24px; border-left: 1px solid #ffffff26; }
.reviews-qr-details summary { cursor: pointer; font-size: .85rem; font-weight: 700; color: #edf0f4; padding: 10px 0; }
.reviews-qr-details summary:focus-visible, .google-review-qr a:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
.google-review-qr { display: grid; gap: 12px; justify-items: start; padding-top: 8px; }
.google-review-qr img { display: block; width: 160px; max-width: 100%; height: auto; background: #fff; }
.google-review-qr a { color: #e0e5eb; font-size: .8rem; text-decoration: underline; text-underline-offset: 3px; line-height: 1.5; padding: 5px 0; }
#confianza .promo-strip { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 32px; }
#confianza .promo-strip h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0 0 8px; line-height: 1.2; }
#confianza .promo-strip h2 span { color: #fff; font-size: 1.4em; }
#confianza .promo-strip-copy > p:last-child { margin: 0; font-size: .9rem; }
.promo-strip-actions { flex-shrink: 0; text-align: center; }
#confianza .promo-strip-actions .form-note { font-size: .78rem; margin: 8px 0 0; }
@media (max-width: 700px) {
  #confianza .reviews-panel { grid-template-columns: minmax(0, 1fr); gap: 20px; padding: 24px 20px; }
  .reviews-actions { flex-direction: column; }
  .reviews-qr-details { border-left: 0; border-top: 1px solid #ffffff26; padding: 8px 0 0; }
  #confianza .promo-strip { flex-direction: column; align-items: stretch; gap: 18px; padding: 24px 20px; }
  .promo-strip-actions .btn { width: 100%; }
}

/* Entire service cards are native WhatsApp links, including without JavaScript. */
a.service-card { display: block; cursor: pointer; text-decoration: none; }
a.service-card:focus-visible { outline: 3px solid #fff; outline-offset: 4px; border-color: var(--red); }
.service-whatsapp-hint { display: block; margin-top: 18px; color: #fff; font-size: .85rem; font-weight: 700; }

/* Compact business header with a persistent WhatsApp action. */
.site-header .nav-grid { gap: 18px; }
.site-header .brand img { width: 112px; }
.site-header .brand small { display: none; }
.site-header .nav-links { gap: 2px; }
.site-header .nav-links a { padding-inline: 10px; }
.site-header .nav-cta { display: inline-flex; gap: 8px; background: #167a43; border-color: #116636; box-shadow: 0 6px 18px #167a4326; white-space: nowrap; }
.site-header .nav-cta:hover { background: #116636; }
.site-header .nav-cta img { width: 21px; height: 21px; }
.header-cta-mobile { display: none; }
@media (max-width: 980px) {
  .site-header .nav-grid { grid-template-columns: minmax(0, 1fr) auto auto; gap: 12px; }
  .site-header .brand { grid-column: 1; grid-row: 1; }
  .site-header .nav-cta { grid-column: 2; grid-row: 1; padding-inline: 12px; }
  .site-header .menu-toggle { grid-column: 3; grid-row: 1; }
  .header-cta-desktop { display: none; }
  .header-cta-mobile { display: inline; }
}
@media (max-width: 640px) {
  .site-header .brand img { width: 82px; height: 44px; }
  .site-header .brand > span { display: none; }
  .site-header .nav-grid { gap: 8px; }
  .site-header .nav-cta { min-height: 42px; font-size: 12px; padding-inline: 10px; }
}

/* Graphite header with restrained red illumination. */
.site-header .top-strip { background: #080a0e; border-bottom: 1px solid #ffffff0d; color: #c7cdd6; }
.site-header .nav-shell { isolation: isolate; color: #f4f6fa; border-bottom: 1px solid #ffffff1c; background: radial-gradient(ellipse at 12% 0%, #ab132738, transparent 46%), linear-gradient(110deg, #181c24f5, #0c0f15f5 70%); backdrop-filter: blur(18px); box-shadow: 0 10px 30px #0005; }
.site-header .nav-shell::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; pointer-events: none; background: linear-gradient(90deg, transparent 0%, #e30613 43%, #ffb8bd 50%, #e30613 57%, transparent 100%); background-size: 35% 100%; background-repeat: no-repeat; animation: headerLightPass 8s ease-in-out infinite; opacity: .8; }
.site-header .brand { gap: 12px; }
.site-header .brand img { background: linear-gradient(145deg, #fff, #dce0e6); border: 1px solid #ffffff40; border-radius: 9px; padding: 5px 7px; height: 48px; box-shadow: 0 3px 14px #0004; }
.site-header .brand strong { color: #f5f7fa; letter-spacing: -.25px; }
.site-header .nav-links { color: #d7dce5; }
.site-header .nav-links a { position: relative; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.site-header .nav-links a::after { content: ""; position: absolute; bottom: 4px; left: 12px; right: 12px; height: 2px; background: #ed263c; transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.site-header .nav-links a:hover, .site-header .nav-links a:focus-visible { color: #fff; background: #ffffff09; border-color: #ffffff12; }
.site-header .nav-links a:hover::after, .site-header .nav-links a:focus-visible::after { transform: scaleX(1); }
.site-header .nav-cta { background: linear-gradient(135deg, #157b45, #0e6037); border: 1px solid #65d49250; box-shadow: 0 4px 18px #0c80432b, inset 0 1px #ffffff16; }
.site-header .nav-cta:hover { background: linear-gradient(135deg, #198b4f, #126e40); box-shadow: 0 5px 22px #20b66a38; }
.site-header .menu-toggle { background: #ffffff08; border-color: #ffffff30; }
.site-header .menu-toggle span { background: #f4f6fa; }
.site-header .brand:focus-visible, .site-header .nav-cta:focus-visible, .site-header .menu-toggle:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
@keyframes headerLightPass { 0%, 15% { background-position: -60% 0; opacity: .25; } 50% { opacity: .9; } 85%, 100% { background-position: 160% 0; opacity: .25; } }
@media (max-width: 980px) {
  .site-header .nav-links { background: #141820fa; border-color: #ffffff26; box-shadow: 0 20px 42px #0008; padding: 12px; }
  .site-header .nav-links a { min-height: 44px; }
}
@media (max-width: 640px) {
  .site-header .brand img { height: 42px; border-radius: 7px; padding: 4px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .nav-shell::after { animation: none; background-position: 20% 0; opacity: .65; }
}

.crm-registration-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 32px; background: #161a20; border: 1px solid #ffffff25; border-radius: 10px; color: #f4f6fa; }
.crm-registration-panel h2 { color: #fff; }
[data-crm-registration] { display: grid; gap: 14px; min-width: 0; }
[data-crm-registration] label:not(.crm-consent) { display: grid; gap: 6px; }
[data-crm-registration] input:not([type="checkbox"]) { width: 100%; min-height: 44px; padding: 10px; border-radius: 7px; border: 1px solid #bbb; background: #fff; color: #161a20; font: inherit; }
.crm-consent { display: flex; gap: 10px; align-items: start; font-size: .88rem; }
.crm-consent input { margin-top: 5px; flex-shrink: 0; }
[data-crm-registration] .crm-honeypot { display: none !important; }
[data-crm-registration] [role="status"] { margin: 0; font-size: .9rem; }
[data-crm-registration] a { text-decoration: underline; }
@media(max-width:700px) { .crm-registration-panel { grid-template-columns: minmax(0,1fr); padding: 24px 20px; gap: 20px; } }
.crm-registration-panel .section-label { color: #ffb3bc; }
