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

html {
  scroll-behavior: smooth;
}

:root {
  --black: #050608;
  --charcoal: #0b0f16;
  --card: #11151d;

  --white: #ffffff;
  --text-main: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);

  --steel: #d6dee8;
  --steel-dark: #7f8b99;

  --accent-cyan: #00d7ff;
  --accent-blue: #1f6fff;
  --accent-navy: #102a5c;
  --accent-amber: #d99a2b;
  --accent-gold: #c58a24;

  --main-gradient: linear-gradient(
    135deg,
    #ffffff 0%,
    #d6dee8 18%,
    #00d7ff 42%,
    #1f6fff 68%,
    #d99a2b 100%
  );

  --main-gradient-soft: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(0,215,255,0.12),
    rgba(31,111,255,0.10),
    rgba(217,154,43,0.10)
  );

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 215, 255, 0.11), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(31, 111, 255, 0.12), transparent 28%),
    radial-gradient(circle at 48% 78%, rgba(217, 154, 43, 0.08), transparent 30%),
    linear-gradient(180deg, #050608 0%, #0a0f18 45%, #030405 100%);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Cursor */
.cursor {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-blur {
  width: 280px;
  height: 280px;
  background: rgba(0, 215, 255, 0.12);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 1;
  filter: blur(75px);
  transform: translate(-50%, -50%);
}

/* Fondos */
.noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.background-glow {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0,215,255,0.055), transparent 32%),
    linear-gradient(260deg, rgba(31,111,255,0.07), transparent 35%),
    radial-gradient(circle at 50% 40%, rgba(217,154,43,0.04), transparent 35%);
  z-index: 0;
  pointer-events: none;
}

section,
header,
footer {
  position: relative;
  z-index: 2;
}

/* Navbar */
.navbar {
  width: calc(100% - 40px);
  max-width: 1320px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 8, 0.80);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

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

.logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow:
    0 0 25px rgba(0, 215, 255, 0.20),
    0 0 35px rgba(217, 154, 43, 0.12);
}

.logo strong {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.4px;
}

.logo span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.navbar nav {
  display: flex;
  gap: 22px;
}

.navbar nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.navbar nav a:hover {
  color: white;
  text-shadow: 0 0 18px var(--accent-cyan);
}

.btn-nav {
  color: #050608;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--main-gradient);
  border: none;
  box-shadow:
    0 18px 55px rgba(0, 215, 255, 0.16),
    0 0 35px rgba(217, 154, 43, 0.10);
  transition: 0.3s ease;
  font-weight: 900;
}

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

/* Hero */
.hero {
  min-height: 100vh;
  padding: 165px 8% 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 95px 4% 40px;
  border-radius: 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    radial-gradient(circle at 18% 30%, rgba(0,215,255,0.10), transparent 25%),
    radial-gradient(circle at 82% 26%, rgba(31,111,255,0.10), transparent 25%),
    radial-gradient(circle at 50% 85%, rgba(217,154,43,0.08), transparent 25%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 40px 120px rgba(0,0,0,0.35);
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 3;
}

.badge {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: #dff8ff;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -5px;
  font-weight: 900;
  max-width: 950px;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  background: var(--main-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
  max-width: 700px;
  margin-top: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.3s ease;
}

.btn-primary {
  background: var(--main-gradient);
  color: #050608;
  box-shadow:
    0 18px 55px rgba(0, 215, 255, 0.16),
    0 0 35px rgba(217, 154, 43, 0.10);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.13);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  max-width: 780px;
}

.hero-features div {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
}

.hero-features span {
  background: var(--main-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  font-size: 13px;
}

.hero-features p {
  margin: 9px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
}

/* Assets flotantes */
.floating-assets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.asset {
  position: absolute;
  width: 130px;
  filter:
    drop-shadow(0 18px 35px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 22px rgba(0, 215, 255, 0.18));
  opacity: 0.90;
  animation: float3d 6s ease-in-out infinite;
}

.asset-printer {
  top: 17%;
  right: 8%;
  width: 155px;
}

.asset-brush {
  bottom: 15%;
  left: 5%;
  width: 150px;
  animation-delay: 1.2s;
}

.asset-paint {
  top: 62%;
  right: 43%;
  width: 118px;
  animation-delay: 2s;
}

.asset-cube {
  top: 28%;
  left: 47%;
  width: 98px;
  animation-delay: 3s;
}

@keyframes float3d {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-22px) rotate(5deg) scale(1.04);
  }

  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
}

.wolf-card {
  width: min(100%, 500px);
  height: 650px;
  border-radius: 36px;
  padding: 18px;
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    inset 0 0 55px rgba(255,255,255,0.03);
  transform-style: preserve-3d;
  backdrop-filter: blur(12px);
}

.wolf-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 38px;
  background: var(--main-gradient-soft);
  filter: blur(22px);
  opacity: 0.65;
  z-index: -1;
}

.wall-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.wall-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.wall-top span:nth-child(1) {
  background: var(--accent-cyan);
}

.wall-top span:nth-child(2) {
  background: var(--accent-gold);
}

.wall-top span:nth-child(3) {
  background: var(--accent-blue);
}

.print-preview {
  height: 500px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.print-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
}

.print-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.55), transparent 45%),
    radial-gradient(circle at 25% 20%, rgba(0,215,255,0.16), transparent 30%),
    radial-gradient(circle at 80% 65%, rgba(217,154,43,0.10), transparent 35%);
}

.printer-light {
  position: absolute;
  width: 100%;
  height: 125px;
  background: linear-gradient(to bottom, transparent, rgba(0,215,255,0.22), transparent);
  animation: scan 3s infinite linear;
}

.print-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 24px var(--accent-cyan);
  animation: scanLine 3s infinite linear;
}

.hero-floating-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(0,0,0,0.58);
  color: white;
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

@keyframes scan {
  0% { top: -125px; }
  100% { top: 100%; }
}

@keyframes scanLine {
  0% { top: 0; }
  100% { top: 100%; }
}

.wall-info {
  padding: 18px 8px 0;
}

.wall-info p {
  color: var(--text-soft);
  font-size: 14px;
}

.wall-info strong {
  display: block;
  margin-top: 6px;
  color: white;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.045);
  padding: 22px 0;
  backdrop-filter: blur(6px);
}

.marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.marquee-track span {
  font-size: 30px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.42);
  text-transform: uppercase;
}

.marquee-track span:nth-child(3n) {
  -webkit-text-stroke-color: rgba(0,215,255,0.65);
}

.marquee-track span:nth-child(4n) {
  -webkit-text-stroke-color: rgba(217,154,43,0.65);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 120px 8%;
}

.section-header {
  max-width: 830px;
  margin-bottom: 60px;
}

.section-tag {
  background: var(--main-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.section-header h2,
.experience-content h2,
.cta h2,
.franchise-content h2,
.branding-content h2,
.facebook-content h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  margin-top: 16px;
  color: white;
}

.section-header p,
.experience-content p,
.cta p,
.franchise-content p,
.branding-content p,
.facebook-content p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-top: 20px;
  font-size: 17px;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.surface-card,
.process-item,
.stats div,
.franchise-grid div {
  background: linear-gradient(145deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.surface-card {
  min-height: 340px;
  padding: 28px;
  border-radius: 30px;
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.surface-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x) var(--y), rgba(0,215,255,0.18), transparent 35%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.surface-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -60px;
  top: -60px;
  background: var(--main-gradient-soft);
  border-radius: 50%;
  filter: blur(4px);
}

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

.surface-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0,215,255,0.35);
}

.card-icon-img {
  position: relative;
  z-index: 2;
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
}

.card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,0.45))
    drop-shadow(0 0 18px rgba(0,215,255,0.14));
}

.card-number {
  background: var(--main-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.surface-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: white;
  position: relative;
  z-index: 2;
}

.surface-card p {
  color: var(--text-soft);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Experience */
.experience {
  padding: 140px 8%;
  background:
    radial-gradient(circle at 15% 30%, rgba(0,215,255,0.08), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(31,111,255,0.08), transparent 28%),
    rgba(255,255,255,0.035);
  border-block: 1px solid rgba(255,255,255,0.08);
}

.experience-content {
  max-width: 1050px;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stats div {
  min-width: 180px;
  padding: 24px;
  border-radius: 24px;
  transition: 0.3s ease;
}

.stats div:hover {
  transform: translateY(-8px);
}

.stats strong {
  display: block;
  font-size: 40px;
  background: var(--main-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.stats span {
  color: var(--text-soft);
}

/* Proceso */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-item {
  padding: 28px;
  border-radius: 30px;
  transition: 0.35s ease;
}

.process-item:hover {
  transform: scale(1.04);
  border-color: rgba(0,215,255,0.35);
}

.process-item span {
  color: var(--accent-amber);
  font-weight: 900;
}

.process-item h3 {
  margin-top: 50px;
  font-size: 24px;
  color: white;
}

.process-item p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* Galería carrusel */
.gallery-section {
  overflow: hidden;
}

.gallery-carousel {
  position: relative;
  width: 100%;
  margin-top: 30px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: 40px;
  padding: 18px 0;
}

.carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-card {
  min-width: 72%;
  height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45);
  transform: scale(0.92);
  opacity: 0.55;
  transition: 0.55s ease;
}

.carousel-card.active {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(255,255,255,0.28);
}

.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.carousel-card:hover img {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.08);
}

.carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.08) 55%),
    radial-gradient(circle at 18% 20%, rgba(0,215,255,0.10), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(217,154,43,0.08), transparent 28%);
  z-index: 1;
}

.carousel-info {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 620px;
}

.carousel-info span {
  color: var(--accent-cyan);
  font-weight: 900;
  font-size: 14px;
}

.carousel-info h3 {
  color: white;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -2px;
  line-height: 0.95;
  margin-top: 8px;
}

.carousel-info p {
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.6;
  margin-top: 14px;
}

.gallery-ribbon,
.image-ribbon,
.showcase-ribbon {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.58);
  color: white;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: 0.3s ease;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background: rgba(255,255,255,0.16);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.gallery-hint {
  margin-top: 18px;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  text-align: center;
}

/* Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.image-modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,215,255,0.10), transparent 35%),
    rgba(0,0,0,0.86);
  backdrop-filter: blur(18px);
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(1200px, 96vw);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 40px 140px rgba(0,0,0,0.75),
    0 0 80px rgba(0,215,255,0.10);
  animation: modalPop 0.45s ease;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(30px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-content img {
  width: 100%;
  max-height: 82vh;
  object-fit: cover;
  display: block;
}

.modal-title {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  color: white;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.58);
  color: white;
  font-size: 32px;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

/* Branding */
.branding-section {
  padding-top: 40px;
}

.branding-wrapper {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 42px;
  align-items: center;
  border-radius: 46px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    radial-gradient(circle at 85% 20%, rgba(217,154,43,0.08), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(0,215,255,0.07), transparent 32%);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 40px 120px rgba(0,0,0,0.42);
  overflow: hidden;
  position: relative;
}

.branding-wrapper::before,
.franchise-box::before,
.facebook-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.25;
  pointer-events: none;
}

.branding-content {
  position: relative;
  z-index: 2;
}

.branding-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.branding-tags span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 800;
}

.branding-showcase {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 820px;
  border-radius: 44px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.58),
    0 0 80px rgba(0,215,255,0.08);
}

.branding-showcase img {
  width: 100%;
  height: 100%;
  min-height: 820px;
  object-fit: cover;
  display: block;
  transition: transform 0.75s ease, filter 0.75s ease;
}

.branding-showcase:hover img {
  transform: scale(1.055);
  filter: brightness(1.08) contrast(1.06);
}

.branding-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.42), transparent 45%),
    radial-gradient(circle at 18% 20%, rgba(0,215,255,0.08), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(217,154,43,0.06), transparent 32%);
  pointer-events: none;
}

.ribbon-bottom {
  top: auto;
  bottom: 26px;
  left: 26px;
  background: rgba(255,255,255,0.10);
  color: white;
}

/* VFX ring */
.vfx-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  top: -90px;
  right: -90px;
  z-index: 4;
  pointer-events: none;
}

.vfx-ring::before,
.vfx-ring::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0,215,255,0.12);
}

.vfx-ring::after {
  inset: 76px;
  border-color: rgba(217,154,43,0.13);
}

/* Franquicias */
.franchise {
  padding-top: 40px;
}

.franchise-box {
  position: relative;
  overflow: hidden;
  border-radius: 46px;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,215,255,0.10), transparent 28%),
    radial-gradient(circle at 85% 25%, rgba(31,111,255,0.10), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.franchise-content {
  position: relative;
  z-index: 2;
}

.franchise-status {
  width: fit-content;
  margin-top: 28px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.105);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 800;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-amber);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(217, 154, 43, 0.7);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 154, 43, 0.65);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(217, 154, 43, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(217, 154, 43, 0);
  }
}

.franchise-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.franchise-grid div {
  padding: 22px;
  border-radius: 22px;
}

.franchise-grid strong {
  display: block;
  color: var(--accent-cyan);
  font-size: 14px;
  margin-bottom: 12px;
}

.franchise-grid span {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.4;
}

.franchise-image-box {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 680px;
  border-radius: 40px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.58),
    0 0 80px rgba(0,215,255,0.08);
}

.franchise-image-box img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  display: block;
  transition: transform 0.75s ease, filter 0.75s ease;
}

.franchise-image-box:hover img {
  transform: scale(1.055);
  filter: brightness(1.08) contrast(1.06);
}

.franchise-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.42), transparent 45%),
    radial-gradient(circle at 18% 20%, rgba(0,215,255,0.08), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(217,154,43,0.06), transparent 32%);
  pointer-events: none;
}

.franchise-ribbon {
  top: 26px;
  left: 26px;
  background: rgba(0,0,0,0.72);
  color: white;
  font-size: 14px;
  padding: 14px 20px;
}

.second-ribbon {
  top: auto;
  bottom: 26px;
  left: 26px;
  background: rgba(255,255,255,0.10);
}

/* CTA */
.cta {
  padding: 120px 8%;
}

.cta-box {
  border-radius: 44px;
  padding: 76px;
  text-align: center;
  background:
    var(--main-gradient-soft),
    rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.cta p {
  max-width: 780px;
  margin-inline: auto;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* Facebook */
.facebook-section {
  padding-top: 40px;
}

.facebook-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  gap: 38px;
  align-items: center;
  border-radius: 46px;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    radial-gradient(circle at 85% 20%, rgba(0,215,255,0.09), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(217,154,43,0.07), transparent 32%);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 40px 120px rgba(0,0,0,0.42);
  overflow: hidden;
  position: relative;
}

.facebook-content {
  position: relative;
  z-index: 2;
}

.facebook-box {
  position: relative;
  z-index: 2;
  min-height: 760px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 38px;
  padding: 34px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 38px 110px rgba(0,0,0,0.55),
    0 0 80px rgba(0,215,255,0.08);
}

.facebook-box::before {
  content: "FACEBOOK";
  position: absolute;
  top: 22px;
  left: 28px;
  color: rgba(255,255,255,0.18);
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 900;
}

.facebook-box::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

.facebook-box .fb-page,
.facebook-box .fb-page span,
.facebook-box .fb-page iframe {
  width: 500px !important;
  max-width: 500px !important;
}

.facebook-box .fb-page {
  background: white !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45) !important;
}

