/* ==========================================================================
   MDM COMPUTERS & PRINTING PRESS - STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&family=Space+Grotesk:wght@500;700;900&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Clean Studio Palette */
  --bg-main: #f5f6f8;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --border-subtle: rgba(15, 23, 42, 0.08);

  /* CMYK Vibrant Accents */
  --cmyk-cyan: #00f0ff;
  --cmyk-magenta: #ff007f;
  --badge-blue: #2563eb;
  --badge-green: #10b981;
  --badge-coral: #f43f5e;
  --star-gold: #f59e0b;

  /* Premium Luxury Typography Stack */
  --font-headline: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  --font-sub: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Layout */
  --max-width: 1260px;
  --nav-height: 80px;

  /* Spring & Kinetic Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-main);
  background-image: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95) 0%, var(--bg-main) 75%);
  overflow-x: hidden;
}

/* Ambient Cursor Spotlight Glow */
#cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.06) 0%, rgba(0, 240, 255, 0.03) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.15s ease-out;
}

/* Inline SVG Vector Icons Utility */
.svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Selection */
::selection {
  background: var(--badge-blue);
  color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* ==========================================================================
   1. TWO-STATE SCROLLING PRINT NAVBAR (#main-nav)
   ========================================================================== */

/* STATE 01 — HERO / AT-TOP (Transparent Editorial Layer) */
#main-nav.print-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 100%;
  max-width: var(--max-width);
  height: 76px;
  z-index: 10000;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: none;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s ease,
    top 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    padding 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    background-color 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.55s ease,
    border-radius 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 0.55s ease;
  will-change: transform, width, top, background-color, border-radius;
}

#main-nav.print-navbar.reveal-nav {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Subtle Hero Print Alignment Line */
.hero-reg-line {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: rgba(15, 23, 42, 0.09);
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* STATE 02 — SCROLLED / FLOATING TOOLBAR (> 70px) */
#main-nav.print-navbar.is-scrolled {
  top: 14px;
  width: calc(100% - 3.5rem);
  max-width: 1240px;
  height: 72px;
  padding: 0 1.6rem 0 2rem;
  background: #faf8f5;
  border-color: rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

#main-nav.print-navbar.is-scrolled .hero-reg-line {
  opacity: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  padding: 2px 0;
}

.brand-logo-img {
  height: 78px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(15, 23, 42, 0.16));
  transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.06);
}

#main-nav.print-navbar.is-scrolled .brand-logo-img {
  height: 60px;
}

.footer-logo-img {
  height: 88px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(15, 23, 42, 0.2));
  margin-bottom: 1.2rem;
  display: block;
}

/* Navigation Links Wrapper */
.nav-menu-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  position: relative;
  z-index: 2;
}

.menu-item {
  position: relative;
}

/* Print Nav Link Styling (Clean Text + CMYK Ink Sweep Hover) */
.print-nav-link {
  position: relative;
  color: var(--text-dark);
  text-decoration: none;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: color 0.3s ease;
}

.print-nav-link:hover {
  color: var(--text-dark) !important;
  background: transparent !important;
  border: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.menu-item.active .print-nav-link {
  color: var(--text-dark) !important;
  background: transparent !important;
  border: none !important;
  font-weight: 800;
}

.print-nav-link .nav-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.print-nav-link:hover .nav-text {
  transform: translateY(-1px);
  color: var(--text-dark);
}

.print-nav-link .caret {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.menu-item.has-dropdown:hover .print-nav-link .caret {
  transform: rotate(180deg);
}

/* Signature Hover: Thin Ink Stroke + CMYK Registration Sweep */
.ink-sweep-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Central Thin Ink Line */
.ink-line {
  position: absolute;
  inset: 0;
  height: 2px;
  background: linear-gradient(90deg, #00aeef 0%, #ec008c 33%, #fff200 66%, #0f172a 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 999px;
}

/* Registration Crosshair Marks (+) */
.reg-mark {
  font-family: monospace;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  color: var(--badge-blue);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  top: -4px;
}

.reg-mark.mark-left {
  margin-left: -5px;
}

.reg-mark.mark-right {
  margin-right: -5px;
}

/* Hover & Active Link Trigger */
.print-nav-link:hover .ink-line,
.print-nav-link.active .ink-line,
.menu-item:hover .ink-line,
.menu-item.active .ink-line {
  transform: scaleX(1);
}

.print-nav-link:hover .reg-mark,
.print-nav-link.active .reg-mark,
.menu-item:hover .reg-mark,
.menu-item.active .reg-mark {
  opacity: 1;
  transform: scale(1);
}

/* Persistent Active Link State (Subtle Solid Primary Ink Line) */
.menu-item.active .ink-line,
.print-nav-link.active .ink-line {
  background: var(--badge-blue);
}

/* Nav Right Action Cluster */
.nav-right-cluster {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   PRINTING WORKS EDITORIAL PRINTED SHEET DROPDOWN
   ========================================================================== */
.print-sheet-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 440px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.25s ease;
  z-index: 10005;
}

/* Invisible Hover Bridge spanning the gap between navbar link and dropdown menu */
.print-sheet-dropdown::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -20px;
  right: -20px;
  height: 24px;
  background: transparent;
  pointer-events: auto;
}

.menu-item.has-dropdown:hover .print-sheet-dropdown,
.menu-item.has-dropdown:focus-within .print-sheet-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-header-tag {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.12);
}

.dropdown-editorial-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

a.dropdown-specimen-item,
.dropdown-specimen-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none !important;
  color: var(--text-dark);
  transition: background 0.25s ease, transform 0.2s ease;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

a.dropdown-specimen-item:hover,
a.dropdown-specimen-item:active {
  background: #f8fafc;
}

.specimen-left-cluster,
.specimen-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-dark);
}

.specimen-num {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--badge-blue);
  letter-spacing: 0.04em;
}

.specimen-name {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

a.dropdown-specimen-item:hover .specimen-name,
.dropdown-specimen-item:hover .specimen-name {
  color: var(--badge-blue);
}

/* Dropdown Service Image Specimen Reveal on Hover */
.specimen-preview-thumb {
  width: 64px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.specimen-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-specimen-item:hover .specimen-preview-thumb {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   GET INSTANT QUOTE PRINTED LABEL CTA
   ========================================================================== */
.print-label-cta {
  position: relative;
  background: var(--text-dark);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.print-label-cta:hover {
  background: #1e293b;
  transform: translateX(3px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.22);
}

.label-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.print-label-cta:hover .label-arrow {
  transform: translateX(3px);
}

.nav-right-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10005;
}

/* Mobile Toggle Button (Hidden on Desktop > 992px, Visible on Mobile <= 992px) */
.mobile-toggle-btn {
  display: none;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
  z-index: 10005;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .mobile-toggle-btn {
    display: flex !important;
  }
}

.hamburger-icon-svg {
  display: block;
  stroke: #ffffff !important;
  width: 24px;
  height: 24px;
}

/* Kinetic Word Mask & Kinetic Staggered Text Reveal Animation */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.14;
  padding-bottom: 0.12em;
}

.reveal-word {
  display: inline-block;
  transform: translateY(125%) rotate(7deg);
  opacity: 0;
  filter: blur(12px);
  will-change: transform, opacity, filter;
  transition: transform 1.15s cubic-bezier(0.16, 1.35, 0.35, 1),
              opacity 0.85s ease,
              filter 0.85s ease;
}

.reveal-word.revealed {
  transform: translateY(0%) rotate(0deg);
  opacity: 1;
  filter: blur(0px);
}

/* Stagger Delays for Kinetic Typography Reveal */
.reveal-word.w-1 { transition-delay: 0.12s; }
.reveal-word.w-2 { transition-delay: 0.22s; }
.reveal-word.w-3 { transition-delay: 0.32s; }
.reveal-word.w-4 { transition-delay: 0.42s; }
.reveal-word.w-5 { transition-delay: 0.54s; }
.reveal-word.w-6 { transition-delay: 0.66s; }

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.8rem, 5.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  text-align: center;
}

/* Luminous Metallic Cyan-Blue Shimmer Gradient */
.highlight-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 25%, #38bdf8 50%, #60a5fa 75%, #1d4ed8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGradient 4s linear infinite;
  display: inline-block;
  position: relative;
}

