:root {
  --ink: #121318;
  --ink-2: #1c1e26;
  --ink-soft: #2a2d38;
  --paper: #f7f5f0;
  --paper-2: #efede6;
  --paper-3: #e7e3d8;
  --red: #e0202b;
  --red-dark: #b91621;
  --red-soft: rgba(224, 32, 43, 0.1);
  --yellow: #ffc93c;
  --yellow-soft: rgba(255, 201, 60, 0.16);
  --steel: #6a6e78;
  --steel-line: #d9d4c8;
  --white: #ffffff;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ebe57;
  --shadow-sm: 0 6px 20px rgba(18, 19, 24, 0.04);
  --shadow-md: 0 12px 36px rgba(18, 19, 24, 0.06);
  --shadow-lg: 0 20px 56px rgba(18, 19, 24, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Archivo Expanded", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --header-offset: 118px;
  --container: 1180px;
  --photo-bg: #eceae4;
  --photo-bg-soft: #f5f3ed;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.locked,
body.modal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #0a0b0e 0%, #1a1c23 50%, #0a0b0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), visibility .6s ease;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}

#loader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(224, 32, 43, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 201, 60, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(224, 32, 43, 0.04) 0%, transparent 60%);
  animation: bgShift 8s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,32,43,0.15) 0%, rgba(224,32,43,0.05) 40%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.loader-glow::before {
  content: '';
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,60,0.1) 0%, transparent 60%);
  animation: glowPulse 3s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50%       { transform: scale(1.15) rotate(180deg); opacity: 1; }
}

.loader-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(380px, 90vw);
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 100px rgba(224, 32, 43, 0.1);
}

.loader-logo-wrap {
  animation: logoBounce .6s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes logoBounce {
  from { opacity: 0; transform: scale(0.7) translateY(-16px); }
  to   { opacity: 1; transform: none; }
}

.loader-logo {
  width: min(200px, 55vw);
  height: auto;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4), 0 0 60px rgba(224,32,43,.15);
  display: block;
  border: 1px solid rgba(255,255,255,0.5);
}

.loader-tagline {
  color: #b8b4ac;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp .6s .3s cubic-bezier(0.4, 0, 0.2, 1) both;
  text-align: center;
}

.loader-progress-wrap {
  width: 100%;
  animation: fadeUp .5s .35s ease both;
}

.loader-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.loader-label {
  color: #d4d0c8;
  font-size: 11px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.loader-pct {
  color: var(--yellow);
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 201, 60, 0.5);
}

.loader-track {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 50%, #25d366 100%);
  background-size: 200% 100%;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(224,32,43,.6), 0 0 40px rgba(224,32,43,.3);
  transition: width .4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.loader-dots {
  display: flex;
  gap: 8px;
  animation: fadeUp .5s .5s ease both;
}

.loader-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: dotBounce 1.4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255,255,255,.3);
}

.loader-dots span:nth-child(2) { animation-delay: .15s; }
.loader-dots span:nth-child(3) { animation-delay: .3s; }

@keyframes dotBounce {
  0%, 100% { transform: translateY(0) scale(1); background: rgba(255,255,255,.4); }
  50%       { transform: translateY(-8px) scale(1.2); background: var(--red); box-shadow: 0 0 15px rgba(224,32,43,.8); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

#site-content {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#site-content.site-entered {
  opacity: 1;
}

.site-enter-header {
  animation: enterFromTop 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-enter-hero {
  animation: enterFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
  opacity: 0;
}

.site-enter-hero .hero-content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: enterUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.site-enter-hero .hero-content > *:nth-child(1) { animation-delay: 0.3s; }
.site-enter-hero .hero-content > *:nth-child(2) { animation-delay: 0.42s; }
.site-enter-hero .hero-content > *:nth-child(3) { animation-delay: 0.54s; }
.site-enter-hero .hero-content > *:nth-child(4) { animation-delay: 0.64s; }
.site-enter-hero .hero-content > *:nth-child(5) { animation-delay: 0.72s; }

.site-enter-hero .hero-panel {
  opacity: 0;
  transform: translateX(20px);
  animation: enterRight 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes enterFromTop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes enterFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes enterUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes enterRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Header ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

header.scrolled {
  background: rgba(247, 245, 240, 0.97);
  border-bottom-color: var(--steel-line);
  box-shadow: 0 2px 16px rgba(18, 19, 24, 0.04);
}

.topbar {
  background: var(--ink);
  color: #d7d4cc;
  font-size: 12px;
  letter-spacing: 0.3px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 16px;
}

.topbar-trust {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #bdb9af;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.topbar-links a:hover {
  color: var(--yellow);
}

.topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 96px;
  background: #fff;
  border: 1px solid var(--steel-line);
  border-radius: 8px;
  padding: 5px 7px;
  object-fit: contain;
}

.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.15;
}

.logo-text small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.8px;
  color: var(--steel);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 99998;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Ripple ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-primary:hover::after { opacity: 1; }

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 32, 43, 0.25);
}