/* Footer */
footer {
  padding: 55px 8%;
  border-top: 1px solid rgba(255,255,255,0.09);
  color: var(--text-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 18px;
}

.footer-logo {
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero,
  .branding-wrapper,
  .franchise-box,
  .facebook-wrapper {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 150px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

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

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

  .navbar nav {
    display: none;
  }

  .carousel-card {
    min-width: 86%;
    height: 500px;
  }

  .branding-showcase,
  .branding-showcase img {
    min-height: 560px;
  }

  .franchise-image-box,
  .franchise-image-box img {
    min-height: 520px;
  }

  .facebook-box {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .navbar {
    width: calc(100% - 24px);
    padding: 12px 14px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

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

  .logo span {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .hero {
    padding: 135px 6% 70px;
  }

  .hero::before {
    inset: 92px 3% 28px;
    border-radius: 34px;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 16px;
  }

  .cards-grid,
  .process,
  .franchise-grid {
    grid-template-columns: 1fr;
  }

  .carousel-card {
    min-width: 92%;
    height: 390px;
    border-radius: 28px;
  }

  .carousel-info {
    left: 22px;
    bottom: 22px;
  }

  .carousel-info h3 {
    font-size: 32px;
  }

  .carousel-info p {
    font-size: 14px;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .cta-box,
  .branding-wrapper,
  .franchise-box,
  .facebook-wrapper {
    padding: 28px;
    border-radius: 34px;
  }

  .wolf-card {
    height: 560px;
  }

  .print-preview {
    height: 415px;
  }

  .section,
  .experience,
  .cta {
    padding: 90px 6%;
  }

  .branding-showcase,
  .branding-showcase img,
  .franchise-image-box,
  .franchise-image-box img {
    min-height: 380px;
    border-radius: 28px;
  }

  .facebook-box {
    min-height: 620px;
    padding: 16px;
  }

  .facebook-box .fb-page,
  .facebook-box .fb-page span,
  .facebook-box .fb-page iframe {
    width: 340px !important;
    max-width: 340px !important;
  }

  .asset {
    opacity: 0.45;
  }

  .asset-printer {
    top: 12%;
    right: -20px;
    width: 100px;
  }

  .asset-brush {
    bottom: 8%;
    left: -25px;
    width: 105px;
  }

  .asset-paint {
    display: none;
  }

  .asset-cube {
    top: 52%;
    left: auto;
    right: 12px;
    width: 75px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Ajustes Wolves Print 1.1 */
.floating-assets{display:none;}
.surface-icon{width:82px;height:82px;border-radius:24px;display:grid;place-items:center;margin-bottom:24px;font-size:40px;font-weight:900;color:white;background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.04));border:1px solid rgba(255,255,255,.14);box-shadow:inset 0 0 22px rgba(54,215,255,.08),0 18px 40px rgba(0,0,0,.28);position:relative;z-index:2;}
body::before{content:"";position:fixed;inset:0;pointer-events:none;background:linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(180deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 70%);z-index:0;}
.hero::after{content:"IMPRESIÓN MURAL · BRANDING · SUPERFICIES";position:absolute;right:6%;bottom:58px;font-size:clamp(34px,6vw,92px);font-weight:900;letter-spacing:-5px;line-height:.86;color:rgba(255,255,255,.035);max-width:760px;text-align:right;z-index:0;}
.print-preview img,.carousel-card img,.branding-showcase img,.franchise-image-box img{filter:contrast(1.05) saturate(1.04);}
.gallery-carousel{border-radius:34px;background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.09);padding:26px;}
.navbar nav a{white-space:nowrap;}
@media(max-width:1120px){.navbar{align-items:flex-start;gap:12px}.navbar nav{flex-wrap:wrap;justify-content:center;gap:12px 18px}.hero{grid-template-columns:1fr;padding-top:190px}.hero-visual{order:-1}.cards-grid,.process{grid-template-columns:repeat(2,1fr)}}
@media(max-width:720px){.cursor,.cursor-blur{display:none}.navbar{width:calc(100% - 22px);top:10px;border-radius:18px;padding:12px}.logo img{width:44px;height:44px}.navbar nav{display:none}.btn-nav{padding:10px 14px;font-size:13px}.hero{padding:130px 5% 60px;gap:34px}.hero h1{letter-spacing:-2px}.hero-features,.cards-grid,.process,.franchise-grid{grid-template-columns:1fr}.section{padding:82px 5%}.wolf-card{height:auto}.print-preview{height:380px}.gallery-carousel{padding:16px}.facebook-wrapper,.branding-wrapper,.franchise-box{grid-template-columns:1fr!important}}


/* =============================
   HORIZONTAL REAL WALL PRINTER V2
   ============================= */
.horizontal-wallprinter {
  position: relative;
  height: 450vh;
}

.horizontal-wallprinter__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 108px 0 40px;
  background:
    radial-gradient(circle at 10% 18%, rgba(0,215,255,.15), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(31,111,255,.16), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(217,154,43,.12), transparent 28%),
    linear-gradient(180deg, #030508 0%, #08111c 52%, #020304 100%);
}

.horizontal-wallprinter__grid {
  width: min(1500px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 30px;
  align-items: center;
}

.horizontal-wallprinter__copy h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .94;
  letter-spacing: -3px;
  max-width: 760px;
}

.horizontal-wallprinter__copy p {
  margin-top: 24px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-soft);
}
.horizontal-wallprinter__copy strong { color: #fff; }

.wpx-dashboard {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
}

.wpx-dashboard div {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.wpx-dashboard span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.62);
  font-weight: 900;
}

.wpx-dashboard strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 18px;
}

.wpx-progress {
  margin-top: 16px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.wpx-progress span {
  display: block;
  width: calc(var(--wpx-progress, 0) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff 0%, #00d7ff 22%, #1f6fff 60%, #d99a2b 100%);
  box-shadow: 0 0 24px rgba(0,215,255,.35);
}

.wpx-material-pills {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wpx-material-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
}

.horizontal-wallprinter__scene {
  position: relative;
}

.scene-hud {
  position: absolute;
  top: -14px;
  left: 20px;
  right: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(5,10,16,.74);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.scene-rails {
  position: relative;
  min-height: 860px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, rgba(7, 12, 20, .95), rgba(4, 8, 12, .96));
  box-shadow: 0 40px 120px rgba(0,0,0,.40);
  overflow: hidden;
}

.scene-wall {
  position: absolute;
  inset: 62px 38px 230px 38px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.05), 0 34px 80px rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.16);
}

.context-panel {
  position: relative;
  overflow: hidden;
}

.context-panel::before {
  content: '';
  position: absolute;
  inset: 0;
}

.panel-badge {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(5,8,13,.62);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

/* GLASS */
.context-panel--glass::before {
  background: linear-gradient(180deg, #e6edf2 0%, #c9d4de 100%);
}
.glass-facade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.24), transparent 18%),
    linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,0,0,.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}
.facade-topline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 18%;
  background: linear-gradient(180deg, #d6dde6, #b9c5d0);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.35);
}
.window-frame {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 23%;
  bottom: 12%;
  border-radius: 18px;
  background: linear-gradient(180deg, #dce2e8, #aeb8c4);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.72), 0 20px 36px rgba(0,0,0,.16);
  overflow: hidden;
}
.window-bars {
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 6px rgba(212,221,228,.9);
  z-index: 2;
}
.window-bars::before,
.window-bars::after {
  content: '';
  position: absolute;
  background: rgba(212,221,228,.95);
}
.window-bars::before { width: 6px; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); }
.window-bars::after { height: 6px; left: 0; right: 0; top: 50%; transform: translateY(-50%); }
.glass-print-target {
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  overflow: hidden;
  clip-path: inset(0 calc((1 - var(--glass-reveal, 0)) * 100%) 0 0);
}
.glass-print-target img { width:100%; height:100%; object-fit: cover; display:block; opacity:.92; filter: saturate(1.05) contrast(1.03); }
.glass-print-target::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(128deg, transparent 0 30%, rgba(255,255,255,.32) 50%, transparent 63%);
  mix-blend-mode: screen;
}
.facade-base {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 10%;
  background: linear-gradient(180deg, #b3bcc6, #8e98a3);
}

/* WOOD */
.context-panel--wood::before {
  background: linear-gradient(180deg, #e8dfd5 0%, #cdbca7 100%);
}
.wood-room {
  position: absolute; inset: 0;
}
.wood-wall {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(180deg, #e5d8c8, #ccb89d 100%);
}
.wood-door-frame {
  position: absolute;
  left: 22%; right: 22%; top: 18%; bottom: 0;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(180deg, #745136, #5e3d24 100%);
  box-shadow: inset 0 0 0 10px rgba(171,121,80,.45), 0 18px 34px rgba(0,0,0,.18);
  overflow: hidden;
}
.wood-print-target {
  position: absolute;
  inset: 18px 18px 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  clip-path: inset(0 calc((1 - var(--wood-reveal, 0)) * 100%) 0 0);
}
.wood-print-target img { width:100%; height:100%; object-fit: cover; display:block; }
.wood-door-handle {
  position: absolute;
  right: 32px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 60px; border-radius: 999px;
  background: linear-gradient(180deg, #f2d6a5, #9c6d28);
  box-shadow: 0 0 0 3px rgba(77,49,23,.18);
  z-index: 3;
}

/* CONCRETE */
.context-panel--concrete::before {
  background:
    radial-gradient(circle at 20% 28%, rgba(255,255,255,.12), transparent 7%),
    radial-gradient(circle at 68% 66%, rgba(255,255,255,.10), transparent 7%),
    linear-gradient(180deg, #c9ced4 0%, #9fa7b1 100%);
}
.concrete-room { position:absolute; inset:0; }
.concrete-wall-target {
  position:absolute;
  left: 10%; right: 10%; top: 14%; bottom: 12%;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.15), transparent 18%),
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.14), transparent 7%),
    radial-gradient(circle at 75% 54%, rgba(255,255,255,.10), transparent 6%),
    linear-gradient(180deg, #c4c8cd, #a0a7b0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 20px 36px rgba(0,0,0,.12);
  overflow: hidden;
}
.concrete-print-target {
  position:absolute; inset:0;
  clip-path: inset(0 calc((1 - var(--concrete-reveal, 0)) * 100%) 0 0);
}
.concrete-print-target img { width:100%; height:100%; object-fit: cover; display:block; }

/* METAL */
.context-panel--metal::before {
  background: linear-gradient(180deg, #d5ddd8 0%, #afb8b1 100%);
}
.metal-yard { position:absolute; inset:0; background: linear-gradient(180deg, rgba(255,255,255,.12), transparent 18%), linear-gradient(180deg, #d6ddd8, #bcc5be); }
.metal-container {
  position:absolute;
  left: 8%; right: 8%; top: 22%; bottom: 16%;
  border-radius: 12px;
  background: linear-gradient(180deg, #b15d23, #8d4318);
  box-shadow: 0 22px 38px rgba(0,0,0,.18);
  overflow: hidden;
}
.container-ribs {
  position:absolute; inset:0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 10px, rgba(0,0,0,.12) 10px 14px);
  mix-blend-mode: overlay;
  z-index: 1;
}
.container-locks {
  position:absolute; top:0; bottom:0; left:22px; width:8px;
  background: rgba(255,255,255,.15);
  box-shadow: 26px 0 0 rgba(255,255,255,.15);
  z-index: 2;
}
.metal-print-target {
  position:absolute;
  inset: 0;
  clip-path: inset(0 calc((1 - var(--metal-reveal, 0)) * 100%) 0 0);
  z-index: 0;
}
.metal-print-target img { width:100%; height:100%; object-fit: cover; display:block; filter: saturate(1.05) contrast(1.03); }

.global-print-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--wpx-progress, 0) * 100%);
  width: 26px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0,215,255,0), rgba(255,255,255,.88) 16%, rgba(0,215,255,.92) 50%, rgba(255,255,255,.88) 84%, rgba(0,215,255,0));
  box-shadow: 0 0 22px rgba(0,215,255,.42);
  opacity: calc(.08 + var(--wpx-progress, 0) * .72);
}

.floor-rail {
  position: absolute;
  left: 58px;
  right: 58px;
  height: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff, #9ca7b4 52%, #5f6975);
  box-shadow: 0 18px 30px rgba(0,0,0,.24);
}
.floor-rail--back { bottom: 132px; }
.floor-rail--front { bottom: 88px; }

.rail-cross {
  position: absolute;
  bottom: 88px;
  width: 68px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(235,240,245,.95), rgba(122,133,146,.92));
  box-shadow: 0 14px 26px rgba(0,0,0,.2);
}
.rail-cross--1 { left: 118px; }
.rail-cross--2 { left: 258px; }
.rail-cross--3 { left: 398px; }
.rail-cross--4 { left: 538px; }
.rail-cross--5 { left: 678px; }
.rail-cross--6 { left: 818px; }
.rail-cross--7 { left: 958px; }

.printer-rig-real {
  position: absolute;
  left: calc(70px + var(--wpx-progress, 0) * (100% - 150px));
  bottom: 92px;
  width: 430px;
  z-index: 5;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 45px rgba(0,0,0,.34));
  animation: printerBob 3.2s ease-in-out infinite;
}

.printer-rig-real img {
  display: block;
  width: 100%;
  height: auto;
}

.print-spray,
.paint-dot { position:absolute; pointer-events:none; }

.print-spray {
  left: 49%;
  top: 38%;
  transform: translateX(-50%);
  width: 110px;
  height: 190px;
  clip-path: polygon(45% 0, 58% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.32), transparent 22%),
    radial-gradient(circle at 35% 20%, rgba(0,215,255,.35), transparent 16%),
    radial-gradient(circle at 68% 28%, rgba(217,154,43,.22), transparent 18%),
    linear-gradient(180deg, rgba(0,215,255,.24), rgba(31,111,255,.14) 44%, rgba(217,154,43,.16) 78%, transparent);
  filter: blur(7px);
  opacity: calc(.06 + var(--wpx-progress,0) * .56);
  animation: wpxSprayPulse 1.2s ease-in-out infinite;
}
.print-spray--b {
  width: 82px;
  height: 152px;
  left: 52%;
  animation-delay: .42s;
  opacity: calc(.04 + var(--wpx-progress,0) * .42);
}

.paint-dot {
  left: 50%;
  top: 54%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #00d7ff 42%, rgba(255,255,255,0) 74%);
  box-shadow: 0 0 16px rgba(0,215,255,.45);
  opacity: calc(.08 + var(--wpx-progress,0) * .65);
  animation: wpxInkDrop 1.4s ease-in-out infinite;
}
.paint-dot--1 { margin-left: -26px; animation-delay: .10s; }
.paint-dot--2 { margin-left: 6px; animation-delay: .42s; }
.paint-dot--3 { margin-left: 36px; animation-delay: .78s; }
.paint-dot--4 { margin-left: 54px; animation-delay: 1s; background: radial-gradient(circle, #fff 0%, #d99a2b 42%, rgba(255,255,255,0) 74%); }

.surface-reflection {
  position:absolute;
  left:8%; right:8%; bottom:18px;
  height:56px; border-radius:50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.36), transparent 72%);
  filter: blur(8px);
}

@keyframes wpxSprayPulse {
  0%,100% { transform: translateX(-50%) scale(.92); filter: blur(7px); }
  50% { transform: translateX(-50%) scale(1.04); filter: blur(9px); }
}

@keyframes wpxInkDrop {
  0% { transform: translateY(0) scale(.45); opacity: 0; }
  28% { opacity: 1; }
  100% { transform: translateY(110px) scale(1.08); opacity: 0; }
}

