/* ==========================================================================
   BRANDHIVE PRINTING PLATFORM — FIGMA EXACT DESIGN SYSTEM & STYLESHEET
   Matching Exact Colors, Typography, Spacing, Buttons, Badges, & Aesthetics
   ========================================================================== */

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

:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Brandhive Palette (Exact Figma UI) */
  --primary-blue: #0052CC;
  --primary-blue-hover: #0043A8;
  --primary-blue-dark: #002847;
  --primary-blue-deep: #06192C;
  --primary-blue-light: #EEF4FB;

  --accent-yellow: #FFC700;
  --accent-yellow-gold: #FFC107;
  --accent-yellow-hover: #E6B300;
  --accent-yellow-light: #FFF8E1;

  --accent-green: #10B981;
  --accent-green-light: #ECFDF5;
  --accent-red: #EF4444;

  /* Neutrals */
  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --text-dark: #0F172A;
  --text-body: #5A6B82;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  --border-subtle: #EAEFF5;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 40, 71, 0.06);
  --shadow-lg: 0 12px 30px rgba(0, 40, 71, 0.09), 0 4px 8px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 24px 60px -15px rgba(0, 40, 71, 0.13);
  --shadow-hero-card: 0 25px 60px -15px rgba(0, 40, 71, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Container */
  --container-max: 1240px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

*:focus, *:focus-visible, button:focus, a:focus, input:focus, select:focus, textarea:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  position: static;
}

main {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--primary-blue-dark);
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-body);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent !important;
}

button {
  -webkit-tap-highlight-color: transparent !important;
}

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

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

/* ==========================================================================
   HEADER & NAVBAR (Fixed / Sticky Navigation)
   ========================================================================== */

header.site-header,
.site-header,
#main-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 80px;
  z-index: 999999 !important;
  background-color: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin: 0 !important;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo: Real Brandhive Image */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 38px;
  max-height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* Thin Animated Underline (1.5px): Enters from Left, Retracts to Right */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--primary-blue);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--primary-blue);
  font-weight: 600;
}

.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link-track {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Royal Blue Pill Button: Request a Quote */
.btn-quote-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.925rem;
  font-weight: 800;
  background-color: var(--primary-blue);
  color: #FFFFFF !important;
  padding: 0.75rem 1.65rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-quote-pill:hover {
  background-color: #0747A6;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.4);
}

.btn-staff-portal {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-staff-portal:hover {
  background: #DCE8F7;
}

/* Mobile Hamburger Button (Sleek Centered Morphing X) */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1300;
  -webkit-tap-highlight-color: transparent !important;
}

.mobile-toggle:hover {
  background-color: #E2E8F0;
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--primary-blue-dark);
  border-radius: 1px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}

/* Hamburger active transformation to X */
.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background-color: var(--primary-blue);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background-color: var(--primary-blue);
}

/* Mobile Drawer Backdrop Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Background Scroll Lock when Mobile Drawer is Open */
html.mobile-menu-locked,
body.mobile-menu-locked {
  overflow: hidden !important;
  touch-action: none !important;
  height: 100% !important;
  width: 100% !important;
}

/* Mobile Slide-Out Navigation Drawer (Fixed, Non-Scrolling, Perfectly Proportioned) */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto !important;
  width: min(310px, 86vw);
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background-color: #FFFFFF;
  z-index: 1200;
  transform: translateX(100%) !important;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 30, 60, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden !important;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0) !important;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #F1F5F9;
  flex-shrink: 0;
  background-color: #FFFFFF;
}

.mobile-drawer-header .brand-logo-img {
  height: 30px;
  max-height: 30px;
}

.mobile-drawer-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1300;
  -webkit-tap-highlight-color: transparent !important;
}

.mobile-drawer-close:hover {
  background: #F1F5F9;
  color: #0F172A;
}

.mobile-drawer-body {
  padding: 0.85rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow: hidden !important;
  box-sizing: border-box;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-item:hover {
  background-color: #F8FAFC;
  color: var(--primary-blue);
  transform: translateX(2px);
}

.mobile-nav-item.active {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  font-weight: 600;
}

.mobile-drawer-actions {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-shrink: 0;
}

.mobile-drawer-actions .btn-quote-pill {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-full);
}

.mobile-drawer-actions .btn-whatsapp {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.mobile-portal-link {
  display: block;
  text-align: center;
  color: #64748B;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  padding-top: 0.25rem;
  transition: var(--transition);
}

.mobile-portal-link:hover {
  color: var(--primary-blue);
}

/* ==========================================================================
   1. HERO SECTION (Exact Figma Typography & Layout)
   ========================================================================= */

.hero-section {
  padding: 4.5rem 0 3.5rem;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

/* Pill Tag */
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-blue-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.gold-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-yellow-gold);
  border-radius: 50%;
  display: inline-block;
}

/* Headline: 4 Lines in Rich Blue */
.hero-title {
  font-size: 3.5rem;
  line-height: 1.08;
  color: var(--primary-blue);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-type-container {
  display: inline-flex;
  align-items: baseline;
  position: relative;
}

.hero-typed-word {
  background: linear-gradient(135deg, #FF6600 0%, #FF5000 45%, #FFC700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  white-space: nowrap;
  font-weight: 800;
}

.hero-type-cursor {
  display: inline-block;
  font-weight: 300;
  font-size: 0.95em;
  color: #FF6600;
  margin-left: 2px;
  line-height: 1;
  animation: heroCursorBlink 0.75s infinite ease-in-out;
  vertical-align: baseline;
  user-select: none;
}

@keyframes heroCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 400;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* CTA Buttons */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-blue);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 82, 204, 0.28);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 82, 204, 0.38);
}

.btn-hero-primary .btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-hero-track {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #FFFFFF;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-track:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
  transform: translateY(-1px);
}

/* Trust Badges with Yellow Checkmark Circles */
.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.trust-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

.check-circle {
  width: 18px;
  height: 18px;
  background-color: var(--accent-yellow-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hero Showcase Image (Clean Transparent & Bigger on Desktop) */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.ambient-glow {
  display: none;
}

.hero-image-card {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hero-img-showcase {
  width: 100%;
  max-width: 620px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 20px 35px rgba(0, 35, 75, 0.1));
  animation: heroFloating 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-img-showcase:hover {
  transform: scale(1.02) translateY(-4px);
}

/* ==========================================================================
   2. AUTOMATED PRINT SIMULATOR (Full-Width Brandhive Blue Showcase)
   ========================================================================= */

.simulator-section-full {
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(135deg, #0052CC 0%, #003B94 50%, #002847 100%);
  padding: 4.75rem 0;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.simulator-bg-decor {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(255, 199, 0, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255, 102, 0, 0.18) 0%, transparent 45%);
  pointer-events: none;
}

.simulator-container {
  position: relative;
  z-index: 1;
}

.simulator-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.simulator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}

.sim-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-yellow);
  box-shadow: 0 0 10px var(--accent-yellow);
  animation: simPulse 1.5s infinite;
}

@keyframes simPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.simulator-title {
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.simulator-subtitle {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 2.5vw, 1.075rem);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

/* Simulator Terminal Card */
.sim-terminal-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.25);
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto 2.5rem;
}

.sim-chrome-bar {
  background: #0F172A;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1E293B;
}