.btn.magnetic {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.btn-whatsapp:hover::after { opacity: 1; }

.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-whatsapp:active::after {
  width: 300px;
  height: 300px;
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* ── Text reveal for headings ── */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}

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

/* ── Particles for hero ── */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

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

.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-offset) + 36px) 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--ink);
  background-image: url("../images/van-side-studio.jpeg");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: cover;
  filter: brightness(0.5) saturate(1.15) contrast(1.1);
  will-change: transform, background-position;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(18, 19, 24, 0.92) 0%, rgba(18, 19, 24, 0.75) 48%, rgba(18, 19, 24, 0.45) 100%),
    linear-gradient(180deg, rgba(18, 19, 24, 0.3) 0%, rgba(18, 19, 24, 0.92) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 36px;
  align-items: end;
}

.hero-content {
  color: #fff;
  max-width: 680px;
}

.hero-plate {
  display: inline-flex;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 22px;
}

.hero-plate span {
  padding: 7px 12px;
}

.hero-plate .a {
  background: var(--yellow);
  color: var(--ink);
}

.hero-plate .b {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6.2vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
  text-transform: uppercase;
  overflow: hidden;
}

.hero h1 .reveal-text {
  display: inline-block;
  overflow: hidden;
}

.hero h1 .reveal-text span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s ease;
}

.hero h1 .reveal-text span.visible {
  transform: translateY(0);
  opacity: 1;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 18px);
  color: #e4e1d8;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: #c9c5bb;
  font-family: var(--font-mono);
  letter-spacing: 0.4px;
}

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

.hero-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.18);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 26px;
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.hero-panel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.hero-panel-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.hero-panel-text {
  color: #d8d4cb;
  font-size: 14.5px;
  margin-bottom: 18px;
}

.hero-panel-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-panel-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #ece9e1;
}

.hero-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
}

.hero-panel-link {
  display: inline-flex;
  font-weight: 700;
  font-size: 14px;
  color: var(--yellow);
}

.hero-panel-link:hover {
  color: #fff;
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--steel-line);
  position: relative;
  z-index: 2;
}

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

.trust-item {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--steel-line);
  position: relative;
  transition: background 0.25s ease;
}

.trust-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.trust-item:hover {
  background: var(--paper);
}

.trust-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 13px;
  color: var(--steel);
  font-weight: 600;
}

/* ── Sections ── */
.section {
  padding: 104px 0;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header p {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.7;
}

/* ── Intro ── */
.intro-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.intro-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.intro-copy p {
  color: var(--steel);
  font-size: 16.5px;
  margin-bottom: 14px;
}

.intro-copy p strong {
  color: var(--ink);
}

.intro-copy .btn {
  margin-top: 12px;
}

.intro-features {
  display: grid;
  gap: 14px;
}

.intro-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.intro-feature:hover {
  transform: translateX(4px);
  background: var(--paper-2);
  box-shadow: 0 12px 32px rgba(18, 19, 24, 0.06), 0 0 20px rgba(224, 32, 43, 0.08);
  border-color: rgba(224, 32, 43, 0.25);
}

.intro-feature-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 8px;
  padding: 8px 10px;
}

