/* Alex Mobile Mechanic Services — Landing v2 */

:root {
  /* Chicha / neón latino palette */
  --bg: #050505;
  --bg-alt: #070B1A;
  --bg-card: #0a0e1a;
  --bg-card-hover: #0f1528;
  --green: #39FF14;
  --green-dim: rgba(57, 255, 20, 0.14);
  --green-border: rgba(57, 255, 20, 0.45);
  --green-glow: rgba(57, 255, 20, 0.35);
  --yellow: #FFF200;
  --yellow-dim: rgba(255, 242, 0, 0.12);
  --fuchsia: #FF007F;
  --fuchsia-dim: rgba(255, 0, 127, 0.14);
  --orange: #FF6A00;
  --orange-dim: rgba(255, 106, 0, 0.14);
  --electric-blue: #003CFF;
  --electric-blue-dim: rgba(0, 60, 255, 0.14);
  --cyan: #00B4FF;
  --cyan-dim: rgba(0, 180, 255, 0.14);
  --purple: #8F00FF;
  --purple-bright: #A020F0;
  --purple-dim: rgba(143, 0, 255, 0.14);
  --red: #FF1E1E;
  --red-dim: rgba(255, 30, 30, 0.14);
  --white: #FFFFFF;
  --text-secondary: #d4d8e4;
  --muted: #b4bbd0;
  --wa: #39FF14;
  --font-display: 'Archivo Black', Impact, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 68px;
  --section-pad: clamp(4rem, 8vw, 6rem);
  --container: min(1140px, 100% - 2.5rem);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glow-sm: 0 0 16px;
  --glow-md: 0 0 28px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

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

/* ── Reveal animations (opacity + transform only) ── */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

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

.hero__content.hero--pending > .hero__brand,
.hero__content.hero--pending > .hero__title,
.hero__content.hero--pending > .hero__subtitle,
.hero__content.hero--pending > .hero__badges,
.hero__content.hero--pending > .hero__cta,
.hero__content.hero--pending > .hero__review,
.hero__content.hero--pending > .hero__tags {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.hero__content.hero--pending > .hero__brand { transition-delay: 0.05s; }
.hero__content.hero--pending > .hero__title { transition-delay: 0.12s; }
.hero__content.hero--pending > .hero__subtitle { transition-delay: 0.19s; }
.hero__content.hero--pending > .hero__badges { transition-delay: 0.26s; }
.hero__content.hero--pending > .hero__cta { transition-delay: 0.33s; }
.hero__content.hero--pending > .hero__review { transition-delay: 0.4s; }
.hero__content.hero--pending > .hero__tags { transition-delay: 0.47s; }

.hero__content.hero--pending > .hero__brand,
.hero__content.hero--pending > .hero__title,
.hero__content.hero--pending > .hero__subtitle,
.hero__content.hero--pending > .hero__badges,
.hero__content.hero--pending > .hero__cta,
.hero__content.hero--pending > .hero__review,
.hero__content.hero--pending > .hero__tags,
.hero__content.hero--ready > .hero__brand,
.hero__content.hero--ready > .hero__title,
.hero__content.hero--ready > .hero__subtitle,
.hero__content.hero--ready > .hero__badges,
.hero__content.hero--ready > .hero__cta,
.hero__content.hero--ready > .hero__review,
.hero__content.hero--ready > .hero__tags {
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__content.hero--ready > .hero__brand,
.hero__content.hero--ready > .hero__title,
.hero__content.hero--ready > .hero__subtitle,
.hero__content.hero--ready > .hero__badges,
.hero__content.hero--ready > .hero__cta,
.hero__content.hero--ready > .hero__review,
.hero__content.hero--ready > .hero__tags {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

html.reduce-motion .reveal,
html.reduce-motion .hero__content > *,
html.reduce-motion .header__nav .header__links a,
html.reduce-motion .header__nav .header__actions > * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .header__nav,
  .header__nav.is-open {
    transition: none !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(5rem + var(--safe-bottom));
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--green);
  color: #000;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

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

:focus:not(:focus-visible) {
  outline: none;
}

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

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

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

/* Sections */
.section--dark {
  background: var(--bg);
}
.section--alt {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.section-header { margin-bottom: 2.5rem; max-width: 640px; }
.section-header--center { margin-inline: auto; text-align: center; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(255, 242, 0, 0.25);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 52ch;
}
.section-header--center .section-lead { margin-inline: auto; }

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--green);
  color: #050505;
  border-color: var(--green);
  box-shadow: 0 4px 20px var(--green-glow), 0 0 24px rgba(57, 255, 20, 0.2);
  font-weight: 800;
}
.btn--primary:hover {
  box-shadow: 0 6px 32px rgba(57, 255, 20, 0.5), 0 0 40px rgba(57, 255, 20, 0.25);
  color: #050505;
  background: #4dff2e;
}
.btn--secondary {
  background: rgba(255, 0, 127, 0.08);
  color: var(--white);
  border-color: var(--fuchsia);
  box-shadow: 0 0 12px rgba(255, 0, 127, 0.15);
}
.btn--secondary:hover {
  border-color: var(--yellow);
  background: rgba(255, 242, 0, 0.1);
  box-shadow: 0 0 24px rgba(255, 242, 0, 0.2);
  color: var(--white);
}
.btn--maps {
  background: #FF7A00;
  color: #ffffff;
  border-color: #FF9833;
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.35), 0 0 20px rgba(255, 122, 0, 0.2);
  font-weight: 700;
}
.btn--maps:hover {
  background: #FF8F26;
  border-color: #FFB366;
  color: #ffffff;
  box-shadow: 0 6px 28px rgba(255, 122, 0, 0.5), 0 0 32px rgba(255, 122, 0, 0.3);
}
.btn--header {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  background: var(--green);
  color: #000;
  border-color: var(--green);
  font-weight: 700;
}
.btn--header:hover { color: #000; box-shadow: 0 0 16px rgba(57, 255, 20, 0.4); }
.btn--lg { padding: 1rem 1.75rem; font-size: 1rem; min-width: 200px; }

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: calc(1.25rem + var(--safe-bottom));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  z-index: 900;
  width: 56px;
  height: 56px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #050505;
  border-radius: 50%;
  border: 2px solid var(--green);
  box-shadow: 0 4px 24px var(--green-glow), 0 0 32px rgba(57, 255, 20, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover {
  transform: scale(1.08);
  color: #050505;
  box-shadow: 0 6px 36px rgba(57, 255, 20, 0.55), 0 0 48px rgba(57, 255, 20, 0.3);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.35);
  box-shadow: 0 4px 24px rgba(0, 60, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.header__logo { border-radius: 6px; object-fit: contain; flex-shrink: 0; }
.header__brand--logo-only {
  gap: 0;
}
.header__name {
  display: none;
}

/* Marca con logo oficial */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-mark__logo {
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: contain;
}
.brand-mark__text {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  line-height: 1.25;
}
.brand-mark--hero {
  margin-bottom: 1rem;
}
.brand-mark--hero .hero__brand {
  margin-bottom: 0;
  text-align: left;
}
.brand-mark--contact {
  margin-bottom: 1rem;
}
.brand-mark--footer {
  align-items: flex-start;
}
.brand-mark--footer .brand-mark__logo {
  margin-top: 0.15rem;
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  z-index: 1050;
  background: rgba(0, 0, 0, 0.75);
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}
.nav-backdrop.is-visible {
  display: block;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden;
}

.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.header__toggle span {
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.header__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.header__links a:hover { color: var(--yellow); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang {
  display: flex;
  border: 1px solid rgba(255, 242, 0, 0.35);
  border-radius: 6px;
  overflow: hidden;
}
.nav-panel__label {
  display: none;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin: 0;
}

.lang__btn {
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: inherit;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang__btn.is-active {
  background: var(--green-dim);
  color: var(--green);
}
.lang__btn:hover:not(.is-active) { color: var(--white); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(5, 5, 5, 0.94) 0%,
      rgba(7, 11, 26, 0.88) 35%,
      rgba(0, 60, 255, 0.22) 65%,
      rgba(143, 0, 255, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__brand {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 1rem;
}

.hero__brand--solo {
  font-size: clamp(0.95rem, 2.8vw, 1.125rem);
  line-height: 1.35;
  text-shadow: 0 0 18px var(--green-glow);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 30px rgba(255, 242, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero__title-line {
  display: block;
}

.hero__title-line--mobile {
  display: none;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--white);
  max-width: 54ch;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(7, 11, 26, 0.8);
  border: 1px solid rgba(255, 242, 0, 0.25);
  border-radius: 100px;
}
.pill--accent {
  border-color: var(--fuchsia);
  color: var(--white);
  background: rgba(255, 0, 127, 0.12);
  box-shadow: 0 0 14px rgba(255, 0, 127, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pill--accent:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 242, 0, 0.35);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.hero__review {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 1.25rem 1rem 0.65rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(57, 255, 20, 0.25);
  letter-spacing: 0.02em;
  line-height: 1.45;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
  transition: color 0.2s ease, transform 0.2s ease, text-shadow 0.2s ease, border-color 0.2s ease;
}
.hero__review:hover {
  color: var(--green);
  border-top-color: rgba(57, 255, 20, 0.45);
  transform: translateY(-2px);
  text-shadow: 0 0 18px var(--green-glow);
}

.hero__tags {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.02em;
  padding-top: 0.85rem;
  margin-top: 0.85rem;
  max-width: 100%;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

/* ── TRUST ── */
.trust {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, #050505 0%, #070B1A 50%, rgba(0, 60, 255, 0.12) 100%);
  border-bottom: 1px solid rgba(0, 60, 255, 0.2);
}

.trust__item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(10, 14, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.trust__item:hover {
  transform: translateY(-2px);
}
.trust__item:nth-child(1) {
  --item-accent: var(--green);
  border-color: rgba(57, 255, 20, 0.35);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.08);
}
.trust__item:nth-child(1):hover { box-shadow: 0 0 28px rgba(57, 255, 20, 0.2); }
.trust__item:nth-child(2) {
  --item-accent: var(--yellow);
  border-color: rgba(255, 242, 0, 0.35);
  box-shadow: 0 0 20px rgba(255, 242, 0, 0.06);
}
.trust__item:nth-child(2):hover { box-shadow: 0 0 28px rgba(255, 242, 0, 0.15); }
.trust__item:nth-child(3) {
  --item-accent: var(--fuchsia);
  border-color: rgba(255, 0, 127, 0.35);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.06);
}
.trust__item:nth-child(3):hover { box-shadow: 0 0 28px rgba(255, 0, 127, 0.15); }
.trust__item:nth-child(4) {
  --item-accent: #ffffff;
  border-color: rgba(56, 232, 255, 0.55);
  background: rgba(12, 20, 36, 0.88);
  box-shadow:
    0 0 24px rgba(56, 232, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.trust__item:nth-child(4):hover {
  border-color: rgba(56, 232, 255, 0.75);
  box-shadow:
    0 0 32px rgba(56, 232, 255, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.trust__item:nth-child(4) .trust__label {
  color: #ffffff;
  text-shadow:
    0 0 14px rgba(56, 232, 255, 0.5),
    0 0 24px rgba(255, 255, 255, 0.25);
}
.trust__item:nth-child(4) p:not(.trust__label) {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.trust__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(5, 5, 5, 0.8);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--green-dim);
}
.trust__item:nth-child(2) .trust__icon { border-color: rgba(255, 242, 0, 0.45); box-shadow: 0 0 16px var(--yellow-dim); }
.trust__item:nth-child(3) .trust__icon { border-color: rgba(255, 0, 127, 0.45); box-shadow: 0 0 16px var(--fuchsia-dim); }
.trust__item:nth-child(4) .trust__icon {
  border-color: rgba(255, 242, 0, 0.55);
  background: rgba(8, 14, 28, 0.95);
  box-shadow:
    0 0 18px rgba(255, 242, 0, 0.35),
    0 0 12px rgba(56, 232, 255, 0.25);
  filter: drop-shadow(0 0 8px rgba(255, 242, 0, 0.45));
}

.trust__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--item-accent, var(--yellow));
  margin-bottom: 0.25rem;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.trust__item p {
  font-size: 0.8125rem;
  color: var(--item-accent, var(--text-secondary));
  opacity: 0.92;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* ── MOBILE INTRO (cartel chicha) ── */
.mobile-intro {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.mobile-intro__text {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: linear-gradient(145deg, #070B1A 0%, #050505 100%);
  border: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 2px var(--fuchsia),
    0 0 0 5px var(--green),
    0 12px 40px rgba(0, 0, 0, 0.65),
    0 0 32px rgba(255, 242, 0, 0.08);
  position: relative;
}

.mobile-intro__text .section-heading {
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(255, 242, 0, 0.35);
}

.mobile-intro__text .section-lead {
  color: var(--fuchsia);
}

.mobile-intro__text .check-list li {
  color: var(--green);
}

.mobile-intro__text .check-list li::before {
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
}

.mobile-intro__visual img {
  border-radius: var(--radius-lg);
  border: 3px solid var(--fuchsia);
  box-shadow:
    0 0 0 2px var(--yellow),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(255, 0, 127, 0.15);
}

.check-list {
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 0.9375rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
}
.check-list--spaced li { margin-bottom: 0.65rem; }

.mobile-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mobile-intro__text .check-list { margin-top: 1.5rem; }

/* ── SERVICES ── */
.services {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #050505 100%);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.svc-card {
  background: rgba(10, 14, 26, 0.85);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.services .section-lead {
  color: var(--cyan);
}

/* Tarjetas de servicio — acento neón por tipo */
/* Tarjetas de servicio — color por tipo (hex oficial) */
.svc-card:nth-child(1) {
  --card-accent: #F3FFF8;
  --card-dim: rgba(243, 255, 248, 0.35);
  --card-btn-text: #050505;
  border-color: rgba(243, 255, 248, 0.45);
}
.svc-card:nth-child(1) .svc-card__title,
.svc-card:nth-child(1) .svc-card__list li {
  color: #F3FFF8;
  text-shadow: 0 0 12px rgba(243, 255, 248, 0.55), 0 0 24px rgba(243, 255, 248, 0.25);
}
.svc-card:nth-child(1) .svc-card__list li::before {
  color: #F3FFF8;
}
.svc-card:nth-child(2) {
  --card-accent: #FFC400;
  --card-accent-soft: #FFE082;
  --card-dim: rgba(255, 196, 0, 0.22);
  --card-btn-text: #050505;
  border-color: rgba(255, 196, 0, 0.5);
}
.svc-card:nth-child(2) .svc-card__list li {
  color: var(--card-accent-soft);
}
.svc-card:nth-child(2) .svc-card__list li::before {
  color: var(--card-accent);
}
.svc-card:nth-child(3) {
  --card-accent: #FF6A00;
  --card-dim: rgba(255, 106, 0, 0.22);
  --card-btn-text: #050505;
  border-color: rgba(255, 106, 0, 0.5);
}
.svc-card:nth-child(4) {
  --card-accent: #FF1F2D;
  --card-dim: rgba(255, 31, 45, 0.22);
  --card-btn-text: #fff;
  border-color: rgba(255, 31, 45, 0.5);
}
.svc-card:nth-child(5) {
  --card-accent: #FFE600;
  --card-dim: rgba(255, 230, 0, 0.2);
  --card-btn-text: #050505;
  border-color: rgba(255, 230, 0, 0.45);
}
.svc-card:nth-child(6) {
  --card-accent: #38E8FF;
  --card-dim: rgba(56, 232, 255, 0.22);
  --card-btn-text: #050505;
  border-color: rgba(56, 232, 255, 0.5);
}
.svc-card:nth-child(7) {
  --card-accent: #39FF14;
  --card-dim: rgba(57, 255, 20, 0.22);
  --card-btn-text: #050505;
  border-color: rgba(57, 255, 20, 0.5);
}
.svc-card:nth-child(8) {
  --card-accent: #9B1CFF;
  --card-dim: rgba(155, 28, 255, 0.22);
  --card-btn-text: #fff;
  border-color: rgba(155, 28, 255, 0.5);
}
.svc-card:nth-child(9) {
  --card-accent: #FFD700;
  --card-dim: rgba(255, 215, 0, 0.22);
  --card-btn-text: #050505;
  border-color: rgba(255, 215, 0, 0.5);
}
.svc-card:nth-child(10) {
  --card-accent: #00E5FF;
  --card-dim: rgba(0, 229, 255, 0.22);
  --card-btn-text: #050505;
  border-color: rgba(0, 229, 255, 0.5);
}

.svc-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  border-color: var(--card-accent, var(--green));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 32px var(--card-dim, var(--green-dim));
}

.svc-card--urgent { --card-accent: #FF1F2D; --card-dim: rgba(255, 31, 45, 0.22); --card-btn-text: #fff; }
.svc-card--diesel { --card-accent: #9B1CFF; --card-dim: rgba(155, 28, 255, 0.22); --card-btn-text: #fff; }

.svc-card__icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px var(--card-accent, var(--green)));
}

.svc-card__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--card-accent, var(--green));
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.25;
  text-shadow: 0 0 16px var(--card-dim, var(--green-dim));
}

.svc-card__list {
  list-style: none;
  flex: 1;
  margin-bottom: 1rem;
}
.svc-card__list li {
  font-size: 0.875rem;
  color: var(--card-accent, var(--green));
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.35rem;
  opacity: 0.95;
}
.svc-card__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--card-accent, var(--green));
}

.svc-card__footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.svc-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 800;
  text-align: center;
  color: var(--card-btn-text, #050505);
  background: var(--card-accent, var(--green));
  border: 2px solid var(--card-accent, var(--green));
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 0 16px var(--card-dim, var(--green-dim));
}
.svc-card__btn:hover {
  color: var(--card-btn-text, #050505);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px var(--card-dim, var(--green-dim));
  filter: brightness(1.08);
}

/* ── TRAILER ── */
.trailer {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(143, 0, 255, 0.06) 100%);
  border-top: 1px solid rgba(255, 106, 0, 0.2);
  border-bottom: 1px solid rgba(143, 0, 255, 0.2);
}

.trailer__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.trailer__content .section-heading { margin-bottom: 0.75rem; }
.trailer__content .section-lead { color: var(--orange); }
.trailer__content .check-list li { color: var(--fuchsia); }
.trailer__content .check-list li::before {
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
}
.trailer__content .check-list { margin: 1.5rem 0; }

.trailer__price {
  font-size: 0.9375rem;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 12px rgba(255, 242, 0, 0.2);
}

.trailer__media img {
  border-radius: var(--radius-lg);
  border: 3px solid var(--purple);
  box-shadow: 0 0 40px var(--purple-dim), 0 0 0 2px rgba(255, 242, 0, 0.3);
}

/* ── GALLERY ── */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  max-width: 1080px;
  margin-inline: auto;
}

.gallery__item:nth-child(1) { grid-column: 1 / span 2; }
.gallery__item:nth-child(2) { grid-column: 3 / span 2; }
.gallery__item:nth-child(3) { grid-column: 5 / span 2; }
.gallery__item:nth-child(4) { grid-column: 2 / span 2; }
.gallery__item:nth-child(5) { grid-column: 4 / span 2; }

.gallery__item { margin: 0; }

.gallery__img-wrap {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--fuchsia);
  aspect-ratio: 4 / 3;
  margin-bottom: 0.75rem;
  cursor: pointer;
  background: var(--bg-card);
  font: inherit;
  color: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery__item:nth-child(2) .gallery__img-wrap { border-color: var(--yellow); }
.gallery__item:nth-child(3) .gallery__img-wrap { border-color: var(--green); }
.gallery__item:nth-child(4) .gallery__img-wrap { border-color: var(--electric-blue); }
.gallery__item:nth-child(5) .gallery__img-wrap { border-color: var(--purple); }

.gallery__item:hover .gallery__img-wrap {
  box-shadow: 0 0 28px rgba(255, 0, 127, 0.25);
  transform: translateY(-2px);
}
.gallery__item:nth-child(2):hover .gallery__img-wrap { box-shadow: 0 0 28px rgba(255, 242, 0, 0.25); }
.gallery__item:nth-child(3):hover .gallery__img-wrap { box-shadow: 0 0 28px var(--green-glow); }
.gallery__item:nth-child(4):hover .gallery__img-wrap { box-shadow: 0 0 28px rgba(0, 60, 255, 0.3); }
.gallery__item:nth-child(5):hover .gallery__img-wrap { box-shadow: 0 0 28px var(--purple-dim); }
.gallery__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  pointer-events: none;
}
.gallery__item:hover .gallery__img-wrap img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  border: none;
  cursor: pointer;
  padding: 0;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--white);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox__close:hover {
  border-color: var(--green);
  color: var(--green);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(95vw, 1100px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 2px solid var(--green-border);
  box-shadow: 0 0 40px var(--green-dim);
}

.gallery__item:nth-child(1) figcaption { color: var(--fuchsia); }
.gallery__item:nth-child(2) figcaption { color: var(--yellow); }
.gallery__item:nth-child(3) figcaption { color: var(--green); }
.gallery__item:nth-child(4) figcaption { color: var(--electric-blue); }
.gallery__item:nth-child(5) figcaption { color: var(--purple); }

.gallery__item figcaption {
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}

.services__toggle {
  border-color: rgba(255, 242, 0, 0.45);
  color: var(--white);
  background: rgba(7, 11, 26, 0.8);
}
.services__toggle:hover {
  border-color: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 242, 0, 0.15);
}

.gallery__more-wrap {
  margin-top: 1.75rem;
  text-align: center;
}

.gallery__grid:not(:has(.gallery__item--extra)) + .gallery__more-wrap {
  display: none;
}

.gallery__more-btn {
  min-width: min(100%, 280px);
  border-color: rgba(255, 0, 127, 0.45);
  color: var(--fuchsia);
  background: rgba(7, 11, 26, 0.8);
}

.gallery__more-btn:hover {
  border-color: var(--fuchsia);
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.15);
  color: var(--fuchsia);
}

.steps .section-lead { color: var(--cyan); }
.gallery .section-lead { color: var(--fuchsia); }

/* ── STEPS ── */
.steps {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.step-card {
  background: rgba(10, 14, 26, 0.85);
  border: 1px solid rgba(0, 60, 255, 0.25);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.step-card:nth-child(1) { --step-accent: var(--electric-blue); }
.step-card:nth-child(2) { --step-accent: var(--green); }
.step-card:nth-child(3) { --step-accent: var(--yellow); }
.step-card:nth-child(4) { --step-accent: var(--fuchsia); }
.step-card:hover {
  border-color: var(--step-accent, var(--green));
  box-shadow: 0 0 24px var(--green-dim);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--step-accent, var(--green));
  opacity: 0.85;
}

.step-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px var(--step-accent, var(--green)));
}

.step-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--step-accent, var(--green));
  line-height: 1.35;
}

/* ── CONTACT ── */
.contact {
  padding: var(--section-pad) 0;
  background:
    linear-gradient(145deg, rgba(57, 255, 20, 0.08) 0%, rgba(5, 5, 5, 0.95) 35%, rgba(0, 60, 255, 0.12) 100%),
    var(--bg-alt);
  border-top: 2px solid rgba(57, 255, 20, 0.25);
  border-bottom: 2px solid rgba(0, 60, 255, 0.2);
  box-shadow: inset 0 0 80px rgba(57, 255, 20, 0.04);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}

.contact__location {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin: 0.5rem 0 1.5rem;
  transition: color 0.2s, text-shadow 0.2s;
  text-shadow: 0 0 24px rgba(255, 242, 0, 0.25);
}
.contact__phone:hover {
  color: var(--green);
  text-shadow: 0 0 32px var(--green-glow);
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact__note {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  max-width: 40ch;
  margin-bottom: 1.25rem;
}

.contact__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(24, 119, 242, 0.45);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.contact__social-btn:hover {
  color: var(--white);
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.7);
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.2);
}
.contact__social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #1877f2;
}

.contact__qr-card {
  background: rgba(10, 14, 26, 0.9);
  border: 2px solid #FF7A00;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  min-width: 260px;
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.22), 0 0 0 2px rgba(255, 152, 51, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__qr-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #FF7A00;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(255, 122, 0, 0.45), 0 0 24px rgba(255, 152, 51, 0.25);
  width: 100%;
}

.contact__qr-wrap {
  background: transparent;
  padding: 0;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.contact__qr-wrap img {
  display: block;
  width: 200px;
  height: 200px;
  max-width: min(100%, 220px);
  object-fit: contain;
  margin-inline: auto;
}

/* ── FOOTER ── */
.footer {
  padding: 3.5rem 0 calc(2.5rem + var(--safe-bottom));
  background: #050505;
  border-top: 1px solid rgba(255, 242, 0, 0.15);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer__brand img { margin-bottom: 0.75rem; opacity: 0.9; }
.footer__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.footer__loc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.5rem; }
.footer__phone {
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
}
.footer__phone:hover { color: var(--white); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}
.footer__nav a {
  font-size: 0.875rem;
  color: var(--yellow);
  transition: color 0.2s, text-shadow 0.2s;
}
.footer__nav a:hover {
  color: var(--fuchsia);
  text-shadow: 0 0 12px rgba(255, 0, 127, 0.35);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.footer__tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
}

/* Large screens */
@media (min-width: 1440px) {
  :root { --container: min(1200px, 100% - 3rem); }
}

@media (min-width: 1920px) {
  :root { --container: min(1280px, 100% - 4rem); }
}

/* Desktop nav (tablet landscape and up) */
@media (min-width: 1025px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 769px) {
  .nav-panel__label { display: none; }

  .header__nav {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .header__links {
    flex-direction: row;
    align-items: center;
    gap: 1.75rem;
  }

  .header__links a {
    display: inline;
    padding: 0;
    min-height: auto;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: none;
  }

  .header__actions {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    gap: 0.75rem;
  }

  .lang__btn {
    flex: none;
    color: var(--text-secondary);
  }

  .btn--nav-call {
    width: auto;
    padding: 0.5rem 1rem;
    min-height: 44px;
  }

  .gallery__item--extra {
    display: block;
  }

  .gallery__more-wrap {
    display: none;
  }

  .services__more-wrap {
    display: none;
  }

  .services__grid .svc-card--extra {
    display: block;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-intro__grid,
  .trailer__grid { grid-template-columns: 1fr; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
  .gallery__item:nth-child(n) { grid-column: auto; }
  .gallery__item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: min(100%, 420px);
    margin-inline: auto;
    width: 100%;
  }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__qr-card { max-width: 300px; margin-inline: auto; }
}

@media (max-width: 820px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(3.25rem, 11vw, 4.75rem);
    --header-h: 64px;
  }

  .header {
    background: #000;
  }

  .header__inner {
    position: relative;
    justify-content: flex-end;
  }

  .header__brand--logo-only {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }

  .header__logo {
    width: 48px;
    height: 48px;
  }

  /* Backdrop detrás del menú (no encima de los links) */
  .nav-backdrop {
    z-index: 99998;
    top: 0;
    background: rgba(0, 0, 0, 0.65);
  }

  body.nav-open .header,
  body.nav-open .header__inner {
    overflow: visible;
  }

  body.nav-open .header {
    z-index: 100000;
  }

  .header__toggle {
    display: flex;
    position: relative;
    z-index: 100001;
  }
  .header__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - var(--header-h));
    bottom: auto;
    z-index: 99999;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 1.5rem;
    margin: 0;
    background: #050505;
    border-top: 1px solid #39ff14;
    border-bottom: 1px solid rgba(57, 255, 20, 0.45);
    box-shadow:
      0 15px 35px rgba(0, 0, 0, 0.95),
      0 0 18px rgba(57, 255, 20, 0.18);
    transform: translate3d(0, -10px, 0);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.4s;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    isolation: isolate;
  }
  .header__nav.is-open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav.is-closing {
    transition-duration: 0.22s;
  }

  .header__nav.is-open .header__links li a {
    animation: navItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }
  .header__nav.is-open .header__links li:nth-child(1) a { animation-delay: 0.05s; }
  .header__nav.is-open .header__links li:nth-child(2) a { animation-delay: 0.1s; }
  .header__nav.is-open .header__links li:nth-child(3) a { animation-delay: 0.15s; }
  .header__nav.is-open .header__links li:nth-child(4) a { animation-delay: 0.2s; }
  .header__nav.is-open .header__links li:nth-child(5) a { animation-delay: 0.25s; }

  .header__nav.is-open .nav-panel__label {
    animation: navItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.28s backwards;
  }
  .header__nav.is-open .lang.lang--nav {
    animation: navItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.32s backwards;
  }
  .header__nav.is-open .btn--nav-call {
    animation: navItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.38s backwards;
  }

  .header__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header__links li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .header__links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    min-height: 48px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    text-decoration: none;
    text-shadow: none;
    border-bottom: 1px solid #1a1a1a;
    background: transparent;
    -webkit-tap-highlight-color: rgba(57, 255, 20, 0.15);
  }
  .header__links a:hover,
  .header__links a:focus-visible {
    color: #39ff14;
    background: rgba(57, 255, 20, 0.08);
  }

  .header__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border-top: 1px solid #1a1a1a;
    gap: 0;
    background: #050505;
  }

  .nav-panel__label {
    display: block;
    padding: 16px 24px 8px;
    margin: 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #39ff14;
    opacity: 1;
    visibility: visible;
  }

  .lang.lang--nav {
    display: flex;
    gap: 8px;
    padding: 8px 24px 16px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: #050505;
    opacity: 1;
    visibility: visible;
  }
  .lang__btn {
    flex: 1;
    min-height: 44px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    background: #111111;
    border: 1px solid #39ff14;
    border-radius: 6px;
  }
  .lang__btn.is-active {
    color: #000000;
    background: #39ff14;
    border-color: #39ff14;
  }
  .lang__btn:hover:not(.is-active) {
    color: #39ff14;
    background: rgba(57, 255, 20, 0.08);
  }

  .btn--header.btn--nav-call {
    display: block;
    width: calc(100% - 48px);
    margin: 8px 24px 24px;
    padding: 16px 20px;
    min-height: 52px;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    color: #000000;
    background: #39ff14;
    border: 2px solid #39ff14;
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.35);
    opacity: 1;
    visibility: visible;
  }
  .btn--header.btn--nav-call:hover {
    color: #000000;
    background: #39ff14;
    box-shadow: 0 0 22px rgba(57, 255, 20, 0.5);
  }

  .hero {
    /* Pantalla completa: el padding-top del header va DENTRO del 100svh */
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: calc(var(--header-h) + 0.2rem);
    padding-bottom: 0.55rem;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
  }

  .hero .container.hero__content {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: min(100%, 360px);
    margin-inline: auto;
    margin-top: auto;
    margin-bottom: auto;
    min-height: 0;
    padding-inline: 0.25rem;
    transform: translateY(-0.4rem);
  }

  .hero__content { margin-inline: auto; }

  .hero__brand--solo {
    text-align: center;
    margin-inline: auto;
    max-width: 22rem;
    margin-bottom: 0;
    padding-bottom: 0.15rem;
    font-size: clamp(1.05rem, 4.5vw, 1.3rem);
    letter-spacing: 0.1em;
    text-shadow: 0 0 22px var(--green-glow), 0 0 40px rgba(57, 255, 20, 0.25);
  }

  .hero__title {
    font-size: clamp(1.22rem, 4.9vw, 1.72rem);
    line-height: 1.2;
    margin: 0.5rem auto 0;
    max-width: 22ch;
    letter-spacing: 0.01em;
  }

  .hero__title-line {
    display: block;
  }

  .hero__title-line--desktop {
    display: none;
  }

  .hero__title-line--mobile {
    display: block;
  }

  .hero__title-line--mobile br {
    display: block;
    margin-top: 0.06em;
  }

  .hero__subtitle {
    margin-inline: auto;
    margin-top: 0.7rem;
    max-width: 30ch;
    font-size: clamp(0.8125rem, 3.3vw, 0.9375rem);
    line-height: 1.55;
    color: var(--white);
  }

  .hero__badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    justify-content: center;
    max-width: 300px;
    margin: 0.85rem auto 0;
  }

  .hero__badges .pill {
    font-size: 0.625rem;
    padding: 0.32rem 0.55rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin: 0.8rem auto 0;
    gap: 0.55rem;
  }

  .hero__cta .btn {
    width: 100%;
    min-width: 0;
    white-space: normal;
    padding: 0.72rem 1rem;
    font-size: 0.875rem;
    min-height: 46px;
  }

  .hero__review {
    margin-top: 0.75rem;
    padding: 0.85rem 0.5rem 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .hero__tags {
    text-align: center;
    color: var(--green);
    padding-top: 0.65rem;
    padding-bottom: 0.55rem;
    margin: 1rem auto 0;
    font-size: 0.75rem;
    line-height: 1.55;
    letter-spacing: 0.025em;
    max-width: 36ch;
    width: 100%;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
  }

  .trust {
    scroll-margin-top: var(--header-h);
  }

  .trust { padding: 2rem 0; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
  .trust__item { padding: 1rem 0.5rem; }
  .trust__icon {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
  }
  .trust__label { font-size: 0.72rem; }
  .trust__item p { font-size: 0.75rem; line-height: 1.4; }
  .trust__item:nth-child(4) {
    padding: 1rem 0.65rem;
    border-color: rgba(56, 232, 255, 0.65);
    box-shadow:
      0 0 28px rgba(56, 232, 255, 0.22),
      inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  }
  .trust__item:nth-child(4) .trust__label {
    font-size: 0.74rem;
    color: #ffffff;
    text-shadow:
      0 0 16px rgba(56, 232, 255, 0.55),
      0 0 28px rgba(255, 255, 255, 0.3);
  }
  .trust__item:nth-child(4) p:not(.trust__label) {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
  }
  .trust__item:nth-child(4) .trust__icon {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(255, 242, 0, 0.55));
  }

  .mobile-intro__visual {
    display: none;
  }

  .mobile-intro__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mobile-intro {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .trailer__content { order: 1; }
  .trailer__media {
    order: 2;
    max-width: 100%;
  }
  .trailer__media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
  }

  .gallery__item--extra {
    display: none;
  }

  .gallery__grid.is-expanded .gallery__item--extra {
    display: block;
  }

  .gallery {
    padding-bottom: calc(var(--section-pad) + 1rem);
  }

  .steps,
  .contact {
    padding-bottom: calc(var(--section-pad) + 2rem);
  }

  .services {
    padding-top: var(--section-pad);
    padding-bottom: calc(var(--section-pad) + 3.5rem);
  }

  .services .section-cta {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .services__grid:not(.is-expanded) .svc-card--extra {
    display: none;
  }

  .services__more-wrap {
    display: block;
    text-align: center;
    margin: 1rem 0 0.5rem;
    padding-inline: 0.25rem;
  }

  .services__toggle {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    margin-inline: auto;
    border-color: var(--green-border);
  }

  .services__toggle:hover {
    border-color: var(--green);
  }

  .svc-card {
    padding: 1rem 1rem 0.9rem;
    min-height: auto;
  }

  .svc-card__icon {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
  }

  .svc-card__title {
    font-size: 0.9375rem;
    margin-bottom: 0.45rem;
    padding-bottom: 0.45rem;
    color: var(--card-accent, var(--green));
  }

  .svc-card__list {
    margin-bottom: 0.65rem;
  }

  .svc-card__list li {
    color: var(--card-accent, var(--green));
    font-size: 0.8125rem;
    margin-bottom: 0.3rem;
    padding-left: 1.25rem;
  }

  .svc-card__footer {
    margin-top: 0;
    padding-top: 0.5rem;
  }

  .svc-card__btn {
    padding: 0.65rem 0.85rem;
    font-size: 0.8125rem;
    min-height: 44px;
  }

  .services__more-wrap {
    margin-bottom: 0.25rem;
  }

  .trailer__grid { gap: 2rem; }
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: min(100%, 420px);
    margin-inline: auto;
  }
  .gallery__item:nth-child(n) { grid-column: auto; }
  .gallery__item:nth-child(3) {
    max-width: none;
    margin-inline: 0;
  }
  .steps__grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-card { padding: 1.5rem 1.25rem; }

  .contact__grid { gap: 2rem; }
  .contact__main { text-align: center; }
  .brand-mark--contact {
    justify-content: center;
    margin-inline: auto;
    max-width: 320px;
  }
  .contact__phone { margin-inline: auto; }
  .contact__buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin-inline: auto;
  }
  .contact__buttons .btn { width: 100%; min-width: 0; }
  .contact__note {
    margin-inline: auto;
    color: #e5e7eb;
  }
  .contact__social-btn {
    margin-inline: auto;
    width: 100%;
    max-width: 320px;
  }
  .contact__qr-card {
    max-width: 100%;
    width: 100%;
  }

  .footer {
    padding: 3rem 0 calc(5.5rem + var(--safe-bottom));
  }

  .footer__grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .brand-mark--footer {
    max-width: 100%;
    justify-content: center;
    margin-inline: auto;
  }

  .footer__nav {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .footer__nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    min-height: 44px;
    color: var(--white);
    font-weight: 500;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-top: 0.5rem;
  }

  .contact__qr-card {
    max-width: 260px;
    margin-inline: auto;
  }

  .wa-float {
    bottom: calc(1rem + var(--safe-bottom));
    right: 1rem;
    width: 52px;
    height: 52px;
  }

  body { padding-bottom: calc(6.5rem + var(--safe-bottom)); }
}