.sim-chrome-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sim-chrome-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.sim-chrome-dots .dot.red { background: #EF4444; }
.sim-chrome-dots .dot.yellow { background: #F59E0B; }
.sim-chrome-dots .dot.green { background: #10B981; }

.sim-chrome-title {
  color: #94A3B8;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sim-live-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #10B981;
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sim-rec-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.sim-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.sim-left-panel {
  padding: 1.75rem;
  background: #F8FAFC;
  border-right: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.sim-right-panel {
  padding: 1.75rem;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748B;
  margin-bottom: 0.45rem;
}

.sim-pills-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.sim-pill {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.825rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
}

.sim-pill.active {
  background: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.28);
}

.sim-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.sim-input-box,
.sim-select-box {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  min-height: 42px;
}

.sim-input-box.active-pulse,
.sim-select-box.active-pulse {
  border-color: #FF6600;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.18);
}

.sim-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--primary-blue);
  animation: simBlink 0.8s infinite;
  margin-left: 2px;
}

@keyframes simBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.sim-select-arrow {
  color: #94A3B8;
  font-size: 0.75rem;
}

/* Right Panel Live Receipt Card */
.sim-live-receipt {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sim-receipt-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px dashed #CBD5E1;
  padding-bottom: 0.85rem;
}

.sim-receipt-tag {
  font-size: 0.725rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.05em;
  display: block;
}

.sim-receipt-price {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: var(--font-main);
  line-height: 1.1;
  transition: all 0.3s ease;
}

.sim-badge-ready {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1px solid #BBF7D0;
}

.sim-customer-fields {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sim-field-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
}

.sim-f-label {
  color: #64748B;
  font-weight: 500;
}

.sim-f-val {
  color: #0F172A;
  font-weight: 700;
  text-align: right;
}

.sim-dispatch-progress {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sim-progress-bar {
  height: 6px;
  background: #E2E8F0;
  border-radius: 9999px;
  overflow: hidden;
}

.sim-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #FF6600, #FFC700);
  border-radius: 9999px;
  transition: width 0.75s ease;
}

.sim-progress-label {
  font-size: 0.725rem;
  color: #64748B;
  font-weight: 600;
}

.sim-handoff-success {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #065F46;
  font-size: 0.825rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.35s ease;
}

.sim-handoff-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sim-wa-icon {
  font-size: 1.25rem;
}

.sim-handoff-success p {
  font-size: 0.75rem;
  color: #047857;
  font-weight: 600;
  margin: 0;
}

/* The Requested CTA Button: "Tell Us What You Want" */
.simulator-cta-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.btn-tell-us-what-you-want {
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.65rem 0.75rem 0.65rem 1.75rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
}

.btn-tell-us-what-you-want:hover {
  background: #FFFFFF;
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-arrow-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6600 0%, #FF5000 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}

.btn-tell-us-what-you-want:hover .btn-arrow-circle {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.35);
}

.simulator-cta-subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 400;
  max-width: 520px;
}

/* ==========================================================================
   2. DYNAMIC QUOTE CALCULATOR & REQUEST CARD (Dedicated Page Form)
   ========================================================================= */

/* ==========================================================================
   2. DYNAMIC QUOTE CONFIGURATOR & DASHBOARD (Dedicated Quote Page)
   ========================================================================== */

/* Page Hero Banner */
.quote-page-hero {
  background: #0A1629;
  padding: 3rem 0 2.5rem;
  color: #FFFFFF;
  position: relative;
  border-bottom: 1px solid #1E293B;
}

.quote-hero-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 1.25rem;
}

.quote-hero-breadcrumbs a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.quote-hero-breadcrumbs a:hover {
  color: #38BDF8;
}

.quote-hero-breadcrumbs .current {
  color: #38BDF8;
  font-weight: 700;
}

.quote-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 82, 204, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38BDF8;
  font-size: 0.775rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-hero-title {
  color: #FFFFFF !important;
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
  line-height: 1.15;
}

.quote-hero-desc {
  color: #94A3B8 !important;
  font-size: clamp(0.925rem, 2.2vw, 1rem);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Stepper Bar */
.quote-stepper-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0F172A;
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: 1.1rem 1.75rem;
  max-width: 860px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.45;
  transition: all 0.3s ease;
}

.step-item.active {
  opacity: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item.active .step-circle {
  background: #0052CC;
  border: 2px solid #38BDF8;
  color: #FFFFFF;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

.step-info {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #38BDF8;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.step-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #FFFFFF;
}

.step-divider {
  flex: 1;
  height: 2px;
  background: #1E293B;
  margin: 0 1rem;
}

/* Configurator Main Section */
.quote-configurator-main {
  padding: 3rem 0 5rem;
  background-color: #F8FAFC;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.quote-grid-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 2.25rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.quote-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin-top: 0.75rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.quote-bottom-grid .config-card {
  margin-bottom: 0;
  height: auto;
  align-self: start;
}

.quote-bottom-grid .config-card .config-fields-grid {
  align-content: start;
}

.quote-bottom-grid .config-card .step4-submit-row {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F1F5F9;
}

.quote-form-column,
.quote-sidebar-column {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Config Cards (Left Column) */
.config-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.85rem 2rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.75rem;
  transition: box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.config-card:hover {
  box-shadow: 0 8px 30px rgba(0, 82, 204, 0.06);
}

.config-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F1F5F9;
}

.card-step-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0052CC 0%, #003B94 100%);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.config-card .card-title,
.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 0.15rem;
}

.config-card .card-subtitle,
.card-subtitle {
  font-size: 0.85rem;
  color: #64748B !important;
  margin: 0;
}

/* Product Pills Selector */
.service-pills-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-pill-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  background: #F1F5F9;
  border: 1.5px solid transparent;
  color: #334155;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-pill-option .pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94A3B8;
  transition: background 0.25s ease;
}

.service-pill-option:hover {
  background: #E2E8F0;
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.service-pill-option.active {
  background: linear-gradient(135deg, #0052CC 0%, #003B94 100%);
  color: #FFFFFF;
  border-color: #0052CC;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.28);
}

.service-pill-option.active .pill-dot {
  background: var(--accent-yellow);
}

/* Config Grid & Inputs */
.config-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field-half {
  display: flex;
  flex-direction: column;
}

.config-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 0.45rem;
}

.config-label .req {
  color: #EF4444;
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.field-unit-hint {
  font-size: 0.8rem;
  color: #0052CC;
  font-weight: 600;
}

/* Quantity Stepper & Quick Presets */
.qty-stepper-wrap {
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease;
}

.qty-stepper-wrap:focus-within {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}

.qty-step-btn {
  width: 46px;
  height: 46px;
  background: #F1F5F9;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-step-btn:hover {
  background: #E2E8F0;
  color: var(--primary-blue);
}

.qty-stepper-wrap input {
  flex: 1;
  border: none;
  text-align: center;
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  padding: 0.6rem;
  outline: none;
}

.qty-quick-presets {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.preset-label {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

.qty-preset-btn {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-preset-btn:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
}

/* Custom Select & Inputs */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #64748B;
  pointer-events: none;
}

.form-select,
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-main);
  font-size: 0.925rem;
  font-weight: 500;
  color: #0F172A;
  background-color: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 12px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.25rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}

.field-hint {
  font-size: 0.775rem;
  color: #64748B;
  margin-top: 0.35rem;
  display: block;
}

/* Delivery Preferences Picker */
.delivery-picker-wrap {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #F1F5F9;
}

.delivery-options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.delivery-card-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.15rem;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  gap: 0.5rem;
}