.intro-feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.intro-feature p {
  color: var(--steel);
  font-size: 14px;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.service-card:hover::after {
  left: 140%;
}

/* ── Enhanced stagger animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
  transition-delay: var(--delay, 0ms);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

.service-card:hover {
  transform: translateY(-6px);
  background: var(--paper-2);
  box-shadow: 0 16px 40px rgba(18, 19, 24, 0.08), 0 0 32px rgba(224, 32, 43, 0.1);
  border-color: rgba(224, 32, 43, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-wide {
  grid-column: span 2;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1px;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--ink);
  display: grid;
  place-items: center;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--steel);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ── Vehicle ── */
.vehicle-section {
  padding-top: 24px;
}

.vehiculo-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ── Van photos (full vehicle, no crop) ── */
.van-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--photo-bg);
}

.van-photo--front {
  object-position: 44% 54%;
}

.van-photo--side {
  object-position: center;
}

.van-photo--rear-side {
  object-position: center;
}

.van-photo--rear {
  object-position: center 52%;
}

.vehiculo-media {
  position: relative;
  min-height: 420px;
  background: var(--photo-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
}

.vehiculo-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.vehiculo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(18, 19, 24, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.8px;
}

.vehiculo-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehiculo-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.vehiculo-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}

.vehiculo-desc {
  color: var(--steel);
  font-size: 15px;
  margin-bottom: 22px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.spec {
  background: var(--paper);
  border: 1px solid var(--steel-line);
  border-radius: 12px;
  padding: 14px 14px 12px;
}

.spec b {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 2px;
}

.spec small {
  color: var(--steel);
  font-size: 12.5px;
  font-weight: 600;
}

/* ── Gallery ── */
.gallery-section {
  padding-top: 24px;
}

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

.gallery-card {
  position: relative;
  border: 1px solid var(--steel-line);
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: var(--photo-bg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: var(--photo-bg);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 19, 24, 0.82) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.08);
}

.gallery-card:hover {
  box-shadow: 0 16px 40px rgba(18, 19, 24, 0.1), 0 0 28px rgba(255, 201, 60, 0.15);
  border-color: var(--yellow);
}

.gallery-caption,
.gallery-action {
  position: absolute;
  z-index: 2;
  left: 14px;
  color: #fff;
}

.gallery-caption {
  bottom: 42px;
  font-weight: 700;
  font-size: 15px;
}

.gallery-action {
  bottom: 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0.9;
}

/* ── Gallery modal ── */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 24, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-modal.open.is-shown .gallery-modal-backdrop {
  opacity: 1;
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(24px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
}

.gallery-modal.open.is-shown .gallery-modal-dialog {
  transform: none;
  opacity: 1;
}

.gallery-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 19, 24, 0.8);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-modal-close:hover {
  background: var(--red);
  transform: scale(1.1);
}

.gallery-modal-media {
  position: relative;
  background: var(--photo-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  min-height: 420px;
}

.gallery-modal-media img {
  width: 100%;
  height: 100%;
  max-height: min(500px, 60vh);
  min-height: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  animation: vanImageFloat 5s ease-in-out infinite;
}

@keyframes vanImageFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.gallery-modal-info {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-modal-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery-modal-info p {
  color: var(--steel);
  margin-bottom: 20px;
  font-size: 15px;
}

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.modal-specs span {
  background: var(--paper);
  border: 1px solid var(--steel-line);
  border-radius: 10px;
  padding: 12px;
  font-size: 13px;
  color: var(--steel);
}

.modal-specs b {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}

/* ── Process ── */
.process-section {
  background: var(--white);
  border-top: 1px solid var(--steel-line);
  border-bottom: 1px solid var(--steel-line);
}

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

.process-card {
  background: var(--paper);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.process-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--steel-line);
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.process-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(18, 19, 24, 0.06), 0 0 24px rgba(224, 32, 43, 0.08);
  border-color: rgba(224, 32, 43, 0.25);
}

.process-step {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--red);
  background: var(--red-soft);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 16px;
}

.process-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--steel);
  font-size: 14px;
}

