/* ============================================
   EUROPRINT — Premium Immersive Redesign 2026
   Modern Web Design System
   ============================================ */

:root {
  color-scheme: dark light;
  --orange: #e8531a;       /* Official Brand gold/orange from europrintuz.com */
  --orange-2: #ff6b35;     /* Official Brand gold-soft */
  --orange-lite: #ff9166;
  --orange-glow: rgba(232, 83, 26, 0.28);
  
  --ink: #060504;          /* Official Deep ink background */
  --ink-2: #0d0a08;        /* Official surface-2 */
  --panel: #080605;        /* Official surface */
  --panel-2: #0d0a08;
  --txt: #f5f0e8;          /* Official Cream text */
  --muted: #8a8078;        /* Official muted brown-gray */
  
  --line: rgba(255, 255, 255, 0.06);
  --line-2: rgba(255, 255, 255, 0.12);
  --radius: 24px;
  --maxw: 1240px;
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* Dynamic Theme Variables */
  --header-bg: rgba(6, 5, 4, 0.85);
  --input-bg: rgba(255, 255, 255, 0.02);
  --vignette-color: rgba(6, 5, 4, 0.4);
  --watermark-bg: url("../assets/logo-mark-white.png");
  --watermark-opacity: 0.016;
  --grid-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(255, 255, 255, 0.025)' stroke-width='1'/%3E%3Cpath d='M 50 0 L 50 100 M 0 50 L 100 50' fill='none' stroke='rgba(232, 83, 26, 0.012)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  --map-filter: grayscale(.45) invert(.92) hue-rotate(185deg) contrast(.95);
  --footer-bg: #040303;
  --shadow-panel: rgba(0, 0, 0, 0.3);
  --txt-heading: #f5f0e8;   /* Official Cream text for headings */
  --stat-num-gradient: linear-gradient(135deg, #f5f0e8, #8a8078);
  --bronze: #c14010;        /* Official Brand bronze */

  /* Hero Dynamic Theme Variables */
  --hero-txt: #f5f0e8;
  --hero-em-gradient: linear-gradient(100deg, var(--bronze) 0%, var(--orange) 25%, #ffc4a0 45%, var(--orange) 60%, var(--bronze) 100%);
  --hero-shadow: 0 0 60px rgba(232, 83, 26, 0.25);
  --hero-badge-bg: rgba(8, 6, 5, 0.85);
  --hero-badge-border: rgba(255, 255, 255, 0.06);
  --hero-badge-color: #8a8078;
}

[data-theme="light"] {
  --ink: #f7f5f0;          /* Warm elegant off-white/cream background */
  --ink-2: #ffffff;
  --panel: #ffffff;
  --panel-2: #ebdcd0;      /* Warm beige */
  --txt: #2a2421;          /* Dark chocolate/charcoal text */
  --muted: #7a7068;        /* Warm muted gray */
  
  --line: rgba(42, 36, 33, 0.08);
  --line-2: rgba(42, 36, 33, 0.14);
  --orange-glow: rgba(232, 83, 26, 0.12);

  --header-bg: rgba(247, 245, 240, 0.85);
  --input-bg: rgba(42, 36, 33, 0.015);
  --vignette-color: rgba(247, 245, 240, 0.4);
  --watermark-bg: url("../assets/logo-mark.png");
  --watermark-opacity: 0.022;
  --grid-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grid' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 100 0 L 0 0 0 100' fill='none' stroke='rgba(42, 36, 33, 0.035)' stroke-width='1'/%3E%3Cpath d='M 50 0 L 50 100 M 0 50 L 100 50' fill='none' stroke='rgba(232, 83, 26, 0.015)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)'/%3E%3C/svg%3E");
  --map-filter: grayscale(0.2);
  --footer-bg: #ebdcd0;
  --shadow-panel: rgba(42, 36, 33, 0.05);
  --txt-heading: #2a2421;
  --stat-num-gradient: linear-gradient(135deg, var(--txt), var(--muted));

  /* Hero Dynamic Theme Variables - Light theme overrides */
  --hero-txt: #2a2421;
  --hero-em-gradient: linear-gradient(100deg, #c14010 0%, #e8531a 25%, #ffb38a 45%, #e8531a 60%, #c14010 100%);
  --hero-shadow: none;
  --hero-badge-bg: rgba(255, 255, 255, 0.85);
  --hero-badge-border: rgba(42, 36, 33, 0.08);
  --hero-badge-color: #7a7068;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--ink);
  color: var(--txt);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Tech grid background with orange accent glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 85% 15%, var(--orange-glow) 0%, transparent 40%),
    radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.02) 0%, transparent 35%),
    var(--grid-image);
  background-size: 100% 100%, 100% 100%, 80px 80px;
  background-attachment: fixed;
  opacity: 0.9;
}

/* Subtle vignettes */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 30%, var(--vignette-color) 100%);
}

/* Background Logo Watermark */
.bg-logo-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 50vw;
  max-width: 600px;
  aspect-ratio: 42/36;
  background: var(--watermark-bg) no-repeat center/contain;
  opacity: var(--watermark-opacity);
  z-index: 0;
  pointer-events: none;
}