.delivery-card-option input[type="radio"] {
  display: none;
}

.del-card-content {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
}

.del-icon-box {
  font-size: 1.35rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.del-title {
  display: block;
  font-size: 0.9rem;
  color: #1E293B;
  font-weight: 700;
}

.del-desc {
  font-size: 0.775rem;
  color: #64748B;
  margin: 0;
}

.del-price-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0052CC;
  background: rgba(0, 82, 204, 0.08);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
}

.del-price-badge.free {
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
}

.delivery-card-option:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.delivery-card-option.active {
  background: #EFF6FF;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.1);
}

/* Design Service Toggle */
.design-service-toggle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0F7FF;
  border: 1.5px solid #BFDBFE;
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  gap: 0.75rem;
}

.toggle-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 0%;
  min-width: 0;
  overflow: hidden;
}

.toggle-icon-wrap {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 82, 204, 0.1);
}

.toggle-title {
  display: block;
  font-size: 0.925rem;
  color: #1E3A8A;
  font-weight: 700;
}

.toggle-sub {
  font-size: 0.775rem;
  color: #3B82F6;
  margin: 0;
}

/* iOS-Style Toggle Switch */
.switch-control {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch-control input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #CBD5E1;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.switch-control input:checked + .switch-slider {
  background-color: #0052CC;
}

.switch-control input:checked + .switch-slider:before {
  transform: translateX(22px);
}

/* Interactive Dropzone */
.interactive-dropzone {
  border: 2px dashed #CBD5E1;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: #F8FAFC;
  transition: all 0.25s ease;
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.artwork-dropzone-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.dropzone-empty-state {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.interactive-dropzone:hover,
.interactive-dropzone.drag-over {
  border-color: #0052CC;
  background: #EFF6FF;
}

.hidden-file-input {
  display: none;
}

.dropzone-cloud-icon {
  margin-bottom: 0.5rem;
}

.dropzone-prompt {
  display: block;
  font-size: 0.925rem;
  color: #1E293B;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.dropzone-or {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  margin: 0 0.5rem;
}

.btn-browse-file {
  background: #FFFFFF;
  border: 1.5px solid #0052CC;
  color: #0052CC;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-browse-file:hover {
  background: #0052CC;
  color: #FFFFFF;
}

.dropzone-file-specs {
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 0.65rem;
}

/* File Preview State */
.dropzone-preview-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 0.65rem;
  overflow: hidden;
}

.preview-thumb-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #0F172A;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.preview-meta {
  flex: 1 1 0%;
  min-width: 0;
  text-align: left;
  overflow: hidden;
}

.preview-filename {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.15rem;
}

.preview-sub-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  min-width: 0;
}

.preview-filesize {
  font-size: 0.725rem;
  color: #64748B;
  font-weight: 600;
}

.preview-status-badge {
  font-size: 0.675rem;
  color: #10B981;
  font-weight: 800;
  white-space: nowrap;
}

.btn-remove-file {
  background: #FEE2E2;
  border: none;
  color: #EF4444;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.btn-remove-file:hover {
  background: #EF4444;
  color: #FFFFFF;
}

/* ==========================================================================
   RIGHT COLUMN: STICKY DYNAMIC SUMMARY & PIE CHART DASHBOARD
   ========================================================================== */

.sticky-quote-dashboard {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Total Price Card */
.dashboard-price-card {
  background: linear-gradient(135deg, #0052CC 0%, #003B94 100%);
  border-radius: 20px;
  padding: 1.75rem;
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(0, 82, 204, 0.28);
  position: relative;
  overflow: hidden;
}

.dashboard-price-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.dash-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.dash-rate-tag {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-yellow);
}

.dash-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.2);
  color: #6EE7B7;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.pulse-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.dash-main-price {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.dash-price-subtext {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.dash-turnaround-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* Dynamic Pie Chart Card */
.dashboard-chart-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.chart-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F1F5F9;
}

.chart-title {
  font-size: 1rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
}