@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================================================================
   FANNED INTERACTIVE CARD DECK & FLOATING SPEECH BADGES
   ========================================================================== */
.hero-deck-stage {
  position: relative;
  width: 100%;
  max-width: 950px;
  height: 400px;
  margin: 2.5rem auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  background: radial-gradient(ellipse 65% 50% at 50% 55%, rgba(37, 99, 235, 0.09) 0%, rgba(37, 99, 235, 0) 75%);
  border-radius: 40px;
}

.speech-badge {
  position: absolute;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: scale(0.6) translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.speech-badge.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.speech-badge.blue {
  top: 15px;
  left: 5%;
  background: #0f172a;
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
  animation: floatSlowLeft 4s ease-in-out infinite alternate;
}

.speech-badge.green {
  bottom: 25px;
  right: 5%;
  background: #0f172a;
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  animation: floatSlowRight 4.5s ease-in-out infinite alternate;
}

@keyframes floatSlowLeft {
  0% { transform: translateY(0px) rotate(-2deg); }
  100% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes floatSlowRight {
  0% { transform: translateY(0px) rotate(2deg); }
  100% { transform: translateY(-14px) rotate(-2deg); }
}

.fanned-deck {
  position: relative;
  width: 260px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ABSOLUTELY ZERO HOVER / MOUSE INTERACTION ON ENTIRE HERO DECK STAGE */
.hero-deck-stage,
.fanned-deck,
.fanned-card,
.fanned-card *,
.speech-badge {
  pointer-events: none !important;
}

.fanned-card {
  position: absolute;
  width: 235px;
  height: 310px;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(15, 23, 42, 0.06);
  cursor: default;
  transform-origin: center bottom;
  /* Phase 0: Baseline Stacked in Center with Opacity 0 */
  --card-tx: 0px;
  --card-rot: 0deg;
  --card-ty: 25px;
  transform: translateX(0px) rotate(0deg) translateY(25px) scale(0.85);
  opacity: 0;
  transition: transform 1.3s cubic-bezier(0.16, 1.35, 0.35, 1),
              opacity 0.7s ease,
              box-shadow 0.4s ease;
  will-change: transform, opacity;
}

.fanned-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phase 1: Stacked in Center on Load */
.fanned-deck.deck-stacked .fanned-card {
  opacity: 1;
  transform: translateX(0px) rotate(0deg) translateY(0px) scale(1);
}

/* Phase 2: Symmetrical Dual-Wing 3D Spring Fan-Out Bloom Opening */
.fanned-deck.fan-active .fanned-card {
  opacity: 1;
}

.fanned-deck.fan-active .fanned-card:nth-child(1) {
  --card-tx: -260px;
  --card-rot: -18deg;
  --card-ty: 22px;
  transform: translateX(var(--card-tx)) rotate(var(--card-rot)) translateY(var(--card-ty)) scale(1);
  z-index: 1;
  transition-delay: 0.18s;
}

.fanned-deck.fan-active .fanned-card:nth-child(2) {
  --card-tx: -155px;
  --card-rot: -11deg;
  --card-ty: 10px;
  transform: translateX(var(--card-tx)) rotate(var(--card-rot)) translateY(var(--card-ty)) scale(1);
  z-index: 2;
  transition-delay: 0.09s;
}

.fanned-deck.fan-active .fanned-card:nth-child(3) {
  --card-tx: -50px;
  --card-rot: -4deg;
  --card-ty: 2px;
  transform: translateX(var(--card-tx)) rotate(var(--card-rot)) translateY(var(--card-ty)) scale(1);
  z-index: 3;
  transition-delay: 0s;
}

.fanned-deck.fan-active .fanned-card:nth-child(4) {
  --card-tx: 50px;
  --card-rot: 4deg;
  --card-ty: 2px;
  transform: translateX(var(--card-tx)) rotate(var(--card-rot)) translateY(var(--card-ty)) scale(1);
  z-index: 4;
  transition-delay: 0s;
}

.fanned-deck.fan-active .fanned-card:nth-child(5) {
  --card-tx: 155px;
  --card-rot: 11deg;
  --card-ty: 10px;
  transform: translateX(var(--card-tx)) rotate(var(--card-rot)) translateY(var(--card-ty)) scale(1);
  z-index: 5;
  transition-delay: 0.09s;
}

.fanned-deck.fan-active .fanned-card:nth-child(6) {
  --card-tx: 260px;
  --card-rot: 18deg;
  --card-ty: 22px;
  transform: translateX(var(--card-tx)) rotate(var(--card-rot)) translateY(var(--card-ty)) scale(1);
  z-index: 6;
  transition-delay: 0.18s;
}



@media (max-width: 768px) {
  .hero-deck-stage {
    height: 280px;
    margin: 2rem auto 0.5rem auto;
  }
  .fanned-card {
    width: 150px;
    height: 200px;
    border-radius: 14px;
  }
  .fanned-deck.fan-active .fanned-card:nth-child(1) { --card-tx: -110px; --card-rot: -12deg; }
  .fanned-deck.fan-active .fanned-card:nth-child(2) { --card-tx: -65px; --card-rot: -7deg; }
  .fanned-deck.fan-active .fanned-card:nth-child(3) { --card-tx: -20px; --card-rot: -2deg; }
  .fanned-deck.fan-active .fanned-card:nth-child(4) { --card-tx: 20px; --card-rot: 2deg; }
  .fanned-deck.fan-active .fanned-card:nth-child(5) { --card-tx: 65px; --card-rot: 7deg; }
  .fanned-deck.fan-active .fanned-card:nth-child(6) { --card-tx: 110px; --card-rot: 12deg; }
}

/* ==========================================================================
   HIGHLY ANIMATED PRINT-CRAFT HERO CTA BUTTONS (.btn-neumorphic)
   ========================================================================== */
.hero-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.btn-neumorphic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease;
  will-change: transform;
}

.btn-neumorphic:active {
  transform: translateY(1px) scale(0.96) !important;
}

/* Primary Dark Variant (Get Instant Quote ⚡) */
.btn-neumorphic.dark {
  background: var(--text-dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

/* Animated Ink Sheen Sweep Across Dark Button */
.btn-neumorphic.dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg);
  transition: left 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-neumorphic.dark:hover::before {
  left: 130%;
}

.btn-neumorphic.dark:hover {
  background: #1e293b;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.32);
}

.btn-neu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-neumorphic.dark:hover .btn-neu-icon {
  transform: translateX(5px) rotate(12deg) scale(1.15);
  color: #00e5ff;
}

/* Secondary Light Variant (Explore Printing Services ➔) */
.btn-neumorphic.light {
  background: #ffffff;
  color: var(--text-dark);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.btn-neumorphic.light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00aeef 0%, #ec008c 50%, #fff200 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-neumorphic.light:hover::after {
  transform: scaleX(1);
}

.btn-neumorphic.light:hover {
  background: #f8fafc;
  color: var(--badge-blue);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.btn-neumorphic.light svg {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-neumorphic.light:hover svg {
  transform: translateX(6px) scale(1.1);
}

/* ==========================================================================
   EDITORIAL PRINTED BRAND WALL: OUR CLIENTS
   ========================================================================== */
/* ==========================================================================
   EDITORIAL PRINTED BRAND WALL: OUR CLIENTS (#our-clients-section)
   ========================================================================== */
section#our-clients-section,
.clients-stage-section,
.clients-brand-section {
  padding: 60px 0 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 50%, #f5f0e8 100%) !important;
  position: relative;
  overflow: hidden;
  z-index: 4;
  border: none !important;
}

.clients-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.clients-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

.clients-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.clients-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.1;
}

.clients-subtext,
.clients-subtitle {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.clients-brand-grid,
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  align-items: center;
}

@media (max-width: 1024px) {

  .clients-brand-grid,
  .clients-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {

  .clients-brand-grid,
  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
}

/* Individual Brand Specimen Card (Glassmorphic & Integrated) */
.client-brand-item {
  position: relative;
  padding: 1.4rem 0.8rem 1.1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    background-color 0.4s ease;
}

.client-brand-item:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: rgba(37, 99, 235, 0.35) !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1) !important;
  background: #ffffff !important;
}

.client-logo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.client-brand-item:hover .client-logo-wrap {
  transform: scale(1.06);
}

.client-svg-logo {
  width: 100%;
  max-width: 170px;
  height: auto;
  max-height: 34px;
}

.client-specimen-pill {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(15, 23, 42, 0.04);
  padding: 3px 10px;
  border-radius: 999px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.client-brand-item:hover .client-specimen-pill {
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.1);
}

/* CMYK Registration Crosshair Marks (+) in 4 Corners */
.reg-cross {
  position: absolute;
  font-family: monospace;
  font-size: 11px;
  font-weight: 900;
  color: var(--badge-blue);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.reg-cross.mark-tl {
  top: 6px;
  left: 8px;
  color: #00aeef;
}

.reg-cross.mark-tr {
  top: 6px;
  right: 8px;
  color: #ec008c;
}

.reg-cross.mark-bl {
  bottom: 6px;
  left: 8px;
  color: #fff200;
}

.reg-cross.mark-br {
  bottom: 6px;
  right: 8px;
  color: #0f172a;
}

.client-brand-item:hover .reg-cross {
  opacity: 1;
  transform: scale(1);
}

.client-brand-item:hover .reg-cross {
  opacity: 1;
  transform: scale(1);
}

/* Footer Specimen Alignment Rule */
.clients-foot-rule {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.rule-line {
  flex: 1;
  height: 1px;
  background: rgba(15, 23, 42, 0.08);
}

.rule-tag {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ANDROID RESPONSIVE GRID (320px - 768px) */
@media (max-width: 1024px) {
  .clients-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 600px) {
  .clients-brand-section {
    padding: 38px 0;
  }

  .clients-logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .client-brand-item {
    padding: 1rem 0.4rem;
  }

  .client-svg-logo {
    max-width: 140px;
    max-height: 28px;
  }
}

#hero-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}

.hero-wrap {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-stagger {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1s var(--ease-spring), transform 1s var(--ease-spring);
  will-change: opacity, transform;
}

.hero-stagger.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 6px 18px 6px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  margin-top: 1.2rem;
  margin-bottom: 2rem;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
  object-fit: cover;
}

.avatar-img:first-child {
  margin-left: 0;
}

.trust-rating-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.star-icons {
  color: var(--star-gold);
  font-size: 0.95rem;
}

/* Luxury Headline in Syne Extra Bold */
.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text-dark);
  max-width: 950px;
  margin: 0 auto 2rem auto;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.18em;
}

.reveal-word {
  display: inline-block;
  opacity: 1 !important;
  transform: translateY(0) rotate(0deg) !important;
  filter: blur(0) !important;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s ease;
  transform-origin: left bottom;
}

.reveal-word.revealed {
  opacity: 1 !important;
  transform: translateY(0) rotate(0deg) !important;
  filter: blur(0) !important;
}

.w-1 {
  transition-delay: 0.08s;
}

.w-2 {
  transition-delay: 0.18s;
}

.w-3 {
  transition-delay: 0.28s;
}

.w-4 {
  transition-delay: 0.38s;
}

.w-5 {
  transition-delay: 0.52s;
}

/* GPU Acceleration Optimizations for 60FPS Performance */
.clients-marquee-track,
.fanned-card,
.machine-stage-card,
.compact-card,
#cursor-spotlight {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.word-highlight {
  color: var(--badge-blue);
  position: relative;
}

/* Fanned Deck & Hero Subtext Spacing */

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.2rem auto;
  line-height: 1.6;
  font-weight: 500;
}

.hero-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 1.8rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  max-width: 1050px;
  margin: 0 auto;
}

.metric-card {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  padding: 0 1rem;
}

.metric-card:last-child {
  border-right: none;
}

.metric-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   COMPACT EDITORIAL CATALOGUE CAROUSEL (DESKTOP-FIRST + ANDROID-FIRST)
   ========================================================================== */
/* ==========================================================================
   PREMIUM PRINT SAMPLE CAROUSEL (IMAGE-FIRST DOMINANT ACTIVE CARD)
   ========================================================================== */
.compact-editorial-section {
  padding: 42px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.compact-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.compact-header {
  margin-bottom: 1.4rem;
  text-align: center;
  padding: 0 1.5rem;
}

.compact-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 0.25rem;
}

.compact-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.compact-stage-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Side Navigation Arrows (Outer Edge Positioning) */
.compact-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  z-index: 50;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.35s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-color 0.3s ease;
  color: var(--text-dark);
}