header, section, .marquee, footer, .floats, .loader {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--orange);
  color: #fff;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, .disp {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--txt-heading);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--orange);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.sec-title {
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 700;
  max-width: 16ch;
}

.sec-head {
  margin-bottom: 60px;
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: #1f1f2e;
  border-radius: 10px;
  border: 2px solid var(--ink);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #08080a;           /* Dark text matching the logo brand color */
  padding: 16px 32px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s var(--ease);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--orange-glow);
}

.btn::after {
  content: "→";
  transition: .4s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(234, 89, 5, 0.55);
  background: var(--orange-lite);
}

.btn:hover::after {
  transform: translateX(6px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--txt);
  box-shadow: none;
  border: 1.5px solid var(--line-2);
}

.btn.ghost::after {
  content: "";
}

.btn.ghost:hover {
  border-color: var(--orange);
  color: var(--orange-lite);
  background: rgba(234, 89, 5, 0.05);
}

.btn.btn-sm {
  padding: 11px 24px;
  font-size: 14px;
}

.btn.btn-sm::after {
  content: "";
}

.btn.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.btn.btn-block::after {
  content: "";
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity .6s ease, visibility .6s;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-mark {
  font-size: 0;
  color: transparent;
  width: 90px;
  height: 80px;
  background: url("../assets/logo-mark.png") no-repeat center/contain;
  animation: loaderpulse 1.2s var(--ease) infinite alternate;
}

@keyframes loaderpulse {
  from {
    opacity: .4;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.loader-bar {
  width: 180px;
  height: 2px;
  background: #1b1b22;
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--orange);
  animation: load 1.2s var(--ease) forwards;
}

@keyframes load {
  to {
    width: 100%;
  }
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: .4s var(--ease);
  padding: 20px 0;
}

#header.scrolled {
  padding: 12px 0;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}

#header:not(.scrolled) {
  --txt: #f5f0e8;
  --txt-heading: #f5f0e8;
  --muted: #8a8078;
  --line: rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 36px;
  flex: 0 0 auto;
  background: url("../assets/logo-mark.png") no-repeat center/contain;
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .5px;
  color: var(--txt);
}

.menu {
  display: flex;
  gap: 36px;
}

.menu a {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: .25s;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: .3s var(--ease);
}

.menu a:hover {
  color: var(--txt);
}

.menu a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 4px;
}

.lang button {
  border: none;
  background: none;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--muted);
  transition: .25s;
}

.lang button.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px var(--orange-glow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--txt);
  transition: .3s var(--ease);
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;              /* Create local stacking context to contain negative z-index children */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;      /* Increased to safely clear fixed header */
  padding-bottom: 80px;
  overflow: hidden;
  background: #060504;     /* Force dark background for video section */

  /* Force dark/cream theme variables for high contrast on the dark video background */
  --ink: #060504;
  --ink-2: #0d0a08;
  --txt: #f5f0e8;
  --txt-heading: #f5f0e8;
  --muted: #8a8078;
  --line-2: rgba(255, 255, 255, 0.15); /* light border for ghost button */
  
  --hero-txt: #f5f0e8;
  --hero-em-gradient: linear-gradient(100deg, var(--bronze) 0%, var(--orange) 25%, #ffc4a0 45%, var(--orange) 60%, var(--bronze) 100%);
  --hero-shadow: 0 0 60px rgba(232, 83, 26, 0.25);
  --hero-badge-bg: rgba(8, 6, 5, 0.85);
  --hero-badge-border: rgba(255, 255, 255, 0.06);
  --hero-badge-color: #8a8078;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  transform-origin: center center;
  border-radius: 24px;
  transform: scale(1.05);
  will-change: transform;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.6s ease;
}

.hero-video-container.card-mode {
  box-shadow: var(--hero-shadow);
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: .5;
  filter: none;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: 
    linear-gradient(100deg, var(--ink) 5%, rgba(8, 8, 10, 0.85) 35%, rgba(8, 8, 10, 0.4) 60%, rgba(8, 8, 10, 0.25) 100%),
    linear-gradient(0deg, var(--ink) 2%, transparent 40%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: -3;             /* Place at the very bottom behind video */
  width: 65vw;
  height: 65vw;
  max-width: 800px;
  max-height: 800px;
  right: -5%;
  top: -15%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(234, 89, 5, 0.25), transparent 65%);
  filter: blur(50px);
}

.hero-wrap {
  width: 100%;
  max-width: 100%;
  padding-left: clamp(16px, 4vw, 60px);   /* Shifted tightly to the left corner on all screens */
  padding-right: clamp(16px, 4vw, 60px);
  position: relative;
  z-index: 1;              /* Render on top of negative z-index background elements */
  padding-top: 30px;       /* safe clearance from the fixed header */
  -webkit-transform: translateZ(0);
  transform: translateZ(0); /* Force GPU stacking context to render text on top of video/overlays on iOS/Safari */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ebdcd0;
  margin-bottom: 24px;      /* Reduced margin for tighter layout */
  transition: .3s var(--ease);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39d98a;
  box-shadow: 0 0 0 4px rgba(57, 217, 138, 0.2);
}