.chart-sub {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

.pie-chart-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* SVG Donut Chart */
.svg-pie-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-bg {
  fill: none;
  stroke: #F1F5F9;
  stroke-width: 14;
}

.donut-segment {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 0.6s cubic-bezier(0.16, 1, 0.3, 1), stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.seg-print { stroke: #0052CC; }
.seg-material { stroke: #6366F1; }
.seg-finishing { stroke: #0D9488; }
.seg-delivery { stroke: #10B981; }

.donut-center-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.donut-center-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #64748B;
  font-weight: 700;
  display: block;
}

.donut-center-val {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1;
}

/* Legend */
.chart-legend-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.775rem;
  padding: 0.2rem 0;
}

.legend-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend-color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-name {
  color: #475569;
  font-weight: 600;
}

.legend-amount {
  font-weight: 700;
  color: #0F172A;
}

/* WhatsApp Live Preview Card */
.dashboard-wa-preview-card {
  background: #E5DDD5;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid #D1D7DB;
  background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
  background-size: 16px 16px;
}

.wa-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.wa-preview-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #075E54;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-avatar img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.wa-user-name {
  font-size: 0.825rem;
  color: #111B21;
  display: block;
  line-height: 1.2;
}

.wa-user-status {
  font-size: 0.675rem;
  color: #008069;
  font-weight: 600;
  display: block;
}

.wa-live-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: #128C7E;
  background: rgba(18, 140, 126, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.wa-chat-bubble {
  background: #FFFFFF;
  border-radius: 12px 12px 12px 2px;
  padding: 0.85rem 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  font-size: 0.8rem;
  color: #111B21;
}

.wa-bubble-greeting {
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.wa-bubble-spec-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.775rem;
}

.wa-spec-line {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.wa-spec-icon-badge {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #EFF6FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-spec-line strong {
  color: #1E293B;
  font-weight: 700;
  min-width: 65px;
}

.wa-spec-price-highlight {
  margin-top: 0.25rem;
  padding-top: 0.35rem;
  border-top: 1px dashed #CBD5E1;
}

.wa-spec-price-highlight .wa-spec-icon-badge {
  background: #FFF7ED;
}

.wa-spec-price-highlight strong {
  color: var(--accent-orange);
}

.wa-spec-price-highlight span {
  font-weight: 800;
  color: var(--accent-orange);
}

.wa-bubble-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #8696A0;
  margin-top: 0.4rem;
}

/* Submit Action Button */
.dashboard-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.btn-submit-quote-order {
  background: linear-gradient(135deg, #FF6600 0%, #FF5000 100%);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.btn-submit-quote-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.45);
  background: linear-gradient(135deg, #FF7711 0%, #FF5500 100%);
}

.btn-submit-quote-order .submit-arrow {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.btn-submit-quote-order:hover .submit-arrow {
  transform: translateX(4px);
}

.dashboard-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
}

.dash-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  color: #64748B;
  font-weight: 600;
}

/* Responsive Rules for Quote Configurator */
@media (max-width: 992px) {
  .quote-grid-layout,
  .quote-bottom-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sticky-quote-dashboard {
    position: static;
  }
}

@media (max-width: 768px) {
  .quote-page-hero {
    padding: 1.75rem 0 1.5rem;
  }

  .quote-hero-breadcrumbs {
    margin-bottom: 0.75rem;
    font-size: 0.775rem;
  }

  .quote-hero-tag {
    font-size: 0.725rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.65rem;
  }

  .quote-hero-title {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .quote-hero-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 1.25rem;
  }

  .quote-stepper-bar {
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    gap: 0.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .step-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .step-num {
    font-size: 0.625rem;
    white-space: nowrap;
  }

  .step-label {
    display: block;
    font-size: 0.725rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.15;
  }

  .step-divider {
    margin: 0 0.35rem;
    min-width: 12px;
  }

  .quote-configurator-main {
    padding: 1.75rem 0 3.5rem;
  }

  .config-card {
    padding: 1.15rem 1rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
  }

  .config-card-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .card-step-badge {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
    border-radius: 8px;
  }

  .card-title {
    font-size: 1.05rem;
  }

  .card-subtitle {
    font-size: 0.775rem;
  }

  .service-pills-selector {
    gap: 0.4rem;
  }

  .service-pill-option {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }

  .config-fields-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .qty-stepper-wrap {
    border-radius: 10px;
  }

  .qty-step-btn {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }

  .qty-stepper-wrap input {
    font-size: 1rem;
    padding: 0.5rem;
  }

  .qty-quick-presets {
    gap: 0.25rem;
  }

  .qty-preset-btn {
    padding: 0.2rem 0.45rem;
    font-size: 0.7rem;
  }

  .form-select, .form-input, .form-textarea {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .delivery-card-option {
    padding: 0.75rem 0.85rem;
    gap: 0.5rem;
  }

  .del-icon-box {
    width: 34px;
    height: 34px;
    font-size: 1.15rem;
  }

  .del-title {
    font-size: 0.825rem;
  }

  .del-desc {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .del-price-badge {
    font-size: 0.725rem;
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
  }

  .design-service-toggle-card {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .toggle-icon-wrap {
    width: 34px;
    height: 34px;
  }

  .toggle-title {
    font-size: 0.85rem;
  }

  .toggle-sub {
    font-size: 0.72rem;
  }

  .interactive-dropzone {
    padding: 1rem 0.75rem;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .dropzone-preview-state {
    padding: 0.5rem 0.65rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .preview-thumb-box {
    width: 38px;
    height: 38px;
  }

  .preview-meta {
    flex: 1 1 0%;
    min-width: 0;
  }

  .preview-filename {
    font-size: 0.775rem;
    max-width: 100%;
  }

  .preview-filesize {
    font-size: 0.68rem;
  }

  .preview-status-badge {
    font-size: 0.65rem;
  }

  .dropzone-prompt {
    font-size: 0.85rem;
  }

  .btn-browse-file {
    font-size: 0.75rem;
    padding: 0.35rem 0.85rem;
  }

  .dropzone-file-specs {
    font-size: 0.7rem;
  }

  .dashboard-price-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .dash-main-price {
    font-size: 1.85rem;
  }

  .dashboard-chart-card {
    padding: 1.15rem 1rem;
    border-radius: 16px;
  }

  .pie-chart-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
  }

  .svg-pie-wrap {
    width: 90px;
    height: 90px;
  }

  .donut-center-val {
    font-size: 0.75rem;
  }

  .donut-center-label {
    font-size: 0.55rem;
  }

  .chart-legend-list {
    flex: 1;
    gap: 0.35rem;
  }

  .legend-item {
    font-size: 0.725rem;
  }

  .dashboard-wa-preview-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .wa-chat-bubble {
    padding: 0.75rem;
    font-size: 0.75rem;
  }

  .wa-bubble-spec-box {
    padding: 0.5rem 0.65rem;
    gap: 0.35rem;
    font-size: 0.725rem;
  }

  .btn-submit-quote-order {
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 14px;
  }

  .dashboard-trust-row {
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    padding: 0;
  }
}

.estimate-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-quote-submit {
  background-color: var(--accent-yellow);
  color: var(--primary-blue-dark);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.4);
  transition: var(--transition);
}

.btn-quote-submit:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.5);
}

/* ==========================================================================
   3. OUR PRINTING SERVICES GRID (Exact Figma Design from Image 1)
   ========================================================================= */

.services-section {
  padding: 5.5rem 0 6rem;
  background-color: #FFFFFF;
}

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

.section-title {
  font-size: 2.5rem;
  color: var(--primary-blue);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.section-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: #5A6B82;
  line-height: 1.6;
}

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

.service-card {
  background: #FFFFFF;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #EAEFF5;
  box-shadow: 0 4px 18px rgba(0, 40, 71, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 40, 71, 0.09);
  border-color: #D0E4F7;
}

.service-card-image-box {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: #F1F5F9;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

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

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card-text {
  font-size: 0.925rem;
  font-weight: 400;
  color: #5A6B82;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-service-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.btn-service-link:hover {
  color: var(--primary-blue-hover);
}

.btn-service-link .link-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn-service-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Bottom Pill Action Button: View All Services */
.services-action-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-view-all-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: #1E293B;
  background-color: #F1F5F9;
  border: 1px solid #E2E8F0;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

.btn-view-all-services:hover {
  background-color: #E2E8F0;
  color: #0F172A;
  transform: translateY(-1px);
}

/* ==========================================================================
   4. HOW IT WORKS (Exact Figma Design from Image)
   ========================================================================= */

.how-it-works-section {
  padding: 6rem 0 6.5rem;
  background-color: var(--primary-blue);
  color: #FFFFFF;
}

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

.how-title {
  color: #FFFFFF;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.65rem;
}

.how-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
}

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

.step-card {
  text-align: center;
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.step-number-highlight {
  background-color: #FFC700;
  color: #002847;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.step-title {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.step-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.55;
}

/* ==========================================================================
   5. TRACK YOUR PRINTING JOB SECTION (Exact Figma Design from Image)
   ========================================================================= */

/* ==========================================================================
   5. TRACK YOUR PRINTING JOB SECTION (Modernized High-Impact Redesign)
   ========================================================================= */

.tracker-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}

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

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

.tracker-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #EFF6FF;
  color: #0052CC;
  border: 1px solid #BFDBFE;
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.tracker-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0052CC;
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.25);
  animation: trackerPulse 2s infinite;
}

@keyframes trackerPulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(0, 82, 204, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 82, 204, 0); }
}

.tracker-heading {
  font-size: 2.35rem;
  color: #0F172A;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.tracker-desc {
  font-size: 1rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Modern Enclosed Search Terminal */
.tracker-terminal-card {
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 16px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 82, 204, 0.06);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.2s ease;
}

.tracker-terminal-card:focus-within {
  border-color: #0052CC;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12);
}

.tracker-terminal-input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'JetBrains Mono', var(--font-main), monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  flex: 1;
  width: 100%;
}

.tracker-terminal-input::placeholder {
  font-family: var(--font-main);
  font-weight: 400;
  color: #94A3B8;
  font-size: 0.875rem;
}

.btn-track-submit-v2 {
  background: #0052CC;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.25);
}

.btn-track-submit-v2:hover {
  background: #0747A6;
  transform: translateY(-1px);
}

.tracker-helper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.775rem;
  color: #64748B;
  margin-top: 0.85rem;
  padding: 0 0.25rem;
}

.tracker-sample-btn {
  background: none;
  border: none;
  color: #0052CC;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.tracker-sample-btn:hover {
  color: #0747A6;
}

.tracker-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #CBD5E1;
}

@media (max-width: 600px) {
  .tracker-trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #334155;
}