.compact-nav-btn.prev {
  left: 2.5rem;
}

.compact-nav-btn.next {
  right: 2.5rem;
}

.compact-nav-btn.prev:hover {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
  transform: translateY(-50%) translateX(-4px);
}

.compact-nav-btn.next:hover {
  background: var(--text-dark);
  color: #ffffff;
  border-color: var(--text-dark);
  transform: translateY(-50%) translateX(4px);
}

.compact-track-container {
  overflow: visible;
  padding: 10px 0;
}

.compact-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  padding: 0 calc(50vw - 260px);
}

.compact-track::-webkit-scrollbar {
  display: none;
}

/* Premium Image-First Print Specimen Card */
.compact-card {
  flex: 0 0 440px;
  height: 380px;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0.7;
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Active Specimen Highlight (Dominant 70-75% Hero Card) */
.compact-card.is-active-card {
  opacity: 1;
  transform: scale(1);
  z-index: 20;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.22);
}

.compact-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
}

.compact-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform: scale(1.02);
}

/* Hover on Desktop: Subtle Image Zoom */
.compact-card:hover .compact-img-wrap img {
  transform: scale(1.04);
}

/* Integrated Bottom Gradient Scrim Overlay */
.compact-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(15, 23, 42, 0.55) 45%,
      rgba(15, 23, 42, 0) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Integrated Editorial Metadata Overlay */