.hero-title {
  font-size: clamp(32px, 5.5vw, 80px); /* Scaled down from clamp(48px, 8.5vw, 120px) to prevent massive wrapping */
  font-weight: 800;
  margin-bottom: 20px;      /* Reduced margin */
  color: #ffffff; /* Explicit high-contrast white text */
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75), 0 0 60px rgba(232, 83, 26, 0.3);
  line-height: 1.15;        /* Balanced line-height */
  transition: color .3s var(--ease);
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-top: 0.08em;     /* Padding to prevent ascender clipping (Cormorant Garamond font) */
  padding-bottom: 0.08em;  /* Padding to prevent descender clipping */
  margin-top: -0.08em;
  margin-bottom: -0.08em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, #ff5e1a 0%, #ffb38a 45%, #ff5e1a 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(232, 83, 26, 0.5));
  background-size: 200% auto;
  animation: shimmer 3.5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  to {
    background-position: -200% center;
  }
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px); /* Scaled down from clamp(17px, 2.2vw, 21px) */
  color: rgba(245, 240, 232, 0.88); /* Explicit premium cream text with high visibility */
  font-weight: 500;
  max-width: 620px;
  margin-bottom: 30px;      /* Reduced margin */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  line-height: 1.7;
  transition: color .3s var(--ease);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .btn.ghost:hover {
  border-color: var(--orange);
  color: var(--orange-lite);
  background: rgba(234, 89, 5, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;  /* Stack text above line for premium layout */
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  transition: color .3s var(--ease);
  pointer-events: none;
}

.hero-scroll i {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: var(--orange);  /* Premium accent dot */
  animation: scrolldot 1.8s var(--ease) infinite;
}

@keyframes scrolldot {
  0% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(48px);
  }
}

/* Marquee */
.marquee {
  background: var(--panel-2);
  color: var(--txt);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 5;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  animation: scrollx 30s linear infinite;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2.3vw, 26px);
}

.marquee-track b {
  color: var(--orange);
}

@keyframes scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* Stats */
.stats {
  padding: 90px 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 20px;
}

.stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
}

.stat .num span {
  color: var(--orange);
  background: none;
  -webkit-text-fill-color: initial;
}

.stat .lbl {
  color: var(--muted);
  font-size: 15px;
  margin-top: 14px;
  font-weight: 500;
}

/* Section Bases */
section {
  padding: 130px 0;
  position: relative;
}

/* Subtly rotated watermarks in sections */
.production::before, .why::before, .order::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: min(44vw, 580px);
  aspect-ratio: 2100/1730;
  background: url("../assets/logo-mark-white.png") no-repeat center/contain;
  opacity: .035;
}

.production::before {
  right: -8%;
  bottom: -4%;
  transform: rotate(-8deg);
}

.why::before {
  right: -5%;
  top: 10%;
  transform: rotate(5deg);
}

.order::before {
  left: -8%;
  bottom: -5%;
  transform: rotate(12deg);
}

section .wrap {
  position: relative;
  z-index: 1;
}

/* Bento Grid Products */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: .5s var(--ease);
  cursor: pointer;
  isolation: isolate;
}

.bento-video, .bento-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: .5;
  filter: grayscale(1) contrast(1.05);
  transition: opacity .6s var(--ease), transform .8s var(--ease), filter .6s var(--ease);
  transform: scale(1.01);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 10, 0.95) 90%);
}

.bento-card:hover {
  border-color: rgba(14, 107, 77, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(14, 107, 77, 0.15);
}

.bento-card:hover .bento-video, .bento-card:hover .bento-img {
  opacity: .9;
  transform: scale(1.06);
  filter: grayscale(0) contrast(1);
}

.bento-card.big {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-tag {
  position: absolute;
  top: 24px;
  left: 28px;
  background: rgba(8, 8, 10, 0.9);
  border: 1px solid var(--line-2);
  color: var(--txt);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.bento-body h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  margin-bottom: 10px;
}

.bento-body p {
  color: #c0c0d2;
  font-size: 14.5px;
  max-width: 44ch;
  opacity: 0;
  max-height: 0;
  transition: .5s var(--ease);
}

.bento-card:hover .bento-body p {
  opacity: 1;
  max-height: 120px;
  margin-top: 4px;
}

/* Production Split Layout */
.production {
  padding: 120px 0;
  background: var(--ink-2);
  overflow: visible;
}

.production-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.production-visual-panel {
  position: sticky;
  top: 140px;
  height: calc(100vh - 240px);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  z-index: 10;
}

.visual-stage-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-stage {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9) rotateY(15deg);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  perspective: 1000px;
}

.visual-stage.active {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
  pointer-events: auto;
}

.stage-label {
  position: absolute;
  bottom: 30px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  opacity: 0.6;
}

/* 3D Box Styling for stages */
.blueprint-box {
  width: 130px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(35deg);
  animation: floatBox 6s ease-in-out infinite alternate;
}

@keyframes floatBox {
  0% { transform: rotateX(-20deg) rotateY(35deg) translateY(0px); }
  100% { transform: rotateX(-20deg) rotateY(35deg) translateY(-12px); }
}

.bp-face {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1.5px dashed rgba(232, 83, 26, 0.6);
  background: rgba(232, 83, 26, 0.03);
}

.bp-front  { width: 130px; height: 100px; transform: translate(-50%, -50%) translate3d(0, 0, 65px); }
.bp-back   { width: 130px; height: 100px; transform: translate(-50%, -50%) translate3d(0, 0, -65px) rotateY(180deg); }
.bp-left   { width: 130px; height: 100px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, 65px); }
.bp-right  { width: 130px; height: 100px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, 65px); }
.bp-top    { width: 130px; height: 130px; transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, 50px); }
.bp-bottom { width: 130px; height: 130px; transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, 50px); }

