/* ============================================================
   PRINTRICS LLC — Global Stylesheet
   Dark Navy · White · Electric Blue · Modern SaaS / Premium E-commerce
   Mobile-first · Accessible · Performance-minded
   ------------------------------------------------------------
   TABLE OF CONTENTS
   01. Design Tokens (variables)
   02. Reset & Base
   03. Typography & Helpers
   04. Layout (container, sections, grids)
   05. Buttons
   06. Badges, Labels, Dividers
   07. Announcement Bar
   08. Header & Navigation (+ mobile menu)
   09. Cart Button & Drawer
   10. Hero (+ animated printer)
   11. Trust / Brand Strip
   12. Feature Cards
   13. Product Cards & Catalog
   14. Two-column / Visual blocks
   15. Software / Dashboard Mockup
   16. Services
   17. Why Choose / Stats
   18. Testimonials
   19. FAQ Accordion
   20. Contact
   21. CTA Bands
   22. Footer
   23. Page Hero / Breadcrumbs (sub-pages)
   24. Shop Toolbar (search / filter / sort)
   25. Product Detail Page
   26. Checkout
   27. Toast / Forms / Misc
   28. Scroll-reveal Animations
   29. Responsive (tablet / desktop scale-up)
   30. Reduced Motion & Print
   ============================================================ */

/* ============================================================
   01. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand blues — navy to electric */
  --blue-900: #0a1628;
  --blue-800: #0d1f3c;
  --blue-700: #0f2d5e;
  --blue-600: #1a3f80;
  --blue-500: #1e52a8;
  --blue-400: #2d6fd4;
  --blue-300: #4d8fe8;
  --blue-200: #93bdf5;
  --blue-100: #d6e8fb;
  --blue-50:  #eef5fd;

  --white: #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --accent: #00c2ff;
  --accent-600: #0099cc;
  --accent-glow: rgba(0, 194, 255, 0.25);

  --success-bg: #dcfce7;
  --success-fg: #15803d;
  --warn-bg: #fef9c3;
  --warn-fg: #a16207;
  --star: #f59e0b;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d2a5e 50%, #0a1628 100%);
  --gradient-card: linear-gradient(145deg, #0f2d5e, #1a3f80);
  --gradient-accent: linear-gradient(135deg, var(--blue-400), var(--accent));
  --gradient-blue: linear-gradient(135deg, var(--blue-400), var(--blue-500));

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --shadow-blue: 0 8px 32px rgba(30, 82, 168, 0.35);
  --shadow-accent: 0 8px 32px rgba(0, 194, 255, 0.35);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 50px;

  /* Type */
  --font-main: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', var(--font-main);

  /* Motion */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --header-h: 102px;
  --z-header: 1000;
  --z-drawer: 1200;
  --z-toast: 1400;
}

/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--accent); color: var(--blue-900); }