/* Floating Live Tracking Showcase Card */
.tracker-live-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 20px 50px rgba(0, 40, 71, 0.08);
  padding: 1.75rem;
  position: relative;
}

.tracker-live-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #F1F5F9;
  margin-bottom: 1.15rem;
}

.track-sample-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 800;
  background: #EFF6FF;
  color: #0052CC;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid #BFDBFE;
}

.track-sample-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0F172A;
  margin-top: 0.25rem;
}

.live-stage-badge {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.live-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

/* Progress Velocity Bar */
.tracker-progress-track {
  background: #F1F5F9;
  height: 6px;
  border-radius: 6px;
  margin: 0.75rem 0 1.25rem;
  overflow: hidden;
}

.tracker-progress-fill {
  background: linear-gradient(90deg, #0052CC 0%, #10B981 100%);
  height: 100%;
  width: 65%;
  border-radius: 6px;
}

/* Vertical Milestone Timeline */
.tracker-v-timeline {
  list-style: none;
  position: relative;
  padding-left: 2.25rem;
  margin-bottom: 1.25rem;
}

.tracker-v-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 10px;
  bottom: 16px;
  width: 2px;
  background-color: #E2E8F0;
}

.t-milestone {
  position: relative;
  margin-bottom: 1.15rem;
  display: flex;
  align-items: flex-start;
}

.t-milestone:last-child {
  margin-bottom: 0;
}

.t-node {
  position: absolute;
  left: -2.25rem;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
}

.t-milestone.is-done .t-node {
  background-color: #10B981;
  color: #FFFFFF;
}

.t-milestone.is-active .t-node {
  background-color: #0052CC;
  color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.2);
}

.t-milestone.is-pending .t-node {
  background-color: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  color: #94A3B8;
}

.t-info {
  display: flex;
  flex-direction: column;
}

.t-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.25;
}

.t-title.active-title {
  color: #0052CC;
  font-weight: 800;
}

.t-time {
  font-size: 0.7rem;
  color: #64748B;
  margin-top: 0.15rem;
}

.t-time.active-time {
  color: #0052CC;
  font-weight: 600;
}

/* Card Bottom Footer */
.tracker-card-footer {
  background: #F8FAFC;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  border: 1px solid #F1F5F9;
}

.t-title.pending-title {
  color: #94A3B8;
  font-weight: 400;
}

.t-time {
  font-size: 0.775rem;
  color: #94A3B8;
  margin-top: 0.15rem;
}

.t-time.active-time {
  color: #64748B;
}

/* ==========================================================================
   6. BEYOND PRINTING: DIGITAL SOLUTIONS (Exact Figma Design from Image)
   ========================================================================= */

.branding-section {
  padding: 6.5rem 0 7rem;
  background-color: var(--primary-blue);
  color: #FFFFFF;
}

.branding-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.branding-header-left {
  max-width: 620px;
}