/* STAGE 2: Printed Box */
.printed-box {
  width: 130px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(35deg);
  animation: floatBox 6s ease-in-out infinite alternate;
}

.pb-face {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pb-front {
  width: 130px;
  height: 100px;
  transform: translate(-50%, -50%) translate3d(0, 0, 65px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--bronze) 100%);
}

.logo-mark-small {
  width: 24px;
  height: 20px;
  background: url("../assets/logo-mark-white.png") no-repeat center/contain;
  margin-bottom: 4px;
}

.logo-text-small {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.pb-back   { width: 130px; height: 100px; transform: translate(-50%, -50%) translate3d(0, 0, -65px) rotateY(180deg); background: rgba(181, 62, 16, 0.95); }
.pb-left   { width: 130px; height: 100px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, 65px); background: rgba(181, 62, 16, 0.95); }
.pb-right  { width: 130px; height: 100px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, 65px); background: rgba(181, 62, 16, 0.95); }
.pb-top    { width: 130px; height: 130px; transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, 50px); background: rgba(232, 83, 26, 0.95); }
.pb-bottom { width: 130px; height: 130px; transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, 50px); background: rgba(181, 62, 16, 0.95); }

.pb-side {
  width: 130px;
  height: 100px;
  transform: translate(-50%, -50%) rotateY(90deg) translateZ(65px);
  background: rgba(181, 62, 16, 0.95);
}

.ink-colors {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.color-dot.cyan { background: #00aeef; }
.color-dot.magenta { background: #ec008c; }
.color-dot.yellow { background: #fff200; }
.color-dot.black { background: #231f20; }

/* STAGE 3: Die-Cut template */
.diecut-box {
  width: 240px;
  height: 240px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-flat-outline {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.dc-flat-outline::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1.5px dashed rgba(232, 83, 26, 0.4);
}

.dc-laser-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #39d98a, transparent);
  box-shadow: 0 0 10px #39d98a;
  animation: laserScan 3s linear infinite;
}

@keyframes laserScan {
  0% { top: 10%; }
  50% { top: 90%; }
  100% { top: 10%; }
}

/* STAGE 4: Quality Control Checked Box */
.qc-box-checked {
  width: 130px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(35deg);
  animation: floatBox 6s ease-in-out infinite alternate;
}

.qcb-face {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  border: 1.5px solid #39d98a;
  box-shadow: 0 0 15px rgba(57, 217, 138, 0.1);
}

.qcb-front {
  width: 130px;
  height: 100px;
  transform: translate(-50%, -50%) translateZ(65px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ink) 0%, var(--panel) 100%);
  color: #fff;
}

.qc-passed-badge {
  position: absolute;
  bottom: 8px;
  background: rgba(57, 217, 138, 0.15);
  border: 1px solid #39d98a;
  color: #39d98a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(57, 217, 138, 0.2);
}

.qcb-back   { width: 130px; height: 100px; transform: translate(-50%, -50%) translate3d(0, 0, -65px) rotateY(180deg); background: var(--panel); }
.qcb-left   { width: 130px; height: 100px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, 65px); background: var(--panel); }
.qcb-right  { width: 130px; height: 100px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, 65px); background: var(--panel); }
.qcb-top    { width: 130px; height: 130px; transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, 50px); background: var(--panel); }
.qcb-bottom { width: 130px; height: 130px; transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, 50px); background: var(--panel); }

.qc-scanner-line {
  position: absolute;
  width: 220px;
  height: 2px;
  background: #39d98a;
  box-shadow: 0 0 8px #39d98a;
  transform: translateZ(100px);
  top: 50%;
  left: -20px;
  animation: scanQC 4s ease-in-out infinite;
}

@keyframes scanQC {
  0% { transform: translateZ(100px) translateY(-50px); }
  50% { transform: translateZ(100px) translateY(50px); }
  100% { transform: translateZ(100px) translateY(-50px); }
}

/* Production Scroll Cards styling */
.production-text-panel {
  padding-bottom: 20vh;
}