/* Skip link for keyboard / screen-reader users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: var(--z-toast);
  background: var(--accent);
  color: var(--blue-900);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   03. TYPOGRAPHY & HELPERS
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--blue-900); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-600);
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-label.on-dark { color: var(--accent); }

.text-center { text-align: center; }
.text-muted { color: var(--gray-600); }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================================
   04. LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; }
.section-sm { padding: 44px 0; }
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-sm { padding: 64px 0; }
  .container { padding: 0 24px; }
}

.section-header { margin-bottom: 40px; max-width: 640px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); margin-bottom: 14px; }
.section-header p { font-size: 1.02rem; color: var(--gray-600); line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255, 255, 255, 0.66); }
@media (min-width: 768px) { .section-header { margin-bottom: 56px; } }

.grid { display: grid; gap: 24px; }

/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--blue-300), var(--blue-400)); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(30, 82, 168, 0.45); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-600));
  color: var(--blue-900);
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 194, 255, 0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.65); transform: translateY(-2px); }

/* Outline on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--blue-400); color: var(--blue-600); background: var(--blue-50); transform: translateY(-2px); }

.btn-dark {
  background: var(--blue-900);
  color: var(--white);
  border: 1px solid var(--blue-700);
}
.btn-dark:hover { background: var(--blue-800); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   06. BADGES, TAGS, DIVIDERS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.badge-blue { background: var(--blue-100); color: var(--blue-600); }
.badge-accent { background: rgba(0, 194, 255, 0.12); color: var(--accent-600); border: 1px solid rgba(0, 194, 255, 0.3); }
.badge-new { background: var(--success-bg); color: var(--success-fg); }
.badge-sale { background: #fee2e2; color: #b91c1c; }

.stock-badge { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 5px; }
.in-stock { background: var(--success-bg); color: var(--success-fg); }
.low-stock { background: var(--warn-bg); color: var(--warn-fg); }
.digital-badge { background: rgba(0, 194, 255, 0.12); color: var(--accent-600); }

.divider { width: 48px; height: 3px; background: var(--gradient-accent); border-radius: 3px; margin: 16px 0; }
.divider.center { margin: 16px auto; }

/* ============================================================
   07. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--blue-600), var(--blue-400), var(--accent), var(--blue-400), var(--blue-600));
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
  padding: 9px 20px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}
.announcement-bar a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }
@keyframes shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ============================================================
   08. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--container);
  margin: 0 auto;
}
@media (min-width: 768px) { .header-top { padding: 16px 24px; } }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 194, 255, 0.25);
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo span { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 10px 20px; font-size: 0.82rem; }
.header-actions .desktop-only { display: none; }
@media (min-width: 1024px) { .header-actions .desktop-only { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 2px; margin: 0 auto; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Primary nav */
.site-nav { background: rgba(13, 31, 60, 0.98); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav-link svg { width: 16px; height: 16px; opacity: 0.8; }
.nav-link:hover, .nav-link.active { color: var(--white); border-bottom-color: var(--accent); }
.nav-link.active svg { opacity: 1; }
.nav-badge {
  font-size: 0.6rem; font-weight: 700;
  background: var(--accent); color: var(--blue-900);
  padding: 2px 7px; border-radius: var(--radius-pill); letter-spacing: 0.05em;
}

/* Mobile nav (collapsed by default; horizontal scroll fallback on small desktop) */
@media (max-width: 1023px) {
  /* Drop backdrop-filter on mobile: it makes the header a containing block for
     fixed descendants, which would clip the slide-in nav to the header height.
     Background is already near-opaque, so the look is unchanged. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--blue-900);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: var(--z-drawer);
    overflow-y: auto;
    padding: 80px 0 32px;
  }
  .site-nav.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4); }
  .nav-inner { flex-direction: column; align-items: stretch; padding: 0 16px; gap: 0; }
  .nav-link { padding: 16px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); font-size: 0.96rem; }
  .nav-link:hover, .nav-link.active { border-bottom-color: rgba(255, 255, 255, 0.06); padding-left: 18px; }
}

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 12, 24, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: var(--z-header);
}
.nav-overlay.show { opacity: 1; visibility: visible; }
@media (min-width: 1024px) { .nav-overlay { display: none; } }

/* ============================================================
   09. CART BUTTON & DRAWER
   ============================================================ */
.cart-toggle {
  position: relative;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.cart-toggle:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.32); }
.cart-toggle svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  background: var(--accent);
  color: var(--blue-900);
  font-size: 0.66rem; font-weight: 800;
  border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--blue-900);
  transform: scale(0);
  transition: transform var(--transition);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--white);
  z-index: var(--z-drawer);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  box-shadow: -20px 0 60px rgba(10, 22, 40, 0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.cart-drawer-head h3 { font-size: 1.15rem; }
.cart-close { width: 38px; height: 38px; border-radius: var(--radius-sm); color: var(--gray-600); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-close:hover { background: var(--gray-100); color: var(--blue-900); }
.cart-close svg { width: 20px; height: 20px; }

.cart-items { flex: 1; overflow-y: auto; padding: 8px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.cart-empty svg { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--gray-300); }
.cart-empty p { margin-bottom: 20px; font-size: 0.95rem; }

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}
.cart-line-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-line-img svg { width: 36px; height: 36px; color: var(--blue-400); }
.cart-line-info h4 { font-family: var(--font-main); font-size: 0.88rem; font-weight: 600; color: var(--blue-900); margin-bottom: 3px; }
.cart-line-info .price { font-size: 0.82rem; color: var(--gray-500); }
.cart-line-remove { font-size: 0.74rem; color: var(--gray-400); margin-top: 6px; transition: var(--transition); }
.cart-line-remove:hover { color: #dc2626; }
.cart-line-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-line-total { font-weight: 700; color: var(--blue-900); font-family: var(--font-display); font-size: 0.92rem; }

.qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty button { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--gray-600); font-size: 1rem; transition: var(--transition); }
.qty button:hover { background: var(--blue-50); color: var(--blue-600); }
.qty input { width: 34px; text-align: center; border: none; border-left: 1px solid var(--gray-200); border-right: 1px solid var(--gray-200); height: 28px; font-size: 0.82rem; font-weight: 600; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-foot { border-top: 1px solid var(--gray-200); padding: 20px 24px; }
.cart-foot-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.cart-foot-row .label { color: var(--gray-600); font-size: 0.9rem; }
.cart-foot-row .total { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--blue-900); }
.cart-foot small { display: block; text-align: center; color: var(--gray-400); font-size: 0.74rem; margin-top: 10px; }

.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(5, 12, 24, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: var(--z-header);
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 75% 40%, rgba(45, 111, 212, 0.2) 0%, transparent 68%),
    radial-gradient(ellipse 500px 500px at 15% 85%, rgba(0, 194, 255, 0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, #000 50%, transparent 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-layout { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 980px) { .hero { padding: 88px 0 96px; } .hero-layout { grid-template-columns: 1.05fr 0.95fr; gap: 56px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 3.9rem); color: var(--white); margin-bottom: 22px; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-200), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.74); margin-bottom: 34px; max-width: 540px; line-height: 1.75; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.stat-number { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 5px; }
.stat-number span { color: var(--accent); }
.stat-label { font-size: 0.78rem; color: rgba(255, 255, 255, 0.52); font-weight: 500; letter-spacing: 0.04em; }

/* Animated 3D printer visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
.printer-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, rgba(15, 45, 94, 0.7), rgba(10, 22, 40, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.printer-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0, 194, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 50% 55%, #000 30%, transparent 75%);
}
.printer-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Floating spec chips around the visual */
.spec-chip {
  position: absolute;
  background: rgba(13, 31, 60, 0.85);
  border: 1px solid rgba(0, 194, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 9px 13px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600; color: var(--white);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.spec-chip svg { width: 15px; height: 15px; color: var(--accent); }
.spec-chip .dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.spec-chip-1 { top: 14%; left: -6%; animation-delay: 0s; }
.spec-chip-2 { top: 46%; right: -8%; animation-delay: 1.2s; }
.spec-chip-3 { bottom: 12%; left: 4%; animation-delay: 2.4s; }
@media (max-width: 520px) { .spec-chip-1 { left: 0; } .spec-chip-2 { right: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Printer SVG animation parts (driven by classes on SVG elements) */
.pr-nozzle { animation: nozzle-x 4s ease-in-out infinite; transform-origin: center; }
@keyframes nozzle-x { 0%, 100% { transform: translateX(-46px); } 50% { transform: translateX(46px); } }
.pr-layer { opacity: 0; animation: layer-rise 8s ease-in-out infinite; }
.pr-layer:nth-child(1) { animation-delay: 0s; }
.pr-layer:nth-child(2) { animation-delay: 0.5s; }
.pr-layer:nth-child(3) { animation-delay: 1s; }
.pr-layer:nth-child(4) { animation-delay: 1.5s; }
.pr-layer:nth-child(5) { animation-delay: 2s; }
.pr-layer:nth-child(6) { animation-delay: 2.5s; }
.pr-layer:nth-child(7) { animation-delay: 3s; }
.pr-layer:nth-child(8) { animation-delay: 3.5s; }
@keyframes layer-rise { 0% { opacity: 0; transform: translateY(8px); } 8% { opacity: 1; transform: translateY(0); } 70% { opacity: 1; } 100% { opacity: 1; } }
.pr-filament { stroke-dasharray: 4 4; animation: filament-flow 0.6s linear infinite; }
@keyframes filament-flow { to { stroke-dashoffset: -8; } }

/* ============================================================
   11. TRUST / BRAND STRIP
   ============================================================ */
.brand-strip { background: var(--blue-50); padding: 18px 0; border-bottom: 1px solid var(--blue-100); }
.brand-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px 40px; flex-wrap: wrap;
}
.brand-strip-inner span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-600); opacity: 0.72;
}
.brand-strip-inner svg { width: 17px; height: 17px; color: var(--blue-400); }

/* ============================================================
   12. FEATURE CARDS
   ============================================================ */
.features-strip { background: var(--blue-50); border-top: 1px solid var(--blue-100); border-bottom: 1px solid var(--blue-100); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.feature-item { text-align: center; padding: 12px; }
.feature-icon {
  width: 54px; height: 54px;
  background: var(--gradient-blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-blue);
  color: var(--white);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h4 { font-size: 1rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.6; }

/* Why-choose card grid (icon left, text right) */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.why-card .feature-icon { margin: 0 0 18px; width: 48px; height: 48px; }
.why-card .feature-icon svg { width: 23px; height: 23px; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   13. PRODUCT CARDS & CATALOG
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-200); }

.product-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45, 111, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 111, 212, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
}
.product-card-img .product-art { display: flex; align-items: center; justify-content: center; width: 44%; height: 44%; color: var(--blue-500); position: relative; z-index: 1; transition: transform var(--transition-slow); }
.product-card-img .product-art svg { width: 100%; height: 100%; }
.product-card:hover .product-art { transform: scale(1.08) rotate(-2deg); }
.product-card-img .corner-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.product-card-img .fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.product-card-img .fav-btn:hover { color: #ef4444; transform: scale(1.1); }
.product-card-img .fav-btn svg { width: 17px; height: 17px; }

.product-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-card-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 7px; }
.product-card h3 { font-size: 1.02rem; margin-bottom: 7px; line-height: 1.25; }
.product-card h3 a:hover { color: var(--blue-500); }
.product-card .rating { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; font-size: 0.76rem; color: var(--gray-500); }
.product-card .stars { color: var(--star); letter-spacing: 1px; }
.product-card p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.product-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--blue-900); display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.product-price .was { font-size: 0.82rem; color: var(--gray-400); font-weight: 400; text-decoration: line-through; }
.product-price small { font-size: 0.72rem; color: var(--gray-400); font-weight: 400; }

.cart-btn {
  background: var(--blue-600); color: var(--white);
  border-radius: var(--radius-sm);
  padding: 9px 15px; font-size: 0.8rem; font-weight: 600;
  font-family: var(--font-main);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition); white-space: nowrap;
}
.cart-btn svg { width: 15px; height: 15px; }
.cart-btn:hover { background: var(--blue-500); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.cart-btn.added { background: var(--success-fg); }

.category-title { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.category-title .feature-icon { width: 38px; height: 38px; margin: 0; border-radius: 9px; }
.category-title .feature-icon svg { width: 19px; height: 19px; }
.category-title h2 { font-size: 1.35rem; }
.category-title::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* ============================================================
   14. TWO-COLUMN / VISUAL BLOCKS
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 880px) { .two-col { grid-template-columns: 1fr 1fr; gap: 64px; } }
.two-col.reverse > :first-child { order: 1; }
@media (min-width: 880px) { .two-col.reverse > :first-child { order: 2; } }

.benefit-list { margin: 22px 0; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.94rem; color: var(--gray-600); line-height: 1.6; }
.benefit-list li svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--white); background: var(--gradient-blue); border-radius: 50%; padding: 5px; margin-top: 1px; }

.visual-block {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visual-block::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 194, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(45, 111, 212, 0.22) 0%, transparent 55%);
}
.visual-block-inner { position: relative; z-index: 1; text-align: center; padding: 32px; }
.visual-block-inner .vb-art { width: 96px; height: 96px; margin: 0 auto 16px; color: var(--accent); }
.visual-block-inner h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; }
.visual-block-inner p { color: rgba(255, 255, 255, 0.6); font-size: 0.86rem; }