.compact-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #ffffff;
}

.compact-card-title {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.compact-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.4;
  max-width: 480px;
}

.compact-cta {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 800;
  color: #00e5ff;
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.compact-card:hover .compact-cta {
  color: #ffffff;
  transform: translateX(4px);
}

/* Minimal Progress Line (Removed) */
.compact-progress {
  display: none !important;
}

/* ANDROID & MOBILE RESPONSIVE REFINEMENT (320px - 1280px) */
@media (max-width: 1280px) {
  #main-nav.print-navbar {
    position: fixed !important;
    top: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: calc(100% - 1.6rem) !important;
    height: 60px !important;
    padding: 0 1.2rem !important;
    background: rgba(250, 248, 245, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    z-index: 10000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  #hero-section {
    padding-top: 75px !important;
    min-height: auto !important;
  }

  .brand-logo-img {
    height: 44px !important;
  }

  .nav-menu-wrapper {
    display: none !important;
  }

  .nav-right-cluster {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10005 !important;
  }

  .mobile-toggle-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #0f172a !important;
    color: #ffffff !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
    z-index: 10005 !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }
}

@media (max-width: 768px) {
  .compact-editorial-section {
    padding: 28px 0;
  }

  .compact-title {
    font-size: 1.7rem;
  }

  .compact-stage-wrapper {
    max-width: 100%;
  }

  /* Compact Mobile Side Navigation Controls */
  .compact-nav-btn {
    display: grid;
    width: 38px;
    height: 38px;
    top: 50%;
    transform: translateY(-50%);
  }

  .compact-nav-btn.prev {
    left: 4px;
  }

  .compact-nav-btn.next {
    right: 4px;
  }

  .compact-track-container {
    overflow: hidden;
    padding: 6px 0;
  }

  .compact-track {
    gap: 1rem;
    padding: 0 20px;
  }

  /* 84vw Active Card Width for ~10% Adjacent Card Peek on Android */
  .compact-card {
    flex: 0 0 84vw;
    max-width: 320px;
    height: 350px;
    border-radius: 14px;
  }

  .compact-meta {
    padding: 1.2rem;
  }

  .compact-card-title {
    font-size: 1.22rem;
  }

  .compact-card-desc {
    font-size: 0.83rem;
  }
}

.world-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.world-header {
  margin-bottom: 3.5rem;
}

.world-header.align-center {
  text-align: center;
}

.world-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.world-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.1);
  padding: 2px 8px;
  border-radius: 999px;
}

.world-tag {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}

.world-title {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.world-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
}

.world-header.align-center .world-subtitle {
  margin: 0 auto;
}

/* WORLD 01 — PRINTING WORKS: THE PRINT LAB */
.print-lab-theme {
  background: #fafafa;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lab-stage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.specimens-archive-board {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.specimen-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.specimen-card:hover,
.specimen-card.active {
  border-color: var(--badge-blue);
  transform: translateX(8px);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.15);
  background: #ffffff;
}

.specimen-thumb {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.specimen-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.specimen-card:hover .specimen-thumb img {
  transform: scale(1.1);
}

.specimen-tag {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.specimen-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.specimen-card.active .specimen-title {
  color: var(--badge-blue);
}

.specimen-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Inspector Panel Right */
.specimen-inspector-panel {
  position: sticky;
  top: 100px;
}

.inspector-card {
  background: #ffffff;
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
}

.inspector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.inspector-label {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--badge-blue);
}

.inspector-badge {
  background: rgba(37, 99, 235, 0.1);
  color: var(--badge-blue);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.inspector-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.inspector-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.inspector-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.spec-tile {
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.tile-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.tile-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* CMYK Density Bars */
.cmyk-bar-wrapper {
  margin-bottom: 1.8rem;
}

.cmyk-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.cmyk-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-bar,
.m-bar,
.y-bar,
.k-bar {
  height: 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 0.65rem;
  font-weight: 900;
  color: #ffffff;
  transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.c-bar {
  background: #00f0ff;
  color: #0f172a;
}

.m-bar {
  background: #ec4899;
}

.y-bar {
  background: #eab308;
  color: #0f172a;
}

.k-bar {
  background: #0f172a;
}

.inspector-cta {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
}

.story-transition-sheet {
  margin-top: 4rem;
  background: linear-gradient(90deg, #2563eb, #00f0ff);
  color: #ffffff;
  padding: 12px 24px;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* WORLD 02 — BUSINESS ESSENTIALS: THE EXECUTIVE DESK */
.executive-desk-theme {
  background: #0f172a;
  color: #ffffff;
}

.executive-desk-theme .world-num {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.executive-desk-theme .world-tag {
  color: #ffffff;
}

.executive-desk-theme .world-title {
  color: #ffffff;
}

.executive-desk-theme .world-subtitle {
  color: #94a3b8;
}

.desk-viewport-stage {
  margin-top: 2.5rem;
  background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 3rem 2rem;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
}

.desk-mat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
}

.desk-stationery-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  position: relative;
}

.desk-stationery-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #38bdf8;
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.2);
}

.stationery-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.item-pin-callout {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pin-title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.pin-sub {
  font-size: 0.8rem;
  color: #38bdf8;
  font-weight: 600;
}

/* WORLD 03 — MARKETING COLLATERAL: THE CAMPAIGN WALL */
.campaign-wall-theme {
  background: #ffffff;
}

.campaign-wall-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

.mosaic-tile {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s ease;
}

.mosaic-tile:hover {
  transform: scale(1.03) translateY(-8px);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.25);
}

.tile-large {
  grid-column: span 7;
  grid-row: span 2;
}

.tile-medium {
  grid-column: span 5;
  grid-row: span 1;
}

.tile-small {
  grid-column: span 5;
  grid-row: span 1;
}

.tile-wide {
  grid-column: span 12;
  grid-row: span 1;
}

.mosaic-img-box {
  width: 100%;
  height: 100%;
  position: relative;
}

.mosaic-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mosaic-tile:hover .mosaic-img-box img {
  transform: scale(1.08);
}

.mosaic-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
}

.mosaic-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
  color: #ffffff;
}

.mosaic-overlay-info h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.mosaic-overlay-info p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.mosaic-cta-text {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 800;
  color: #00f0ff;
}

/* WORLD 04 — GIFTING: THE UNBOXING REVEAL */
.unboxing-gifting-theme {
  background: #fafaf9;
}

.unboxing-stage-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.luxury-giftbox-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  cursor: pointer;
  perspective: 1000px;
}

