/* ==========================================================================
   Panda's Printing Station - Modern Print House Stylesheet
   Inspired by contemporary minimalist editorial print aesthetics (beprinted)
   Location: #93 Orchids Street Bernabe Phase 2, Parañaque City, Philippines
   Facebook: https://www.facebook.com/pandasprinting/
   ========================================================================== */

:root {
  /* Brand Color Palette - Royal Indigo/Purple & Sunny Yellow Accent */
  --color-primary: #4338ca;        /* Royal Indigo / Purple */
  --color-primary-hover: #3730a3;
  --color-primary-light: #6366f1;
  --color-primary-subtle: #eef2ff;
  --color-primary-border: #c7d2fe;
  
  --color-yellow: #facc15;         /* Sunny Highlighter Yellow */
  --color-yellow-light: #fef08a;
  --color-yellow-subtle: #fefce8;
  
  --color-dark: #0f172a;           /* Deep Charcoal / Black */
  --color-dark-purple: #1e1b4b;    /* Dark Midnight Purple */
  --color-slate: #334155;
  --color-slate-muted: #64748b;
  --color-slate-light: #94a3b8;
  
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-bg: #ffffff;
  --color-bg-subtle: #fbfbfa;
  --color-card: #ffffff;
  
  --color-danger: #ef4444;
  --color-danger-subtle: #fef2f2;
  --color-success: #10b981;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  /* Layout & Spacing */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 6px 16px rgba(15, 23, 42, 0.06), 0 2px 4px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 16px 32px -4px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 36px -4px rgba(67, 56, 202, 0.12), 0 8px 16px -2px rgba(15, 23, 42, 0.04);
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-slate);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Highlight & Marker Accents (From Reference Image)
   ========================================================================== */
.marker-yellow {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  font-weight: inherit;
}

.marker-yellow::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 12px;
  background-color: var(--color-yellow);
  z-index: -1;
  border-radius: 2px;
  transform: rotate(-0.5deg);
}

.marker-yellow-underline {
  border-bottom: 5px solid var(--color-yellow);
  padding-bottom: 2px;
}

/* Top Announcement Bar */
.top-bar {
  background-color: #0f172a;
  color: #cbd5e1;
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: var(--radius-pill);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(250, 204, 21, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(250, 204, 21, 0); }
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar-links a {
  color: #f1f5f9;
  font-weight: 500;
}

.top-bar-links a:hover {
  color: var(--color-yellow);
}

/* ==========================================================================
   Main Sticky Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 4.75rem;
}

/* Logo with User's Panda Logo */
/* Brand Logo with User's Panda Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  color: var(--color-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05) rotate(-2deg);
}

.brand-text-group {
  display: flex;
  align-items: center;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-title span {
  color: var(--color-primary);
}

/* ==========================================================================
   Business Registration & Compliance Bar (DTI, BIR, Non-VAT)
   ========================================================================== */
.compliance-badge-bar {
  background: #f8fafc;
  border-bottom: 1px solid var(--color-border);
  padding: 0.625rem 0;
}

.compliance-badge-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-slate);
}

.compliance-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #ffffff;
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--color-dark);
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.compliance-pill svg {
  width: 15px;
  height: 15px;
  color: #16a34a;
  flex-shrink: 0;
}

.compliance-pill.non-vat {
  border-color: #cbd5e1;
  background-color: #f1f5f9;
}

.compliance-pill .compliance-sub {
  font-weight: 500;
  color: var(--color-slate-muted);
  font-size: 0.75rem;
}

.compliance-separator {
  color: #cbd5e1;
  font-weight: bold;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-slate);
  padding: 0.375rem 0;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: var(--radius-pill);
}

/* Nav Menu CTA is strictly for Mobile Drawer only - NEVER on desktop */
.nav-menu-cta {
  display: none !important;
}

/* Nav Action Buttons */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Pill Buttons (Consistent with Reference Image) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  font-size: 0.9375rem;
  line-height: 1;
}

.btn-pill-primary, .btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 0.8125rem 1.875rem;
  border: 1px solid var(--color-primary);
  box-shadow: 0 4px 14px rgba(67, 56, 202, 0.25);
}

.btn-pill-primary:hover, .btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 56, 202, 0.35);
}

.btn-pill-outline, .btn-secondary {
  background-color: #ffffff;
  color: var(--color-dark);
  padding: 0.8125rem 1.875rem;
  border: 1.5px solid #cbd5e1;
}

.btn-pill-outline:hover, .btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-primary-subtle);
  transform: translateY(-2px);
}

.btn-pill-yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark);
  padding: 0.8125rem 1.875rem;
  border: 1px solid var(--color-yellow);
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.3);
}

.btn-pill-yellow:hover {
  background-color: #eab308;
  border-color: #eab308;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-dark);
  font-size: 1.75rem;
  cursor: pointer;
  padding: 0.375rem;
}

/* ==========================================================================
   Hero Section (Exact Layout from Reference Image)
   ========================================================================== */