/* STL / digital strip */
.stl-strip { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); padding: 56px 0; }
.stl-inner { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 760px) { .stl-inner { grid-template-columns: 1fr auto; gap: 40px; } }
.stl-text h3 { color: var(--white); font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 12px; }
.stl-text p { color: rgba(255, 255, 255, 0.72); font-size: 0.96rem; line-height: 1.7; max-width: 540px; }
.stl-formats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.stl-formats span { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22); color: var(--white); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; padding: 5px 12px; border-radius: 6px; }

/* ============================================================
   15. SOFTWARE / DASHBOARD MOCKUP
   ============================================================ */
.software-section { background: var(--gradient-hero); position: relative; overflow: hidden; color: var(--white); }
.software-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 80% 40%, rgba(45, 111, 212, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.software-section .container { position: relative; z-index: 1; }
.software-layout { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 980px) { .software-layout { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.software-copy h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 18px; }
.software-copy > p { color: rgba(255, 255, 255, 0.72); font-size: 1.02rem; line-height: 1.75; margin-bottom: 26px; }
.software-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; margin-bottom: 30px; }
.software-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.82); }
.software-features svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* Dashboard mockup */
.dashboard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; background: rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dash-dots i:nth-child(1) { background: #ff5f57; }
.dash-dots i:nth-child(2) { background: #febc2e; }
.dash-dots i:nth-child(3) { background: #28c840; }
.dash-url { margin-left: 8px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.45); font-family: var(--font-display); }
.dash-body { padding: 20px; }
.dash-filebar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 18px;
}
.dash-filebar svg { width: 18px; height: 18px; color: var(--accent); }
.dash-filebar .fname { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.dash-filebar .fmeta { margin-left: auto; font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); }
.dash-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 18px; }
@media (min-width: 480px) { .dash-metrics { grid-template-columns: repeat(4, 1fr); } }
.dash-metric { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-sm); padding: 13px; }
.dash-metric .mlabel { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.5); margin-bottom: 6px; }
.dash-metric .mvalue { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.dash-metric .mvalue.accent { color: var(--accent); }
.dash-metric .mtrend { font-size: 0.66rem; color: #22c55e; margin-top: 3px; }
.dash-split { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 520px) { .dash-split { grid-template-columns: 1.2fr 1fr; } }
.dash-panel { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: var(--radius-sm); padding: 14px; }
.dash-panel h5 { font-family: var(--font-main); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.55); margin-bottom: 14px; }
/* bar chart */
.dash-chart { display: flex; align-items: flex-end; gap: 8px; height: 92px; }
.dash-chart .bar { flex: 1; background: linear-gradient(180deg, var(--accent), var(--blue-500)); border-radius: 4px 4px 0 0; opacity: 0.85; min-height: 8px; transition: height 0.6s ease; }
/* cost breakdown rows */
.cost-row { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; font-size: 0.76rem; }
.cost-row:last-child { margin-bottom: 0; }
.cost-row .cdot { width: 9px; height: 9px; border-radius: 2px; flex-shrink: 0; }
.cost-row .cname { color: rgba(255, 255, 255, 0.72); flex: 1; }
.cost-row .cval { color: var(--white); font-weight: 700; font-family: var(--font-display); }

/* ============================================================
   16. SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 100% 0%, rgba(0, 194, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.service-card .feature-icon { margin: 0 0 18px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card > p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 18px; }
.service-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.9rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.service-list li:last-child { border-bottom: none; }
.service-list svg { width: 18px; height: 18px; color: var(--blue-400); flex-shrink: 0; }

/* ============================================================
   17. WHY CHOOSE / STATS BAND
   ============================================================ */
.stats-band { background: var(--blue-900); color: var(--white); padding: 48px 0; }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; text-align: center; }
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stats-row .stat-number { font-size: clamp(2rem, 5vw, 2.8rem); }
.stats-row .stat-label { color: rgba(255, 255, 255, 0.6); font-size: 0.84rem; }