@keyframes printerBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

@media (max-width: 1260px) {
  .horizontal-wallprinter__grid { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .horizontal-wallprinter { height: 400vh; }
  .horizontal-wallprinter__sticky { padding-top: 96px; }
  .horizontal-wallprinter__grid { width: min(100%, calc(100% - 18px)); }
  .wpx-dashboard { grid-template-columns: 1fr; }
  .scene-rails { min-height: 660px; }
  .scene-wall { inset: 62px 16px 190px 16px; }
  .panel-badge { font-size: 10px; }
  .floor-rail { left: 18px; right: 18px; }
  .rail-cross { width: 36px; height: 44px; bottom: 88px; }
  .rail-cross--1 { left: 42px; }
  .rail-cross--2 { left: 112px; }
  .rail-cross--3 { left: 182px; }
  .rail-cross--4 { left: 252px; }
  .rail-cross--5 { left: 322px; }
  .rail-cross--6 { left: 392px; }
  .rail-cross--7 { left: 462px; }
  .printer-rig-real { width: 250px; left: calc(46px + var(--wpx-progress, 0) * (100% - 92px)); }
  .print-spray { width: 62px; height: 110px; top: 36%; }
  .print-spray--b { width: 46px; height: 90px; }
  .window-frame { left: 12%; right: 12%; }
  .wood-door-frame { left: 16%; right: 16%; }
  .concrete-wall-target { left: 6%; right: 6%; }
  .metal-container { left: 4%; right: 4%; }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V3
   Realistic textures overrides
   ============================= */

/* GLASS - more realistic facade and reflections */
.context-panel--glass::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(180deg, #eef3f7 0%, #d5dde6 42%, #bfc9d3 100%);
}
.glass-facade::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,0,0,.028) 1px, transparent 1px),
    radial-gradient(circle at 16% 20%, rgba(255,255,255,.22), transparent 10%),
    radial-gradient(circle at 78% 72%, rgba(255,255,255,.16), transparent 12%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  opacity: .55;
}
.window-frame {
  background:
    linear-gradient(180deg, #edf2f6 0%, #c9d2db 52%, #b5c0cc 100%);
  box-shadow:
    inset 0 0 0 12px rgba(248,251,253,.92),
    inset 0 0 0 14px rgba(165,179,191,.32),
    0 24px 40px rgba(0,0,0,.16);
}
.glass-print-target {
  background:
    radial-gradient(circle at 20% 22%, rgba(255,255,255,.25), transparent 12%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.18), transparent 14%),
    linear-gradient(180deg, rgba(122,173,210,.20), rgba(95,145,182,.10));
}
.glass-print-target img {
  opacity: .86;
  filter: saturate(1.04) contrast(1.04) brightness(1.01);
}
.glass-print-target::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(128deg, transparent 0 20%, rgba(255,255,255,.34) 40%, transparent 58%),
    linear-gradient(45deg, transparent 0 72%, rgba(255,255,255,.10) 86%, transparent 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.facade-base {
  background:
    linear-gradient(180deg, #bfc9d1 0%, #9ca6b0 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.38);
}

/* WOOD - more realistic grain and door finish */
.context-panel--wood::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), transparent 16%),
    linear-gradient(180deg, #eadfce 0%, #d8c3a7 100%);
}
.wood-wall::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 22px, rgba(0,0,0,.02) 22px 24px),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 8%),
    radial-gradient(circle at 80% 74%, rgba(255,255,255,.08), transparent 8%);
  opacity: .45;
}
.wood-door-frame {
  background:
    linear-gradient(180deg, #835738 0%, #6c452b 42%, #5c3923 100%);
  box-shadow:
    inset 0 0 0 10px rgba(182,130,86,.34),
    inset 0 -10px 24px rgba(0,0,0,.14),
    0 20px 36px rgba(0,0,0,.20);
}
.wood-door-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 8px, rgba(0,0,0,.04) 8px 10px, rgba(255,255,255,.02) 10px 14px),
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.10), transparent 8%),
    radial-gradient(circle at 62% 62%, rgba(0,0,0,.12), transparent 10%);
  mix-blend-mode: overlay;
}
.wood-print-target {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.wood-print-target img {
  filter: saturate(1.05) contrast(1.04) brightness(.98);
}
.wood-door-handle {
  background:
    linear-gradient(180deg, #f7dfb2 0%, #ca8e39 55%, #7f5320 100%);
  box-shadow:
    0 0 0 3px rgba(77,49,23,.18),
    0 5px 10px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.45);
}

/* CONCRETE - rough wall texture */
.context-panel--concrete::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), transparent 16%),
    radial-gradient(circle at 18% 24%, rgba(255,255,255,.14), transparent 4%),
    radial-gradient(circle at 72% 62%, rgba(255,255,255,.10), transparent 4%),
    linear-gradient(180deg, #c7ccd2 0%, #a4abb4 100%);
}
.concrete-wall-target {
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), transparent 16%),
    radial-gradient(circle at 9% 14%, rgba(255,255,255,.10), transparent 4%),
    radial-gradient(circle at 30% 65%, rgba(0,0,0,.06), transparent 5%),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,.08), transparent 4%),
    radial-gradient(circle at 70% 76%, rgba(0,0,0,.05), transparent 4%),
    linear-gradient(180deg, #c6ccd2, #a2a9b2);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.16),
    inset 0 0 60px rgba(255,255,255,.03),
    0 20px 36px rgba(0,0,0,.12);
}
.concrete-wall-target::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 12px, rgba(0,0,0,.02) 12px 24px),
    linear-gradient(120deg, transparent 0 30%, rgba(0,0,0,.06) 31%, transparent 33%, transparent 62%, rgba(255,255,255,.06) 63%, transparent 65%);
  mix-blend-mode: multiply;
  opacity: .55;
}
.concrete-print-target img {
  filter: saturate(1.03) contrast(1.02);
}

/* METAL - container ribs, wear, industrial finish */
.context-panel--metal::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), transparent 16%),
    linear-gradient(180deg, #d5ddd8 0%, #b3bbb5 100%);
}
.metal-yard::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.06));
}
.metal-container {
  background:
    linear-gradient(180deg, #b8642b 0%, #a45021 45%, #873a17 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.10),
    inset 0 -24px 38px rgba(0,0,0,.12),
    0 22px 38px rgba(0,0,0,.20);
}
.metal-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 10px, rgba(0,0,0,.12) 10px 13px),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 20%),
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.10), transparent 6%),
    radial-gradient(circle at 78% 76%, rgba(0,0,0,.10), transparent 8%);
  mix-blend-mode: overlay;
  z-index: 1;
}
.container-ribs {
  opacity: .65;
}
.container-locks {
  width: 10px;
  background: rgba(255,255,255,.16);
  box-shadow: 28px 0 0 rgba(255,255,255,.16);
}
.container-locks::before,
.container-locks::after {
  content: '';
  position: absolute;
  left: -5px;
  width: 20px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}
.container-locks::before { top: 16px; }
.container-locks::after { bottom: 16px; }
.metal-print-target img {
  filter: saturate(1.04) contrast(1.04) brightness(.98);
}

/* bigger stage on desktop for more impact */
.scene-rails {
  min-height: 900px;
}
.scene-wall {
  inset: 62px 30px 240px 30px;
}
.printer-rig-real {
  width: 470px;
}

@media (max-width: 940px) {
  .scene-rails { min-height: 680px; }
  .scene-wall { inset: 62px 14px 190px 14px; }
  .printer-rig-real { width: 265px; }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V4
   Fullscreen giant experience
   ============================= */
.horizontal-wallprinter {
  height: 470vh;
}
.horizontal-wallprinter__sticky {
  padding: 0;
}
.horizontal-wallprinter__grid {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  gap: 0;
}
.horizontal-wallprinter__copy {
  position: absolute;
  top: 94px;
  left: 38px;
  z-index: 8;
  max-width: 560px;
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(7,12,20,.78), rgba(7,12,20,.54));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.32);
  backdrop-filter: blur(18px);
}
.horizontal-wallprinter__copy h2 {
  font-size: clamp(46px, 4.2vw, 78px);
  max-width: 700px;
}
.horizontal-wallprinter__copy p {
  max-width: 520px;
}
.horizontal-wallprinter__scene {
  width: 100%;
}
.scene-hud {
  top: 28px;
  left: 34px;
  right: 34px;
}
.scene-rails {
  min-height: 100vh;
  height: 100vh;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.scene-wall {
  inset: 96px 36px 240px 36px;
}
.context-panel {
  min-height: 0;
}
.panel-badge {
  top: 18px;
  left: 18px;
  font-size: 12px;
}
.floor-rail { left: 44px; right: 44px; }
.floor-rail--back { bottom: 136px; height: 22px; }
.floor-rail--front { bottom: 90px; height: 22px; }
.rail-cross { bottom: 90px; width: 88px; height: 70px; }
.rail-cross--1 { left: 120px; }
.rail-cross--2 { left: 300px; }
.rail-cross--3 { left: 480px; }
.rail-cross--4 { left: 660px; }
.rail-cross--5 { left: 840px; }
.rail-cross--6 { left: 1020px; }
.rail-cross--7 { left: 1200px; }
.printer-rig-real {
  width: 560px;
  left: calc(80px + var(--wpx-progress, 0) * (100% - 170px));
  bottom: 84px;
}
.print-spray {
  width: 150px;
  height: 240px;
  top: 37%;
}
.print-spray--b {
  width: 106px;
  height: 190px;
}
.paint-dot {
  width: 14px;
  height: 14px;
  top: 52%;
}
.global-print-line {
  width: 34px;
}

/* Bigger contextual surfaces */
.window-frame {
  left: 10%;
  right: 10%;
  top: 18%;
  bottom: 10%;
}
.wood-door-frame {
  left: 16%;
  right: 16%;
  top: 14%;
  bottom: 0;
}
.concrete-wall-target {
  left: 6%;
  right: 6%;
  top: 10%;
  bottom: 8%;
}
.metal-container {
  left: 4%;
  right: 4%;
  top: 18%;
  bottom: 12%;
}

/* Custom printed content */
.glass-brand-design,
.wood-art-design,
.concrete-ad-design,
.metal-industrial-design {
  position: absolute;
  inset: 0;
}

.glass-brand-design {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 12px;
  padding: 18px;
}
.glass-brand-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(180deg, rgba(29,59,99,.24), rgba(29,59,99,.10));
}
.glass-brand-design img {
  position: relative;
  width: clamp(110px, 34%, 180px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}
.glass-brand-design span,
.glass-brand-design small {
  position: relative;
  display: block;
  color: #0e2e52;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.glass-brand-design span {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: clamp(20px, 2vw, 32px);
}
.glass-brand-design small {
  font-size: clamp(12px, 1vw, 15px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wood-art-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.03) brightness(.98);
}
.wood-art-design::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 52%, rgba(0,0,0,.44) 100%);
}
.wood-art-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 2;
  color: white;
}
.wood-art-caption span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  opacity: .84;
}
.wood-art-caption strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.05;
}