/* ── Slogan ── */
.slogan-bar {
  background: linear-gradient(135deg, var(--ink) 0%, #262934 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.slogan-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 201, 60, 0.06) 50%, transparent 70%);
  animation: sloganShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sloganShimmer {
  0%, 100% { transform: translateX(-30%); opacity: 0.4; }
  50%      { transform: translateX(30%);  opacity: 1; }
}

.slogan-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 0 0 3px 3px;
}

.slogan-bar h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 34px);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.slogan-bar p {
  color: #bdb9af;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* ── Why ── */
.why {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.why .section-header p {
  color: #d0ccc2;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 201, 60, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 28px rgba(255, 201, 60, 0.15);
}

.why-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 201, 60, 0.12);
  color: var(--yellow);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.why-card .icon svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-card p {
  color: #d0ccc2;
  font-size: 14px;
}

/* ── Parallax banner ── */
.parallax-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #121318 0%, #1c1e26 50%, #121318 100%);
}

.parallax-banner-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(224, 32, 43, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 201, 60, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(224, 32, 43, 0.04) 0%, transparent 60%);
  animation: gradientShift 18s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.parallax-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.parallax-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(18, 19, 24, 0.4) 0%,
      rgba(18, 19, 24, 0.2) 40%,
      rgba(18, 19, 24, 0.2) 60%,
      rgba(18, 19, 24, 0.5) 100%
    );
  z-index: 1;
}

.parallax-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 0 24px;
}

.parallax-inner::before {
  content: "";
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  border-radius: 2px;
}

.parallax-inner h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.8vw, 42px);
  text-transform: uppercase;
  max-width: 760px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

/* ── Feedback ── */
.feedback-section {
  background: var(--paper);
}

.feedback-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.feedback-public,
.feedback-form-card {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.feedback-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--steel-line);
}

.feedback-summary strong {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
}

.feedback-stars {
  display: block;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.feedback-summary span:last-child {
  color: var(--steel);
  font-size: 13px;
  font-weight: 600;
}

.feedback-empty {
  color: var(--steel);
  background: var(--paper);
  border: 1px dashed var(--steel-line);
  border-radius: 12px;
  padding: 22px;
  font-size: 14px;
}

.feedback-list {
  display: grid;
  gap: 12px;
}

.feedback-card {
  border: 1px solid var(--steel-line);
  border-radius: 14px;
  padding: 18px;
  background: var(--paper);
  animation: cardArrive 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feedback-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(18, 19, 24, 0.04), 0 0 16px rgba(224, 32, 43, 0.06);
  border-color: rgba(224, 32, 43, 0.2);
  background: var(--white);
}

.feedback-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.feedback-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.feedback-card span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 600;
}

.feedback-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.feedback-card small {
  color: var(--steel);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.4px;
}

@keyframes cardArrive {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.feedback-form-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.feedback-form-card > p {
  color: var(--steel);
  font-size: 14px;
  margin-bottom: 18px;
}

.feedback-form-card .btn {
  width: 100%;
  margin-top: 4px;
}

/* ── Support / contact ── */
.support-section {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.support-card {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(18, 19, 24, 0.06), 0 0 20px rgba(224, 32, 43, 0.06);
  border-color: rgba(224, 32, 43, 0.2);
}

.support-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.support-card > p {
  color: var(--steel);
  font-size: 14.5px;
  margin-bottom: 22px;
}

.support-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.support-contact-whatsapp,
.support-contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.support-contact-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #128c3c;
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.support-contact-whatsapp:hover {
  background: var(--whatsapp);
  color: #fff;
}

.support-contact-email {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--steel-line);
}

.support-contact-email:hover {
  border-color: var(--ink);
}

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

.form-group {
  margin-bottom: 16px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--steel-line);
  border-radius: 12px;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px var(--red-soft);
  background: #fff;
  transform: translateY(-1px);
}

.form-group.valid input,
.form-group.valid textarea,
.form-group.valid select {
  border-color: var(--whatsapp);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(224, 32, 43, 0.15);
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: var(--red);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--red);
}

.form-group.error .form-error {
  display: block;
}