/* ============================================================
   18. TESTIMONIALS
   ============================================================ */
.testimonial-band { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testimonial-stars { color: var(--star); font-size: 0.92rem; margin-bottom: 14px; letter-spacing: 1px; }
.testimonial-card blockquote { font-size: 0.92rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; flex-shrink: 0;
}
.testimonial-author .name { font-size: 0.86rem; font-weight: 700; color: var(--blue-900); }
.testimonial-author .role { font-size: 0.78rem; color: var(--gray-500); }

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .faq-layout { grid-template-columns: 0.85fr 1.15fr; gap: 56px; } }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); background: var(--white); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--blue-200); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; color: var(--blue-900);
}
.faq-q .faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue-400); transition: transform var(--transition); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow); }
.faq-a-inner { padding: 0 20px 20px; font-size: 0.92rem; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   20. CONTACT
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 0.9fr 1.1fr; gap: 56px; } }
.contact-info-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info-card::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18), transparent 65%);
}
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.contact-info-card > p { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; line-height: 1.7; margin-bottom: 26px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail .ci {
  width: 42px; height: 42px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: rgba(0, 194, 255, 0.14); border: 1px solid rgba(0, 194, 255, 0.28);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-detail .ci svg { width: 19px; height: 19px; }
.contact-detail .cd-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.5); margin-bottom: 3px; }
.contact-detail .cd-value { font-size: 0.92rem; color: var(--white); font-weight: 600; }
.contact-detail a.cd-value:hover { color: var(--accent); }
.contact-socials { display: flex; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.contact-socials a {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition);
}
.contact-socials a:hover { background: var(--accent); color: var(--blue-900); border-color: var(--accent); transform: translateY(-2px); }
.contact-socials svg { width: 18px; height: 18px; }