.concrete-ad-design {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(13,30,52,.70), rgba(153,27,27,.40)),
    url('img/galeria-mural-residencial.jpg') center/cover no-repeat;
}
.concrete-ad-design::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.24));
}
.concrete-ad-design > * { position: relative; z-index: 1; }
.ad-kicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.20);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}
.concrete-ad-design h3 {
  margin-top: 14px;
  font-size: clamp(24px, 2.2vw, 40px);
  line-height: .95;
  letter-spacing: -1.4px;
}
.concrete-ad-design p {
  margin-top: 12px;
  max-width: 320px;
  line-height: 1.5;
  font-size: 15px;
}
.ad-points {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ad-points span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 800;
}

.metal-industrial-design {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18,22,29,.20), rgba(18,22,29,.36));
}
.metal-industrial-design::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(255,255,255,.08) 72% 74%, transparent 74%),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 18%);
}
.metal-industrial-design > * { position: relative; z-index: 1; }
.industrial-top {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  opacity: .8;
}
.metal-industrial-design strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(28px, 2vw, 42px);
  line-height: .95;
  letter-spacing: -1px;
}
.metal-industrial-design p {
  margin-top: 12px;
  max-width: 290px;
  font-size: 15px;
  line-height: 1.5;
}
.industrial-bars {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}
.industrial-bars span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffdf7e, #ffd100 26%, rgba(255,255,255,.10) 26%);
}
.industrial-bars span:nth-child(2) { width: 82%; }
.industrial-bars span:nth-child(3) { width: 62%; }

@media (max-width: 1280px) {
  .horizontal-wallprinter__copy {
    max-width: 500px;
    top: 92px;
    left: 24px;
  }
  .scene-wall { inset: 92px 20px 220px 20px; }
  .printer-rig-real { width: 460px; }
  .rail-cross--5 { left: 770px; }
  .rail-cross--6 { left: 920px; }
  .rail-cross--7 { left: 1070px; }
}

@media (max-width: 980px) {
  .horizontal-wallprinter { height: 410vh; }
  .horizontal-wallprinter__copy {
    position: absolute;
    top: 88px;
    left: 14px;
    right: 14px;
    max-width: none;
    padding: 18px;
  }
  .horizontal-wallprinter__copy h2 { font-size: clamp(34px, 7vw, 48px); }
  .scene-hud { top: 14px; left: 12px; right: 12px; }
  .scene-rails { min-height: 100vh; }
  .scene-wall { inset: 300px 10px 180px 10px; }
  .floor-rail { left: 12px; right: 12px; }
  .rail-cross { width: 36px; height: 44px; }
  .rail-cross--1 { left: 36px; }
  .rail-cross--2 { left: 108px; }
  .rail-cross--3 { left: 180px; }
  .rail-cross--4 { left: 252px; }
  .rail-cross--5 { left: 324px; }
  .rail-cross--6 { left: 396px; }
  .rail-cross--7 { left: 468px; }
  .printer-rig-real { width: 265px; left: calc(36px + var(--wpx-progress, 0) * (100% - 74px)); bottom: 86px; }
  .print-spray { width: 72px; height: 120px; }
  .print-spray--b { width: 52px; height: 94px; }
  .glass-brand-design span { font-size: 18px; }
  .concrete-ad-design h3 { font-size: 24px; }
  .metal-industrial-design strong { font-size: 26px; }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V5
   Layout separation + more realistic surfaces
   ============================= */
.horizontal-wallprinter__grid {
  width: 100%;
  padding: 24px 24px 0;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.horizontal-wallprinter__copy {
  position: relative;
  top: auto;
  left: auto;
  align-self: stretch;
  margin-top: 92px;
  max-width: none;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(180deg, rgba(8,12,18,.92), rgba(8,12,18,.76));
}
.horizontal-wallprinter__copy h2 {
  max-width: none;
  font-size: clamp(38px, 4vw, 68px);
  line-height: .95;
}
.horizontal-wallprinter__copy p {
  max-width: none;
  font-size: 15px;
  line-height: 1.7;
}
.scene-hud {
  left: 16px;
  right: 16px;
  top: 16px;
}
.horizontal-wallprinter__scene {
  min-width: 0;
}
.scene-rails {
  height: calc(100vh - 48px);
  min-height: 760px;
  border-radius: 28px;
}
.scene-wall {
  inset: 72px 20px 210px 20px;
  border-radius: 24px;
}
.floor-rail { left: 22px; right: 22px; }
.floor-rail--back { bottom: 126px; }
.floor-rail--front { bottom: 84px; }
.rail-cross { bottom: 84px; }
.printer-rig-real { width: 520px; bottom: 74px; }

/* More realistic glass storefront */
.context-panel--glass::before {
  background:
    linear-gradient(180deg, #d7d2cb 0%, #c9c3ba 100%);
}
.glass-facade {
  background: linear-gradient(180deg, #e6e2dc 0%, #d1cbc2 100%);
}
.glass-facade::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 18%;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.10)),
    linear-gradient(90deg, #a0a3a7 0 4%, #cfc6ba 4% 96%, #a0a3a7 96% 100%);
}
.facade-topline {
  height: 22%;
  background:
    linear-gradient(180deg, #444f5b 0%, #2d3944 100%);
  box-shadow: inset 0 -2px 0 rgba(255,255,255,.12);
}
.facade-topline::before {
  content: 'LOCAL COMERCIAL';
  position: absolute;
  left: 18px; right: 18px; top: 26px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
}
.window-frame {
  left: 10%; right: 10%; top: 24%; bottom: 18%;
  border-radius: 10px;
  background: linear-gradient(180deg, #aab4be 0%, #8f98a1 100%);
  box-shadow: inset 0 0 0 8px rgba(226,232,237,.98), 0 18px 32px rgba(0,0,0,.18);
}
.window-bars::before { width: 5px; }
.window-bars::after { height: 5px; top: 58%; }
.glass-print-target {
  inset: 10px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(134,167,187,.20), rgba(89,123,143,.12)),
    radial-gradient(circle at 25% 28%, rgba(255,255,255,.18), transparent 14%),
    radial-gradient(circle at 76% 20%, rgba(255,255,255,.10), transparent 12%),
    radial-gradient(circle at 74% 70%, rgba(255,255,255,.08), transparent 18%);
}
.glass-print-target::after {
  background:
    linear-gradient(118deg, transparent 0 26%, rgba(255,255,255,.24) 46%, transparent 58%),
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 16%, transparent 78%, rgba(255,255,255,.04));
}
.glass-brand-design {
  grid-template-rows: auto auto auto;
  place-content: center;
  gap: 10px;
}
.glass-brand-design img {
  width: 140px;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.glass-brand-design span { font-size: 28px; color: #17344a; }
.glass-brand-design small { color: #214860; font-size: 13px; }

/* More realistic wood room + door */
.context-panel--wood::before {
  background: linear-gradient(180deg, #ebe3d8 0%, #d6c8b4 100%);
}
.wood-room {
  background:
    linear-gradient(180deg, #f0e9e0 0 72%, #b99c7a 72% 100%);
}
.wood-room::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 24%;
  height: 2px;
  background: rgba(95,70,46,.22);
}
.wood-room::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background:
    repeating-linear-gradient(90deg, #b98d62 0 14px, #c99869 14px 16px, #b2845b 16px 30px);
}
.wood-wall { background: linear-gradient(180deg, transparent, transparent); }
.wood-door-frame {
  left: 22%; right: 22%; top: 12%; bottom: 24%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #8e603d 0%, #764d30 48%, #684126 100%);
  box-shadow: inset 0 0 0 10px rgba(171,121,80,.28), 0 16px 34px rgba(0,0,0,.16);
}
.wood-door-frame::before {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 10px, rgba(0,0,0,.05) 10px 12px),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 16%);
}
.wood-door-frame::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; top: 16px; bottom: 16px;
  border: 2px solid rgba(231,200,167,.26);
  border-radius: 4px;
  z-index: 1;
}
.wood-print-target {
  inset: 26px 24px 22px;
  border-radius: 4px;
}
.wood-door-handle { right: 18px; height: 52px; width: 11px; }
.wood-art-caption {
  left: 12px; right: 12px; bottom: 12px;
}
.wood-art-caption strong { font-size: 24px; }

/* More realistic concrete wall / house fence */
.context-panel--concrete::before {
  background: linear-gradient(180deg, #d8d9d5 0%, #c8c8c1 100%);
}
.concrete-room {
  background:
    linear-gradient(180deg, #dceaf4 0 18%, #e6e4de 18% 20%, #cbc8c2 20% 100%);
}
.concrete-room::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 16%;
  background: linear-gradient(180deg, #bdb8af, #a79f95);
}
.concrete-wall-target {
  left: 8%; right: 8%; top: 22%; bottom: 16%;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 16%),
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.10), transparent 4%),
    radial-gradient(circle at 76% 54%, rgba(0,0,0,.06), transparent 6%),
    linear-gradient(180deg, #d0cec9 0%, #b5b2ab 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 8px 26px rgba(0,0,0,.10);
}
.concrete-wall-target::before {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 8px, rgba(0,0,0,.02) 8px 16px),
    linear-gradient(90deg, transparent 0 68%, rgba(0,0,0,.04) 70%, transparent 72%);
  opacity: .7;
}
.concrete-print-target {
  inset: 0;
}
.concrete-ad-design {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(7,28,47,.72), rgba(145,34,26,.35)),
    url('img/galeria-mural-residencial.jpg') center/cover no-repeat;
}
.concrete-ad-design h3 { font-size: 32px; max-width: 260px; }
.concrete-ad-design p { max-width: 240px; font-size: 14px; }
.ad-points span { font-size: 11px; }

/* More realistic full shipping container */
.context-panel--metal::before {
  background: linear-gradient(180deg, #dce5df 0%, #cfd8d2 100%);
}
.metal-yard {
  background: linear-gradient(180deg, #d9e5ea 0 20%, #d3d6d1 20% 22%, #c5c6c1 22% 100%);
}
.metal-yard::before {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.08));
}
.metal-container {
  left: 3%; right: 3%; top: 28%; bottom: 18%;
  border-radius: 2px;
  background: linear-gradient(180deg, #b9652c 0%, #a75322 46%, #8b4017 100%);
}
.metal-container::before {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 10px, rgba(0,0,0,.13) 10px 13px),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 18%),
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.10), transparent 6%),
    radial-gradient(circle at 84% 72%, rgba(0,0,0,.10), transparent 8%);
}
.container-locks { left: 18px; }
.metal-print-target {
  inset: 12px 54px 12px 74px;
  clip-path: inset(0 calc((1 - var(--metal-reveal, 0)) * 100%) 0 0);
}
.metal-industrial-design {
  padding: 24px;
  background: linear-gradient(180deg, rgba(10,18,24,.10), rgba(10,18,24,.24));
}
.metal-industrial-design strong { font-size: 34px; max-width: 250px; }
.metal-industrial-design p { max-width: 250px; font-size: 14px; }