.hero-minimal {
  padding: 4.5rem 0 3.5rem;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-minimal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-headline {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.035em;
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero-subtext {
  font-size: 1.125rem;
  color: var(--color-slate-muted);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Flat Lay Mockup Showcase (Centerpiece of Reference Image) */
.hero-mockup-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px -8px rgba(15, 23, 42, 0.12), 0 8px 16px -2px rgba(15, 23, 42, 0.04);
  background: #f8fafc;
  border: 1px solid var(--color-border);
  animation: heroMockupIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Floating interactive hotspots / product badges on the hero mockup */
.mockup-badge-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  pointer-events: auto;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.mockup-badge-tag:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 10px 24px -4px rgba(67, 56, 202, 0.22);
}

.mockup-badge-tag .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
  animation: pulseSubtleDot 2.2s infinite;
}

.tag-pos-1 { top: 18%; left: 10%; animation: floatBadge1 4.5s ease-in-out infinite; }
.tag-pos-2 { top: 22%; right: 12%; animation: floatBadge2 5.2s ease-in-out 0.6s infinite; }
.tag-pos-3 { bottom: 15%; left: 24%; animation: floatBadge1 4.8s ease-in-out 1.2s infinite; }
.tag-pos-4 { bottom: 20%; right: 20%; animation: floatBadge2 5.5s ease-in-out 1.8s infinite; }

/* ==========================================================================
   "A Few Words About Our Printing House" Section (From Reference Image)
   ========================================================================== */
.about-split-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-split-content h2 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}

.about-split-content p {
  font-size: 1.0625rem;
  color: var(--color-slate);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-split-actions {
  margin-top: 2rem;
}

.about-split-visual {
  position: relative;
}

.about-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--color-border);
  position: relative;
  z-index: 2;
  background-color: #ffffff;
}

.about-photo-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Yellow accent backdrop card matching the reference image */
.about-photo-backdrop {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 75%;
  height: 75%;
  background-color: var(--color-yellow);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.85;
}

/* ==========================================================================
   5-Column Benefit Feature Strip (From Reference Image)
   ========================================================================== */
.benefit-strip-section {
  padding: 3.5rem 0;
  background-color: #ffffff;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

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

.benefit-strip-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-strip-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-strip-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.75;
}

.benefit-strip-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.benefit-strip-desc {
  font-size: 0.875rem;
  color: var(--color-slate-muted);
  line-height: 1.5;
}

/* ==========================================================================
   "See Wide Range of Our Services" Section (From Reference Image)
   ========================================================================== */
.services-overview-section {
  padding: 5rem 0;
  background-color: var(--color-bg-subtle);
}