/* Forms */
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.field .req { color: #ef4444; }
.input, .field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--gray-800);
  transition: var(--transition);
  font-family: var(--font-main);
}
.field textarea { min-height: 130px; resize: vertical; }
.input:focus, .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(45, 111, 212, 0.15); }
.field input.invalid, .field textarea.invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12); }
.field .error-msg { display: none; font-size: 0.76rem; color: #dc2626; margin-top: 6px; }
.field.has-error .error-msg { display: block; }
.form-note { font-size: 0.78rem; color: var(--gray-500); margin-top: 12px; }
.form-success {
  display: none;
  background: var(--success-bg); color: var(--success-fg);
  border: 1px solid #86efac; border-radius: var(--radius-sm);
  padding: 14px 18px; font-size: 0.9rem; font-weight: 600; margin-bottom: 18px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Dark form variant (waitlist on dark cards) */
.form-dark input, .form-dark textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.form-dark input::placeholder, .form-dark textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form-dark input:focus, .form-dark textarea:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.11); box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.15); }
.form-dark label { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   21. CTA BANDS
   ============================================================ */
.waitlist-section { padding: 64px 0; }
.waitlist-card {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  display: grid; grid-template-columns: 1fr; gap: 40px;
  align-items: center; position: relative; overflow: hidden;
}
@media (min-width: 880px) { .waitlist-card { grid-template-columns: 1fr 1fr; gap: 56px; padding: 56px; } }
.waitlist-card::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 194, 255, 0.15), transparent 65%); }
.waitlist-card > * { position: relative; z-index: 1; }
.waitlist-card h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2rem); margin-bottom: 14px; }
.waitlist-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; line-height: 1.7; margin-bottom: 22px; }
.waitlist-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-pills span { display: inline-flex; align-items: center; gap: 7px; color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }
.waitlist-pills svg { width: 16px; height: 16px; color: var(--accent); }