.giftbox-base {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: 32px;
  display: grid;
  place-items: center;
  box-shadow: 0 25px 60px rgba(49, 46, 129, 0.35);
  position: relative;
  overflow: hidden;
}

.revealed-product-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s var(--ease-spring);
}

.giftbox-lid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4338ca, #3730a3);
  border-radius: 32px;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.giftbox-lid.open {
  transform: translateY(-120%) rotateX(25deg);
}

.giftbox-ribbon-v {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.giftbox-ribbon-h {
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #f59e0b, #fbbf24);
}

.lid-label {
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: #1e1b4b;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.merchandise-selector-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.merch-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.merch-card:hover,
.merch-card.active {
  border-color: #f59e0b;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
  transform: translateY(-4px);
}

.merch-card img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

.merch-info h4 {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.merch-info span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* WORLD 05 — BRANDING MATERIAL: THE URBAN CANVAS */
.urban-canvas-theme {
  background: #09090b;
  color: #ffffff;
}

.urban-canvas-theme .world-num {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.urban-canvas-theme .world-tag,
.urban-canvas-theme .world-title {
  color: #ffffff;
}

.urban-canvas-theme .world-subtitle {
  color: #a1a1aa;
}

.urban-stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.urban-card {
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-spring);
  position: relative;
}

.urban-card:hover {
  border-color: #22c55e;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.urban-img-wrap {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.urban-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.urban-card:hover .urban-img-wrap img {
  transform: scale(1.08);
}

.urban-scale-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(9, 9, 11, 0.85);
  color: #22c55e;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.urban-card-content {
  padding: 1.5rem;
}

.urban-card-content h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.urban-card-content p {
  font-size: 0.86rem;
  color: #a1a1aa;
  margin-bottom: 1rem;
}

.urban-specs-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.urban-specs-pills span {
  background: rgba(255, 255, 255, 0.06);
  color: #22c55e;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Stage Wrapper with Side Arrow Controls */
.carousel-stage {
  position: relative;
  width: 100%;
}

/* Flanking Left and Right Floating Neumorphic Arrow Controls */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  z-index: 30;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease-spring);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    0 10px 25px rgba(15, 23, 42, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn.prev {
  left: -24px;
}

.carousel-nav-btn.next {
  right: -24px;
}

.carousel-nav-btn:hover {
  background: var(--badge-blue);
  color: #ffffff;
  border-color: var(--badge-blue);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 -0.5rem;
  padding: 15px 0.5rem 30px 0.5rem;
}

.carousel-track {
  display: flex;
  gap: 1.8rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes pulseZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

@keyframes borderGlowPulse {
  0% {
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
  }

  50% {
    border-color: rgba(0, 240, 255, 0.8);
    box-shadow: 0 25px 60px rgba(0, 240, 255, 0.3);
  }

  100% {
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
  }
}

/* Flanking Left and Right Floating Neumorphic Arrow Controls */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  z-index: 30;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.05);
}

.carousel-nav-btn.prev {
  left: -26px;
}

.carousel-nav-btn.next {
  right: -26px;
}

.carousel-nav-btn:hover {
  background: var(--badge-blue);
  color: #ffffff;
  border-color: var(--badge-blue);
  transform: translateY(-50%) scale(1.18);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.92);
}

/* Creative Cyber-Gloss Cinematic Cards (Apple 3D Stage Style) */
.carousel-card {
  flex: 0 0 340px;
  scroll-snap-align: center;
  background: #ffffff;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Center Active Focus Card Highlight */
.carousel-card.is-center {
  transform: translateY(-10px) scale(1.04);
  z-index: 20;
  border-color: var(--badge-blue);
  box-shadow:
    0 25px 60px rgba(37, 99, 235, 0.25),
    0 0 30px rgba(0, 240, 255, 0.18);
  animation: borderGlowPulse 4s infinite alternate ease-in-out;
}

.carousel-card.is-center .carousel-card-title {
  color: var(--badge-blue);
}

.carousel-card.is-center .carousel-img-box img {
  animation: pulseZoom 5s infinite alternate ease-in-out;
}

/* Light Beam Shimmer Sweeper Across Card */
.carousel-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 10;
}

.carousel-card:hover .carousel-shimmer {
  left: 180%;
}

/* Hover Physics: Pure Vertical Elevation Lift & Morphing Button */
.carousel-card:hover {
  transform: translateY(-14px) scale(1.05);
  box-shadow:
    0 28px 65px rgba(37, 99, 235, 0.3),
    0 0 35px rgba(0, 240, 255, 0.22);
  border-color: var(--badge-blue);
  background: #ffffff;
}

.carousel-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
}

.carousel-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-card:hover .carousel-img-box img {
  transform: scale(1.12);
}

.carousel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  animation: floatBadge 3.5s infinite ease-in-out;
  transition: all 0.3s ease;
}

.carousel-card:hover .carousel-badge {
  background: linear-gradient(135deg, #2563eb, #00f0ff);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.carousel-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-card:hover .carousel-img-box img {
  transform: scale(1.12);
}

.carousel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s var(--ease-spring);
}

.carousel-card:hover .carousel-badge {
  background: var(--badge-blue);
  transform: translateY(-2px) scale(1.05);
}

.carousel-card-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.carousel-card-title {
  font-family: var(--font-headline);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.carousel-card:hover .carousel-card-title {
  color: var(--badge-blue);
}

.carousel-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.carousel-action-row {
  margin-top: auto;
  display: flex;
  align-items: center;
}

.carousel-action-btn {
  font-family: var(--font-sub);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--badge-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease-spring);
}

.carousel-card:hover .carousel-action-btn {
  transform: translateX(6px);
  color: var(--cmyk-magenta);
}

/* ==========================================================================
   3. SHOWCASE SECTIONS (Business Essentials, Marketing Collateral, Corporate Gifting, Branding Material)
   ========================================================================== */
.showcase-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
  border-bottom: none;
}

.showcase-section.alt-bg {
  background: #ffffff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.carousel-card-badge {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.carousel-card-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.carousel-card-title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.carousel-card:hover .carousel-card-title {
  color: var(--badge-blue);
}

.carousel-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   4. HEAVY INDUSTRIAL PRINTING MACHINERY SHOWCASE (#machinery-section)
   ========================================================================== */
.machinery-stage-section {
  padding: 90px 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.stage-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.machinery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.machinery-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.08);
  color: var(--badge-green);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.machinery-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.machinery-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.machinery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

@media (max-width: 900px) {
  .machinery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.machine-stage-card {
  background: #f8fafc;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
}

.machine-stage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border-color: var(--badge-green);
}

.machine-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.machine-photo-wrap {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%) !important;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.15));
}

.machine-stage-card:hover .machine-img {
  transform: scale(1.06);
}