.form-success,
.form-fail {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.form-success {
  background: #e8f8ef;
  border: 1px solid var(--whatsapp);
  color: #1a7a3a;
}

.form-fail {
  background: #fdecea;
  border: 1px solid var(--red);
  color: var(--red-dark);
}

.form-success.show,
.form-fail.show {
  display: block;
}

#btnSubmit,
#feedbackSubmit {
  width: 100%;
  margin-top: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--steel-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.active {
  border-color: rgba(224, 32, 43, 0.35);
  background: #fff;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: none;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--steel-line);
  display: grid;
  place-items: center;
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--steel);
  font-size: 14px;
  line-height: 1.65;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), padding 0.38s ease;
}

.faq-item.active .faq-answer {
  padding: 0 18px 16px;
}

.wa-quick {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.wa-quick a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--steel-line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

.wa-quick a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--whatsapp);
  flex-shrink: 0;
}

.wa-quick a:hover {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.08);
}

/* ── Footer ── */
footer {
  background: var(--ink);
  color: #cfcbc1;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.footer-logo {
  width: auto;
  height: 56px;
  max-width: 130px;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 14px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong,
.footer-cta strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 14px;
  color: #bdb9af;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-cta p {
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  color: #8d8a82;
  text-align: center;
}

/* ── Float WhatsApp ── */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25);
  position: relative;
}

.float-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  animation: floatPulse 2.8s ease-in-out infinite;
}

.float-whatsapp::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: floatRing 2.8s ease-in-out infinite;
}

.float-whatsapp::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: floatRing 2.8s ease-in-out infinite 0.4s;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.25); }
  50% { transform: scale(1.04); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.35); }
}

@keyframes floatRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.06) !important;
  animation: none;
  background: var(--whatsapp-dark);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.35);
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

/* ── Ripple effect ── */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleAnim 0.55s linear;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ── Input valid state ── */
.form-group.valid input,
.form-group.valid textarea,
.form-group.valid select {
  border-color: var(--whatsapp);
  background: #f0fdf4;
}

.form-group .field-wrap {
  position: relative;
}

.form-group .field-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.form-group.valid .field-icon {
  opacity: 1;
  color: var(--whatsapp);
}

.form-group.error .field-icon {
  opacity: 1;
  color: var(--red);
}

/* ── Card active press ── */
.is-pressed {
  transform: scale(0.985) !important;
  transition: transform 0.1s ease !important;
}

.service-card:active,
.why-card:active,
.process-card:active,
.gallery-card:active {
  transform: scale(0.98) !important;
  transition: transform 0.1s ease !important;
}

/* ── Trust item counter ── */
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.trust-item:hover strong {
  color: var(--red);
}

.is-tilting {
  transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px) !important;
  transition: transform 0.08s linear !important;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.34, 1.2, 0.64, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.34, 1.3, 0.64, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero-layout,
  .intro-grid,
  .vehiculo-card,
  .feedback-layout,
  .support-grid,
  .gallery-modal-dialog {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .process-grid,
  .why-grid,
  .gallery-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .vehiculo-media {
    min-height: 320px;
  }

  .gallery-modal-media img {
    min-height: 280px;
  }
}

@media (max-width: 860px) {
  .topbar-trust {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 114px;
    left: 16px;
    right: 16px;
    max-height: calc(var(--app-height, 100vh) - 130px);
    overflow-y: auto;
    background: rgba(247, 245, 240, 0.98);
    border: 1px solid var(--steel-line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 0;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a.active {
    background: var(--red-soft);
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-offset) + 24px) 0 48px;
    align-items: center;
  }

  .hero-panel {
    margin-top: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .services-grid,
  .process-grid,
  .why-grid,
  .gallery-grid,
  .trust-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--steel-line);
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  .vehiculo-info {
    padding: 28px 22px;
  }

  .support-card,
  .feedback-public,
  .feedback-form-card {
    padding: 24px 18px;
  }

  .support-contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 34px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .logo-text {
    display: none;
  }

  .float-btn {
    width: 54px;
    height: 54px;
  }

  .gallery-card {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 860px) {
  .parallax-banner {
    min-height: 420px;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-bg {
    transform: scale(1.06) !important;
  }

  .reveal,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .process-card:not(:last-child)::after {
    display: none;
  }
}