.final-cta { padding: 80px 0; background: var(--gradient-hero); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(0, 194, 255, 0.1), transparent 70%); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.final-cta p { color: rgba(255, 255, 255, 0.66); font-size: 1.04rem; max-width: 520px; margin: 0 auto 36px; line-height: 1.75; }
.final-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Brand / bird band */
.bird-section { background: var(--blue-900); padding: 64px 0; }
.bird-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.bird-icon-wrap {
  flex-shrink: 0; width: 130px; height: 130px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.15), rgba(45, 111, 212, 0.2));
  border: 1px solid rgba(0, 194, 255, 0.25);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.bird-icon-wrap svg { width: 72px; height: 72px; }
.bird-text { flex: 1; min-width: 280px; }
.bird-text h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.bird-text p { color: rgba(255, 255, 255, 0.62); font-size: 0.94rem; line-height: 1.75; }

.bulk-banner {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  flex-wrap: wrap; margin: 44px 0;
}
.bulk-banner h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 6px; }
.bulk-banner p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; max-width: 560px; }

/* ============================================================
   22. FOOTER
   ============================================================ */
.site-footer { background: var(--blue-900); color: rgba(255, 255, 255, 0.65); padding: 56px 0 28px; border-top: 1px solid rgba(255, 255, 255, 0.07); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 44px; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 280px; margin-bottom: 18px; }
.footer-newsletter { display: flex; gap: 8px; max-width: 300px; }
.footer-newsletter input { flex: 1; padding: 11px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); color: var(--white); font-size: 0.84rem; }
.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--accent); }
.footer-newsletter button { flex-shrink: 0; width: 44px; border-radius: var(--radius-sm); background: var(--gradient-blue); color: var(--white); display: flex; align-items: center; justify-content: center; }
.footer-newsletter button svg { width: 18px; height: 18px; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255, 255, 255, 0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom .foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   23. PAGE HERO / BREADCRUMBS (sub-pages)
   ============================================================ */
.page-hero { background: var(--gradient-hero); padding: 48px 0 44px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 70% 50%, rgba(45, 111, 212, 0.2), transparent 70%); }
.page-hero .hero-grid { mask-image: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.68); font-size: 1.02rem; max-width: 560px; line-height: 1.7; }