.machine-meta {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.machine-name {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.machine-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.machine-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.spec-pill {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 5px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   5. PRINTING SERVICES SHOWCASE SECTION (#services-section)
   ========================================================================== */
#services-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: var(--badge-blue);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-color: var(--badge-blue);
}

.service-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-box img {
  transform: scale(1.08);
}

.service-badge-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.service-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-title {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.service-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.service-price-tag {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--badge-blue);
}

/* ==========================================================================
   5. CLIENTS & CORPORATE BRAND PARTNERS (#our-clients-section)
   ========================================================================== */
.clients-stage-section {
  padding: 90px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 2;
}

.clients-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.clients-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.clients-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.08);
  color: var(--badge-blue);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.clients-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.clients-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.clients-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1100px) {
  .clients-brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .clients-brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
}

.client-brand-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 1.5rem 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.client-brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: var(--badge-blue);
}

/* CMYK Registration Corner Marks */
.client-brand-item .reg-mark {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: #cbd5e1;
  opacity: 0.6;
  pointer-events: none;
  transition: color 0.3s ease;
}

.client-brand-item:hover .reg-mark {
  color: var(--badge-blue);
  opacity: 1;
}

.client-brand-item .reg-mark.top-left {
  top: 6px;
  left: 8px;
}

.client-brand-item .reg-mark.top-right {
  top: 6px;
  right: 8px;
}

.client-brand-item .reg-mark.bottom-left {
  bottom: 6px;
  left: 8px;
}

.client-brand-item .reg-mark.bottom-right {
  bottom: 6px;
  right: 8px;
}

.client-logo-wrapper {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.client-logo-svg {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.client-brand-item:hover .client-logo-svg {
  transform: scale(1.08);
}

.client-brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.client-brand-name {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}

.client-specimen-pill {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Infinite Marquee Track Animation */
.clients-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeGlide 28s linear infinite;
  will-change: transform;
}

.clients-marquee-wrapper:hover .clients-marquee-track {
  animation-play-state: paused;
}

.clients-marquee-track .client-brand-item {
  flex-shrink: 0;
  min-width: 210px;
}

@keyframes marqueeGlide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   5. ANIMATED LUXURY TESTIMONIALS SECTION (#testimonials-section)
   ========================================================================== */
.testimonials-stage-section {
  padding: 70px 0 60px 0;
  background: linear-gradient(180deg, #f5f0e8 0%, #faf8f5 50%, #f5f0e8 100%) !important;
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.testimonials-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================
   5. EDITORIAL MONUMENTAL TESTIMONIALS (PRINT PROOF EXPERIENCE)
   ========================================== */
#testimonials-section.editorial-testimonials-section,
.editorial-testimonials-section {
  padding: 100px 0 110px 0 !important;
  background: #fdfdfd !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 4 !important;
  display: block !important;
}

.editorial-testimonials-container {
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.testimonials-meta-bar {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  margin-bottom: 3rem !important;
}

.registration-cross {
  font-family: var(--font-sub) !important;
  font-size: 1.1rem !important;
  font-weight: 300 !important;
  color: var(--badge-blue) !important;
  opacity: 0.6 !important;
}

.testimonials-editorial-tag {
  font-family: var(--font-sub) !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  color: #475569 !important;
  text-transform: uppercase !important;
}

.editorial-testimonial-stage {
  width: 100% !important;
  min-height: 280px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 3.5rem !important;
  position: relative !important;
}

.editorial-quote-wrapper {
  max-width: 920px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2.2rem !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.editorial-quote-wrapper.transitioning {
  opacity: 0 !important;
  transform: translateY(12px) !important;
}

.editorial-main-quote {
  font-family: var(--font-headline) !important;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  margin: 0 !important;
  position: relative !important;
}

.editorial-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  padding: 10px 22px 10px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.editorial-author-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.3);
}

.author-portrait-frame {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid var(--badge-blue) !important;
  flex-shrink: 0 !important;
}

.author-portrait-frame img,
#editorial-author-img {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

.author-text-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-display-name {
  font-family: var(--font-headline);
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.author-display-role {
  font-family: var(--font-sub);
  font-size: 0.76rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
}

.author-verified-stamp {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 800;
  color: #16a34a;
  margin-top: 2px;
}

/* Editorial Nav Bar & Tracker */
.editorial-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 520px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1.8rem;
}

.editorial-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #475569;
  transition: color 0.25s ease, transform 0.25s ease;
}

.editorial-nav-btn:hover {
  color: var(--badge-blue);
  transform: translateX(0);
}

.editorial-nav-btn.prev-btn:hover .nav-arrow {
  transform: translateX(-4px);
}

.editorial-nav-btn.next-btn:hover .nav-arrow {
  transform: translateX(4px);
}

.nav-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}

.editorial-index-tracker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.index-current {
  color: var(--badge-blue);
}

.index-divider {
  color: #cbd5e1;
}

.index-total {
  color: #94a3b8;
}


/* ==========================================
   6. EDITORIAL KINETIC FAQ SECTION (2-COLUMN ARCHITECTURE)
   ========================================== */
.editorial-faq-section {
  padding: 110px 0 120px 0;
  background: #f8fafc !important;
  position: relative;
  z-index: 4;
}

.editorial-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 960px) {
  .editorial-faq-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.faq-left-col {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.faq-editorial-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.faq-main-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.faq-main-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.faq-print-specs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 1.5rem;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sub);
  font-size: 0.8rem;
}

.spec-label {
  color: #94a3b8;
  font-weight: 600;
}

.spec-val {
  color: #0f172a;
  font-weight: 800;
}

/* Right Column: FAQ List */
.faq-list-wrapper {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.09);
  transition: background-color 0.3s ease;
}

.faq-trigger-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: transparent;
  border: none;
  padding: 1.6rem 0;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-num-prefix {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--badge-blue);
  opacity: 0.8;
}

.faq-question-title {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: #334155;
  line-height: 1.35;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question-title,
.faq-trigger-btn:hover .faq-question-title {
  color: #0f172a;
}

.faq-action-symbol {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 400;
  color: #64748b;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s ease;
}

.faq-item.active .faq-action-symbol {
  transform: rotate(45deg);
  color: var(--badge-blue);
}

/* Answer Drawer (Clean Height Grid Transition) */
.faq-answer-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-answer-drawer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 1.6rem;
  padding-left: 2rem;
}

/* MOBILE HAMBURGER DRAWER OVERLAY (ANDROID FIX) */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.8rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-drawer-overlay.active {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-toggle-btn {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  padding: 8px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  z-index: 10006 !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.close-mobile-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.mobile-nav-link {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--badge-blue);
}

.testimonial-quote-icon {
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.rating-num {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 800;
  color: #475569;
  margin-left: 6px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  padding-top: 1.4rem;
  margin-top: 1.4rem;
}

.author-avatar-box {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  border: 2px solid var(--badge-blue) !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25) !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.author-real-img {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  display: block !important;
}

.author-brand-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.author-name {
  font-family: var(--font-headline);
  font-size: 1.02rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

.author-role {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  display: block;
}

/* ==========================================================================
   6. INTERACTIVE PRINTING FAQ ACCORDION SECTION (#faq-section)
   ========================================================================== */
.faq-stage-section {
  padding: 70px 0 80px 0;
  background: linear-gradient(180deg, #f5f0e8 0%, #faf8f5 60%, #f5f0e8 100%) !important;
  position: relative;
  overflow: hidden;
  z-index: 4;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  line-height: 1.1;
}

/* Testimonials Slider Navigation Controls */
.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.testimonial-dots-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: all 0.35s ease;
}

.dot-btn.active {
  width: 28px;
  background: var(--badge-blue);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}



/* ==========================================================================
   5. AWWWARDS-LEVEL 4-CARD PROOF GRID TESTIMONIALS
   ========================================================================== */
.testimonial-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .testimonial-proof-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-proof-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 24px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00aeef 0%, #ec008c 50%, #fff200 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonial-proof-card:hover::before {
  opacity: 1;
}

.testimonial-proof-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.3);
}