.steps-scroll {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.step-scroll-card {
  position: relative;
  padding: 44px 38px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: opacity 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  opacity: 0.35;
}

.step-scroll-card.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(232, 83, 26, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.step-scroll-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.step-scroll-card.active::before {
  transform: scaleY(1);
}

.step-scroll-card .step-n {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.step-scroll-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step-scroll-card p {
  color: var(--muted);
  font-size: 14.5px;
}

/* Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: .3s var(--ease);
}

.gallery-filter-btn:hover {
  border-color: var(--line-2);
  color: var(--txt);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}



/* 3D Configurator Section */
.configurator-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.preview-container {
  background: radial-gradient(circle at center, #13131a 0%, #08080c 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
  cursor: grab;
}

.preview-container:active {
  cursor: grabbing;
}

.cube-scene {
  width: 200px;
  height: 200px;
  perspective: 1000px;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--box-rx, -22deg)) rotateY(var(--box-ry, 45deg));
}

.cube-face {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(234, 89, 5, 0.12);
  border: 1.5px solid var(--orange);
  box-shadow: inset 0 0 25px rgba(234, 89, 5, 0.25), 0 0 10px rgba(234, 89, 5, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  color: var(--orange-lite);
  font-weight: 700;
  backface-visibility: visible;
  user-select: none;
}

.cube-face.front  { width: var(--cube-w, 140px); height: var(--cube-h, 100px); transform: translate(-50%, -50%) translate3d(0, 0, var(--cube-d-half, 70px)); }
.cube-face.back   { width: var(--cube-w, 140px); height: var(--cube-h, 100px); transform: translate(-50%, -50%) translate3d(0, 0, calc(-1 * var(--cube-d-half, 70px))) rotateY(180deg); }
.cube-face.left   { width: var(--cube-d, 140px); height: var(--cube-h, 100px); transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, var(--cube-w-half, 70px)); }
.cube-face.right  { width: var(--cube-d, 140px); height: var(--cube-h, 100px); transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, var(--cube-w-half, 70px)); }
.cube-face.top    { width: var(--cube-w, 140px); height: var(--cube-d, 140px); transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, var(--cube-h-half, 50px)); }
.cube-face.bottom { width: var(--cube-w, 140px); height: var(--cube-d, 140px); transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, var(--cube-h-half, 50px)); }

.preview-hint {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 8, 10, 0.7);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  pointer-events: none;
}

.configurator-controls {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.configurator-controls h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.range-group {
  margin-bottom: 24px;
}

.range-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.range-label span:nth-child(2) {
  color: var(--orange-lite);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.configurator-controls input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
  background: #1b1b22;
  height: 6px;
  border-radius: 3px;
  outline: none;
}

/* Why Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-item {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: .4s var(--ease);
}

.why-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  background: var(--panel-2);
}

.why-ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 24px;
  transition: .3s;
}

.why-item:hover .why-ic {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px var(--orange-glow);
}

.why-item h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--muted);
  font-size: 15px;
}

/* Order Section */
.order-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.order-lead {
  color: var(--muted);
  font-size: 18px;
  margin: 20px 0 32px;
  max-width: 48ch;
}

.order-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-trust li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--txt);
  font-weight: 600;
}

.order-trust li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(234, 89, 5, 0.15);
  border: 1px solid rgba(234, 89, 5, 0.3);
  color: var(--orange-lite);
  font-size: 13px;
  font-weight: 800;
}

.order-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: var(--muted);
}

.field input, .field select {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--input-bg);
  color: var(--txt);
  transition: .25s var(--ease);
}

.field input::placeholder {
  color: #4a4a58;
}

.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--ink-2);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.field select option {
  background: var(--ink-2);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
  transition: .3s;
}

.form-note.ok {
  color: #39d98a;
}

.form-note.err {
  color: #ff5b5b;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  transition: .4s var(--ease);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cc-svg {
  width: 28px;
  height: 28px;
  color: var(--orange-2);  /* Brand orange-gold */
  margin-bottom: 8px;
  display: block;
  transition: transform 0.3s var(--ease);
}

.contact-card:hover .cc-svg {
  transform: scale(1.12);
  color: var(--orange);
}

.cc-lbl {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  font-weight: 700;
}

.cc-val {
  font-weight: 700;
  font-size: 17px;
  word-break: break-all;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  filter: var(--map-filter);
}

/* Footer */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14.5px;
  margin-top: 20px;
  max-width: 40ch;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--txt);
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
  transition: .25s;
}

.footer-col a:hover {
  color: var(--orange-lite);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}

/* Floating Action Buttons */
.floats {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fbtn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: .3s var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fbtn:hover {
  transform: scale(1.12) translateY(-3px);
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 30px var(--orange-glow);
}

.fb-tg {
  background: rgba(18, 18, 22, 0.98);
}

.fb-call {
  background: var(--orange);
  animation: pulse 2.6s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 89, 5, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(234, 89, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 89, 5, 0);
  }
}

/* Reveal (GSAP Fallback) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* Responsive Design */
@media(max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.big {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-card.wide {
    grid-column: span 2;
  }
  .bento-card.tall {
    grid-row: span 1;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .configurator-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media(max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  .menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: 80%;
    max-width: 320px;
    background: var(--ink-2);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: .5s var(--ease);
    border-left: 1px solid var(--line);
    z-index: 190;
  }
  .menu.open {
    transform: translateX(0);
  }
  .menu a {
    font-size: 22px;
  }
  .burger {
    display: flex;
  }
  .nav-right .btn-sm {
    display: none;
  }
  section {
    padding: 90px 0;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }
  .bento-card.big, .bento-card.wide {
    grid-column: span 1;
  }
  .bento-card .bento-body p {
    opacity: 1;
    max-height: 120px;
  }
  .steps, .why-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-wrap {
    grid-template-columns: 1fr;
  }
  .hero-scroll {
    display: none;
  }
  .preview-container {
    height: 320px;
  }
}

@media(prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Theme Toggle Button */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--txt);
  cursor: pointer;
  transition: .3s var(--ease);
  font-size: 18px;
  padding: 0;
  user-select: none;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 12px var(--orange-glow);
}

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="light"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .btn.ghost:hover {
  color: var(--orange);
}

/* ============================================
   INTERACTIVE SHOWROOM SECTION
   ============================================ */
.showroom {
  padding: 120px 0;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  overflow: visible;
}

.showroom-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.sr-tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.4s var(--ease);
}