.beyond-tag {
  color: #FFC700;
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.beyond-title {
  color: #FFFFFF;
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.beyond-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
}

.btn-explore-digital {
  background-color: #FFC700;
  color: #002847;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.85rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-top: 1rem;
}

.btn-explore-digital:hover {
  background-color: #FFD54F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #001830;
}

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

.branding-card {
  background: rgba(0, 35, 80, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.branding-card:hover {
  background: rgba(0, 35, 80, 0.7);
  border-color: rgba(255, 199, 0, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 20, 50, 0.3);
}

.branding-card .card-icon-wrap {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

.branding-card .card-title {
  color: #FFFFFF !important;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.branding-card .card-desc {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}

.branding-card .card-link {
  color: var(--accent-yellow);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: var(--transition);
}

.card-link:hover {
  color: #FFE082;
}

.card-link:hover .link-arrow {
  transform: translateX(4px);
}

.link-arrow {
  transition: transform 0.2s ease;
}

/* ==========================================================================
   7. FOOTER (Exact Figma Design from Image)
   ========================================================================= */

.site-footer {
  background-color: #080E1A;
  color: #94A3B8;
  padding: 5rem 0 0;
  border-top: 2px dotted #2563EB;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo-title {
  color: #FFFFFF;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
}

.social-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-box:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

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

.footer-link-list a {
  color: #94A3B8;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: var(--transition);
}

.footer-link-list a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94A3B8;
}

.footer-contact-list a {
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-list a:hover {
  color: #FFFFFF;
}

.contact-svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-copyright-bar {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: #64748B;
  font-size: 0.825rem;
  font-weight: 400;
}

/* ==========================================================================
   BADGES
   ========================================================================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.badge-info { background: #E0F2FE; color: #0284C7; }
.badge-warning { background: #FEF3C7; color: #D97706; }
.badge-success { background: #DCFCE7; color: #15803D; }
.badge-danger { background: #FEE2E2; color: #B91C1C; }
.badge-purple { background: #EDE9FE; color: #6D28D9; }
.badge-neutral { background: #F1F5F9; color: #475569; }

/* ==========================================================================
   BUTTONS (General)
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.btn-yellow {
  background-color: var(--accent-yellow);
  color: var(--primary-blue-dark);
  font-weight: 700;
}

.btn-yellow:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 199, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--primary-blue-dark);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary-blue-dark);
}

.btn-white:hover {
  background-color: var(--bg-light);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: #1EBE5D;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ========================================================================= */

/* ==========================================================================
   RESPONSIVE DESIGN & FLUID SCREEN AUTO-ADAPTATION
   ========================================================================= */

/* Global Adaptive Fluid Container & Element Safety */
.container {
  width: 100%;
  max-width: min(1200px, 94vw);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .nav-wrapper {
    display: none;
  }

  /* Request Quote and Portal buttons hidden in header bar; live inside hamburger menu */
  .header-btn-quote,
  .header-btn-portal {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image-wrapper {
    max-width: min(580px, 100%);
    margin: 0 auto;
  }

  .quote-card-container {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .tracker-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

@media (max-width: 768px) {
  body {
    padding-top: 68px;
  }

  /* Header Mobile Alignment */
  header.site-header,
  .site-header,
  #main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 68px !important;
    z-index: 999999 !important;
    margin: 0 !important;
  }

  .header-container {
    padding: 0 1rem;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
    padding: 11px 9px;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: clamp(2rem, 5vw, 3.5rem) 0 2rem;
  }

  .hero-image-wrapper {
    display: none !important;
  }

  .hero-title {
    font-size: clamp(2rem, 6.5vw, 2.75rem);
    line-height: 1.12;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.8vw, 1.05rem);
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-ctas {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    margin-bottom: 1.75rem;
  }

  .btn-hero-primary {
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: clamp(0.775rem, 2.7vw, 0.875rem);
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    white-space: nowrap;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0, 82, 204, 0.22);
  }

  .btn-hero-track {
    width: 100%;
    padding: 0.75rem 0.5rem;
    font-size: clamp(0.775rem, 2.7vw, 0.875rem);
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    white-space: nowrap;
    box-sizing: border-box;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
  }

  .hero-trust-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    margin-bottom: 1.5rem;
  }

  .trust-check-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: clamp(0.675rem, 2.35vw, 0.825rem);
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
    flex-shrink: 1;
  }

  .check-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-circle svg {
    width: 9px;
    height: 9px;
    stroke: #002847;
    stroke-width: 3.5;
  }

  /* Simulator Section Mobile */
  .simulator-section-full {
    padding: 2.25rem 0 2.75rem;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .simulator-header {
    margin-bottom: 1.25rem;
  }

  .simulator-title {
    font-size: clamp(1.45rem, 5.2vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .simulator-subtitle {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }

  .sim-terminal-card {
    border-radius: 14px;
    margin: 0 auto 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
  }

  .sim-chrome-bar {
    padding: 0.55rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .sim-chrome-dots {
    gap: 4px;
    flex-shrink: 0;
  }

  .sim-chrome-dots .dot {
    width: 8px;
    height: 8px;
  }

  .sim-chrome-title {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(150px, 45vw);
    gap: 0.25rem;
    display: flex;
    align-items: center;
  }

  .sim-chrome-title svg {
    flex-shrink: 0;
    width: 11px;
    height: 11px;
  }

  .sim-live-indicator {
    font-size: 0.65rem;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 0.3rem;
  }

  .sim-rec-dot {
    width: 6px;
    height: 6px;
  }

  .sim-content-grid {
    grid-template-columns: 1fr;
  }

  .sim-left-panel {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem;
    gap: 0.85rem;
  }

  .sim-right-panel {
    padding: 1rem;
  }

  .sim-pills-row {
    gap: 0.35rem;
  }

  .sim-pill {
    padding: 0.32rem 0.65rem;
    font-size: 0.75rem;
  }

  .sim-specs-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .sim-input-box,
  .sim-select-box {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    min-height: 38px;
  }

  .sim-live-receipt {
    padding: 0.85rem 1rem;
    gap: 0.65rem;
    border-radius: 12px;
  }

  .sim-receipt-price {
    font-size: 1.55rem;
  }

  .sim-field-row {
    font-size: 0.775rem;
  }

  .btn-tell-us-what-you-want {
    padding: 0.55rem 0.65rem 0.55rem 1.35rem;
    font-size: 0.9rem;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
    gap: 0.65rem;
  }

  .btn-arrow-circle {
    width: 32px;
    height: 32px;
  }

  /* Services Grid Mobile */
  .services-section {
    padding: 3.5rem 0;
  }

  .services-header h2 {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

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

  .service-card-img-wrap {
    height: clamp(170px, 35vw, 210px);
  }

  .btn-view-all-services {
    padding: 0.65rem 1.75rem;
    font-size: 0.85rem;
    width: auto;
  }

  /* How It Works Mobile */
  .how-it-works-section {
    padding: 3.5rem 0;
  }

  .how-title {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: min(380px, 100%);
    margin: 0 auto;
  }

  /* Tracker Section Mobile */
  .tracker-section {
    padding: 3.5rem 0;
  }

  .tracker-heading {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }

  .tracker-card-input-wrap {
    padding: clamp(1.15rem, 3.5vw, 1.5rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .tracker-live-card {
    padding: clamp(1.15rem, 3.5vw, 1.75rem);
    border-radius: 18px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .tracker-live-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding-bottom: 1.15rem;
    margin-bottom: 1.15rem;
  }

  .tracker-delivery-col {
    text-align: left;
  }

  .track-meta-delivery {
    text-align: left;
  }

  /* Beyond Printing Mobile */
  .branding-section {
    padding: 3.5rem 0;
  }

  .branding-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .beyond-title {
    font-size: clamp(1.85rem, 6vw, 2.75rem);
  }

  .btn-explore-digital {
    width: auto;
    display: inline-flex;
    padding: 0.65rem 1.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    align-self: flex-start;
    box-sizing: border-box;
  }

  .branding-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .branding-card {
    padding: clamp(1.35rem, 4vw, 1.75rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3.5rem 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .footer-copyright-bar {
    padding: 1.5rem 0;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .brand-logo .logo-text {
    font-size: 1.15rem;
  }

  .brand-logo .logo-box {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .mobile-toggle {
    width: 38px;
    height: 38px;
    padding: 10px 8px;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .tracker-v-timeline {
    padding-left: 2rem;
  }

  .tracker-v-timeline::before {
    left: 10px;
  }

  .t-node {
    left: -2rem;
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .t-title {
    font-size: 0.875rem;
  }

  .t-time {
    font-size: 0.7rem;
  }

  /* Drawer width auto-adapts on extra thin mobile screens */
  .mobile-nav-drawer {
    width: min(290px, 88vw);
  }
}

/* ==============================================================================
   BRANDHIVE JOB TRACKING SYSTEM — STYLES & MILESTONE TIMELINE
   ============================================================================== */

.tracker-search-box-wrap {
  margin-top: 1.75rem;
  width: 100%;
}

.tracker-search-form {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 0.45rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 82, 204, 0.1);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.tracker-search-form:focus-within {
  box-shadow: 0 14px 40px rgba(0, 82, 204, 0.22), 0 0 0 2px var(--primary-blue);
  transform: translateY(-2px);
}

.tracker-input-group {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

.tracker-search-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-blue);
}

.tracker-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: #0F172A;
  padding: 0.5rem 0.25rem;
  outline: none;
}

.tracker-search-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.tracker-search-btn {
  background: linear-gradient(135deg, #0052CC 0%, #0747A6 100%);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.tracker-search-btn:hover {
  background: linear-gradient(135deg, #0060E6 0%, #0052CC 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 82, 204, 0.4);
}

.tracker-quick-examples {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.quick-chip {
  background: rgba(255, 255, 255, 0.15);
  color: #FFC700;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  text-decoration: none;
  font-family: monospace;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 199, 0, 0.3);
  transition: all 0.2s ease;
}

.quick-chip:hover {
  background: rgba(255, 199, 0, 0.25);
  color: #FFFFFF;
}

.quick-divider {
  color: rgba(255, 255, 255, 0.4);
}

.quick-tip-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Tracking Main Section */
.tracker-main-section {
  padding: 3rem 0 5rem;
  background: #F8FAFC;
  min-height: 55vh;
}

/* Empty State */
.tracker-empty-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  max-width: 620px;
  margin: 0 auto;
}

.empty-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF7ED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.empty-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.empty-desc {
  font-size: 0.925rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.empty-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-wa-support {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
}

.btn-wa-support:hover {
  background: #20BA5A;
  transform: translateY(-1px);
}

.btn-new-quote {
  background: #EFF6FF;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #DBEAFE;
  transition: all 0.2s ease;
}

.btn-new-quote:hover {
  background: #DBEAFE;
}

/* Multi Orders List */
.multi-orders-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.multi-orders-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F1F5F9;
}

.multi-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.multi-subtitle {
  font-size: 0.875rem;
  color: #64748B;
}

.multi-orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1rem;
}

.multi-order-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.multi-order-item:hover {
  border-color: var(--primary-blue);
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.08);
}

.item-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-job-id {
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-blue);
}

.item-status-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.item-status-badge.status-completed, .item-status-badge.status-ready_for_pickup {
  background: #DCFCE7;
  color: #166534;
}

.item-status-badge.status-in_production, .item-status-badge.status-quality_check {
  background: #FEF3C7;
  color: #92400E;
}

.item-service-title {
  font-weight: 700;
  font-size: 1rem;
  color: #0F172A;
}

.item-meta-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.775rem;
  color: #64748B;
}

.item-total-tag {
  color: var(--accent-orange);
  font-weight: 800;
}

.item-action-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed #E2E8F0;
}

/* Active Order Dashboard */
.tracker-dashboard-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Showcase Hero Bar */
.tracker-hero-bar {
  background: linear-gradient(135deg, #0A2540 0%, #0052CC 100%);
  color: #FFFFFF;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-bar-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.job-id-copy-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bar-tag-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #FFC700;
}

.job-code-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.2rem 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.job-code-text {
  font-family: monospace;
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.btn-copy-code {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.2s ease;
}

.btn-copy-code:hover {
  color: #FFFFFF;
}

.bar-service-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.25;
}

.bar-customer-meta {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.live-status-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  animation: pulseGreen 2s infinite;
}

.hero-bar-turnaround {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

/* Progress Ribbon */
.tracker-progress-ribbon {
  background: #F1F5F9;
  padding: 1rem 2.25rem;
  border-bottom: 1px solid #E2E8F0;
}

.ribbon-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.ribbon-label {
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ribbon-pct-val {
  font-weight: 800;
  color: var(--primary-blue);
}

.ribbon-track {
  width: 100%;
  height: 8px;
  border-radius: 6px;
  background: #E2E8F0;
  overflow: hidden;
}

.ribbon-fill {
  height: 100%;
  background: linear-gradient(90deg, #0052CC 0%, #FF6600 100%);
  border-radius: 6px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 7-Stage Milestone Horizontal Stepper */
.tracker-timeline-wrap {
  padding: 2.25rem 2.25rem 1.75rem;
  border-bottom: 1px solid #F1F5F9;
  background: #FFFFFF;
}

.milestone-stepper-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.milestone-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

.milestone-connector {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 100%;
  height: 3px;
  z-index: 1;
}

.line-completed {
  background: #10B981;
}

.line-half {
  background: linear-gradient(90deg, #10B981 0%, #E2E8F0 100%);
}

.line-pending {
  background: #E2E8F0;
}

.milestone-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin-bottom: 0.65rem;
  position: relative;
  transition: all 0.3s ease;
}

.node-completed .milestone-circle {
  background: #10B981;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.node-active .milestone-circle {
  background: var(--accent-orange);
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.4);
}

.node-pending .milestone-circle {
  background: #FFFFFF;
  border: 2px solid #CBD5E1;
  color: #94A3B8;
}

.step-digit {
  font-weight: 800;
  font-size: 0.85rem;
}

.active-pulse-ring {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 102, 0, 0.4);
  animation: pulseOrangeRing 1.8s infinite;
}

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

.milestone-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.milestone-label {
  font-size: 0.775rem;
  line-height: 1.25;
}

.node-completed .milestone-label { color: #0F172A; }
.node-active .milestone-label { color: var(--accent-orange); }
.node-pending .milestone-label { color: #94A3B8; }

.milestone-desc {
  font-size: 0.65rem;
  color: #64748B;
  line-height: 1.2;
}

/* 2-Column Details Layout */
.tracker-details-layout {
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
}

.tracker-left-col, .tracker-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Detail Cards */
.track-detail-card {
  background: #F8FAFC;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
}

.card-sec-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #E2E8F0;
}

.sec-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sec-header-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  line-height: 1.2;
}

.sec-header-sub {
  font-size: 0.75rem;
  color: #64748B;
}

/* Specs Grid */
.track-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.spec-cell {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.spec-cell.full-width {
  grid-column: span 2;
}

.spec-cell-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  color: #64748B;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.spec-cell-val {
  font-size: 0.9rem;
  color: #0F172A;
  display: block;
}

.spec-address-sub {
  display: block;
  font-size: 0.775rem;
  color: #64748B;
  font-weight: normal;
  margin-top: 0.2rem;
}

/* Artwork Box */
.artwork-status-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.artwork-file-badge {
  background: #FFFFFF;
  border: 1px solid #DBEAFE;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.art-file-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.art-file-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.art-file-name {
  font-size: 0.85rem;
  color: #0F172A;
  display: block;
}

.art-file-sub {
  font-size: 0.725rem;
  color: #64748B;
}

.btn-view-art {
  background: #EFF6FF;
  color: var(--primary-blue);
  border: 1px solid #BFDBFE;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.btn-view-art:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
}

.artwork-design-requested {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.art-design-desc {
  font-size: 0.8rem;
  color: #92400E;
  margin: 0.2rem 0 0;
}

.artwork-empty-note {
  font-size: 0.825rem;
  color: #64748B;
  font-style: italic;
}

.design-proof-showcase {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.proof-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.proof-approved-tag {
  background: #DCFCE7;
  color: #166534;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.proof-pending-tag {
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.proof-link-btn {
  background: #0F172A;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.proof-notes-txt {
  font-size: 0.775rem;
  color: #64748B;
  margin: 0.5rem 0 0;
}

/* Activity Log */
.activity-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  padding-left: 1rem;
}

.activity-timeline-list::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 3px;
  width: 2px;
  background: #E2E8F0;
}

.activity-log-entry, .activity-initial-entry {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
}

.log-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-blue);
  margin-top: 5px;
  z-index: 2;
  box-shadow: 0 0 0 3px #FFFFFF;
}

.log-content {
  flex: 1;
}

.log-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.log-status {
  font-size: 0.85rem;
  color: #0F172A;
}

.log-time {
  font-size: 0.7rem;
  color: #94A3B8;
}

.log-notes {
  font-size: 0.775rem;
  color: #64748B;
  margin: 0.15rem 0 0;
}

/* Right Column: Billing & Actions */
.track-billing-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.billing-header {
  margin-bottom: 1.25rem;
}

.billing-tag {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.billing-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0.15rem 0 0;
}

.billing-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.billing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.875rem;
}

.b-label {
  color: #64748B;
}

.b-val {
  color: #0F172A;
  font-weight: 700;
}

.paid-row {
  color: #10B981;
}

.paid-val {
  color: #10B981;
}

.balance-row {
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  border-top: 1px dashed #CBD5E1;
  font-size: 1rem;
}

.due-val {
  color: var(--accent-orange);
  font-size: 1.15rem;
}

.settled-val {
  color: #10B981;
  font-size: 1.15rem;
}

.payment-settle-badge {
  margin-top: 1.25rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.775rem;
  font-weight: 700;
}

.payment-settle-badge.paid-full {
  background: #DCFCE7;
  color: #166534;
}

.payment-settle-badge.paid-part {
  background: #FFF7ED;
  color: #C2410C;
}

.payment-settle-badge.paid-none {
  background: #F1F5F9;
  color: #475569;
}

/* Actions Card */
.track-actions-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
}

.actions-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 1rem;
}

.actions-buttons-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-action-primary {
  background: linear-gradient(135deg, #0052CC 0%, #0747A6 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
  transition: all 0.25s ease;
}

.btn-action-primary:hover {
  background: linear-gradient(135deg, #0060E6 0%, #0052CC 100%);
  transform: translateY(-1px);
}

.btn-action-outline {
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.825rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-action-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: #F8FAFC;
}

.btn-action-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.875rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.btn-action-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-1px);
}

.workshop-contact-box {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #64748B;
}

.w-contact-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Intro State */
.tracker-intro-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.intro-card-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.intro-col-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 0.5rem;
}

.intro-col-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

/* Mobile Responsive Adjustments for Tracker */
@media (max-width: 900px) {
  .tracker-details-layout {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

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

@media (max-width: 768px) {
  .tracker-main-section {
    padding: 1.5rem 0 3.5rem;
  }

  .tracker-dashboard-card {
    border-radius: 16px;
    border: 1px solid #E2E8F0;
  }

  .tracker-search-box-wrap {
    margin-top: 1.25rem;
  }

  .tracker-search-form {
    border-radius: 14px;
    padding: 0.35rem;
    background: #FFFFFF;
  }

  .tracker-input-group {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .tracker-search-icon {
    width: 32px;
    height: 32px;
    padding-left: 0.5rem;
  }

  .tracker-search-input {
    font-size: 0.85rem;
    padding: 0.65rem 0.5rem;
    min-width: 0;
  }

  .tracker-search-btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 10px;
    white-space: nowrap;
  }

  .tracker-quick-examples {
    font-size: 0.725rem;
    margin-top: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tracker-hero-bar {
    padding: 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .hero-bar-left {
    width: 100%;
  }

  .job-id-copy-row {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .bar-service-title {
    font-size: 1.25rem;
    margin: 0.35rem 0;
  }

  .bar-customer-meta {
    font-size: 0.75rem;
    flex-wrap: wrap;
    display: flex;
    gap: 0.35rem;
  }

  .hero-bar-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid #F1F5F9;
  }

  .tracker-progress-ribbon {
    padding: 0.85rem 1rem;
  }

  .tracker-timeline-wrap {
    padding: 1.25rem 0.85rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .milestone-stepper-grid {
    min-width: 580px;
    gap: 0.25rem;
  }

  .tracker-details-layout {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem;
    gap: 1.25rem;
  }

  .track-detail-card,
  .track-billing-card,
  .track-actions-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }

  .track-specs-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .spec-cell {
    padding: 0.75rem 0.85rem;
  }

  .spec-cell.full-width {
    grid-column: span 1;
  }

  .artwork-file-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .btn-view-art {
    width: 100%;
    justify-content: center;
  }

  .multi-orders-card {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  .multi-orders-grid {
    grid-template-columns: 1fr;
  }

  .tracker-empty-card {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .empty-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-wa-support,
  .btn-new-quote {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .tracker-search-form {
    padding: 0.25rem;
  }

  .tracker-search-input {
    font-size: 0.8rem;
    padding: 0.55rem 0.35rem;
  }

  .tracker-search-btn {
    padding: 0.55rem 0.75rem;
    font-size: 0.75rem;
  }

  .bar-service-title {
    font-size: 1.15rem;
  }

  .actions-buttons-list .btn-action-primary,
  .actions-buttons-list .btn-action-outline,
  .actions-buttons-list .btn-action-whatsapp {
    padding: 0.8rem 0.9rem;
    font-size: 0.825rem;
  }
}

/* ==============================================================================
   404 & 500 ERROR PAGES (Brandhive Custom Error Design)
   ============================================================================== */
.error-page-section {
  padding: 3.5rem 0 5rem;
  background-color: #F8FAFC;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.error-card-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 30px rgba(0, 40, 71, 0.05);
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.error-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.error-code-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #0052CC;
  font-size: 0.775rem;
  font-weight: 800;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.error-hero-graphic {
  margin-bottom: 1.5rem;
}

.error-number-graphic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: #0F172A;
  line-height: 1;
}

.error-circle-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 2px dashed #0052CC;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateGear 12s linear infinite;
}

@keyframes rotateGear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.error-title {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.75rem;
}

.error-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #64748B;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Error Search Box */
.error-search-box {
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.error-search-form {
  display: flex;
  align-items: center;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 14px;
  padding: 0.4rem 0.5rem 0.4rem 1rem;
  gap: 0.65rem;
  transition: all 0.2s ease;
}

.error-search-form:focus-within {
  border-color: #0052CC;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.12);
}

.error-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.875rem;
  color: #0F172A;
  outline: none;
  min-width: 0;
}

.btn-error-search {
  background: #0052CC;
  color: #FFFFFF;
  border: none;
  padding: 0.65rem 1.15rem;
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-error-search:hover {
  background: #0043A8;
}

/* Error Navigation Grid */
.error-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
  margin-bottom: 2.25rem;
}

.error-nav-card {
  display: flex;
  align-items: center;
  padding: 1.15rem 1.25rem;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-nav-card:hover {
  border-color: #0052CC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 82, 204, 0.08);
}

.error-nav-card.highlight-wa:hover {
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

.error-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.error-nav-text {
  flex: 1;
  min-width: 0;
}

.error-nav-title {
  display: block;
  font-size: 0.925rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.15rem;
}

.error-nav-desc {
  font-size: 0.775rem;
  color: #64748B;
  display: block;
  line-height: 1.35;
}

.error-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.error-nav-card:hover .error-arrow {
  transform: translateX(3px);
}

/* Bottom CTA */
.error-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-error-primary {
  background: linear-gradient(135deg, #0052CC 0%, #003B94 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.25);
  transition: all 0.2s ease;
}

.btn-error-primary:hover {
  background: linear-gradient(135deg, #0060E6 0%, #0052CC 100%);
  transform: translateY(-1px);
}

.btn-error-secondary {
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

@media (max-width: 768px) {
  .error-page-section {
    padding: 2rem 0 3.5rem;
  }

  .error-card-wrapper {
    padding: 2rem 1.25rem;
    border-radius: 18px;
  }

  .error-circle-icon {
    width: 60px;
    height: 60px;
  }

  .error-circle-icon svg {
    width: 34px;
    height: 34px;
  }

  .error-nav-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .error-nav-card {
    padding: 0.95rem 1rem;
  }

  .error-search-form {
    padding: 0.35rem 0.35rem 0.35rem 0.75rem;
  }

  .btn-error-primary,
  .btn-error-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==============================================================================
   FOOTER SUBSIDIARY ATTRIBUTION (Myteacher Technologies Typewriter Pill)
   ============================================================================== */
.footer-subsidiary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1.5px solid rgba(56, 189, 248, 0.35);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 0 12px rgba(56, 189, 248, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  max-width: 100%;
}

.footer-subsidiary-pill:hover {
  background: rgba(0, 82, 204, 0.3);
  border-color: #38BDF8;
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

.sub-pulse-glow {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38BDF8;
  box-shadow: 0 0 8px #38BDF8, 0 0 16px rgba(56, 189, 248, 0.8);
  animation: pulseDotSub 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseDotSub {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.sub-prefix {
  color: #94A3B8;
  font-size: 0.775rem;
  font-weight: 500;
  white-space: nowrap;
}

.sub-typewriter-text {
  font-weight: 800;
  font-size: 0.825rem;
  background: linear-gradient(135deg, #38BDF8 0%, #00E5FF 50%, #FF9900 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
  letter-spacing: 0.015em;
  display: inline-block;
  min-height: 1.15em;
}

.sub-typewriter-cursor {
  color: #38BDF8;
  font-weight: 900;
  font-size: 0.85rem;
  margin-left: 1px;
  animation: blinkCursorSub 0.75s infinite;
}

@keyframes blinkCursorSub {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.footer-copyright-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  margin-top: 2.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.825rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-subsidiary-text {
  color: #94A3B8;
  font-size: 0.8rem;
}

.footer-subsidiary-text strong {
  color: #CBD5E1;
  font-weight: 700;
}

@media (max-width: 768px) {
  .footer-copyright-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.4rem;
    padding-top: 1.25rem;
    margin-top: 1.75rem;
  }
}

.del-hub-loc-tag {
  display: inline-block;
  background: #EFF6FF;
  color: #0052CC;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.725rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