.card-top-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.4rem;
}

.author-portrait-frame {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--badge-blue);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.author-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-meta-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.author-name {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.author-role {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}

.card-star-rating {
  color: var(--star-gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.card-quote-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #334155;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
}

.card-footer-stamp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  padding-top: 1rem;
}

.card-verified-stamp {
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}

.card-voice-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   6. PURE CLEAN SINGLE-COLUMN FAQ SECTION
   ========================================================================== */
.clean-faq-section {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  z-index: 4;
}

.clean-faq-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.clean-faq-header {
  text-align: center;
  margin-bottom: 3.2rem;
}

.faq-editorial-tag {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.clean-faq-title {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
}

.clean-faq-subtitle {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #64748b;
  margin: 0.6rem auto 0 auto;
  max-width: 600px;
}

.clean-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.faq-item.active {
  border-color: var(--badge-blue);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.faq-trigger-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-num-prefix {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-question-title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  flex: 1;
  line-height: 1.35;
}

.faq-action-symbol {
  font-size: 1.4rem;
  font-weight: 700;
  color: #64748b;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-action-symbol {
  transform: rotate(45deg);
  background: var(--badge-blue);
  color: #ffffff;
}

/* ==========================================================================
   ULTRA-SMOOTH FAQ ACCORDION ANIMATION (GRID 0FR -> 1FR)
   ========================================================================== */
.faq-answer-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  opacity: 0;
}

.faq-item.active .faq-answer-drawer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 1.6rem;
  transition: padding 0.35s ease;
}

.faq-item.active .faq-answer-inner {
  padding: 0 1.6rem 1.6rem 4.6rem;
}

.faq-answer-inner p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   ANDROID HIGH-PERFORMANCE HAMBURGER DRAWER DESIGN
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.45s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0%) !important;
}

.mobile-drawer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.6rem 2.2rem 1.6rem;
  overflow-y: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.mobile-drawer-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.mobile-drawer-close-btn:active {
  transform: scale(0.9) rotate(90deg);
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 1.8rem 0;
}

.mobile-drawer-link,
.mobile-drawer-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.6rem;
  transform: translateY(24px);
  opacity: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(37, 99, 235, 0.3);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.mobile-drawer-link:active,
.mobile-drawer-link:focus,
.mobile-drawer-link:hover,
.mobile-drawer-accordion-btn:active,
.mobile-drawer-accordion-btn:focus,
.mobile-drawer-accordion-btn:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.32) 0%, rgba(56, 189, 248, 0.22) 100%) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3) !important;
}

.mobile-drawer-overlay.active .mobile-drawer-link,
.mobile-drawer-overlay.active .mobile-drawer-accordion-btn {
  transform: translateY(0);
  opacity: 1;
}

.mobile-drawer-overlay.active .mobile-drawer-link:hover,
.mobile-drawer-overlay.active .mobile-drawer-link:active {
  transform: translateX(6px) !important;
}