.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; margin-bottom: 18px; color: rgba(255, 255, 255, 0.5); }
.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs svg { width: 14px; height: 14px; opacity: 0.5; }
.breadcrumbs .current { color: var(--white); }
/* light variant on white pages */
.breadcrumbs.light-bg { color: var(--gray-400); margin-bottom: 0; }
.breadcrumbs.light-bg a { color: var(--gray-600); }
.breadcrumbs.light-bg a:hover { color: var(--blue-500); }
.breadcrumbs.light-bg .current { color: var(--blue-900); }

/* ============================================================
   24. SHOP TOOLBAR
   ============================================================ */
.shop-toolbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  position: sticky; top: var(--header-h); z-index: 90;
}
.shop-toolbar-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.search-box { position: relative; flex: 1; min-width: 200px; }
.search-box svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--gray-400); pointer-events: none; }
.search-box input { width: 100%; padding: 11px 14px 11px 38px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.9rem; transition: var(--transition); }
.search-box input:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(45, 111, 212, 0.12); }
.sort-select { padding: 11px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.86rem; font-weight: 600; color: var(--gray-700); background: var(--white); cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--blue-400); }

.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600;
  border: 1px solid var(--gray-200); background: var(--white); color: var(--gray-600); transition: var(--transition);
}
.filter-btn:hover { border-color: var(--blue-300); color: var(--blue-600); }
.filter-btn.active { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }

.shop-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.shop-meta .count { font-size: 0.88rem; color: var(--gray-500); }
.shop-meta .count strong { color: var(--blue-900); }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.no-results svg { width: 54px; height: 54px; color: var(--gray-300); margin: 0 auto 16px; }

/* ============================================================
   25. PRODUCT DETAIL PAGE
   ============================================================ */
.pdp-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 880px) { .pdp-layout { grid-template-columns: 1fr 1fr; gap: 56px; } }

.pdp-gallery .pdp-main {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; margin-bottom: 14px;
}
.pdp-gallery .pdp-main::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(45, 111, 212, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 111, 212, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
}
.pdp-gallery .pdp-main svg { width: 45%; height: 45%; color: var(--blue-500); position: relative; z-index: 1; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-thumb {
  aspect-ratio: 1 / 1; border-radius: var(--radius-sm);
  background: var(--blue-50); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; transition: var(--transition); cursor: pointer;
}
.pdp-thumb svg { width: 50%; height: 50%; color: var(--blue-400); }
.pdp-thumb:hover, .pdp-thumb.active { border-color: var(--blue-400); background: var(--blue-100); }

.pdp-info .product-card-tag { font-size: 0.72rem; }
.pdp-info h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 6px 0 12px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 0.84rem; color: var(--gray-500); }
.pdp-rating .stars { color: var(--star); letter-spacing: 1px; }
.pdp-price { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; display: flex; align-items: baseline; gap: 10px; }
.pdp-price .was { font-size: 1.1rem; color: var(--gray-400); text-decoration: line-through; font-weight: 400; }
.pdp-price-note { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 22px; }
.pdp-desc { font-size: 0.96rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 24px; }
.pdp-buy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.pdp-buy .qty { transform: scale(1.05); }
.pdp-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; padding: 22px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); margin-bottom: 26px; }
.pdp-trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--gray-700); }
.pdp-trust-item svg { width: 22px; height: 22px; color: var(--blue-400); flex-shrink: 0; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.88rem; }
.spec-table th { color: var(--gray-500); font-weight: 600; width: 40%; }
.spec-table td { color: var(--blue-900); font-weight: 500; }

.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--gray-200); margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn { padding: 12px 18px; font-family: var(--font-display); font-weight: 600; font-size: 0.9rem; color: var(--gray-500); border-bottom: 2px solid transparent; transition: var(--transition); }
.tab-btn:hover { color: var(--blue-600); }
.tab-btn.active { color: var(--blue-900); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.review { padding: 20px 0; border-bottom: 1px solid var(--gray-100); }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review-head .testimonial-avatar { width: 38px; height: 38px; font-size: 0.84rem; }
.review-head .name { font-size: 0.86rem; font-weight: 700; color: var(--blue-900); }
.review-head .stars { color: var(--star); font-size: 0.8rem; }
.review-head .date { margin-left: auto; font-size: 0.76rem; color: var(--gray-400); }
.review p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ============================================================
   26. CHECKOUT
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .checkout-layout { grid-template-columns: 1.4fr 0.9fr; gap: 44px; } }