/* Slightly cleaner labels */
.panel-badge { background: rgba(10,14,18,.56); }

@media (max-width: 1220px) {
  .horizontal-wallprinter__grid { grid-template-columns: 340px minmax(0, 1fr); }
  .horizontal-wallprinter__copy h2 { font-size: clamp(32px, 3.8vw, 54px); }
  .scene-rails { min-height: 720px; }
  .printer-rig-real { width: 450px; }
}

@media (max-width: 980px) {
  .horizontal-wallprinter__grid {
    grid-template-columns: 1fr;
    padding: 14px 14px 0;
  }
  .horizontal-wallprinter__copy {
    margin-top: 88px;
    padding: 18px;
    border-radius: 20px;
  }
  .scene-rails {
    height: calc(100vh - 20px);
    min-height: 680px;
  }
  .scene-wall { inset: 68px 12px 170px 12px; }
  .printer-rig-real { width: 260px; }
  .glass-brand-design img { width: 82px; }
  .glass-brand-design span { font-size: 16px; }
  .glass-brand-design small { font-size: 11px; }
  .concrete-ad-design h3 { font-size: 20px; }
  .metal-industrial-design strong { font-size: 22px; }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V7
   Keep desktop strong, fix only mobile/tablet
   ============================= */
html, body { overflow-x: hidden; }

/* desktop stays very close to V5, only a slight cleanup */
@media (min-width: 981px) {
  .horizontal-wallprinter {
    height: 450vh;
  }
  .horizontal-wallprinter__grid {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 18px;
  }
  .horizontal-wallprinter__copy {
    margin-top: 88px;
  }
  .scene-rails {
    min-height: 740px;
    height: calc(100vh - 40px);
  }
}

/* tablet and mobile only */
@media (max-width: 980px) {
  .horizontal-wallprinter {
    height: 345vh;
  }

  .horizontal-wallprinter__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px 12px 0;
  }

  .horizontal-wallprinter__copy {
    position: relative;
    margin-top: 78px;
    padding: 16px;
    border-radius: 18px;
    max-width: none;
  }

  .horizontal-wallprinter__copy h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: .97;
  }

  .horizontal-wallprinter__copy p {
    font-size: 14px;
    line-height: 1.6;
  }

  .wpx-dashboard {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .wpx-dashboard div:last-child {
    grid-column: 1 / -1;
  }

  .wpx-dashboard strong {
    font-size: 14px;
  }

  .wpx-material-pills {
    gap: 8px;
  }

  .wpx-material-pills span {
    font-size: 10px;
    padding: 8px 10px;
  }

  .scene-hud {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .scene-hud span,
  .scene-hud strong {
    font-size: 11px;
  }

  .scene-rails {
    height: 74svh;
    min-height: 560px;
    border-radius: 22px;
  }

  .scene-wall {
    top: 60px;
    bottom: 150px;
    left: 50%;
    right: auto;
    width: min(650px, 155vw);
    transform: translateX(-50%);
    inset: auto;
    border-radius: 18px;
    gap: 8px;
  }

  .context-panel {
    border-radius: 14px;
  }

  .panel-badge {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 6px 9px;
  }

  .floor-rail {
    left: 12px;
    right: 12px;
  }

  .floor-rail--back {
    bottom: 100px;
    height: 14px;
  }

  .floor-rail--front {
    bottom: 70px;
    height: 14px;
  }

  .rail-cross {
    bottom: 70px;
    width: 34px;
    height: 36px;
  }

  .rail-cross--1 { left: 26px; }
  .rail-cross--2 { left: 88px; }
  .rail-cross--3 { left: 150px; }
  .rail-cross--4 { left: 212px; }
  .rail-cross--5 { left: 274px; }
  .rail-cross--6 { left: 336px; }
  .rail-cross--7 { left: 398px; }

  .printer-rig-real {
    width: 225px;
    left: calc(22px + var(--wpx-progress, 0) * (100% - 54px));
    bottom: 58px;
  }

  .print-spray {
    width: 58px;
    height: 96px;
    top: 39%;
  }

  .print-spray--b {
    width: 40px;
    height: 72px;
  }

  .paint-dot {
    width: 8px;
    height: 8px;
  }

  .global-print-line {
    width: 18px;
  }

  .window-frame {
    left: 8%;
    right: 8%;
    top: 22%;
    bottom: 16%;
  }

  .facade-topline::before {
    top: 16px;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 1.2px;
  }

  .glass-brand-design img {
    width: 74px;
  }

  .glass-brand-design span {
    font-size: 15px;
  }

  .glass-brand-design small {
    display: none;
  }

  .wood-door-frame {
    left: 18%;
    right: 18%;
    top: 12%;
    bottom: 22%;
  }

  .wood-print-target {
    inset: 18px 16px 18px;
  }

  .wood-door-handle {
    right: 14px;
    width: 8px;
    height: 40px;
  }

  .wood-art-caption {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .wood-art-caption span {
    font-size: 8px;
  }

  .wood-art-caption strong {
    font-size: 14px;
  }

  .concrete-wall-target {
    left: 6%;
    right: 6%;
    top: 20%;
    bottom: 14%;
  }

  .concrete-ad-design {
    padding: 12px;
  }

  .ad-kicker {
    font-size: 8px;
    padding: 6px 8px;
  }

  .concrete-ad-design h3 {
    font-size: 16px;
    margin-top: 8px;
    max-width: 150px;
  }

  .concrete-ad-design p,
  .ad-points {
    display: none;
  }

  .metal-container {
    left: 2%;
    right: 2%;
    top: 26%;
    bottom: 16%;
  }

  .metal-print-target {
    inset: 10px 34px 10px 52px;
  }

  .metal-industrial-design {
    padding: 12px;
  }

  .industrial-top {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .metal-industrial-design strong {
    font-size: 16px;
    max-width: 120px;
  }

  .metal-industrial-design p {
    display: none;
  }

  .industrial-bars {
    margin-top: 10px;
    gap: 5px;
  }
}

@media (max-width: 640px) {
  .navbar {
    width: calc(100% - 18px);
    top: 8px;
    padding: 10px 12px;
    border-radius: 16px;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .btn-nav {
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 118px 16px 48px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .print-preview {
    height: 310px;
  }

  .horizontal-wallprinter {
    height: 320vh;
  }

  .horizontal-wallprinter__copy {
    margin-top: 74px;
    padding: 14px;
  }

  .horizontal-wallprinter__copy .section-tag {
    font-size: 10px;
  }

  .horizontal-wallprinter__copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .horizontal-wallprinter__copy p {
    font-size: 13px;
  }

  .wpx-dashboard {
    grid-template-columns: 1fr;
  }

  .wpx-dashboard div:last-child {
    grid-column: auto;
  }

  .scene-rails {
    height: 68svh;
    min-height: 500px;
  }

  .scene-wall {
    top: 54px;
    bottom: 132px;
    width: min(560px, 160vw);
  }

  .scene-hud {
    padding: 8px 10px;
    gap: 8px;
  }

  .scene-hud span,
  .scene-hud strong {
    font-size: 10px;
  }

  .printer-rig-real {
    width: 195px;
    left: calc(18px + var(--wpx-progress, 0) * (100% - 48px));
    bottom: 54px;
  }

  .floor-rail--back { bottom: 92px; }
  .floor-rail--front { bottom: 64px; }
  .rail-cross { bottom: 64px; }

  .rail-cross--1 { left: 18px; }
  .rail-cross--2 { left: 68px; }
  .rail-cross--3 { left: 118px; }
  .rail-cross--4 { left: 168px; }
  .rail-cross--5 { left: 218px; }
  .rail-cross--6 { left: 268px; }
  .rail-cross--7 { left: 318px; }

  .glass-brand-design img { width: 64px; }
  .glass-brand-design span { font-size: 13px; }
  .wood-art-caption strong,
  .concrete-ad-design h3,
  .metal-industrial-design strong { font-size: 13px; }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V9
   Fix desktop spacing + mobile 4 materials + full pinned progress
   ============================= */
.horizontal-wallprinter {
  height: auto !important;
}

.horizontal-wallprinter__sticky {
  min-height: 100vh !important;
  padding: 88px 0 20px !important;
  align-items: stretch !important;
}

.horizontal-wallprinter__grid {
  width: min(1460px, calc(100% - 28px)) !important;
  margin: 0 auto !important;
  grid-template-columns: 360px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.horizontal-wallprinter__copy {
  position: relative !important;
  margin-top: 0 !important;
  align-self: center !important;
  padding: 20px 18px !important;
  border-radius: 20px !important;
}

.horizontal-wallprinter__copy h2 {
  font-size: clamp(34px, 3.2vw, 54px) !important;
  line-height: .96 !important;
}

.horizontal-wallprinter__copy p {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.wpx-dashboard {
  gap: 10px !important;
}

.horizontal-wallprinter__scene {
  min-width: 0 !important;
}

.scene-hud {
  top: 10px !important;
  left: 10px !important;
  right: 10px !important;
  padding: 10px 14px !important;
  border-radius: 14px !important;
}

.scene-rails {
  min-height: 680px !important;
  height: calc(100vh - 112px) !important;
  border-radius: 22px !important;
}

.scene-wall {
  inset: 56px 12px 148px 12px !important;
  border-radius: 18px !important;
  gap: 8px !important;
}

.context-panel {
  border-radius: 14px !important;
}

.panel-badge {
  top: 10px !important;
  left: 10px !important;
  font-size: 10px !important;
  padding: 7px 10px !important;
}

.floor-rail {
  left: 12px !important;
  right: 12px !important;
}

.floor-rail--back {
  bottom: 92px !important;
  height: 14px !important;
}

.floor-rail--front {
  bottom: 60px !important;
  height: 14px !important;
}

.rail-cross {
  bottom: 60px !important;
  width: 42px !important;
  height: 34px !important;
}

.rail-cross--1 { left: 24px !important; }
.rail-cross--2 { left: 96px !important; }
.rail-cross--3 { left: 168px !important; }
.rail-cross--4 { left: 240px !important; }
.rail-cross--5 { left: 312px !important; }
.rail-cross--6 { left: 384px !important; }
.rail-cross--7 { left: 456px !important; }

.printer-rig-real {
  width: 285px !important;
  left: calc(18px + var(--wpx-progress, 0) * (100% - 58px)) !important;
  bottom: 44px !important;
}

.print-spray {
  width: 68px !important;
  height: 110px !important;
}

.print-spray--b {
  width: 48px !important;
  height: 84px !important;
}

.paint-dot {
  width: 8px !important;
  height: 8px !important;
}

.global-print-line {
  width: 18px !important;
}

/* Desktop refinement */
@media (min-width: 981px) {
  .horizontal-wallprinter__grid {
    grid-template-columns: 360px minmax(0, 1fr) !important;
  }

  .scene-rails {
    min-height: 690px !important;
    height: calc(100vh - 118px) !important;
  }

  .scene-wall {
    inset: 58px 14px 150px 14px !important;
  }

  .window-frame,
  .wood-door-frame,
  .concrete-wall-target,
  .metal-container {
    transform: none !important;
  }
}

/* Tablet/mobile: show all 4 materials at once, not just 2 */
@media (max-width: 980px) {
  .horizontal-wallprinter__sticky {
    padding: 82px 0 14px !important;
  }

  .horizontal-wallprinter__grid {
    width: calc(100% - 16px) !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .horizontal-wallprinter__copy {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .horizontal-wallprinter__copy h2 {
    font-size: clamp(28px, 6.8vw, 38px) !important;
  }

  .horizontal-wallprinter__copy p {
    font-size: 13px !important;
  }

  .wpx-dashboard {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .wpx-dashboard div:last-child {
    grid-column: 1 / -1 !important;
  }

  .wpx-material-pills {
    gap: 8px !important;
  }

  .wpx-material-pills span {
    font-size: 10px !important;
    padding: 8px 9px !important;
  }

  .scene-hud span,
  .scene-hud strong {
    font-size: 10px !important;
  }

  .scene-rails {
    min-height: 430px !important;
    height: 56svh !important;
    border-radius: 18px !important;
  }

  .scene-wall {
    inset: 50px 8px 96px 8px !important;
    width: auto !important;
    left: 8px !important;
    right: 8px !important;
    transform: none !important;
    gap: 5px !important;
  }

  .context-panel {
    min-width: 0 !important;
  }

  .panel-badge {
    font-size: 8px !important;
    padding: 5px 7px !important;
  }

  .window-frame {
    left: 6% !important;
    right: 6% !important;
    top: 20% !important;
    bottom: 12% !important;
  }

  .facade-topline::before {
    top: 12px !important;
    left: 8px !important;
    right: 8px !important;
    padding: 5px 6px !important;
    font-size: 8px !important;
    letter-spacing: .8px !important;
  }

  .glass-brand-design {
    gap: 6px !important;
    padding: 8px !important;
  }

  .glass-brand-design img {
    width: 40px !important;
  }

  .glass-brand-design span {
    font-size: 10px !important;
  }

  .glass-brand-design small {
    display: none !important;
  }

  .wood-door-frame {
    left: 12% !important;
    right: 12% !important;
    top: 11% !important;
    bottom: 18% !important;
  }

  .wood-print-target {
    inset: 10px 10px 10px !important;
  }

  .wood-door-handle {
    right: 10px !important;
    width: 6px !important;
    height: 30px !important;
  }

  .wood-art-caption {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
  }

  .wood-art-caption span {
    font-size: 6px !important;
  }

  .wood-art-caption strong {
    font-size: 10px !important;
  }

  .concrete-wall-target {
    left: 4% !important;
    right: 4% !important;
    top: 18% !important;
    bottom: 12% !important;
  }

  .concrete-ad-design {
    padding: 8px !important;
  }

  .ad-kicker {
    font-size: 6px !important;
    padding: 4px 6px !important;
  }

  .concrete-ad-design h3 {
    margin-top: 6px !important;
    max-width: 84px !important;
    font-size: 10px !important;
  }

  .concrete-ad-design p,
  .ad-points {
    display: none !important;
  }

  .metal-container {
    left: 2% !important;
    right: 2% !important;
    top: 22% !important;
    bottom: 12% !important;
  }

  .metal-print-target {
    inset: 6px 18px 6px 26px !important;
  }

  .metal-industrial-design {
    padding: 8px !important;
  }

  .industrial-top {
    font-size: 6px !important;
    letter-spacing: .8px !important;
  }

  .metal-industrial-design strong {
    max-width: 82px !important;
    font-size: 10px !important;
  }

  .metal-industrial-design p,
  .industrial-bars {
    display: none !important;
  }

  .floor-rail--back {
    bottom: 64px !important;
    height: 10px !important;
  }

  .floor-rail--front {
    bottom: 42px !important;
    height: 10px !important;
  }

  .rail-cross {
    bottom: 42px !important;
    width: 24px !important;
    height: 24px !important;
  }

  .rail-cross--1 { left: 12px !important; }
  .rail-cross--2 { left: 46px !important; }
  .rail-cross--3 { left: 80px !important; }
  .rail-cross--4 { left: 114px !important; }
  .rail-cross--5 { left: 148px !important; }
  .rail-cross--6 { left: 182px !important; }
  .rail-cross--7 { left: 216px !important; }

  .printer-rig-real {
    width: 124px !important;
    left: calc(12px + var(--wpx-progress, 0) * (100% - 32px)) !important;
    bottom: 30px !important;
  }

  .print-spray {
    width: 32px !important;
    height: 54px !important;
    top: 40% !important;
  }

  .print-spray--b {
    width: 22px !important;
    height: 40px !important;
  }

  .paint-dot {
    width: 5px !important;
    height: 5px !important;
  }

  .global-print-line {
    width: 12px !important;
  }
}

@media (max-width: 560px) {
  .horizontal-wallprinter__copy {
    padding: 12px !important;
  }

  .horizontal-wallprinter__copy h2 {
    font-size: 26px !important;
  }

  .wpx-dashboard {
    grid-template-columns: 1fr !important;
  }

  .wpx-dashboard div:last-child {
    grid-column: auto !important;
  }

  .scene-rails {
    min-height: 390px !important;
    height: 52svh !important;
  }

  .scene-wall {
    inset: 48px 6px 88px 6px !important;
    gap: 4px !important;
  }

  .printer-rig-real {
    width: 112px !important;
    bottom: 28px !important;
  }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V10
   Balanced scroll duration
   ============================= */

/* V10 keeps the compact scene from V9, but restores a proper multi-scroll print sequence. */
.horizontal-wallprinter__sticky {
  scroll-snap-align: start;
}

@media (min-width: 981px) {
  .scene-rails {
    min-height: 700px !important;
    height: calc(100vh - 108px) !important;
  }

  .printer-rig-real {
    width: 310px !important;
  }

  .horizontal-wallprinter__copy h2 {
    font-size: clamp(36px, 3.35vw, 56px) !important;
  }
}

@media (max-width: 980px) {
  .scene-rails {
    min-height: 450px !important;
    height: 58svh !important;
  }

  .printer-rig-real {
    width: 136px !important;
  }
}

@media (max-width: 560px) {
  .scene-rails {
    min-height: 410px !important;
    height: 54svh !important;
  }

  .printer-rig-real {
    width: 122px !important;
  }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V11
   Longer scroll + wider material panels
   ============================= */

/* Desktop: give the scene more width and reduce the tall/thin look */
.horizontal-wallprinter__grid {
  width: min(1560px, calc(100% - 24px)) !important;
  grid-template-columns: 290px minmax(0, 1fr) !important;
  gap: 14px !important;
}

.horizontal-wallprinter__copy {
  padding: 18px 16px !important;
}

.horizontal-wallprinter__copy h2 {
  font-size: clamp(32px, 3vw, 50px) !important;
}

.scene-rails {
  min-height: 650px !important;
  height: calc(100vh - 112px) !important;
  border-radius: 20px !important;
}

.scene-wall {
  inset: 62px 8px 128px 8px !important;
  gap: 8px !important;
  border-radius: 16px !important;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.04), 0 24px 60px rgba(0,0,0,.20) !important;
}

.context-panel {
  border-radius: 12px !important;
}

.panel-badge {
  top: 8px !important;
  left: 8px !important;
  font-size: 9px !important;
  padding: 6px 9px !important;
}

/* Make each material read wider, not so thin */
.window-frame {
  left: 4% !important;
  right: 4% !important;
  top: 18% !important;
  bottom: 10% !important;
  border-radius: 12px !important;
}

.glass-print-target {
  inset: 6px !important;
}

.glass-brand-design {
  gap: 8px !important;
  padding: 8px !important;
}

.glass-brand-design img {
  width: 82px !important;
}

.glass-brand-design span {
  font-size: 18px !important;
}

.wood-door-frame {
  left: 8% !important;
  right: 8% !important;
  top: 10% !important;
  bottom: 14% !important;
}

.wood-print-target {
  inset: 12px 10px 12px !important;
}

.wood-door-handle {
  right: 10px !important;
}

.concrete-wall-target {
  left: 2% !important;
  right: 2% !important;
  top: 18% !important;
  bottom: 10% !important;
}

.concrete-ad-design {
  padding: 12px !important;
}

.concrete-ad-design h3 {
  max-width: 170px !important;
  font-size: 20px !important;
}

.concrete-ad-design p {
  max-width: 160px !important;
  font-size: 12px !important;
}

.metal-container {
  left: 1% !important;
  right: 1% !important;
  top: 22% !important;
  bottom: 10% !important;
}

.metal-print-target {
  inset: 8px 22px 8px 28px !important;
}

.metal-industrial-design {
  padding: 12px !important;
}

.metal-industrial-design strong {
  font-size: 20px !important;
  max-width: 150px !important;
}

.metal-industrial-design p {
  max-width: 150px !important;
  font-size: 12px !important;
}

/* Rails / printer compact but still clear */
.floor-rail--back {
  bottom: 76px !important;
}

.floor-rail--front {
  bottom: 50px !important;
}

.rail-cross {
  bottom: 50px !important;
  width: 36px !important;
  height: 28px !important;
}
.rail-cross--1 { left: 18px !important; }
.rail-cross--2 { left: 82px !important; }
.rail-cross--3 { left: 146px !important; }
.rail-cross--4 { left: 210px !important; }
.rail-cross--5 { left: 274px !important; }
.rail-cross--6 { left: 338px !important; }
.rail-cross--7 { left: 402px !important; }

.printer-rig-real {
  width: 265px !important;
  left: calc(18px + var(--wpx-progress, 0) * (100% - 56px)) !important;
  bottom: 34px !important;
}

.print-spray {
  width: 64px !important;
  height: 100px !important;
}

.print-spray--b {
  width: 46px !important;
  height: 78px !important;
}

/* Tablet */
@media (max-width: 980px) {
  .horizontal-wallprinter__grid {
    width: calc(100% - 14px) !important;
    grid-template-columns: 1fr !important;
  }

  .horizontal-wallprinter__copy {
    padding: 12px !important;
  }

  .scene-rails {
    min-height: 420px !important;
    height: 54svh !important;
  }

  .scene-wall {
    inset: 48px 6px 88px 6px !important;
    gap: 4px !important;
  }

  .window-frame {
    left: 2% !important;
    right: 2% !important;
    top: 16% !important;
    bottom: 8% !important;
  }

  .wood-door-frame {
    left: 6% !important;
    right: 6% !important;
    top: 9% !important;
    bottom: 12% !important;
  }

  .concrete-wall-target {
    left: 1% !important;
    right: 1% !important;
    top: 16% !important;
    bottom: 8% !important;
  }

  .metal-container {
    left: 0.5% !important;
    right: 0.5% !important;
    top: 18% !important;
    bottom: 8% !important;
  }

  .glass-brand-design img {
    width: 46px !important;
  }

  .glass-brand-design span {
    font-size: 11px !important;
  }

  .wood-art-caption strong,
  .concrete-ad-design h3,
  .metal-industrial-design strong {
    font-size: 11px !important;
  }

  .concrete-ad-design p,
  .metal-industrial-design p,
  .ad-points,
  .industrial-bars {
    display: none !important;
  }

  .floor-rail--back {
    bottom: 60px !important;
    height: 10px !important;
  }

  .floor-rail--front {
    bottom: 40px !important;
    height: 10px !important;
  }

  .rail-cross {
    bottom: 40px !important;
    width: 22px !important;
    height: 20px !important;
  }
  .rail-cross--1 { left: 10px !important; }
  .rail-cross--2 { left: 40px !important; }
  .rail-cross--3 { left: 70px !important; }
  .rail-cross--4 { left: 100px !important; }
  .rail-cross--5 { left: 130px !important; }
  .rail-cross--6 { left: 160px !important; }
  .rail-cross--7 { left: 190px !important; }

  .printer-rig-real {
    width: 116px !important;
    left: calc(10px + var(--wpx-progress, 0) * (100% - 28px)) !important;
    bottom: 28px !important;
  }

  .print-spray {
    width: 28px !important;
    height: 44px !important;
  }

  .print-spray--b {
    width: 20px !important;
    height: 34px !important;
  }
}

@media (max-width: 560px) {
  .horizontal-wallprinter__copy h2 {
    font-size: 24px !important;
  }

  .scene-rails {
    min-height: 390px !important;
    height: 50svh !important;
  }

  .scene-wall {
    inset: 46px 4px 84px 4px !important;
    gap: 3px !important;
  }

  .glass-brand-design img {
    width: 38px !important;
  }

  .glass-brand-design span {
    font-size: 10px !important;
  }

  .wood-art-caption span {
    font-size: 6px !important;
  }

  .wood-art-caption strong,
  .concrete-ad-design h3,
  .metal-industrial-design strong {
    font-size: 10px !important;
  }
}


/* =============================
   HORIZONTAL REAL WALL PRINTER V12
   Better wooden-door art + slower scroll
   ============================= */
.wood-print-target {
  inset: 10px 10px 12px !important;
  border-radius: 6px !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.18), inset 0 0 0 1px rgba(255,255,255,.16) !important;
}

.wood-art-design {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.04));
}

.wood-art-design img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  filter: saturate(1.03) contrast(1.03);
}

.wood-art-design::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 16%, transparent 70%, rgba(0,0,0,.10));
  pointer-events: none;
}

.wood-art-caption {
  background: linear-gradient(180deg, rgba(6,10,12,.02), rgba(6,10,12,.58)) !important;
  padding-top: 22px !important;
}

.wood-art-caption strong {
  letter-spacing: .2px;
}

@media (min-width: 981px) {
  .wood-door-frame {
    left: 6% !important;
    right: 6% !important;
  }
}

@media (max-width: 980px) {
  .wood-print-target {
    inset: 8px 8px 10px !important;
  }
}


/* =============================
   V15 - client-facing copy + mobile drawer + PC scroll polish
   ============================= */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 8, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .28s ease;
}

.mobile-menu__panel {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  width: min(360px, calc(100vw - 20px));
  border-radius: 24px;
  padding: 18px;
  background: rgba(9, 11, 15, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 60px rgba(0,0,0,0.42);
  transform: translateX(104%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu.active .mobile-menu__backdrop {
  opacity: 1;
}

.mobile-menu.active .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu__top strong {
  font-size: 18px;
}

.mobile-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu__nav {
  display: grid;
  gap: 8px;
}

.mobile-menu__nav a,
.mobile-menu__cta {
  text-decoration: none;
  color: white;
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
}

.mobile-menu__nav a:hover,
.mobile-menu__cta:hover {
  background: rgba(255,255,255,0.08);
}

.mobile-menu__cta {
  margin-top: auto;
  color: #050608;
  background: var(--main-gradient);
  text-align: center;
}

body.menu-open {
  overflow: hidden;
}

.horizontal-wallprinter__copy h2 {
  text-wrap: balance;
}

.section-tag {
  letter-spacing: 1.8px;
}

@media (max-width: 720px) {
  .desktop-nav,
  .btn-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .navbar {
    align-items: center !important;
  }

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

@media (min-width: 721px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* =============================
   V16 - slower PC scroll + more realistic materials
   ============================= */
.horizontal-wallprinter__copy h2 {
  font-size: clamp(30px, 3vw, 48px) !important;
  line-height: 1.02 !important;
  max-width: 12ch;
}

.horizontal-wallprinter__copy p {
  max-width: 48ch;
}

/* Wood artwork: black ink, cleaner gallery-like look */
.wood-print-target {
  background: #f1ede6 !important;
}

.wood-art-design img {
  object-fit: cover !important;
  object-position: center center !important;
  filter: grayscale(1) contrast(1.08) saturate(0.2) !important;
}

.wood-art-caption {
  background: linear-gradient(180deg, rgba(8,10,14,0), rgba(8,10,14,.58)) !important;
}

/* Concrete should feel like a real brick wall with a simple Wolves Print brand application */
.context-panel--concrete::before {
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.02)) !important;
}

.concrete-room {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.10)),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(180deg, #b86b53 0%, #9e573f 48%, #8f4e39 100%) !important;
}

.concrete-room::before {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.10) 0 2px, transparent 2px 58px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 2px, transparent 2px 120px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,.08) 60px 62px, transparent 62px 120px) !important;
  opacity: .70 !important;
}

.concrete-wall-target {
  border: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 20px 40px rgba(0,0,0,.16) !important;
}

.concrete-print-target {
  background: rgba(255,255,255,.08) !important;
}

.concrete-brand-design {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(10,12,16,.20), rgba(10,12,16,.05)) !important;
}

.concrete-brand-design img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}

.concrete-brand-design span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.concrete-brand-design strong {
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.02;
  max-width: 14ch;
}

.concrete-brand-design p {
  max-width: 28ch !important;
}

.concrete-brand-design .ad-kicker,
.concrete-brand-design .ad-points { display: none !important; }

/* Metal should read as gray metal, not generic */
.context-panel--metal::before {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0)) !important;
}