/* Stagger delays */
.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(1) {
  transition-delay: 0.06s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(2) {
  transition-delay: 0.10s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(3) {
  transition-delay: 0.14s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(4) {
  transition-delay: 0.18s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(5) {
  transition-delay: 0.22s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(6) {
  transition-delay: 0.26s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(7) {
  transition-delay: 0.30s;
}

.mobile-drawer-overlay.active .mobile-drawer-link:nth-child(8) {
  transition-delay: 0.34s;
}

.m-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.2);
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.mobile-drawer-link:hover .m-num,
.mobile-drawer-link:active .m-num {
  background: var(--badge-blue) !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
}

.m-text {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  color: #f8fafc;
  flex: 1;
  margin-left: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-drawer-link:hover .m-text,
.mobile-drawer-link:active .m-text {
  color: #38bdf8 !important;
  transform: translateX(4px) !important;
}

.m-arrow {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-drawer-link:hover .m-arrow,
.mobile-drawer-link:active .m-arrow {
  transform: translateX(6px) scale(1.2) !important;
  color: #38bdf8 !important;
}

/* ==========================================================================
   ANDROID MOBILE DRAWER ACCORDION SUBMENU
   ========================================================================== */
.mobile-drawer-accordion-group {
  margin-bottom: 0.6rem;
}

.mobile-drawer-accordion-group .mobile-drawer-link {
  margin-bottom: 0;
  cursor: pointer;
}

.mobile-drawer-accordion-group.expanded .mobile-drawer-link {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(56, 189, 248, 0.15) 100%) !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.3s ease;
  background: rgba(15, 23, 42, 0.95);
  border-radius: 0 0 16px 16px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-top: none;
  padding: 0 0.8rem;
}

.mobile-drawer-accordion-group.expanded .mobile-accordion-content {
  max-height: 450px;
  opacity: 1;
  padding: 0.8rem;
}

.mobile-drawer-accordion-group.expanded .m-chevron {
  transform: rotate(180deg);
  color: #38bdf8;
}

.m-chevron {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.35s ease, color 0.35s ease;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: #f1f5f9 !important;
  text-decoration: none !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.mobile-sub-link:active,
.mobile-sub-link:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(56, 189, 248, 0.25) 100%) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
  color: #ffffff !important;
  transform: translateX(4px);
}

.mobile-sub-link .s-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(37, 99, 235, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 10px;
}

.mobile-sub-link .s-text {
  flex: 1;
}
  font-size: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-drawer-link:hover .m-arrow {
  transform: translateX(4px);
  color: var(--badge-blue);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m-contact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m-contact-pill.call {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.m-contact-pill.whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.m-contact-pill:active {
  transform: scale(0.98);
}

/* ==========================================================================
   7. SEAMLESS GLASSMORPHIC INTEGRATED LARGE FOOTER
   ========================================================================== */
footer#footer-section {
  position: relative;
  background: url('./assets/USED-In-Web/footer-MDM.jpeg') center center / cover no-repeat !important;
  color: #0f172a !important;
  padding: 8rem 0 4rem 0 !important;
  border-top: none !important;
  margin-top: -2px !important;
  overflow: hidden;
  z-index: 5;
}

.footer-feather-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      #f8fafc 0%,
      rgba(248, 250, 252, 0.70) 14%,
      rgba(255, 255, 255, 0.40) 45%,
      rgba(255, 255, 255, 0.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.pre-footer-cta-band {
  background: #0f172a;
  border-radius: 28px;
  padding: 3rem;
  margin-bottom: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.pre-footer-tag {
  font-family: var(--font-sub);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #60a5fa;
  margin-bottom: 0.5rem;
  display: block;
}

.pre-footer-heading {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
}

/* Feathered Top Gradient Transition Overlay for 100% Seamless Dissolve */
footer#footer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5f0e8 0%, rgba(245, 240, 232, 0.8) 12%, rgba(245, 240, 232, 0.3) 28%, rgba(255, 255, 255, 0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

/* ZERO White Card Containers around Footer Content */
.footer-brand-col,
.footer-col {
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 56px !important;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.footer-quote-box {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: italic;
  color: #0f172a !important;
  line-height: 1.65;
  margin: 0 0 1.4rem 0;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(8px);
  border-left: 4px solid var(--badge-blue);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  max-width: 460px;
  font-weight: 600;
}

.footer-cmyk-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.cmyk-pill {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  color: #ffffff;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cmyk-pill.cyan {
  background: #00aeef;
  color: #0f172a;
}

.cmyk-pill.magenta {
  background: #ec008c;
  color: #ffffff;
}

.cmyk-pill.yellow {
  background: #fff200;
  color: #0f172a;
}

.cmyk-pill.key {
  background: #0f172a;
  color: #ffffff;
}

.footer-col-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a !important;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links li a {
  color: #1e293b !important;
  text-decoration: none !important;
  font-family: var(--font-sub);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: var(--badge-blue) !important;
  transform: translateX(4px);
}

.footer-contact-stack {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--badge-blue);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.contact-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: #475569 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-value {
  color: #0f172a !important;
  text-decoration: none !important;
  font-family: var(--font-sub);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.contact-value:hover {
  color: var(--badge-blue) !important;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(15, 23, 42, 0.15);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-bottom-links a {
  color: #334155;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--badge-blue);
}

/* ==========================================================================
   7. CALCULATOR MODAL & ANDROID RESPONSIVENESS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: 28px;
  max-width: 520px;
  width: 100%;
  padding: 2.2rem;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-spring);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f1f5f9;
  border: none;
  color: var(--text-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.modal-close-btn:hover {
  background: var(--cmyk-magenta);
  color: #ffffff;
}

.form-label {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--badge-blue);
}

/* Card & Section Always Visible Baseline */
.compact-card,
.machine-stage-card,
.client-brand-item,
.faq-item {
  opacity: 1 !important;
}

@media (max-width: 992px) {
  #main-nav {
    width: calc(100% - 2rem);
    padding: 0 1.2rem;
  }

  .nav-menu-wrapper {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: flex !important;
  }

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

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

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

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

  /* Android Hardware GPU Acceleration & Lag Elimination */
  #cursor-spotlight {
    display: none !important;
  }

  .client-brand-item,
  .print-navbar,
  .modal-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .compact-track,
  .clients-marquee-wrapper {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  #main-nav {
    width: calc(100% - 1.5rem);
    top: 14px;
    height: 66px;
    padding: 0 1rem;
  }

  .fanned-card {
    width: 120px;
    height: 170px;
    margin-right: -30px;
  }

  .speech-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

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

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

  .brand-logo-img {
    height: 48px;
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   PEAK 60FPS HIGH-PERFORMANCE OPTIMIZATIONS (ANDROID & LOW-END DEVICES)
   ========================================================================== */

/* 1. Global Hardware Compositing & Subpixel Anti-Aliasing */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 2. Off-Screen Rendering Offload for Scroll Sections */
.compact-editorial-section,
.our-machinery-section,
.faq-accordion-section,
footer#footer-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* 3. GPU Layer Promotion for Animated UI Components */
.fanned-card,
.reveal-word,
.speech-badge,
.machine-stage-card,
.compact-card,
.client-brand-item {
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* 4. Touch Device Ultra-Smooth Touch Momentum */
@media (max-width: 992px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  .compact-track {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
}

/* ==========================================================================
   MULTI-PAGE EXPANSION STYLES (ABOUT US, CONTACT, PRODUCTS, SERVICES)
   ========================================================================== */

/* Page Hero Banner */
.page-hero-section {
  padding: 10rem 1.5rem 5rem 1.5rem;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(37, 99, 235, 0.08) 0%, rgba(248, 250, 252, 0) 75%);
  text-align: center;
  position: relative;
}

.page-hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--badge-blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.page-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* About Page Layout */
.about-section {
  padding: 5rem 1.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto 5rem auto;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.about-card-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.about-card-p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.about-img-wrap {
  width: 100%;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  max-width: var(--max-width);
  margin: 0 auto 5rem auto;
}

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

@media (max-width: 640px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--badge-blue);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.pillar-title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Contact Page Layout */
.contact-section {
  padding: 4rem 1.5rem 6rem 1.5rem;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-form-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #0f172a;
  color: #60a5fa;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.info-content p, .info-content a {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  font-weight: 700;
}

/* ==========================================================================
   ANIMATED LUCIDE ICONS & RICH ABOUT US PAGE ENHANCEMENTS
   ========================================================================== */
.lucide-icon {
  stroke-width: 2.2px;
  stroke: currentColor;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), stroke 0.3s ease;
}

.lucide-icon.pulse {
  animation: iconPulse 2.5s infinite ease-in-out;
}

.lucide-icon.bounce {
  animation: iconBounce 3s infinite ease-in-out;
}

.lucide-icon.float {
  animation: iconFloat 3.5s infinite ease-in-out;
}

.lucide-icon.glow {
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.45));
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.16); }
}

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

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(5deg); }
}

/* Company Milestone Timeline for About Us */
.about-timeline-section {
  max-width: var(--max-width);
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

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

@media (max-width: 640px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
  position: relative;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.25);
}

.timeline-year {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--badge-blue);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   ANDROID MOBILE DRAWER ACCORDION SUBMENU
   ========================================================================== */
.mobile-drawer-accordion-group {
  margin-bottom: 0.6rem;
  width: 100%;
}

.mobile-drawer-accordion-group .mobile-drawer-accordion-btn {
  margin-bottom: 0;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
}

.mobile-drawer-accordion-group.expanded .mobile-drawer-accordion-btn {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.32) 0%, rgba(56, 189, 248, 0.22) 100%) !important;
  border-color: rgba(56, 189, 248, 0.5) !important;
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.3s ease;
  background: rgba(15, 23, 42, 0.95) !important;
  border-radius: 0 0 16px 16px !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-top: none !important;
  padding: 0 0.8rem;
  box-sizing: border-box;
}

.mobile-drawer-accordion-group.expanded .mobile-accordion-content {
  max-height: 500px !important;
  opacity: 1 !important;
  padding: 0.8rem !important;
}

.mobile-drawer-accordion-group.expanded .m-chevron {
  transform: rotate(180deg) !important;
  color: #38bdf8 !important;
}

.m-chevron {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.35s ease, color 0.35s ease;
}

.mobile-sub-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.75rem 0.9rem !important;
  border-radius: 12px !important;
  color: #f1f5f9 !important;
  text-decoration: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.25s ease !important;
  box-sizing: border-box;
}

.mobile-sub-link:active,
.mobile-sub-link:hover {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(56, 189, 248, 0.3) 100%) !important;
  border-color: rgba(56, 189, 248, 0.6) !important;
  color: #ffffff !important;
  transform: translateX(4px) !important;
}

.mobile-sub-link .s-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(37, 99, 235, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  margin-right: 10px;
}

.mobile-sub-link .s-text {
  flex: 1;
}