.checkout-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.checkout-step { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; font-weight: 600; color: var(--gray-400); }
.checkout-step .num { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-100); color: var(--gray-500); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; border: 1px solid var(--gray-200); }
.checkout-step.active { color: var(--blue-900); }
.checkout-step.active .num { background: var(--gradient-blue); color: var(--white); border-color: transparent; }
.checkout-step.done .num { background: var(--success-fg); color: var(--white); border-color: transparent; }
.checkout-divider { flex: 1; min-width: 16px; height: 1px; background: var(--gray-200); }

.checkout-panel { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow-xs); }
.checkout-panel h3 { font-size: 1.1rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.checkout-panel h3 svg { width: 20px; height: 20px; color: var(--blue-400); }

.pay-methods { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 480px) { .pay-methods { grid-template-columns: 1fr 1fr; } }
.pay-method {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--transition);
}
.pay-method:hover { border-color: var(--blue-300); }
.pay-method.selected { border-color: var(--blue-500); background: var(--blue-50); box-shadow: 0 0 0 3px rgba(45, 111, 212, 0.12); }
.pay-method input { accent-color: var(--blue-500); }
.pay-method .pm-label { font-size: 0.88rem; font-weight: 600; color: var(--blue-900); }
.pay-method .pm-sub { font-size: 0.74rem; color: var(--gray-500); }

.order-summary { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: calc(var(--header-h) + 16px); }
.order-summary h3 { font-size: 1.05rem; margin-bottom: 18px; }
.summary-line { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.summary-line .s-img { width: 48px; height: 48px; border-radius: var(--radius-xs); background: var(--blue-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.summary-line .s-img svg { width: 26px; height: 26px; color: var(--blue-400); }
.summary-line .s-info { flex: 1; }
.summary-line .s-name { font-size: 0.82rem; font-weight: 600; color: var(--blue-900); }
.summary-line .s-qty { font-size: 0.74rem; color: var(--gray-500); }
.summary-line .s-price { font-size: 0.86rem; font-weight: 700; color: var(--blue-900); font-family: var(--font-display); }
.summary-totals { padding-top: 16px; }
.summary-totals .row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--gray-600); margin-bottom: 10px; }
.summary-totals .row.grand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--blue-900); padding-top: 14px; border-top: 1px solid var(--gray-200); margin-top: 6px; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.76rem; color: var(--gray-500); margin-top: 16px; }
.secure-note svg { width: 15px; height: 15px; color: var(--success-fg); }

/* ============================================================
   27. TOAST / MISC
   ============================================================ */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: var(--z-toast); display: flex; flex-direction: column; gap: 10px; align-items: center; width: max-content; max-width: 92vw; }
.toast {
  display: flex; align-items: center; gap: 11px;
  background: var(--blue-900); color: var(--white);
  border: 1px solid rgba(0, 194, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 13px 20px; font-size: 0.88rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px); opacity: 0;
  animation: toast-in 0.3s forwards;
}
.toast.hide { animation: toast-out 0.3s forwards; }
.toast svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
@keyframes toast-in { to { transform: translateY(0); opacity: 1; } }
@keyframes toast-out { to { transform: translateY(20px); opacity: 0; } }

/* ============================================================
   28. SCROLL-REVEAL ANIMATIONS
   ============================================================ */
/* Hidden state only applies when JS is active (.js set by inline head script),
   so the page is never blank if scripts are disabled or fail to load. */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---- Legal / prose pages ---- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--gray-600); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 0; }
.prose ul li { position: relative; padding-left: 22px; }
.prose ul li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); }
.prose a { color: var(--blue-500); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose .updated { font-size: 0.84rem; color: var(--gray-400); margin-bottom: 28px; }

/* ============================================================
   29. RESPONSIVE EXTRAS
   ============================================================ */
@media (max-width: 600px) {
  .hero-ctas .btn { width: 100%; }
  .final-cta-btns .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .bulk-banner { flex-direction: column; align-items: flex-start; }
  .software-features { grid-template-columns: 1fr; }
}

/* ============================================================
   30. REDUCED MOTION & PRINT
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .pr-nozzle, .pr-layer, .pr-filament, .spec-chip, .announcement-bar { animation: none !important; }
  .pr-layer { opacity: 1; }
}

@media print {
  .site-header, .announcement-bar, .site-footer, .cart-drawer, .drawer-overlay, .nav-overlay, .toast-wrap, .final-cta, .hero-ctas { display: none !important; }
  body { color: #000; }
}