.services-overview-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.services-top-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.services-top-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.services-top-text h2 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.services-top-text p {
  font-size: 1.0625rem;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.services-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services-checklist li {
  font-size: 0.9375rem;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.services-checklist li::before {
  content: '—';
  color: var(--color-primary);
  font-weight: 800;
}

/* The 6-Service Purple Line Icon Grid Card */
.services-catalog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.service-catalog-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

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

.service-catalog-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.75;
}

.service-catalog-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.service-catalog-info p {
  font-size: 0.875rem;
  color: var(--color-slate-muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.service-catalog-price {
  font-size: 0.8125rem;
  color: var(--color-primary);
  font-weight: 700;
}

.service-catalog-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.service-catalog-quote-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.services-catalog-footer {
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-catalog-more {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.services-catalog-more:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* ==========================================================================
   "Upload Your Files Online" Section (From Reference Image)
   ========================================================================== */
.upload-card-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.upload-banner-card {
  background: linear-gradient(135deg, #3730a3 0%, #312e81 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 20px 40px -10px rgba(55, 48, 163, 0.35);
  position: relative;
  overflow: hidden;
}

/* Ambient printer illustration in background */
.upload-banner-card::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.upload-banner-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.upload-banner-text p {
  font-size: 1rem;
  color: #c7d2fe;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.upload-spec-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.upload-spec-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Interactive Drag & Drop Box inside the card */
.upload-dropzone {
  background: #ffffff;
  color: var(--color-dark);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px dashed #cbd5e1;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--color-primary);
  background-color: var(--color-primary-subtle);
}

.dropzone-icon {
  width: 54px;
  height: 54px;
  color: var(--color-primary);
  margin: 0 auto 1rem;
}

.dropzone-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.dropzone-sub {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
  margin-bottom: 1.25rem;
}

.dropzone-file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--color-yellow-subtle);
  border: 1px solid var(--color-yellow);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--color-dark);
  text-align: left;
}

.upload-feedback.active {
  display: block;
}

/* ==========================================================================
   Social Proof & Community Stats Banner (TikTok Shop & Facebook)
   ========================================================================== */
.social-proof-banner-section {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.social-proof-banner-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #3730a3 100%);
  border-radius: var(--radius-lg);
  color: #ffffff;
  padding: 3.5rem 3rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.social-proof-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.social-proof-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.social-proof-sub {
  color: #c7d2fe;
  font-size: 0.9375rem;
  line-height: 1.5;
}

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

.social-proof-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.social-proof-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.3);
}

.social-proof-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.social-proof-icon.tiktok {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 0, 79, 0.4);
}

.social-proof-icon.facebook {
  background: #1877f2;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}

.social-proof-icon.compliance {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(22, 163, 74, 0.4);
}

.social-proof-stat {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.social-proof-stars {
  color: var(--color-yellow);
  font-size: 1.125rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0.35rem;
}

.social-proof-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-yellow);
  margin-bottom: 0.35rem;
}

.social-proof-desc {
  font-size: 0.8125rem;
  color: #c7d2fe;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.social-proof-link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.social-proof-link:hover {
  background: #ffffff;
  color: var(--color-primary);
}

/* ==========================================================================
   About Page: Social Community & Marketplace Proof Grid
   ========================================================================== */
.about-social-section {
  padding: 4.5rem 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.about-social-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.about-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e0e7ff;
  color: #4338ca;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.about-social-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4f46e5;
  box-shadow: 0 0 8px rgba(79, 70, 229, 0.6);
}

.about-social-title {
  font-size: 2.125rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.about-social-subtitle {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 auto;
}

/* Social metrics grid container */
.social-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

/* Individual modern card */
.social-metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px -2px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
  position: relative;
}

.social-metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -6px rgba(15, 23, 42, 0.09);
  border-color: #cbd5e1;
}

/* Top bar: Icon + Tag */
.social-metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.social-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-metric-card:hover .social-icon-wrapper {
  transform: scale(1.05);
}

.social-icon-wrapper.fb {
  background: #eff6ff;
  color: #1877f2;
  border: 1px solid #dbeafe;
}

.social-icon-wrapper.tt {
  background: #0f172a;
  color: #ffffff;
  border: 1px solid #1e293b;
}

.social-icon-wrapper.star {
  background: #fefce8;
  color: #eab308;
  border: 1px solid #fef08a;
}

.social-metric-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.social-metric-tag.fb {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
}

.social-metric-tag.tt {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.social-metric-tag.star {
  background: #fefce8;
  color: #a16207;
  border: 1px solid #fef08a;
}

/* Stat numbers and text */
.social-stat-number {
  font-size: 2.35rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.social-stat-number .stat-max {
  font-size: 1.125rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: normal;
}

.social-stat-label {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.65rem;
}

.social-stat-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Bottom Action & Badge Area */
.social-metric-action {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.social-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6875rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-card-btn.fb {
  background: #1877f2;
  color: #ffffff;
  border: 1px solid #1877f2;
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.25);
}

.social-card-btn.fb:hover {
  background: #166fe5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.35);
  color: #ffffff;
}

.social-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6875rem 1rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.social-card-badge.tt {
  background: #f8fafc;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

.social-card-badge.star {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fef08a;
}

.star-rating-icons {
  color: #eab308;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* Service Quote Box in services.html */
.service-quote-box {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.service-spec-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #16a34a;
}

.service-quote-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-slate);
}

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

/* ==========================================================================
   Services Page & Catalog Cards
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary-border);
}

.service-img-wrapper {
  position: relative;
  height: 220px;
  background-color: #f1f5f9;
  overflow: hidden;
}

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

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

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-dark);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-badge.yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}

.service-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-name {
  font-size: 1.3125rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.625rem;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--color-slate);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
}

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

.service-price {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
}

.service-price strong {
  font-size: 1.25rem;
  color: var(--color-dark);
  font-weight: 800;
}

/* ==========================================================================
   Contact Page, Form & Feedback State
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.form-card {
  background: #ffffff;
  padding: 2.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.form-header p {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
}

.demo-alert {
  background-color: var(--color-primary-subtle);
  border: 1px solid var(--color-primary-border);
  color: var(--color-primary-hover);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  display: flex;
  gap: 0.75rem;
}

.form-group {
  margin-bottom: 1.375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.375rem;
}

.form-label .required {
  color: var(--color-danger);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8125rem 1.125rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  background-color: #ffffff;
  color: var(--color-dark);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.12);
}

.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--color-danger);
  background-color: var(--color-danger-subtle);
}

.field-error {
  font-size: 0.75rem;
  color: var(--color-danger);
  margin-top: 0.375rem;
  display: none;
  font-weight: 600;
}

.field-error.visible {
  display: block;
}

.form-help {
  font-size: 0.75rem;
  color: var(--color-slate-muted);
  margin-top: 0.375rem;
}

/* Success Confirmation State */
.form-success-box {
  display: none;
  background-color: var(--color-primary-subtle);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-success-box.visible {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.success-icon {
  width: 3.75rem;
  height: 3.75rem;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}

.success-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.success-message {
  font-size: 0.9375rem;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
}

.success-data-summary {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.success-data-summary pre {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-dark);
  white-space: pre-wrap;
  word-break: break-all;
  max-height: 200px;
  overflow-y: auto;
}

.form-error-alert-box {
  background-color: #fef2f2;
  border: 1.5px solid #ef4444;
  color: #991b1b;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.info-card-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
}

.info-icon {
  font-size: 1.25rem;
  line-height: 1.2;
}

.info-link {
  color: var(--color-primary);
  font-weight: 600;
}

.info-link:hover {
  text-decoration: underline;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--color-border);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Footer (Aesthetic, Compact & Minimalist)
   ========================================================================== */
.site-footer {
  background-color: #fafbfd;
  border-top: 1px solid #eef2f6;
  padding: 2.75rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.95fr 1.15fr;
  gap: 2.25rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}

.footer-brand-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.footer-brand p {
  font-size: 0.78125rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 320px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #e2e8f0;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.71875rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.footer-social-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-links li {
  font-size: 0.78125rem;
  color: var(--color-slate-muted);
  line-height: 1.5;
}

.footer-links a {
  font-size: 0.78125rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  background-color: #fef2f2;
  color: #b91c1c;
  padding: 0.1rem 0.45rem;
  border-radius: 4px;
  border: 1px solid #fee2e2;
  margin-right: 0.25rem;
}

.footer-compliance {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #047857;
  background-color: #ecfdf5;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #d1fae5;
  margin-top: 0.25rem;
}

.footer-phone-link {
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-phone-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.71875rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom a {
  color: #64748b;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Production Facility Notice Callouts & Badges */
.production-notice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.production-callout-box {
  background: #f8fafc;
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.production-callout-title {
  font-weight: 800;
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.production-callout-desc {
  font-size: 0.875rem;
  color: var(--color-slate);
  line-height: 1.6;
}

.online-production-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.75rem;
  }

  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefit-strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-overview-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .upload-banner-card {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }

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

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

  /* Social proof metrics on tablet */
  .about-social-section {
    padding: 3.75rem 0;
  }

  .about-social-header {
    margin-bottom: 2.5rem;
  }

  .about-social-title {
    font-size: 1.875rem;
  }

  .social-metrics-grid {
    gap: 1.25rem;
  }

  .social-metric-card {
    padding: 1.6rem 1.35rem;
  }

  .social-stat-number {
    font-size: 2rem;
  }

  .social-stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .nav-container {
    gap: 1rem;
  }
  .nav-menu {
    gap: 1.25rem;
  }
  .nav-link {
    font-size: 0.875rem;
  }
  .brand-title {
    font-size: 1.125rem;
  }
  .nav-cta {
    gap: 0.5rem;
  }
  .nav-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
  }

  .social-metrics-grid {
    gap: 1rem;
  }

  .social-metric-card {
    padding: 1.35rem 1.15rem;
  }

  .social-stat-number {
    font-size: 1.85rem;
  }

  .social-stat-desc {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}

/* ==========================================================================
   Mobile & Tablet Responsiveness (768px and below)
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* Top bar */
  .site-top-bar {
    padding: 0.4rem 0;
    font-size: 0.75rem;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar-links {
    display: none;
  }

  /* Header adjustments */
  .site-header {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-container {
    height: 4rem;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 1.0625rem;
  }

  /* Nav action buttons in mobile header */
  .nav-cta .btn {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    border: 1px solid var(--color-border);
    color: var(--color-dark);
    font-size: 1.375rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-toggle:hover, .mobile-toggle:active {
    background: var(--color-primary-subtle);
    color: var(--color-primary);
  }

  /* Smooth mobile navigation drawer */
  .nav-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.25rem 1.25rem 1.75rem;
    gap: 0.5rem;
    border-bottom: 2px solid var(--color-border);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 1000;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
    animation: mobileMenuFade 0.2s ease-out forwards;
  }

  @keyframes mobileMenuFade {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-link {
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border-bottom: none;
    width: 100%;
    color: var(--color-dark);
    background-color: #f8fafc;
    display: block;
    transition: var(--transition);
  }

  .nav-link:hover, .nav-link.active {
    background-color: var(--color-primary-subtle);
    color: var(--color-primary);
  }

  .nav-link.active::after {
    display: none;
  }

  /* Drawer CTA inside mobile menu */
  .nav-menu-cta {
    display: flex !important;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
    width: 100%;
  }

  .nav-menu-cta .btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  /* Compliance Bar */
  .compliance-badge-bar {
    padding: 0.45rem 0;
  }

  .compliance-badge-inner {
    gap: 0.5rem;
    justify-content: center;
  }

  .compliance-separator {
    display: none;
  }

  .compliance-pill {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
  }

  /* Hero Section */
  .hero-minimal {
    padding: 2.75rem 0 2rem;
  }

  .hero-headline {
    font-size: 1.875rem;
    line-height: 1.22;
    letter-spacing: -0.02em;
    margin-bottom: 0.875rem;
  }

  .hero-subtext {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-mockup-container {
    margin-top: 2rem;
  }

  /* Benefits strip */
  .benefit-strip-section {
    padding: 2.25rem 0;
  }

  .benefit-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .benefit-strip-item {
    padding: 1rem;
  }

  /* About split section */
  .about-split-section {
    padding: 2.75rem 0;
  }

  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-split-content h2 {
    font-size: 1.75rem;
    line-height: 1.22;
    margin-bottom: 1rem;
  }

  .about-split-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .about-photo-card img {
    height: 260px;
  }

  .about-photo-backdrop {
    display: none;
  }

  /* Services Overview Section */
  .services-overview-section {
    padding: 2.75rem 0;
  }

  .services-overview-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .services-top-text h2 {
    font-size: 1.75rem;
    line-height: 1.22;
    margin-bottom: 1rem;
  }

  .services-top-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .services-catalog-card {
    padding: 1.5rem;
  }

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

  /* Social proof & stats */
  .social-proof-banner-section,
  .about-social-section {
    padding: 2.75rem 0;
  }

  .about-social-header {
    margin-bottom: 2rem;
  }

  .about-social-title {
    font-size: 1.625rem;
  }

  .about-social-subtitle {
    font-size: 0.875rem;
  }

  .social-proof-banner-card {
    padding: 1.75rem 1.25rem;
  }

  .social-proof-title {
    font-size: 1.5rem;
  }

  .social-proof-desc {
    font-size: 0.875rem;
  }

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

  .social-metrics-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
    gap: 1.25rem;
  }

  .social-metric-card {
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
  }

  /* Upload banner & CTA */
  .upload-card-section {
    padding: 2.75rem 0;
  }

  .upload-banner-card {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.25rem;
    gap: 1.75rem;
  }

  .upload-banner-content h2 {
    font-size: 1.5rem;
  }

  .upload-banner-content p {
    font-size: 0.875rem;
  }

  /* Contact page form & cards */
  .contact-section {
    padding: 2.5rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-card, .info-card {
    padding: 1.5rem;
  }

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

  /* Footer */
  .site-footer {
    padding: 2.25rem 0 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
    margin-bottom: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eef2f6;
  }

  .footer-col-nav,
  .footer-col-services {
    grid-column: span 1;
  }

  .footer-col-hub {
    grid-column: 1 / -1;
    padding-top: 0.75rem;
    border-top: 1px solid #eef2f6;
  }

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

/* ==========================================================================
   Mobile Portrait Mode: Fine-Tuned Typography & Neat Compact Layout
   Optimized for iPhones, Samsung Galaxies, and standard mobile portrait viewports
   ========================================================================== */
@media (max-width: 540px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Header & Logo scaling */
  .nav-container {
    height: 3.5rem;
  }

  .brand-logo-img {
    width: 32px;
    height: 32px;
  }

  .brand-title {
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
  }

  .mobile-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }

  .nav-menu {
    top: 3.5rem;
    padding: 1rem 1rem 1.5rem;
  }

  .nav-link {
    font-size: 0.875rem;
    padding: 0.625rem 0.875rem;
  }

  .nav-menu-cta .btn {
    padding: 0.65rem 1rem;
    font-size: 0.8125rem;
  }

  /* Compact compliance bar in mobile portrait */
  .compliance-badge-bar {
    padding: 0.35rem 0;
  }

  .compliance-badge-inner {
    gap: 0.35rem;
  }

  .compliance-pill {
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
    gap: 0.25rem;
  }

  .compliance-pill svg {
    width: 12px;
    height: 12px;
  }

  .compliance-pill .compliance-sub {
    display: none;
  }

  /* Hero Section: Neat, beautifully sized mobile typography */
  .hero-minimal {
    padding: 2rem 0 1.5rem;
  }

  .hero-headline, 
  h1.hero-headline {
    font-size: 1.5rem !important;
    line-height: 1.24;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .marker-yellow::after {
    height: 8px;
    bottom: 3px;
  }

  .hero-subtext {
    font-size: 0.84375rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    padding: 0;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.5rem;
    gap: 0.625rem;
  }

  .hero-buttons .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
  }

  .hero-mockup-container {
    margin-top: 1.25rem;
    border-radius: var(--radius-md);
  }

  .mockup-badge-tag {
    padding: 0.35rem 0.6rem;
    font-size: 0.6875rem;
  }

  /* Global Headings: Proportional, clean, no awkward wrapping */
  h2, 
  .section-title, 
  .about-split-content h2, 
  .services-top-text h2, 
  .social-proof-title, 
  .upload-banner-content h2, 
  .contact-card h2 {
    font-size: 1.3125rem !important;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 0.625rem;
  }

  h3, 
  .service-catalog-info h3, 
  .info-card h3 {
    font-size: 1rem !important;
    line-height: 1.3;
  }

  p, 
  .about-split-content p, 
  .services-top-text p, 
  .social-proof-desc, 
  .upload-banner-content p {
    font-size: 0.84375rem;
    line-height: 1.55;
  }

  .service-badge {
    font-size: 0.6875rem;
    padding: 0.2rem 0.55rem;
  }

  /* Benefit Strip */
  .benefit-strip-section {
    padding: 1.75rem 0;
  }

  .benefit-strip-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .benefit-strip-item {
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
  }

  .benefit-strip-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0.35rem;
  }

  .benefit-strip-icon svg {
    width: 22px;
    height: 22px;
  }

  .benefit-strip-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .benefit-strip-desc {
    font-size: 0.78125rem;
    line-height: 1.45;
  }

  /* About section photo */
  .about-split-section {
    padding: 2rem 0;
  }

  .about-photo-card img {
    height: 210px;
  }

  /* Services catalog */
  .services-overview-section {
    padding: 2rem 0;
  }

  .services-top-image img {
    height: 180px;
  }

  .services-checklist li {
    font-size: 0.8125rem;
    gap: 0.5rem;
  }

  .services-catalog-card {
    padding: 1.125rem;
    border-radius: var(--radius-md);
  }

  .services-catalog-grid {
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .service-catalog-item {
    gap: 0.875rem;
  }

  .service-catalog-icon {
    width: 36px;
    height: 36px;
  }

  .service-catalog-icon svg {
    width: 24px;
    height: 24px;
  }

  .service-catalog-info h3 {
    font-size: 0.9375rem !important;
    margin-bottom: 0.2rem;
  }

  .service-catalog-info p {
    font-size: 0.78125rem;
    line-height: 1.45;
    margin-bottom: 0.35rem;
  }

  .service-catalog-price {
    font-size: 0.75rem;
  }

  .service-catalog-quote-btn {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
  }

  .services-catalog-footer {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-top: 1rem;
  }

  .services-catalog-more {
    font-size: 0.8125rem;
  }

  /* Social proof metrics */
  .social-proof-banner-section,
  .about-social-section {
    padding: 2rem 0;
  }

  .about-social-header {
    margin-bottom: 1.25rem;
    text-align: center;
  }

  .about-social-pill {
    font-size: 0.6875rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.45rem;
  }

  .about-social-title {
    font-size: 1.35rem !important;
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .about-social-subtitle {
    font-size: 0.8125rem;
    line-height: 1.45;
  }

  .social-proof-banner-card {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-md);
  }

  .social-metrics-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    max-width: 100%;
  }

  .social-metric-card {
    padding: 1.15rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  }

  .social-metric-top {
    margin-bottom: 0.75rem;
  }

  .social-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .social-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .social-metric-tag {
    font-size: 0.625rem;
    padding: 0.2rem 0.55rem;
  }

  .social-stat-number {
    font-size: 1.75rem;
    margin-bottom: 0.2rem;
  }

  .social-stat-number .stat-max {
    font-size: 0.9375rem;
  }

  .social-stat-label {
    font-size: 0.9375rem;
    margin-bottom: 0.35rem;
  }

  .social-stat-desc {
    font-size: 0.78125rem;
    line-height: 1.45;
    margin-bottom: 0.85rem;
  }

  .social-metric-action {
    padding-top: 0.75rem;
  }

  .social-card-btn,
  .social-card-badge {
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
    min-height: 40px;
  }

  .social-metric-item {
    padding: 0.875rem;
  }

  .social-metric-value,
  .metric-number {
    font-size: 1.375rem;
  }

  .social-metric-label,
  .metric-label {
    font-size: 0.71875rem;
  }

  .social-proof-card {
    padding: 1rem;
  }

  .platform-badge {
    font-size: 0.6875rem;
    padding: 0.2rem 0.5rem;
  }

  /* Upload banner & dropzone */
  .upload-card-section {
    padding: 2rem 0;
  }

  .upload-banner-card {
    padding: 1.35rem 1rem;
    border-radius: var(--radius-md);
    gap: 1.25rem;
  }

  .upload-banner-content h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.4rem;
  }

  .upload-banner-content p {
    font-size: 0.8125rem;
    margin-bottom: 0.875rem;
  }

  .upload-dropzone {
    padding: 1.25rem 0.75rem;
  }

  .dropzone-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 0.5rem;
  }

  .dropzone-icon svg {
    width: 24px;
    height: 24px;
  }

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

  .dropzone-sub {
    font-size: 0.6875rem;
  }

  .upload-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .upload-buttons .btn {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
  }

  /* Contact page form & cards */
  .contact-section {
    padding: 2rem 0;
  }

  .contact-card, .info-card {
    padding: 1.125rem;
    border-radius: var(--radius-md);
  }

  .contact-card h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.4rem;
  }

  .contact-card > p {
    font-size: 0.8125rem;
    margin-bottom: 0.875rem;
  }

  .form-label {
    font-size: 0.78125rem;
    margin-bottom: 0.25rem;
  }

  .form-control, .form-select {
    font-size: 0.84375rem;
    padding: 0.55rem 0.75rem;
  }

  .form-help {
    font-size: 0.6875rem;
  }

  .info-card h3 {
    font-size: 0.9375rem !important;
    margin-bottom: 0.625rem;
  }

  .contact-item {
    font-size: 0.8125rem;
    gap: 0.5rem;
  }

  .contact-item svg {
    width: 16px;
    height: 16px;
  }

  .contact-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .contact-actions .btn {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
  }

  /* Buttons Global in Mobile Portrait */
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.8125rem;
  }

  .btn-sm {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }

  /* Footer in mobile portrait: Compact 2-column layout & elegant structured hub */
  .site-footer {
    padding: 1.75rem 0 1.25rem;
    background-color: #fafbfd;
    border-top: 1px solid #e2e8f0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .footer-brand h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
  }

  .footer-brand p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.625rem;
    color: #64748b;
  }

  .footer-social-btn {
    font-size: 0.6875rem;
    padding: 0.25rem 0.625rem;
  }

  /* Two clean side-by-side columns for Navigation & Services on phones */
  .footer-col-nav,
  .footer-col-services {
    grid-column: span 1;
  }

  .footer-col h4 {
    font-size: 0.6875rem !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #0f172a;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }

  .footer-links {
    gap: 0.35rem;
  }

  .footer-links li {
    font-size: 0.75rem !important;
    line-height: 1.35;
    color: #64748b;
  }

  .footer-links a {
    font-size: 0.75rem !important;
    color: #475569;
    padding: 0.15rem 0;
    display: inline-block;
    transition: color 0.15s ease, transform 0.15s ease;
  }

  .footer-links a:hover,
  .footer-links a:active {
    color: var(--color-primary);
    transform: translateX(2px);
  }

  /* Production Hub on Mobile - clean, structured card presentation */
  .footer-col-hub {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    margin-top: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  }

  .footer-col-hub h4 {
    font-size: 0.6875rem !important;
    margin-bottom: 0.45rem;
    color: #0f172a;
  }

  .footer-col-hub .footer-links {
    gap: 0.35rem;
  }

  .footer-col-hub .footer-links li {
    font-size: 0.71875rem !important;
    color: #334155;
    line-height: 1.4;
  }

  .footer-phone-link {
    color: var(--color-primary) !important;
    font-weight: 700 !important;
  }

  .footer-tag {
    font-size: 0.625rem;
    padding: 0.1rem 0.35rem;
  }

  .footer-compliance {
    font-size: 0.625rem;
    padding: 0.15rem 0.45rem;
    margin-top: 0.2rem;
  }

  .footer-bottom {
    font-size: 0.6875rem;
    line-height: 1.45;
    padding-top: 0.85rem;
    border-top: 1px solid #e2e8f0;
    gap: 0.35rem;
  }
}

/* Extra small mobile portrait (380px and below, e.g. iPhone SE) */
@media (max-width: 380px) {
  .hero-headline, 
  h1.hero-headline {
    font-size: 1.375rem !important;
  }

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

  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .nav-container {
    height: 3.25rem;
  }

  .nav-menu {
    top: 3.25rem;
  }

  h2, 
  .section-title, 
  .about-split-content h2, 
  .services-top-text h2, 
  .social-proof-title, 
  .about-social-title,
  .upload-banner-content h2, 
  .contact-card h2 {
    font-size: 1.2rem !important;
  }

  .social-stat-number {
    font-size: 1.5rem !important;
  }

  .social-metric-card {
    padding: 1rem 0.85rem;
  }
}

/* ==========================================================================
   Cross-Device Animation & Micro-Interactions System (PC, Tablet & Mobile)
   Clean, hardware-accelerated, subtle, and eye-pleasing
   ========================================================================== */

/* 1. Core Keyframe Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroMockupIn {
  0% {
    opacity: 0;
    transform: scale(0.97) translate3d(0, 16px, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

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

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

@keyframes pulseSubtleDot {
  0% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(79, 70, 229, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

@keyframes countNumberPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* 2. Scroll-Driven Reveal System */
/* When JavaScript is ready, prime elements for smooth scroll reveal */
html.js-ready .anim-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

html.js-ready .anim-reveal.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Subtle Cascade Stagger for Grids and Sequences */
html.js-ready .anim-stagger > *:nth-child(1) { transition-delay: 0.04s; }
html.js-ready .anim-stagger > *:nth-child(2) { transition-delay: 0.10s; }
html.js-ready .anim-stagger > *:nth-child(3) { transition-delay: 0.16s; }
html.js-ready .anim-stagger > *:nth-child(4) { transition-delay: 0.22s; }
html.js-ready .anim-stagger > *:nth-child(5) { transition-delay: 0.28s; }
html.js-ready .anim-stagger > *:nth-child(6) { transition-delay: 0.34s; }
html.js-ready .anim-stagger > *:nth-child(7) { transition-delay: 0.40s; }
html.js-ready .anim-stagger > *:nth-child(8) { transition-delay: 0.46s; }

/* 3. Number Pop Class for Completed Counters */
.number-pop {
  animation: countNumberPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 4. Sticky Header Dynamic Transition on Scroll */
.site-header {
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

/* 5. Floating Back-to-Top Action Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s, background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #4338ca;
  color: #ffffff;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(67, 56, 202, 0.35);
}

.back-to-top:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* 6. Tactile Button & Link Hover/Active Micro-Interactions */
.btn, 
.social-card-btn, 
.service-catalog-quote-btn,
.services-catalog-more,
.social-proof-link {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tactile press on touch/clicks across all platforms */
.btn:active, 
.social-card-btn:active, 
.service-catalog-quote-btn:active, 
.nav-link:active {
  transform: scale(0.97) !important;
}

/* Desktop Hover Micro-Enhancements */
@media (hover: hover) and (pointer: fine) {
  /* Button arrow slide */
  .social-card-btn:hover svg,
  .services-catalog-more:hover span:last-child {
    transform: translateX(4px);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-catalog-quote-btn:hover {
    color: var(--color-primary);
    transform: translateX(3px);
  }

  /* Service Card Hover with Image Zoom */
  .service-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.09);
    border-color: #cbd5e1;
  }

  .service-card .service-img-wrapper img {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  /* Benefit Feature Strip hover lift */
  .benefit-strip-item {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease, box-shadow 0.25s ease;
    border-radius: var(--radius-md);
  }

  .benefit-strip-item:hover {
    transform: translateY(-3px);
  }

  .benefit-strip-item .benefit-strip-icon {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .benefit-strip-item:hover .benefit-strip-icon {
    transform: scale(1.08);
  }

  /* Service Catalog items hover */
  .service-catalog-item {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-catalog-item:hover {
    transform: translateX(4px);
  }

  .service-catalog-item .service-catalog-icon {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  }

  .service-catalog-item:hover .service-catalog-icon {
    transform: scale(1.1);
    color: var(--color-primary);
  }

  /* Contact and Info cards hover */
  .info-card {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.2s ease;
  }

  .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.07);
    border-color: #cbd5e1;
  }

  /* About split photo card subtle hover */
  .about-photo-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  }

  .about-photo-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px -6px rgba(15, 23, 42, 0.12);
  }
}

/* 7. Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, 
  *::before, 
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html.js-ready .anim-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .mockup-badge-tag,
  .ticker-track,
  .live-radar-ping,
  .benefit-strip-icon svg {
    animation: none !important;
  }

  .pulse-dot, 
  .badge-dot, 
  .pill-dot {
    animation: none !important;
  }
}

/* ==========================================================================
   Continuous & Interactive Moving Elements (Smooth, Eye-Pleasing & Lightweight)
   ========================================================================== */

/* ==========================================================================
   Featured Services & Merchandising Slideshow Showcase
   ========================================================================== */
.services-slideshow-section {
  padding: 3.5rem 0 4rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.section-header-compact .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #eef2ff;
  color: var(--color-primary);
  border: 1px solid #c7d2fe;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.section-header-compact .section-title {
  font-size: 2.125rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
}

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

/* Slideshow Container */
.services-slider-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.services-slider-track {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  background: #ffffff;
  border: 1px solid var(--color-border);
  overflow: hidden;
  min-height: 480px;
}

/* Individual Slide */
.services-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.45s ease-in-out;
  width: 100%;
}

.services-slide.is-active {
  display: block;
  opacity: 1;
  animation: slideFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translate3d(8px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.slide-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 480px;
  width: 100%;
}

/* Slide Media Column */
.slide-media {
  position: relative;
  overflow: hidden;
  background: #0f172a;
  min-height: 360px;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-card:hover .slide-img {
  transform: scale(1.03);
}

.slide-media-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-badge-dot {
  width: 7px;
  height: 7px;
  background-color: #facc15;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(250, 204, 21, 0.8);
}

/* Slide Content Column */
.slide-content {
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.slide-category {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.65rem;
}

.slide-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.slide-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.slide-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.slide-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.slide-feature-list .check-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: #16a34a;
  flex-shrink: 0;
}

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

/* Slider Controls (Prev / Next Buttons) */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--color-text-dark);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.3);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.slider-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.slider-btn-prev {
  left: -22px;
}

.slider-btn-next {
  right: -22px;
}

/* Indicator Dots */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot:hover {
  background: #94a3b8;
  transform: scale(1.2);
}

.slider-dot.is-active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}

/* Responsive Breakpoints for Slideshow */
@media (max-width: 991px) {
  .slide-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .slide-media {
    min-height: 280px;
    max-height: 360px;
  }

  .slide-content {
    padding: 2.25rem 2rem;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slider-btn-prev {
    left: 12px;
  }

  .slider-btn-next {
    right: 12px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
  }
}

@media (max-width: 640px) {
  .services-slideshow-section {
    padding: 2.5rem 0 3rem;
  }

  .section-header-compact .section-title {
    font-size: 1.625rem;
  }

  .slide-media {
    min-height: 220px;
  }

  .slide-content {
    padding: 1.75rem 1.25rem;
  }

  .slide-title {
    font-size: 1.35rem;
  }

  .slide-text {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .slide-feature-list {
    margin-bottom: 1.5rem;
    gap: 0.55rem;
  }

  .slide-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .slide-actions .btn {
    text-align: center;
    width: 100%;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }

  .slider-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* 2. Live Production Status Pill with Animated Radar Wave */
.hero-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(240, 253, 244, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.35rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
  animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.live-radar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.live-radar-core {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.live-radar-ping {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #22c55e;
  opacity: 0.75;
  animation: liveRadarPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite;
  z-index: 1;
}

@keyframes liveRadarPing {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  75%, 100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* 3. Gentle Ambient Background Light Drift */
.hero-minimal {
  position: relative;
  overflow: hidden;
}

.hero-minimal::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.09) 0%, rgba(79, 70, 229, 0.04) 45%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, 0);
  pointer-events: none;
  animation: ambientFloat 16s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-minimal > .container {
  position: relative;
  z-index: 1;
}

@keyframes ambientFloat {
  0% {
    transform: translate(-50%, 0) scale(1);
  }
  50% {
    transform: translate(-42%, -8%) scale(1.08);
  }
  100% {
    transform: translate(-58%, 6%) scale(0.96);
  }
}

/* 4. Moving Benefit Icons & Subtle Breathing */
.benefit-strip-item:nth-child(1) .benefit-strip-icon svg {
  animation: subtleDocFloat 4s ease-in-out infinite;
}

.benefit-strip-item:nth-child(4) .benefit-strip-icon svg {
  animation: subtleClockTick 6s ease-in-out infinite;
}

.benefit-strip-item:nth-child(5) .benefit-strip-icon svg {
  animation: subtleTruckGlide 3.8s ease-in-out infinite;
}

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

@keyframes subtleClockTick {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-6deg);
  }
  75% {
    transform: rotate(6deg);
  }
}

@keyframes subtleTruckGlide {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3.5px);
  }
}

/* 5. Interactive Brand Logo Wave */
.brand-logo:hover .brand-logo-img,
.footer-brand h3:hover .footer-brand-logo {
  animation: pandaWave 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pandaWave {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(-10deg) scale(1.12);
  }
  75% {
    transform: rotate(10deg) scale(1.12);
  }
}