@media (max-width: 430px) {
  .hero__title {
    font-size: clamp(1.2rem, 5vw, 1.65rem);
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  .container { --container: min(1140px, 100% - 1.25rem); }
  .hero__badges { max-width: 100%; }
}

@media (max-width: 390px) {
  .hero {
    padding-top: calc(var(--header-h) + 0.15rem);
    padding-bottom: 0.5rem;
  }
  .hero__title { font-size: 1.18rem; margin-top: 0.45rem; }
  .hero__subtitle { font-size: 0.8rem; margin-top: 0.55rem; }
  .hero__badges { margin-top: 0.65rem; gap: 0.4rem; }
  .hero__cta { margin-top: 0.6rem; gap: 0.48rem; }
  .hero__tags { font-size: 0.72rem; margin-top: 0.85rem; padding-top: 0.65rem; }
  .pill:not(.hero__badges .pill) { font-size: 0.6875rem; padding: 0.3rem 0.65rem; }
}

@media (max-width: 320px) {
  .header__logo { width: 40px; height: 40px; }
  .hero {
    padding-top: calc(var(--header-h) + 0.35rem);
    padding-bottom: 0.75rem;
  }
  .hero__brand--solo { font-size: clamp(0.95rem, 4vw, 1.1rem); }
  .hero .container.hero__content {
    transform: translateY(-0.25rem);
  }
  .hero__title { font-size: 1.15rem; margin-top: 0.4rem; }
  .hero__subtitle { font-size: 0.8rem; margin-top: 0.55rem; max-width: 28ch; }
  .hero__badges { gap: 0.38rem; margin-top: 0.6rem; }
  .hero__cta { margin-top: 0.55rem; gap: 0.45rem; }
  .hero__cta .btn { font-size: 0.8125rem; padding: 0.65rem 0.85rem; min-height: 44px; }
  .hero__review { font-size: 0.78rem; padding-top: 0.75rem; }
  .hero__tags { font-size: 0.7rem; margin-top: 0.75rem; padding-top: 0.6rem; padding-bottom: 0.45rem; max-width: 34ch; }
}

@media (max-width: 380px) {
  .trust__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* Mobile nav — forced contrast (wins over global link colors) */
@media (max-width: 768px) {
  body.nav-open .header {
    z-index: 100000 !important;
  }

  .nav-backdrop.is-visible {
    z-index: 99998 !important;
  }

  .header__nav.is-open {
    z-index: 99999 !important;
    background: #050505 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .header__nav .header__links a,
  .header__nav .header__links li a {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    padding: 16px 24px !important;
  }

  .header__nav .header__links a:hover,
  .header__nav .header__links a:focus-visible {
    color: #39ff14 !important;
    background: rgba(57, 255, 20, 0.08) !important;
  }

  .header__nav .lang__btn {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .header__nav .lang__btn.is-active {
    color: #000000 !important;
    background: #39ff14 !important;
  }

  .header__nav .btn--nav-call {
    color: #000000 !important;
    background: #39ff14 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