.metal-yard {
  background:
    radial-gradient(circle at 22% 16%, rgba(255,255,255,.18), transparent 22%),
    linear-gradient(180deg, #d3d7dc 0%, #b7bec7 42%, #a5aeb8 100%) !important;
}

.metal-yard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), transparent 26%);
}

.metal-container {
  background:
    linear-gradient(90deg, rgba(255,255,255,.25), rgba(255,255,255,0) 18%, rgba(0,0,0,.06) 52%, rgba(255,255,255,.10) 100%),
    linear-gradient(180deg, #949da7, #7f8893) !important;
  border: 1px solid rgba(255,255,255,.20) !important;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 20px 42px rgba(0,0,0,.18) !important;
}

.metal-container::before {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 2px, transparent 2px 44px),
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 28%) !important;
  opacity: 1 !important;
}

.metal-print-target {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.16);
}

.metal-brand-design {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)) !important;
}

.metal-brand-design img {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
}

.metal-brand-design span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: rgba(255,255,255,.86);
}

.metal-brand-design strong {
  font-size: clamp(24px, 2.15vw, 34px) !important;
  max-width: 13ch;
  line-height: 1.03;
}

.metal-brand-design p {
  max-width: 28ch !important;
}

.metal-brand-design .industrial-bars,
.metal-brand-design .industrial-top { display: none !important; }

@media (max-width: 980px) {
  .concrete-brand-design img,
  .metal-brand-design img { width: 42px; height: 42px; border-radius: 12px; }
  .concrete-brand-design span,
  .metal-brand-design span { font-size: 8px; padding: 4px 7px; }
  .concrete-brand-design strong,
  .metal-brand-design strong,
  .wood-art-caption strong { font-size: 12px !important; }
  .concrete-brand-design p,
  .metal-brand-design p { display: none !important; }
}