.sr-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--txt);
  background: rgba(255, 255, 255, 0.05);
}

.sr-tab-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 8px 24px var(--orange-glow);
}

.showroom-content {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.sr-pane {
  display: none;
}

.sr-pane.active {
  display: block;
  animation: fadeInPane 0.6s var(--ease) forwards;
}

@keyframes fadeInPane {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Option Selectors Utility */
.control-group {
  margin-bottom: 30px;
}

.control-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.option-selectors {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-selectors.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.opt-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--txt);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14.5px;
  text-align: left;
  transition: all 0.3s ease;
}

.opt-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.opt-btn.active {
  background: rgba(14, 107, 77, 0.1);
  border-color: var(--accent, #0e6b4d);
  color: #fff;
  box-shadow: 0 0 15px rgba(14, 107, 77, 0.2);
}

/* SIMULATOR 1: CRUSH TEST STYLING */
.crush-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.crush-preview-panel {
  background: radial-gradient(circle at center, #13131a 0%, #08080c 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.crush-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 50px;
  perspective: 1000px;
}

.crush-anvil {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 70px;
  background: linear-gradient(135deg, #30363d 0%, #161b22 100%);
  border: 2px solid #58a6ff;
  border-radius: 8px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 15px rgba(88, 166, 255, 0.2);
  z-index: 5;
  transition: transform 0.1s ease;
}

.crush-box-container {
  perspective: 1000px;
}

.crush-box {
  width: 140px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(35deg);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.6s ease, opacity 0.6s;
}

.cb-face {
  position: absolute;
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.6s ease;
}

.cb-front { width: 140px; height: 120px; transform: translate(-50%, -50%) translate3d(0, 0, 70px); }
.cb-back  { width: 140px; height: 120px; transform: translate(-50%, -50%) translate3d(0, 0, -70px) rotateY(180deg); }
.cb-left  { width: 140px; height: 120px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, 70px); }
.cb-right { width: 140px; height: 120px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, 70px); }
.cb-top    { width: 140px; height: 140px; transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, 60px); }
.cb-bottom { width: 140px; height: 140px; transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, 60px); }

/* Deformation classes */
.crush-box.crushed-light {
  height: 60px;
}
.crush-box.crushed-light .cb-front  { height: 60px; transform: translate(-50%, -50%) translate3d(0, 0, 75px) scaleX(1.1); }
.crush-box.crushed-light .cb-back   { height: 60px; transform: translate(-50%, -50%) translate3d(0, 0, -75px) rotateY(180deg) scaleX(1.1); }
.crush-box.crushed-light .cb-left   { height: 60px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, 75px) scaleX(1.1); }
.crush-box.crushed-light .cb-right  { height: 60px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, 75px) scaleX(1.1); }
.crush-box.crushed-light .cb-top    { transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, 30px); }

.crush-box.crushed-heavy {
  height: 25px;
}
.crush-box.crushed-heavy .cb-front  { height: 25px; transform: translate(-50%, -50%) translate3d(0, 0, 85px) skewX(10deg) scaleX(1.25); background: #b53e10; }
.crush-box.crushed-heavy .cb-back   { height: 25px; transform: translate(-50%, -50%) translate3d(0, 0, -85px) rotateY(180deg) skewX(-10deg) scaleX(1.25); }
.crush-box.crushed-heavy .cb-left   { height: 25px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 0, 85px) skewX(10deg) scaleX(1.25); background: #9c330b; }
.crush-box.crushed-heavy .cb-right  { height: 25px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 0, 85px) skewX(-10deg) scaleX(1.25); }
.crush-box.crushed-heavy .cb-top    { transform: translate(-50%, -50%) rotateX(90deg) translate3d(0, 0, 12px) rotateZ(12deg); }

/* Particle explosion */
.crush-particle {
  position: absolute;
  border-radius: 2px;
  pointer-events: none;
  z-index: 10;
}

/* Unbox stardust particles */
.unbox-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
  filter: blur(1px);
  box-shadow: 0 0 10px currentColor;
}

/* Foil sparks and steam */
.foil-spark {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffc107;
  box-shadow: 0 0 8px #ffc107;
  pointer-events: none;
  z-index: 8;
}

.foil-steam-puff {
  position: absolute;
  bottom: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(12px);
  pointer-events: none;
  z-index: 7;
}

/* SIMULATOR 2: FOIL REFLECTOR STYLING */
.foil-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.foil-preview-panel {
  background: radial-gradient(circle at center, #13131a 0%, #08080c 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: crosshair;
  position: relative;
  overflow: hidden;
}

.foil-card-container {
  width: 280px;
  height: 200px;
  perspective: 1000px;
}

.foil-box-surface {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #18181c 0%, #0d0d0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: rotateX(10deg) rotateY(-10deg);
  transform-style: preserve-3d;
}

.foil-stamped-logo {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.logo-mark-foil {
  width: 60px;
  height: 52px;
  margin-bottom: 12px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.logo-text-foil {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
}

/* Foil modes */
.foil-stamped-logo.gold .logo-mark-foil {
  background-image: url("../assets/logo-mark-white.png");
  filter: sepia(1) saturate(5) hue-rotate(10deg);
}

.foil-stamped-logo.gold .logo-text-foil {
  color: #d4af37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.foil-stamped-logo.silver .logo-mark-foil {
  background-image: url("../assets/logo-mark-white.png");
  filter: brightness(1.2) contrast(1);
}

.foil-stamped-logo.silver .logo-text-foil {
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Moving reflection overlay */
.foil-reflection-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle 120px at var(--foil-x, 50%) var(--foil-y, 50%), var(--foil-color, rgba(212, 175, 55, 0.8)) 0%, transparent 80%);
}

/* SIMULATOR 3: VIRTUAL UNBOXING STYLING */
.unbox-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.unbox-preview-panel {
  background: radial-gradient(circle at center, #13131a 0%, #08080c 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.unbox-scene {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.unbox-box-wrap {
  width: 160px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(-25deg) rotateY(45deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.ub-face {
  position: absolute;
  background: var(--orange);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.ub-front  { width: 160px; height: 100px; transform: translate(-50%, -50%) translate3d(0, 10px, 80px); background: linear-gradient(to bottom, var(--orange) 0%, var(--bronze) 100%); }
.ub-back   { width: 160px; height: 100px; transform: translate(-50%, -50%) translate3d(0, 10px, -80px) rotateY(180deg); }
.ub-left   { width: 160px; height: 100px; transform: translate(-50%, -50%) rotateY(-90deg) translate3d(0, 10px, 80px); }
.ub-right  { width: 160px; height: 100px; transform: translate(-50%, -50%) rotateY(90deg) translate3d(0, 10px, 80px); }
.ub-bottom { width: 160px; height: 160px; transform: translate(-50%, -50%) rotateX(-90deg) translate3d(0, 0, 40px); }

.ub-lid-pivot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: translate3d(0, -40px, -80px) rotateX(90deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.ub-top-lid {
  position: absolute;
  top: 0;
  left: -80px;
  width: 160px;
  height: 160px;
  background: var(--orange-lite);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.15);
}

.unbox-box-wrap.box-open .ub-lid-pivot {
  transform: translate3d(0, -40px, -80px) rotateX(90deg) rotateX(-120deg);
}

.floating-item-card {
  position: absolute;
  z-index: 1;
  width: 100px;
  height: 100px;
  opacity: 0;
  transform: translateY(30px) scale(0.7);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.floating-item-card.float-active {
  opacity: 1;
  transform: translateY(-90px) scale(1.1);
  animation: floatItem 3s ease-in-out infinite alternate 0.8s;
}

@keyframes floatItem {
  0% { transform: translateY(-90px) scale(1.1) translateY(0px) rotate(0deg); }
  100% { transform: translateY(-90px) scale(1.1) translateY(-10px) rotate(3deg); }
}

.item-visual {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: none;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

.item-visual.active {
  display: block;
}

.item-visual.pizza {
  background-image: url("../assets/prod-3.jpg");
  border-radius: 50%;
}
.item-visual.shoes {
  background-image: url("../assets/prod-4.jpg");
  border-radius: 12px;
}
.item-visual.perfume {
  background-image: url("../assets/prod-5.jpg");
  border-radius: 12px;
}

/* ==========================================================================
   TACTILE DASHBOARD CONSOLE STYLES
   ========================================================================== */
.showroom-dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.console-sidebar {
  background: rgba(18, 18, 24, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.console-section {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 24px;
}

.console-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 700;
}

/* ROTARY KNOB SELECTOR */
.rotary-knob-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.physical-knob {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #2d3139 0%, #15181c 100%);
  border: 4px solid #3c424f;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.1);
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.knob-pointer {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 20px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--orange-glow);
}

.knob-label {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s;
}

.knob-label.active {
  color: #fff;
}

.knob-label.l-crush { top: 10px; left: 50%; transform: translateX(-50%); }
.knob-label.l-foil  { bottom: 15px; left: 10px; }
.knob-label.l-unbox { bottom: 15px; right: 10px; }

.knob-label.l-crush.active { color: #39d98a; text-shadow: 0 0 10px rgba(57, 217, 138, 0.4); }
.knob-label.l-foil.active  { color: #ffc107; text-shadow: 0 0 10px rgba(255, 193, 7, 0.4); }
.knob-label.l-unbox.active { color: #00aeef; text-shadow: 0 0 10px rgba(0, 174, 239, 0.4); }

/* LED BULB INDICATORS */
.led-indicators {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.led-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.led-bulb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #222;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.8);
  transition: all 0.3s ease;
}

.led-bulb.green.active {
  background: #39d98a;
  border-color: #5affb0;
  box-shadow: 0 0 12px #39d98a, inset 0 1px 3px #fff;
}

.led-bulb.yellow.active {
  background: #ffc107;
  border-color: #ffe082;
  box-shadow: 0 0 12px #ffc107, inset 0 1px 3px #fff;
}

.led-bulb.blue.active {
  background: #00aeef;
  border-color: #80d8ff;
  box-shadow: 0 0 12px #00aeef, inset 0 1px 3px #fff;
}

/* TOGGLE SWITCHES */
.toggle-switch-group {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.tgl-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.tgl-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.tgl-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #222;
  border: 1px solid rgba(255,255,255,0.1);
  transition: .3s;
  border-radius: 24px;
}

.tgl-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #888;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .tgl-slider {
  background-color: var(--orange);
  border-color: var(--orange-glow);
}

input:checked + .tgl-slider:before {
  transform: translateX(20px);
  background-color: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* DISPLAY SCREEN */
.showroom-display {
  background: rgba(10, 10, 12, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  padding: 30px;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.sr-pane {
  display: none;
  width: 100%;
}

.sr-pane.active {
  display: block;
}

/* DIAL GAUGE STYLES */
.gauge-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 24px;
}

.dial-gauge {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1b2028 0%, #0d0f13 100%);
  border: 5px solid #2e3440;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 2px 10px rgba(0,0,0,0.9);
}

.gauge-scale {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

.gauge-scale span {
  position: absolute;
}
.gauge-scale span:nth-child(1) { bottom: 15px; left: 20px; }
.gauge-scale span:nth-child(2) { top: 35px; left: 10px; }
.gauge-scale span:nth-child(3) { top: 10px; left: 50%; transform: translateX(-50%); }
.gauge-scale span:nth-child(4) { top: 35px; right: 10px; }
.gauge-scale span:nth-child(5) { bottom: 15px; right: 20px; }

.gauge-needle {
  position: absolute;
  bottom: 50%;
  left: 50%;
  width: 3px;
  height: 52px;
  background: #ff3e3e;
  border-radius: 2px;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-120deg);
  transition: transform 0.6s cubic-bezier(0.1, 0.8, 0.2, 1);
  box-shadow: 0 0 6px rgba(255,62,62,0.8);
  z-index: 2;
}

.gauge-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2e3440;
  border: 3px solid #ff3e3e;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  z-index: 3;
}

.digital-load {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #08080a;
  border: 1px solid #1a1e24;
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
}

.load-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  text-shadow: 0 0 15px var(--orange-glow);
  letter-spacing: 2px;
}

.load-unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* HYDRAULIC STAMP MACHINERY */
.hydraulic-press-machine {
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  z-index: 6;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-shaft {
  width: 32px;
  height: 180px;
  background: linear-gradient(90deg, #7f8c8d 0%, #bdc3c7 50%, #7f8c8d 100%);
  border-left: 2px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
}

.press-plate {
  width: 220px;
  height: 36px;
  background: linear-gradient(180deg, #34495e 0%, #2c3e50 100%);
  border: 3px solid #7f8c8d;
  border-radius: 4px;
  color: rgba(255,255,255,0.5);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

/* VIRTUAL REMOTE CONTROL */
.tactile-remote-control {
  background: linear-gradient(135deg, #3c424f 0%, #1c1e24 100%);
  border: 3px solid #4a5161;
  border-radius: 20px;
  padding: 22px;
  width: 220px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 1px 3px rgba(255,255,255,0.1);
}

.remote-header {
  margin-bottom: 20px;
}

.remote-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 8px;
}

.remote-screen {
  background: #080a08;
  border: 2px solid #2e342e;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.9);
  transition: all 0.3s ease;
}

.remote-screen.active {
  background: #0c2014;
  border-color: #39d98a;
  box-shadow: inset 0 0 10px rgba(57, 217, 138, 0.3), 0 0 10px rgba(57, 217, 138, 0.1);
}

.screen-txt {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(57, 217, 138, 0.15);
  letter-spacing: 1px;
  transition: color 0.3s;
}

.remote-screen.active .screen-txt {
  color: #39d98a;
  text-shadow: 0 0 8px rgba(57, 217, 138, 0.5);
}

.remote-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.remote-power-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ff4c4c 0%, #aa1111 100%);
  border: 3px solid #2c323f;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.remote-power-btn:after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}

.remote-power-btn:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.remote-power-btn.active {
  background: radial-gradient(circle at center, #39d98a 0%, #157b45 100%);
}

.remote-keys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
}

.remote-key {
  height: 38px;
  background: linear-gradient(180deg, #4f5869 0%, #343a46 100%);
  border: 2px solid #282d36;
  border-radius: 6px;
  color: rgba(255,255,255,0.5);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.remote-key:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.remote-key.active {
  background: linear-gradient(180deg, #ffc107 0%, #ff9800 100%);
  border-color: #e65100;
  color: #000;
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
}

@media (max-width: 900px) {
  .showroom-dashboard {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .crush-grid, .foil-grid, .unbox-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
